@keyframes css-version {
  0% {
    content: "ti main courses css 2024-02-09-13-14";
  }
}
/* Helpers */
.transition--max-h {
  overflow-y: hidden;
  max-height: 0;
  transition: max-height 300ms ease-in-out;
}
.transition--max-h--show {
  /*max-height: 300em !important;*/ /* In animate_show */
}
.transition--all {
  transition: all 300ms ease-in-out;
}
.transition--transform {
  transition: transform 300ms ease-in-out;
}
.transition--opacity {
  transition: opacity 300ms;
}

.rotate-15deg\:after:after {
  transform: rotate(15deg);
}

.rotate-5deg\:after:after {
  transform: rotate(5deg);
}

.transform-top-left,
.transform-top-left\:after:after {
  transform-origin: top left;
}

.perspective, .perspective-1000 {
  perspective: 1000 !important;
}
.perspective-500 {
  perspective: 500 !important;
}

.anim-wiggle,
.anim-wiggle\:before:before {
  animation: wiggle infinite 2s alternate-reverse;
}

@keyframes wiggle {
  0%, 70% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  75% {
    transform: translate3d(-3px, 0, 200px) rotate(20deg);
  }
  80% {
    transform: translate3d(-3px, 0, 200px) rotate(-20deg);
  }
  85% {
    transform: translate3d(-3px, 0, 200px) rotate(20deg);
  }
  90% {
    transform: translate3d(-3px, 0, 200px) rotate(-20deg);
  }
  95% {
    transform: translate3d(-3px, 0, 200px) rotate(20deg);
  }
  100% {
    transform: translate3d(-3px, 0, 200px) rotate(-20deg);
  }
}
.anim-fill {
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.anim-fill:after {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  background-color: var(--bg-default);
  border-radius: 100%;
  transform: translate3d(-100%, 100%, 0) rotate(0deg);
  animation: fill infinite 5s alternate-reverse;
}

@keyframes fill {
  0%, 25% {
    transform: translate3d(-55%, 55%, 0) rotate(60deg);
  }
  50% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  75%, 100% {
    transform: translate3d(55%, -55%, 0) rotate(60deg);
  }
}
.anim-fadein {
  opacity: 0;
}

.animate-in.anim-fadein,
.show-receipt .anim-fadein,
.show-receipt .anim-fadein\:before:before {
  animation: fadein 1000ms cubic-bezier(0.01, 0.94, 0.9, 1) 1s;
  animation-fill-mode: both;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 200px);
    border-color: #f1f7fa;
  }
  100% {
    opacity: 1;
    border-color: #008fce;
    transform: translate3d(0, 0, 0);
  }
}
.anim-fadeout {
  opacity: 1;
}

.animate-out.anim-fadeout {
  animation: fadeout 1000ms cubic-bezier(0.01, 0.94, 0.9, 1) 1s;
  animation-fill-mode: both;
  transform: translate3d(0, 20px, -200px);
  opacity: 0;
}

@keyframes fadeout {
  0% {
    opacity: 1;
    border-color: #008fce;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    border-color: #f1f7fa;
    transform: translate3d(0, 20px, -200px);
  }
}
.anim-fadeup {
  opacity: 0.65;
}

.animate-out.anim-fadeup {
  animation: fadeup 1000ms cubic-bezier(0.01, 0.94, 0.9, 1) 1s;
  animation-fill-mode: both;
  transform: translate3d(0, -10px, -200px);
  opacity: 0;
}

@keyframes fadeup {
  0% {
    opacity: 0.65;
    border-color: #008fce;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    border-color: #f1f7fa;
    transform: translate3d(0, -10px, -200px);
  }
}
.anim-nodelay {
  animation-delay: 0ms !important;
}

.anim-fast {
  animation-duration: 300ms !important;
}

.show-receipt .anim-rotatein,
.show-receipt .anim-rotatein\:before:before {
  animation: rotatein 600ms cubic-bezier(0, 0.99, 0.81, 1.18) 1.2s; /* cubic-bezier(0.01, 0.94, 0.9, 1) */
  animation-fill-mode: both;
  transform: rotateZ(0deg) translate3d(0, 0, 0);
  opacity: 1;
}

@keyframes rotatein {
  0% {
    opacity: 0;
    transform: rotateZ(-90deg) translate3d(0, 0, 0);
  }
  100% {
    opacity: 1;
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }
}
.anim-spin,
.anim-success i i {
  animation: spin infinite linear 1200ms;
  transform: translate3d(0, 0, 0) rotateZ(0deg);
}

@keyframes spin {
  0% {
    transform: translate3d(0, 0, 0) rotateZ(0deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotateZ(360deg);
  }
}
.anim-success {
  perspective: 1000;
}
.anim-success i {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
  margin-left: -1rem;
}
.anim-success > i {
  perspective: 1000;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}

.show-receipt .anim-success > i {
  animation: success 2s cubic-bezier(0.09, 0.51, 0.38, 0.74) 2;
}
.show-receipt .anim-success > i:nth-child(13n+0) {
  animation-delay: 2000ms;
}
.show-receipt .anim-success > i:nth-child(13n+1) {
  animation-delay: 2500ms;
}
.show-receipt .anim-success > i:nth-child(13n+2) {
  animation-delay: 2400ms;
}
.show-receipt .anim-success > i:nth-child(13n+3) {
  animation-delay: 1750ms;
}
.show-receipt .anim-success > i:nth-child(13n+4) {
  animation-delay: 2900ms;
}
.show-receipt .anim-success > i:nth-child(13n+5) {
  animation-delay: 1650ms;
}
.show-receipt .anim-success > i:nth-child(13n+6) {
  animation-delay: 2200ms;
}
.show-receipt .anim-success > i:nth-child(13n+7) {
  animation-delay: 2600ms;
}
.show-receipt .anim-success > i:nth-child(13n+8) {
  animation-delay: 1550ms;
}
.show-receipt .anim-success > i:nth-child(13n+9) {
  animation-delay: 1300ms;
}
.show-receipt .anim-success > i:nth-child(13n+10) {
  animation-delay: 2700ms;
}
.show-receipt .anim-success > i:nth-child(13n+11) {
  animation-delay: 2350ms;
}
.show-receipt .anim-success > i:nth-child(13n+12) {
  animation-delay: 2520ms;
}
.show-receipt .anim-success > i:nth-child(13n+13) {
  animation-delay: 3100ms;
}
.show-receipt .anim-success > i:nth-child(11n+1) {
  rotate: -10deg;
}
.show-receipt .anim-success > i:nth-child(11n+3) {
  rotate: 15deg;
}
.show-receipt .anim-success > i:nth-child(11n+8) {
  rotate: 40deg;
}
.show-receipt .anim-success > i:nth-child(11n+2) {
  rotate: 60deg;
}
.show-receipt .anim-success > i:nth-child(11n+5) {
  rotate: 85deg;
}
.show-receipt .anim-success > i:nth-child(11n+9) {
  rotate: 95deg;
}
.show-receipt .anim-success > i:nth-child(11n+4) {
  rotate: 110deg;
}
.show-receipt .anim-success > i:nth-child(11n+10) {
  rotate: 125deg;
}
.show-receipt .anim-success > i:nth-child(11n+0) {
  rotate: 145deg;
}
.show-receipt .anim-success > i:nth-child(11n+6) {
  rotate: 165deg;
}
.show-receipt .anim-success > i:nth-child(11n+7) {
  rotate: 190deg;
}
.show-receipt .anim-success > i:nth-child(5n+3) {
  animation-duration: 2.1s;
}
.show-receipt .anim-success > i:nth-child(6n+2) {
  animation-duration: 2.5s;
}
.show-receipt .anim-success > i:nth-child(7n+5) {
  animation-duration: 1.8s;
}
.show-receipt .anim-success > i:nth-child(4n+0) i {
  background-color: #c9e4bc;
  border-color: #c9e4bc;
}
.show-receipt .anim-success > i:nth-child(4n+1) i {
  background-color: #c4e5f4;
  border-color: #c4e5f4;
}
.show-receipt .anim-success > i:nth-child(4n+2) i {
  background-color: #f8ecc5;
  border-color: #f8ecc5;
}
.show-receipt .anim-success > i:nth-child(4n+3) i {
  background-color: #fcd3d6;
  border-color: #fcd3d6;
}
.show-receipt .anim-success > i:nth-child(5n+0) i {
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
  margin-left: -1rem;
}
.show-receipt .anim-success > i:nth-child(5n+1) i {
  width: 1rem;
  height: 1rem;
  margin-top: -0.5rem;
  margin-left: -0.5rem;
}
.show-receipt .anim-success > i:nth-child(5n+2) i {
  width: 0;
  height: 0;
  margin-top: -1rem;
  margin-left: -1rem;
  border-left-style: solid;
  border-left-width: 2rem;
  border-bottom-style: solid;
  border-bottom-width: 2rem;
  border-bottom-color: transparent;
  background-color: transparent;
}
.show-receipt .anim-success > i:nth-child(5n+3) i {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -0.75rem;
  margin-left: -0.75rem;
}
.show-receipt .anim-success > i:nth-child(5n+4) i {
  width: 0;
  height: 0;
  margin-top: -0.5rem;
  margin-left: -0.5rem;
  border-left-style: solid;
  border-left-width: 1rem;
  border-bottom-style: solid;
  border-bottom-width: 1rem;
  border-bottom-color: transparent;
  background-color: transparent;
}
.show-receipt .anim-success > i:nth-child(3n+1) i {
  border-radius: 100% !important;
}

@keyframes success {
  0% {
    display: none;
  }
  1% {
    display: block;
    transform: translate3d(-30px, 0, -100px);
    opacity: 0;
  }
  6% {
    transform: translate3d(-60px, 0, -50px);
    opacity: 1;
  }
  90% {
    transform: translate3d(-290px, 0, 0) scale(1);
    opacity: 1;
  }
  99% {
    transform: translate3d(-300px, 0, 0) scale(0.5);
    opacity: 0;
  }
  100% {
    display: none;
  }
}
/* Before grid, as max height in grid should overrule */
/* ===== */
/* See also flex columns under grid */
/* ===== */
.columns-none {
  columns: auto !important;
}

.columns-none > ul > li {
  margin-top: 0 !important;
}

.columns-2 {
  columns: 2 !important;
}

.columns-3 {
  columns: 3 !important;
}

.columns-2, .columns-3 {
  column-gap: 1rem !important;
}

.columns-2 > ul > li, .columns-3 > ul > li {
  margin-top: 0.5rem !important;
}

.columns-inlineblock > * {
  display: inline-block !important;
}

@media screen and (min-width: 360px) {
  .xs\:columns-none {
    columns: auto !important;
  }
  .xs\:columns-none > ul > li {
    margin-top: 0 !important;
  }
  .xs\:columns-2 {
    columns: 2 !important;
  }
  .xs\:columns-3 {
    columns: 3 !important;
  }
  .xs\:columns-2, .xs\:columns-3 {
    column-gap: 1rem !important;
  }
  .xs\:columns-2 > ul > li, .xs\:columns-3 > ul > li {
    margin-top: 0.5rem !important;
  }
  .xs\:columns-inlineblock > * {
    display: inline-block !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:columns-none {
    columns: auto !important;
  }
  .sm\:columns-none > ul > li {
    margin-top: 0 !important;
  }
  .sm\:columns-2 {
    columns: 2 !important;
  }
  .sm\:columns-3 {
    columns: 3 !important;
  }
  .sm\:columns-2, .sm\:columns-3 {
    column-gap: 1rem !important;
  }
  .sm\:columns-2 > ul > li, .sm\:columns-3 > ul > li {
    margin-top: 0.5rem !important;
  }
  .sm\:columns-inlineblock > * {
    display: inline-block !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:columns-none {
    columns: auto !important;
  }
  .md\:columns-none > ul > li {
    margin-top: 0 !important;
  }
  .md\:columns-2 {
    columns: 2 !important;
  }
  .md\:columns-3 {
    columns: 3 !important;
  }
  .md\:columns-2, .md\:columns-3 {
    column-gap: 1rem !important;
  }
  .md\:columns-2 > ul > li, .md\:columns-3 > ul > li {
    margin-top: 0.5rem !important;
  }
  .md\:columns-inlineblock > * {
    display: inline-block !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:columns-none {
    columns: auto !important;
  }
  .lg\:columns-none > ul > li {
    margin-top: 0 !important;
  }
  .lg\:columns-2 {
    columns: 2 !important;
  }
  .lg\:columns-3 {
    columns: 3 !important;
  }
  .lg\:columns-2, .lg\:columns-3 {
    column-gap: 1rem !important;
  }
  .lg\:columns-2 > ul > li, .lg\:columns-3 > ul > li {
    margin-top: 0.5rem !important;
  }
  .lg\:columns-inlineblock > * {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:columns-none {
    columns: auto !important;
  }
  .xl\:columns-none > ul > li {
    margin-top: 0 !important;
  }
  .xl\:columns-2 {
    columns: 2 !important;
  }
  .xl\:columns-3 {
    columns: 3 !important;
  }
  .xl\:columns-2, .xl\:columns-3 {
    column-gap: 1rem !important;
  }
  .xl\:columns-2 > ul > li, .xl\:columns-3 > ul > li {
    margin-top: 0.5rem !important;
  }
  .xl\:columns-inlineblock > * {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:columns-none {
    columns: auto !important;
  }
  .xxl\:columns-none > ul > li {
    margin-top: 0 !important;
  }
  .xxl\:columns-2 {
    columns: 2 !important;
  }
  .xxl\:columns-3 {
    columns: 3 !important;
  }
  .xxl\:columns-2, .xxl\:columns-3 {
    column-gap: 1rem !important;
  }
  .xxl\:columns-2 > ul > li, .xxl\:columns-3 > ul > li {
    margin-top: 0.5rem !important;
  }
  .xxl\:columns-inlineblock > * {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:columns-none {
    columns: auto !important;
  }
  .max\:columns-none > ul > li {
    margin-top: 0 !important;
  }
  .max\:columns-2 {
    columns: 2 !important;
  }
  .max\:columns-3 {
    columns: 3 !important;
  }
  .max\:columns-2, .max\:columns-3 {
    column-gap: 1rem !important;
  }
  .max\:columns-2 > ul > li, .max\:columns-3 > ul > li {
    margin-top: 0.5rem !important;
  }
  .max\:columns-inlineblock > * {
    display: inline-block !important;
  }
}
/* GRID PADDING */
.header,
.container {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media screen and (min-width: 360px) {
  .header,
  .container,
  .xs\:container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 420px) {
  .header,
  .container,
  .xs\:container,
  .sm\:container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 650px) {
  .header,
  .container,
  .xs\:container,
  .sm\:container,
  .md\:container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 950px) {
  .header,
  .container,
  .xs\:container,
  .sm\:container,
  .md\:container,
  .lg\:container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1100px) {
  .header,
  .container,
  .xs\:container,
  .sm\:container,
  .md\:container,
  .lg\:container,
  .xl\:container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.header {
  padding-top: 0.5rem;
}
@media screen and (min-width: 420px) {
  .header {
    padding-top: 1rem;
  }
}

/* PADDING */
.p-0 {
  padding: 0 !important;
}

.p-0-25 {
  padding: 0.0625rem !important;
}

.p-0-5 {
  padding: 0.125rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-2-5 {
  padding: 0.75rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-3-5 {
  padding: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.p-5-5 {
  padding: 3.5rem !important;
}

.p-6 {
  padding: 4rem !important;
}

.p-7 {
  padding: 5rem !important;
}

.p-8 {
  padding: 6rem !important;
}

.p-9 {
  padding: 7rem !important;
}

.p-10 {
  padding: 8rem !important;
}

.p-11 {
  padding: 9rem !important;
}

.p-12 {
  padding: 10rem !important;
}

.p-13 {
  padding: 11rem !important;
}

.p-14 {
  padding: 12rem !important;
}

.p-15 {
  padding: 13rem !important;
}

.p-18 {
  padding: 16rem !important;
}

.p-30 {
  padding: 28rem !important;
}

.p-1-em {
  padding: 0.25em !important;
}

.p-1-5-em {
  padding: 0.375em !important;
}

.p-2-em {
  padding: 0.5em !important;
}

.p-2-25-em {
  padding: 0.625em !important;
}

.p-2-5-em {
  padding: 0.75em !important;
}

.p-3-em {
  padding: 1em !important;
}

.p-4-em {
  padding: 2em !important;
}

.p-5-em {
  padding: 3em !important;
}

.p-6-em {
  padding: 4em !important;
}

.p-7-em {
  padding: 5em !important;
}

.p-8-em {
  padding: 6em !important;
}

.p-9-em {
  padding: 7em !important;
}

.p-10-em {
  padding: 8em !important;
}

.p-11-em {
  padding: 9em !important;
}

.p-12-em {
  padding: 10em !important;
}

.p-13-em {
  padding: 11em !important;
}

.p-14-em {
  padding: 12em !important;
}

.p-15-em {
  padding: 13em !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-0-25 {
  padding-left: 0.0625rem !important;
  padding-right: 0.0625rem !important;
}

.px-0-5 {
  padding-left: 0.125rem !important;
  padding-right: 0.125rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-2-5 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-3-5 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.px-5-5 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.px-6 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.px-7 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.px-8 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.px-9 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.px-10 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.px-11 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.px-12 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.px-13 {
  padding-left: 11rem !important;
  padding-right: 11rem !important;
}

.px-14 {
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}

.px-15 {
  padding-left: 13rem !important;
  padding-right: 13rem !important;
}

.px-18 {
  padding-left: 16rem !important;
  padding-right: 16rem !important;
}

.px-30 {
  padding-left: 28rem !important;
  padding-right: 28rem !important;
}

.px-1-em {
  padding-left: 0.25em !important;
  padding-right: 0.25em !important;
}

.px-1-5-em {
  padding-left: 0.375em !important;
  padding-right: 0.375em !important;
}

.px-2-em {
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
}

.px-2-25-em {
  padding-left: 0.625em !important;
  padding-right: 0.625em !important;
}

.px-2-5-em {
  padding-left: 0.75em !important;
  padding-right: 0.75em !important;
}

.px-3-em {
  padding-left: 1em !important;
  padding-right: 1em !important;
}

.px-4-em {
  padding-left: 2em !important;
  padding-right: 2em !important;
}

.px-5-em {
  padding-left: 3em !important;
  padding-right: 3em !important;
}

.px-6-em {
  padding-left: 4em !important;
  padding-right: 4em !important;
}

.px-7-em {
  padding-left: 5em !important;
  padding-right: 5em !important;
}

.px-8-em {
  padding-left: 6em !important;
  padding-right: 6em !important;
}

.px-9-em {
  padding-left: 7em !important;
  padding-right: 7em !important;
}

.px-10-em {
  padding-left: 8em !important;
  padding-right: 8em !important;
}

.px-11-em {
  padding-left: 9em !important;
  padding-right: 9em !important;
}

.px-12-em {
  padding-left: 10em !important;
  padding-right: 10em !important;
}

.px-13-em {
  padding-left: 11em !important;
  padding-right: 11em !important;
}

.px-14-em {
  padding-left: 12em !important;
  padding-right: 12em !important;
}

.px-15-em {
  padding-left: 13em !important;
  padding-right: 13em !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-0-25 {
  padding-top: 0.0625rem !important;
  padding-bottom: 0.0625rem !important;
}

.py-0-5 {
  padding-top: 0.125rem !important;
  padding-bottom: 0.125rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-2-5 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-3-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-5-5 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-7 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-8 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.py-9 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.py-10 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.py-11 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.py-12 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.py-13 {
  padding-top: 11rem !important;
  padding-bottom: 11rem !important;
}

.py-14 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

.py-15 {
  padding-top: 13rem !important;
  padding-bottom: 13rem !important;
}

.py-18 {
  padding-top: 16rem !important;
  padding-bottom: 16rem !important;
}

.py-30 {
  padding-top: 28rem !important;
  padding-bottom: 28rem !important;
}

.py-1-em {
  padding-top: 0.25em !important;
  padding-bottom: 0.25em !important;
}

.py-1-5-em {
  padding-top: 0.375em !important;
  padding-bottom: 0.375em !important;
}

.py-2-em {
  padding-top: 0.5em !important;
  padding-bottom: 0.5em !important;
}

.py-2-25-em {
  padding-top: 0.625em !important;
  padding-bottom: 0.625em !important;
}

.py-2-5-em {
  padding-top: 0.75em !important;
  padding-bottom: 0.75em !important;
}

.py-3-em {
  padding-top: 1em !important;
  padding-bottom: 1em !important;
}

.py-4-em {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
}

.py-5-em {
  padding-top: 3em !important;
  padding-bottom: 3em !important;
}

.py-6-em {
  padding-top: 4em !important;
  padding-bottom: 4em !important;
}

.py-7-em {
  padding-top: 5em !important;
  padding-bottom: 5em !important;
}

.py-8-em {
  padding-top: 6em !important;
  padding-bottom: 6em !important;
}

.py-9-em {
  padding-top: 7em !important;
  padding-bottom: 7em !important;
}

.py-10-em {
  padding-top: 8em !important;
  padding-bottom: 8em !important;
}

.py-11-em {
  padding-top: 9em !important;
  padding-bottom: 9em !important;
}

.py-12-em {
  padding-top: 10em !important;
  padding-bottom: 10em !important;
}

.py-13-em {
  padding-top: 11em !important;
  padding-bottom: 11em !important;
}

.py-14-em {
  padding-top: 12em !important;
  padding-bottom: 12em !important;
}

.py-15-em {
  padding-top: 13em !important;
  padding-bottom: 13em !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-0-25 {
  padding-top: 0.0625rem !important;
}

.pt-0-5 {
  padding-top: 0.125rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-2-5 {
  padding-top: 0.75rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-3-5 {
  padding-top: 1.5rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pt-5-5 {
  padding-top: 3.5rem !important;
}

.pt-6 {
  padding-top: 4rem !important;
}

.pt-7 {
  padding-top: 5rem !important;
}

.pt-8 {
  padding-top: 6rem !important;
}

.pt-9 {
  padding-top: 7rem !important;
}

.pt-10 {
  padding-top: 8rem !important;
}

.pt-11 {
  padding-top: 9rem !important;
}

.pt-12 {
  padding-top: 10rem !important;
}

.pt-13 {
  padding-top: 11rem !important;
}

.pt-14 {
  padding-top: 12rem !important;
}

.pt-15 {
  padding-top: 13rem !important;
}

.pt-18 {
  padding-top: 16rem !important;
}

.pt-30 {
  padding-top: 28rem !important;
}

.pt-1-em {
  padding-top: 0.25em !important;
}

.pt-1-5-em {
  padding-top: 0.375em !important;
}

.pt-2-em {
  padding-top: 0.5em !important;
}

.pt-2-25-em {
  padding-top: 0.625em !important;
}

.pt-2-5-em {
  padding-top: 0.75em !important;
}

.pt-3-em {
  padding-top: 1em !important;
}

.pt-4-em {
  padding-top: 2em !important;
}

.pt-5-em {
  padding-top: 3em !important;
}

.pt-6-em {
  padding-top: 4em !important;
}

.pt-7-em {
  padding-top: 5em !important;
}

.pt-8-em {
  padding-top: 6em !important;
}

.pt-9-em {
  padding-top: 7em !important;
}

.pt-10-em {
  padding-top: 8em !important;
}

.pt-11-em {
  padding-top: 9em !important;
}

.pt-12-em {
  padding-top: 10em !important;
}

.pt-13-em {
  padding-top: 11em !important;
}

.pt-14-em {
  padding-top: 12em !important;
}

.pt-15-em {
  padding-top: 13em !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-0-25 {
  padding-right: 0.0625rem !important;
}

.pr-0-5 {
  padding-right: 0.125rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-2-5 {
  padding-right: 0.75rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pr-3-5 {
  padding-right: 1.5rem !important;
}

.pr-4 {
  padding-right: 2rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pr-5-5 {
  padding-right: 3.5rem !important;
}

.pr-6 {
  padding-right: 4rem !important;
}

.pr-7 {
  padding-right: 5rem !important;
}

.pr-8 {
  padding-right: 6rem !important;
}

.pr-9 {
  padding-right: 7rem !important;
}

.pr-10 {
  padding-right: 8rem !important;
}

.pr-11 {
  padding-right: 9rem !important;
}

.pr-12 {
  padding-right: 10rem !important;
}

.pr-13 {
  padding-right: 11rem !important;
}

.pr-14 {
  padding-right: 12rem !important;
}

.pr-15 {
  padding-right: 13rem !important;
}

.pr-18 {
  padding-right: 16rem !important;
}

.pr-30 {
  padding-right: 28rem !important;
}

.pr-1-em {
  padding-right: 0.25em !important;
}

.pr-1-5-em {
  padding-right: 0.375em !important;
}

.pr-2-em {
  padding-right: 0.5em !important;
}

.pr-2-25-em {
  padding-right: 0.625em !important;
}

.pr-2-5-em {
  padding-right: 0.75em !important;
}

.pr-3-em {
  padding-right: 1em !important;
}

.pr-4-em {
  padding-right: 2em !important;
}

.pr-5-em {
  padding-right: 3em !important;
}

.pr-6-em {
  padding-right: 4em !important;
}

.pr-7-em {
  padding-right: 5em !important;
}

.pr-8-em {
  padding-right: 6em !important;
}

.pr-9-em {
  padding-right: 7em !important;
}

.pr-10-em {
  padding-right: 8em !important;
}

.pr-11-em {
  padding-right: 9em !important;
}

.pr-12-em {
  padding-right: 10em !important;
}

.pr-13-em {
  padding-right: 11em !important;
}

.pr-14-em {
  padding-right: 12em !important;
}

.pr-15-em {
  padding-right: 13em !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-0-25 {
  padding-bottom: 0.0625rem !important;
}

.pb-0-5 {
  padding-bottom: 0.125rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-2-5 {
  padding-bottom: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-3-5 {
  padding-bottom: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pb-5-5 {
  padding-bottom: 3.5rem !important;
}

.pb-6 {
  padding-bottom: 4rem !important;
}

.pb-7 {
  padding-bottom: 5rem !important;
}

.pb-8 {
  padding-bottom: 6rem !important;
}

.pb-9 {
  padding-bottom: 7rem !important;
}

.pb-10 {
  padding-bottom: 8rem !important;
}

.pb-11 {
  padding-bottom: 9rem !important;
}

.pb-12 {
  padding-bottom: 10rem !important;
}

.pb-13 {
  padding-bottom: 11rem !important;
}

.pb-14 {
  padding-bottom: 12rem !important;
}

.pb-15 {
  padding-bottom: 13rem !important;
}

.pb-18 {
  padding-bottom: 16rem !important;
}

.pb-30 {
  padding-bottom: 28rem !important;
}

.pb-1-em {
  padding-bottom: 0.25em !important;
}

.pb-1-5-em {
  padding-bottom: 0.375em !important;
}

.pb-2-em {
  padding-bottom: 0.5em !important;
}

.pb-2-25-em {
  padding-bottom: 0.625em !important;
}

.pb-2-5-em {
  padding-bottom: 0.75em !important;
}

.pb-3-em {
  padding-bottom: 1em !important;
}

.pb-4-em {
  padding-bottom: 2em !important;
}

.pb-5-em {
  padding-bottom: 3em !important;
}

.pb-6-em {
  padding-bottom: 4em !important;
}

.pb-7-em {
  padding-bottom: 5em !important;
}

.pb-8-em {
  padding-bottom: 6em !important;
}

.pb-9-em {
  padding-bottom: 7em !important;
}

.pb-10-em {
  padding-bottom: 8em !important;
}

.pb-11-em {
  padding-bottom: 9em !important;
}

.pb-12-em {
  padding-bottom: 10em !important;
}

.pb-13-em {
  padding-bottom: 11em !important;
}

.pb-14-em {
  padding-bottom: 12em !important;
}

.pb-15-em {
  padding-bottom: 13em !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-0-25 {
  padding-left: 0.0625rem !important;
}

.pl-0-5 {
  padding-left: 0.125rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-2-5 {
  padding-left: 0.75rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pl-3-5 {
  padding-left: 1.5rem !important;
}

.pl-4 {
  padding-left: 2rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.pl-5-5 {
  padding-left: 3.5rem !important;
}

.pl-6 {
  padding-left: 4rem !important;
}

.pl-7 {
  padding-left: 5rem !important;
}

.pl-8 {
  padding-left: 6rem !important;
}

.pl-9 {
  padding-left: 7rem !important;
}

.pl-10 {
  padding-left: 8rem !important;
}

.pl-11 {
  padding-left: 9rem !important;
}

.pl-12 {
  padding-left: 10rem !important;
}

.pl-13 {
  padding-left: 11rem !important;
}

.pl-14 {
  padding-left: 12rem !important;
}

.pl-15 {
  padding-left: 13rem !important;
}

.pl-18 {
  padding-left: 16rem !important;
}

.pl-30 {
  padding-left: 28rem !important;
}

.pl-1-em {
  padding-left: 0.25em !important;
}

.pl-1-5-em {
  padding-left: 0.375em !important;
}

.pl-2-em {
  padding-left: 0.5em !important;
}

.pl-2-25-em {
  padding-left: 0.625em !important;
}

.pl-2-5-em {
  padding-left: 0.75em !important;
}

.pl-3-em {
  padding-left: 1em !important;
}

.pl-4-em {
  padding-left: 2em !important;
}

.pl-5-em {
  padding-left: 3em !important;
}

.pl-6-em {
  padding-left: 4em !important;
}

.pl-7-em {
  padding-left: 5em !important;
}

.pl-8-em {
  padding-left: 6em !important;
}

.pl-9-em {
  padding-left: 7em !important;
}

.pl-10-em {
  padding-left: 8em !important;
}

.pl-11-em {
  padding-left: 9em !important;
}

.pl-12-em {
  padding-left: 10em !important;
}

.pl-13-em {
  padding-left: 11em !important;
}

.pl-14-em {
  padding-left: 12em !important;
}

.pl-15-em {
  padding-left: 13em !important;
}

@media screen and (min-width: 360px) {
  .xs\:p-0 {
    padding: 0 !important;
  }
  .xs\:p-0-25 {
    padding: 0.0625rem !important;
  }
  .xs\:p-0-5 {
    padding: 0.125rem !important;
  }
  .xs\:p-1 {
    padding: 0.25rem !important;
  }
  .xs\:p-2 {
    padding: 0.5rem !important;
  }
  .xs\:p-2-5 {
    padding: 0.75rem !important;
  }
  .xs\:p-3 {
    padding: 1rem !important;
  }
  .xs\:p-3-5 {
    padding: 1.5rem !important;
  }
  .xs\:p-4 {
    padding: 2rem !important;
  }
  .xs\:p-5 {
    padding: 3rem !important;
  }
  .xs\:p-5-5 {
    padding: 3.5rem !important;
  }
  .xs\:p-6 {
    padding: 4rem !important;
  }
  .xs\:p-7 {
    padding: 5rem !important;
  }
  .xs\:p-8 {
    padding: 6rem !important;
  }
  .xs\:p-9 {
    padding: 7rem !important;
  }
  .xs\:p-10 {
    padding: 8rem !important;
  }
  .xs\:p-11 {
    padding: 9rem !important;
  }
  .xs\:p-12 {
    padding: 10rem !important;
  }
  .xs\:p-13 {
    padding: 11rem !important;
  }
  .xs\:p-14 {
    padding: 12rem !important;
  }
  .xs\:p-15 {
    padding: 13rem !important;
  }
  .xs\:p-18 {
    padding: 16rem !important;
  }
  .xs\:p-30 {
    padding: 28rem !important;
  }
  .xs\:p-1-em {
    padding: 0.25em !important;
  }
  .xs\:p-1-5-em {
    padding: 0.375em !important;
  }
  .xs\:p-2-em {
    padding: 0.5em !important;
  }
  .xs\:p-2-25-em {
    padding: 0.625em !important;
  }
  .xs\:p-2-5-em {
    padding: 0.75em !important;
  }
  .xs\:p-3-em {
    padding: 1em !important;
  }
  .xs\:p-4-em {
    padding: 2em !important;
  }
  .xs\:p-5-em {
    padding: 3em !important;
  }
  .xs\:p-6-em {
    padding: 4em !important;
  }
  .xs\:p-7-em {
    padding: 5em !important;
  }
  .xs\:p-8-em {
    padding: 6em !important;
  }
  .xs\:p-9-em {
    padding: 7em !important;
  }
  .xs\:p-10-em {
    padding: 8em !important;
  }
  .xs\:p-11-em {
    padding: 9em !important;
  }
  .xs\:p-12-em {
    padding: 10em !important;
  }
  .xs\:p-13-em {
    padding: 11em !important;
  }
  .xs\:p-14-em {
    padding: 12em !important;
  }
  .xs\:p-15-em {
    padding: 13em !important;
  }
  .xs\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .xs\:px-0-25 {
    padding-left: 0.0625rem !important;
    padding-right: 0.0625rem !important;
  }
  .xs\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .xs\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .xs\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xs\:px-2-5 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .xs\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xs\:px-3-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xs\:px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xs\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xs\:px-5-5 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .xs\:px-6 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xs\:px-7 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xs\:px-8 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xs\:px-9 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .xs\:px-10 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xs\:px-11 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .xs\:px-12 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .xs\:px-13 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .xs\:px-14 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .xs\:px-15 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .xs\:px-18 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .xs\:px-30 {
    padding-left: 28rem !important;
    padding-right: 28rem !important;
  }
  .xs\:px-1-em {
    padding-left: 0.25em !important;
    padding-right: 0.25em !important;
  }
  .xs\:px-1-5-em {
    padding-left: 0.375em !important;
    padding-right: 0.375em !important;
  }
  .xs\:px-2-em {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
  .xs\:px-2-25-em {
    padding-left: 0.625em !important;
    padding-right: 0.625em !important;
  }
  .xs\:px-2-5-em {
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
  }
  .xs\:px-3-em {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
  .xs\:px-4-em {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
  .xs\:px-5-em {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
  .xs\:px-6-em {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
  .xs\:px-7-em {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }
  .xs\:px-8-em {
    padding-left: 6em !important;
    padding-right: 6em !important;
  }
  .xs\:px-9-em {
    padding-left: 7em !important;
    padding-right: 7em !important;
  }
  .xs\:px-10-em {
    padding-left: 8em !important;
    padding-right: 8em !important;
  }
  .xs\:px-11-em {
    padding-left: 9em !important;
    padding-right: 9em !important;
  }
  .xs\:px-12-em {
    padding-left: 10em !important;
    padding-right: 10em !important;
  }
  .xs\:px-13-em {
    padding-left: 11em !important;
    padding-right: 11em !important;
  }
  .xs\:px-14-em {
    padding-left: 12em !important;
    padding-right: 12em !important;
  }
  .xs\:px-15-em {
    padding-left: 13em !important;
    padding-right: 13em !important;
  }
  .xs\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .xs\:py-0-25 {
    padding-top: 0.0625rem !important;
    padding-bottom: 0.0625rem !important;
  }
  .xs\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .xs\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xs\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xs\:py-2-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xs\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xs\:py-3-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xs\:py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xs\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xs\:py-5-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .xs\:py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xs\:py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xs\:py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xs\:py-9 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .xs\:py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xs\:py-11 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .xs\:py-12 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .xs\:py-13 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .xs\:py-14 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .xs\:py-15 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .xs\:py-18 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .xs\:py-30 {
    padding-top: 28rem !important;
    padding-bottom: 28rem !important;
  }
  .xs\:py-1-em {
    padding-top: 0.25em !important;
    padding-bottom: 0.25em !important;
  }
  .xs\:py-1-5-em {
    padding-top: 0.375em !important;
    padding-bottom: 0.375em !important;
  }
  .xs\:py-2-em {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
  }
  .xs\:py-2-25-em {
    padding-top: 0.625em !important;
    padding-bottom: 0.625em !important;
  }
  .xs\:py-2-5-em {
    padding-top: 0.75em !important;
    padding-bottom: 0.75em !important;
  }
  .xs\:py-3-em {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  .xs\:py-4-em {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
  }
  .xs\:py-5-em {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  .xs\:py-6-em {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .xs\:py-7-em {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
  .xs\:py-8-em {
    padding-top: 6em !important;
    padding-bottom: 6em !important;
  }
  .xs\:py-9-em {
    padding-top: 7em !important;
    padding-bottom: 7em !important;
  }
  .xs\:py-10-em {
    padding-top: 8em !important;
    padding-bottom: 8em !important;
  }
  .xs\:py-11-em {
    padding-top: 9em !important;
    padding-bottom: 9em !important;
  }
  .xs\:py-12-em {
    padding-top: 10em !important;
    padding-bottom: 10em !important;
  }
  .xs\:py-13-em {
    padding-top: 11em !important;
    padding-bottom: 11em !important;
  }
  .xs\:py-14-em {
    padding-top: 12em !important;
    padding-bottom: 12em !important;
  }
  .xs\:py-15-em {
    padding-top: 13em !important;
    padding-bottom: 13em !important;
  }
  .xs\:pt-0 {
    padding-top: 0 !important;
  }
  .xs\:pt-0-25 {
    padding-top: 0.0625rem !important;
  }
  .xs\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .xs\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .xs\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .xs\:pt-2-5 {
    padding-top: 0.75rem !important;
  }
  .xs\:pt-3 {
    padding-top: 1rem !important;
  }
  .xs\:pt-3-5 {
    padding-top: 1.5rem !important;
  }
  .xs\:pt-4 {
    padding-top: 2rem !important;
  }
  .xs\:pt-5 {
    padding-top: 3rem !important;
  }
  .xs\:pt-5-5 {
    padding-top: 3.5rem !important;
  }
  .xs\:pt-6 {
    padding-top: 4rem !important;
  }
  .xs\:pt-7 {
    padding-top: 5rem !important;
  }
  .xs\:pt-8 {
    padding-top: 6rem !important;
  }
  .xs\:pt-9 {
    padding-top: 7rem !important;
  }
  .xs\:pt-10 {
    padding-top: 8rem !important;
  }
  .xs\:pt-11 {
    padding-top: 9rem !important;
  }
  .xs\:pt-12 {
    padding-top: 10rem !important;
  }
  .xs\:pt-13 {
    padding-top: 11rem !important;
  }
  .xs\:pt-14 {
    padding-top: 12rem !important;
  }
  .xs\:pt-15 {
    padding-top: 13rem !important;
  }
  .xs\:pt-18 {
    padding-top: 16rem !important;
  }
  .xs\:pt-30 {
    padding-top: 28rem !important;
  }
  .xs\:pt-1-em {
    padding-top: 0.25em !important;
  }
  .xs\:pt-1-5-em {
    padding-top: 0.375em !important;
  }
  .xs\:pt-2-em {
    padding-top: 0.5em !important;
  }
  .xs\:pt-2-25-em {
    padding-top: 0.625em !important;
  }
  .xs\:pt-2-5-em {
    padding-top: 0.75em !important;
  }
  .xs\:pt-3-em {
    padding-top: 1em !important;
  }
  .xs\:pt-4-em {
    padding-top: 2em !important;
  }
  .xs\:pt-5-em {
    padding-top: 3em !important;
  }
  .xs\:pt-6-em {
    padding-top: 4em !important;
  }
  .xs\:pt-7-em {
    padding-top: 5em !important;
  }
  .xs\:pt-8-em {
    padding-top: 6em !important;
  }
  .xs\:pt-9-em {
    padding-top: 7em !important;
  }
  .xs\:pt-10-em {
    padding-top: 8em !important;
  }
  .xs\:pt-11-em {
    padding-top: 9em !important;
  }
  .xs\:pt-12-em {
    padding-top: 10em !important;
  }
  .xs\:pt-13-em {
    padding-top: 11em !important;
  }
  .xs\:pt-14-em {
    padding-top: 12em !important;
  }
  .xs\:pt-15-em {
    padding-top: 13em !important;
  }
  .xs\:pr-0 {
    padding-right: 0 !important;
  }
  .xs\:pr-0-25 {
    padding-right: 0.0625rem !important;
  }
  .xs\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .xs\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .xs\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .xs\:pr-2-5 {
    padding-right: 0.75rem !important;
  }
  .xs\:pr-3 {
    padding-right: 1rem !important;
  }
  .xs\:pr-3-5 {
    padding-right: 1.5rem !important;
  }
  .xs\:pr-4 {
    padding-right: 2rem !important;
  }
  .xs\:pr-5 {
    padding-right: 3rem !important;
  }
  .xs\:pr-5-5 {
    padding-right: 3.5rem !important;
  }
  .xs\:pr-6 {
    padding-right: 4rem !important;
  }
  .xs\:pr-7 {
    padding-right: 5rem !important;
  }
  .xs\:pr-8 {
    padding-right: 6rem !important;
  }
  .xs\:pr-9 {
    padding-right: 7rem !important;
  }
  .xs\:pr-10 {
    padding-right: 8rem !important;
  }
  .xs\:pr-11 {
    padding-right: 9rem !important;
  }
  .xs\:pr-12 {
    padding-right: 10rem !important;
  }
  .xs\:pr-13 {
    padding-right: 11rem !important;
  }
  .xs\:pr-14 {
    padding-right: 12rem !important;
  }
  .xs\:pr-15 {
    padding-right: 13rem !important;
  }
  .xs\:pr-18 {
    padding-right: 16rem !important;
  }
  .xs\:pr-30 {
    padding-right: 28rem !important;
  }
  .xs\:pr-1-em {
    padding-right: 0.25em !important;
  }
  .xs\:pr-1-5-em {
    padding-right: 0.375em !important;
  }
  .xs\:pr-2-em {
    padding-right: 0.5em !important;
  }
  .xs\:pr-2-25-em {
    padding-right: 0.625em !important;
  }
  .xs\:pr-2-5-em {
    padding-right: 0.75em !important;
  }
  .xs\:pr-3-em {
    padding-right: 1em !important;
  }
  .xs\:pr-4-em {
    padding-right: 2em !important;
  }
  .xs\:pr-5-em {
    padding-right: 3em !important;
  }
  .xs\:pr-6-em {
    padding-right: 4em !important;
  }
  .xs\:pr-7-em {
    padding-right: 5em !important;
  }
  .xs\:pr-8-em {
    padding-right: 6em !important;
  }
  .xs\:pr-9-em {
    padding-right: 7em !important;
  }
  .xs\:pr-10-em {
    padding-right: 8em !important;
  }
  .xs\:pr-11-em {
    padding-right: 9em !important;
  }
  .xs\:pr-12-em {
    padding-right: 10em !important;
  }
  .xs\:pr-13-em {
    padding-right: 11em !important;
  }
  .xs\:pr-14-em {
    padding-right: 12em !important;
  }
  .xs\:pr-15-em {
    padding-right: 13em !important;
  }
  .xs\:pb-0 {
    padding-bottom: 0 !important;
  }
  .xs\:pb-0-25 {
    padding-bottom: 0.0625rem !important;
  }
  .xs\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .xs\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xs\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xs\:pb-2-5 {
    padding-bottom: 0.75rem !important;
  }
  .xs\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .xs\:pb-3-5 {
    padding-bottom: 1.5rem !important;
  }
  .xs\:pb-4 {
    padding-bottom: 2rem !important;
  }
  .xs\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .xs\:pb-5-5 {
    padding-bottom: 3.5rem !important;
  }
  .xs\:pb-6 {
    padding-bottom: 4rem !important;
  }
  .xs\:pb-7 {
    padding-bottom: 5rem !important;
  }
  .xs\:pb-8 {
    padding-bottom: 6rem !important;
  }
  .xs\:pb-9 {
    padding-bottom: 7rem !important;
  }
  .xs\:pb-10 {
    padding-bottom: 8rem !important;
  }
  .xs\:pb-11 {
    padding-bottom: 9rem !important;
  }
  .xs\:pb-12 {
    padding-bottom: 10rem !important;
  }
  .xs\:pb-13 {
    padding-bottom: 11rem !important;
  }
  .xs\:pb-14 {
    padding-bottom: 12rem !important;
  }
  .xs\:pb-15 {
    padding-bottom: 13rem !important;
  }
  .xs\:pb-18 {
    padding-bottom: 16rem !important;
  }
  .xs\:pb-30 {
    padding-bottom: 28rem !important;
  }
  .xs\:pb-1-em {
    padding-bottom: 0.25em !important;
  }
  .xs\:pb-1-5-em {
    padding-bottom: 0.375em !important;
  }
  .xs\:pb-2-em {
    padding-bottom: 0.5em !important;
  }
  .xs\:pb-2-25-em {
    padding-bottom: 0.625em !important;
  }
  .xs\:pb-2-5-em {
    padding-bottom: 0.75em !important;
  }
  .xs\:pb-3-em {
    padding-bottom: 1em !important;
  }
  .xs\:pb-4-em {
    padding-bottom: 2em !important;
  }
  .xs\:pb-5-em {
    padding-bottom: 3em !important;
  }
  .xs\:pb-6-em {
    padding-bottom: 4em !important;
  }
  .xs\:pb-7-em {
    padding-bottom: 5em !important;
  }
  .xs\:pb-8-em {
    padding-bottom: 6em !important;
  }
  .xs\:pb-9-em {
    padding-bottom: 7em !important;
  }
  .xs\:pb-10-em {
    padding-bottom: 8em !important;
  }
  .xs\:pb-11-em {
    padding-bottom: 9em !important;
  }
  .xs\:pb-12-em {
    padding-bottom: 10em !important;
  }
  .xs\:pb-13-em {
    padding-bottom: 11em !important;
  }
  .xs\:pb-14-em {
    padding-bottom: 12em !important;
  }
  .xs\:pb-15-em {
    padding-bottom: 13em !important;
  }
  .xs\:pl-0 {
    padding-left: 0 !important;
  }
  .xs\:pl-0-25 {
    padding-left: 0.0625rem !important;
  }
  .xs\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .xs\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .xs\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .xs\:pl-2-5 {
    padding-left: 0.75rem !important;
  }
  .xs\:pl-3 {
    padding-left: 1rem !important;
  }
  .xs\:pl-3-5 {
    padding-left: 1.5rem !important;
  }
  .xs\:pl-4 {
    padding-left: 2rem !important;
  }
  .xs\:pl-5 {
    padding-left: 3rem !important;
  }
  .xs\:pl-5-5 {
    padding-left: 3.5rem !important;
  }
  .xs\:pl-6 {
    padding-left: 4rem !important;
  }
  .xs\:pl-7 {
    padding-left: 5rem !important;
  }
  .xs\:pl-8 {
    padding-left: 6rem !important;
  }
  .xs\:pl-9 {
    padding-left: 7rem !important;
  }
  .xs\:pl-10 {
    padding-left: 8rem !important;
  }
  .xs\:pl-11 {
    padding-left: 9rem !important;
  }
  .xs\:pl-12 {
    padding-left: 10rem !important;
  }
  .xs\:pl-13 {
    padding-left: 11rem !important;
  }
  .xs\:pl-14 {
    padding-left: 12rem !important;
  }
  .xs\:pl-15 {
    padding-left: 13rem !important;
  }
  .xs\:pl-18 {
    padding-left: 16rem !important;
  }
  .xs\:pl-30 {
    padding-left: 28rem !important;
  }
  .xs\:pl-1-em {
    padding-left: 0.25em !important;
  }
  .xs\:pl-1-5-em {
    padding-left: 0.375em !important;
  }
  .xs\:pl-2-em {
    padding-left: 0.5em !important;
  }
  .xs\:pl-2-25-em {
    padding-left: 0.625em !important;
  }
  .xs\:pl-2-5-em {
    padding-left: 0.75em !important;
  }
  .xs\:pl-3-em {
    padding-left: 1em !important;
  }
  .xs\:pl-4-em {
    padding-left: 2em !important;
  }
  .xs\:pl-5-em {
    padding-left: 3em !important;
  }
  .xs\:pl-6-em {
    padding-left: 4em !important;
  }
  .xs\:pl-7-em {
    padding-left: 5em !important;
  }
  .xs\:pl-8-em {
    padding-left: 6em !important;
  }
  .xs\:pl-9-em {
    padding-left: 7em !important;
  }
  .xs\:pl-10-em {
    padding-left: 8em !important;
  }
  .xs\:pl-11-em {
    padding-left: 9em !important;
  }
  .xs\:pl-12-em {
    padding-left: 10em !important;
  }
  .xs\:pl-13-em {
    padding-left: 11em !important;
  }
  .xs\:pl-14-em {
    padding-left: 12em !important;
  }
  .xs\:pl-15-em {
    padding-left: 13em !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:p-0 {
    padding: 0 !important;
  }
  .sm\:p-0-25 {
    padding: 0.0625rem !important;
  }
  .sm\:p-0-5 {
    padding: 0.125rem !important;
  }
  .sm\:p-1 {
    padding: 0.25rem !important;
  }
  .sm\:p-2 {
    padding: 0.5rem !important;
  }
  .sm\:p-2-5 {
    padding: 0.75rem !important;
  }
  .sm\:p-3 {
    padding: 1rem !important;
  }
  .sm\:p-3-5 {
    padding: 1.5rem !important;
  }
  .sm\:p-4 {
    padding: 2rem !important;
  }
  .sm\:p-5 {
    padding: 3rem !important;
  }
  .sm\:p-5-5 {
    padding: 3.5rem !important;
  }
  .sm\:p-6 {
    padding: 4rem !important;
  }
  .sm\:p-7 {
    padding: 5rem !important;
  }
  .sm\:p-8 {
    padding: 6rem !important;
  }
  .sm\:p-9 {
    padding: 7rem !important;
  }
  .sm\:p-10 {
    padding: 8rem !important;
  }
  .sm\:p-11 {
    padding: 9rem !important;
  }
  .sm\:p-12 {
    padding: 10rem !important;
  }
  .sm\:p-13 {
    padding: 11rem !important;
  }
  .sm\:p-14 {
    padding: 12rem !important;
  }
  .sm\:p-15 {
    padding: 13rem !important;
  }
  .sm\:p-18 {
    padding: 16rem !important;
  }
  .sm\:p-30 {
    padding: 28rem !important;
  }
  .sm\:p-1-em {
    padding: 0.25em !important;
  }
  .sm\:p-1-5-em {
    padding: 0.375em !important;
  }
  .sm\:p-2-em {
    padding: 0.5em !important;
  }
  .sm\:p-2-25-em {
    padding: 0.625em !important;
  }
  .sm\:p-2-5-em {
    padding: 0.75em !important;
  }
  .sm\:p-3-em {
    padding: 1em !important;
  }
  .sm\:p-4-em {
    padding: 2em !important;
  }
  .sm\:p-5-em {
    padding: 3em !important;
  }
  .sm\:p-6-em {
    padding: 4em !important;
  }
  .sm\:p-7-em {
    padding: 5em !important;
  }
  .sm\:p-8-em {
    padding: 6em !important;
  }
  .sm\:p-9-em {
    padding: 7em !important;
  }
  .sm\:p-10-em {
    padding: 8em !important;
  }
  .sm\:p-11-em {
    padding: 9em !important;
  }
  .sm\:p-12-em {
    padding: 10em !important;
  }
  .sm\:p-13-em {
    padding: 11em !important;
  }
  .sm\:p-14-em {
    padding: 12em !important;
  }
  .sm\:p-15-em {
    padding: 13em !important;
  }
  .sm\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .sm\:px-0-25 {
    padding-left: 0.0625rem !important;
    padding-right: 0.0625rem !important;
  }
  .sm\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .sm\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .sm\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .sm\:px-2-5 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .sm\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .sm\:px-3-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .sm\:px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .sm\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .sm\:px-5-5 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .sm\:px-6 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .sm\:px-7 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .sm\:px-8 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .sm\:px-9 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .sm\:px-10 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .sm\:px-11 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .sm\:px-12 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .sm\:px-13 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .sm\:px-14 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .sm\:px-15 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .sm\:px-18 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .sm\:px-30 {
    padding-left: 28rem !important;
    padding-right: 28rem !important;
  }
  .sm\:px-1-em {
    padding-left: 0.25em !important;
    padding-right: 0.25em !important;
  }
  .sm\:px-1-5-em {
    padding-left: 0.375em !important;
    padding-right: 0.375em !important;
  }
  .sm\:px-2-em {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
  .sm\:px-2-25-em {
    padding-left: 0.625em !important;
    padding-right: 0.625em !important;
  }
  .sm\:px-2-5-em {
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
  }
  .sm\:px-3-em {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
  .sm\:px-4-em {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
  .sm\:px-5-em {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
  .sm\:px-6-em {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
  .sm\:px-7-em {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }
  .sm\:px-8-em {
    padding-left: 6em !important;
    padding-right: 6em !important;
  }
  .sm\:px-9-em {
    padding-left: 7em !important;
    padding-right: 7em !important;
  }
  .sm\:px-10-em {
    padding-left: 8em !important;
    padding-right: 8em !important;
  }
  .sm\:px-11-em {
    padding-left: 9em !important;
    padding-right: 9em !important;
  }
  .sm\:px-12-em {
    padding-left: 10em !important;
    padding-right: 10em !important;
  }
  .sm\:px-13-em {
    padding-left: 11em !important;
    padding-right: 11em !important;
  }
  .sm\:px-14-em {
    padding-left: 12em !important;
    padding-right: 12em !important;
  }
  .sm\:px-15-em {
    padding-left: 13em !important;
    padding-right: 13em !important;
  }
  .sm\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .sm\:py-0-25 {
    padding-top: 0.0625rem !important;
    padding-bottom: 0.0625rem !important;
  }
  .sm\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .sm\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .sm\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .sm\:py-2-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .sm\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .sm\:py-3-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .sm\:py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .sm\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .sm\:py-5-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .sm\:py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .sm\:py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .sm\:py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .sm\:py-9 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .sm\:py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .sm\:py-11 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .sm\:py-12 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .sm\:py-13 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .sm\:py-14 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .sm\:py-15 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .sm\:py-18 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .sm\:py-30 {
    padding-top: 28rem !important;
    padding-bottom: 28rem !important;
  }
  .sm\:py-1-em {
    padding-top: 0.25em !important;
    padding-bottom: 0.25em !important;
  }
  .sm\:py-1-5-em {
    padding-top: 0.375em !important;
    padding-bottom: 0.375em !important;
  }
  .sm\:py-2-em {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
  }
  .sm\:py-2-25-em {
    padding-top: 0.625em !important;
    padding-bottom: 0.625em !important;
  }
  .sm\:py-2-5-em {
    padding-top: 0.75em !important;
    padding-bottom: 0.75em !important;
  }
  .sm\:py-3-em {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  .sm\:py-4-em {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
  }
  .sm\:py-5-em {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  .sm\:py-6-em {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .sm\:py-7-em {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
  .sm\:py-8-em {
    padding-top: 6em !important;
    padding-bottom: 6em !important;
  }
  .sm\:py-9-em {
    padding-top: 7em !important;
    padding-bottom: 7em !important;
  }
  .sm\:py-10-em {
    padding-top: 8em !important;
    padding-bottom: 8em !important;
  }
  .sm\:py-11-em {
    padding-top: 9em !important;
    padding-bottom: 9em !important;
  }
  .sm\:py-12-em {
    padding-top: 10em !important;
    padding-bottom: 10em !important;
  }
  .sm\:py-13-em {
    padding-top: 11em !important;
    padding-bottom: 11em !important;
  }
  .sm\:py-14-em {
    padding-top: 12em !important;
    padding-bottom: 12em !important;
  }
  .sm\:py-15-em {
    padding-top: 13em !important;
    padding-bottom: 13em !important;
  }
  .sm\:pt-0 {
    padding-top: 0 !important;
  }
  .sm\:pt-0-25 {
    padding-top: 0.0625rem !important;
  }
  .sm\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .sm\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .sm\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .sm\:pt-2-5 {
    padding-top: 0.75rem !important;
  }
  .sm\:pt-3 {
    padding-top: 1rem !important;
  }
  .sm\:pt-3-5 {
    padding-top: 1.5rem !important;
  }
  .sm\:pt-4 {
    padding-top: 2rem !important;
  }
  .sm\:pt-5 {
    padding-top: 3rem !important;
  }
  .sm\:pt-5-5 {
    padding-top: 3.5rem !important;
  }
  .sm\:pt-6 {
    padding-top: 4rem !important;
  }
  .sm\:pt-7 {
    padding-top: 5rem !important;
  }
  .sm\:pt-8 {
    padding-top: 6rem !important;
  }
  .sm\:pt-9 {
    padding-top: 7rem !important;
  }
  .sm\:pt-10 {
    padding-top: 8rem !important;
  }
  .sm\:pt-11 {
    padding-top: 9rem !important;
  }
  .sm\:pt-12 {
    padding-top: 10rem !important;
  }
  .sm\:pt-13 {
    padding-top: 11rem !important;
  }
  .sm\:pt-14 {
    padding-top: 12rem !important;
  }
  .sm\:pt-15 {
    padding-top: 13rem !important;
  }
  .sm\:pt-18 {
    padding-top: 16rem !important;
  }
  .sm\:pt-30 {
    padding-top: 28rem !important;
  }
  .sm\:pt-1-em {
    padding-top: 0.25em !important;
  }
  .sm\:pt-1-5-em {
    padding-top: 0.375em !important;
  }
  .sm\:pt-2-em {
    padding-top: 0.5em !important;
  }
  .sm\:pt-2-25-em {
    padding-top: 0.625em !important;
  }
  .sm\:pt-2-5-em {
    padding-top: 0.75em !important;
  }
  .sm\:pt-3-em {
    padding-top: 1em !important;
  }
  .sm\:pt-4-em {
    padding-top: 2em !important;
  }
  .sm\:pt-5-em {
    padding-top: 3em !important;
  }
  .sm\:pt-6-em {
    padding-top: 4em !important;
  }
  .sm\:pt-7-em {
    padding-top: 5em !important;
  }
  .sm\:pt-8-em {
    padding-top: 6em !important;
  }
  .sm\:pt-9-em {
    padding-top: 7em !important;
  }
  .sm\:pt-10-em {
    padding-top: 8em !important;
  }
  .sm\:pt-11-em {
    padding-top: 9em !important;
  }
  .sm\:pt-12-em {
    padding-top: 10em !important;
  }
  .sm\:pt-13-em {
    padding-top: 11em !important;
  }
  .sm\:pt-14-em {
    padding-top: 12em !important;
  }
  .sm\:pt-15-em {
    padding-top: 13em !important;
  }
  .sm\:pr-0 {
    padding-right: 0 !important;
  }
  .sm\:pr-0-25 {
    padding-right: 0.0625rem !important;
  }
  .sm\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .sm\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .sm\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .sm\:pr-2-5 {
    padding-right: 0.75rem !important;
  }
  .sm\:pr-3 {
    padding-right: 1rem !important;
  }
  .sm\:pr-3-5 {
    padding-right: 1.5rem !important;
  }
  .sm\:pr-4 {
    padding-right: 2rem !important;
  }
  .sm\:pr-5 {
    padding-right: 3rem !important;
  }
  .sm\:pr-5-5 {
    padding-right: 3.5rem !important;
  }
  .sm\:pr-6 {
    padding-right: 4rem !important;
  }
  .sm\:pr-7 {
    padding-right: 5rem !important;
  }
  .sm\:pr-8 {
    padding-right: 6rem !important;
  }
  .sm\:pr-9 {
    padding-right: 7rem !important;
  }
  .sm\:pr-10 {
    padding-right: 8rem !important;
  }
  .sm\:pr-11 {
    padding-right: 9rem !important;
  }
  .sm\:pr-12 {
    padding-right: 10rem !important;
  }
  .sm\:pr-13 {
    padding-right: 11rem !important;
  }
  .sm\:pr-14 {
    padding-right: 12rem !important;
  }
  .sm\:pr-15 {
    padding-right: 13rem !important;
  }
  .sm\:pr-18 {
    padding-right: 16rem !important;
  }
  .sm\:pr-30 {
    padding-right: 28rem !important;
  }
  .sm\:pr-1-em {
    padding-right: 0.25em !important;
  }
  .sm\:pr-1-5-em {
    padding-right: 0.375em !important;
  }
  .sm\:pr-2-em {
    padding-right: 0.5em !important;
  }
  .sm\:pr-2-25-em {
    padding-right: 0.625em !important;
  }
  .sm\:pr-2-5-em {
    padding-right: 0.75em !important;
  }
  .sm\:pr-3-em {
    padding-right: 1em !important;
  }
  .sm\:pr-4-em {
    padding-right: 2em !important;
  }
  .sm\:pr-5-em {
    padding-right: 3em !important;
  }
  .sm\:pr-6-em {
    padding-right: 4em !important;
  }
  .sm\:pr-7-em {
    padding-right: 5em !important;
  }
  .sm\:pr-8-em {
    padding-right: 6em !important;
  }
  .sm\:pr-9-em {
    padding-right: 7em !important;
  }
  .sm\:pr-10-em {
    padding-right: 8em !important;
  }
  .sm\:pr-11-em {
    padding-right: 9em !important;
  }
  .sm\:pr-12-em {
    padding-right: 10em !important;
  }
  .sm\:pr-13-em {
    padding-right: 11em !important;
  }
  .sm\:pr-14-em {
    padding-right: 12em !important;
  }
  .sm\:pr-15-em {
    padding-right: 13em !important;
  }
  .sm\:pb-0 {
    padding-bottom: 0 !important;
  }
  .sm\:pb-0-25 {
    padding-bottom: 0.0625rem !important;
  }
  .sm\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .sm\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .sm\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .sm\:pb-2-5 {
    padding-bottom: 0.75rem !important;
  }
  .sm\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .sm\:pb-3-5 {
    padding-bottom: 1.5rem !important;
  }
  .sm\:pb-4 {
    padding-bottom: 2rem !important;
  }
  .sm\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .sm\:pb-5-5 {
    padding-bottom: 3.5rem !important;
  }
  .sm\:pb-6 {
    padding-bottom: 4rem !important;
  }
  .sm\:pb-7 {
    padding-bottom: 5rem !important;
  }
  .sm\:pb-8 {
    padding-bottom: 6rem !important;
  }
  .sm\:pb-9 {
    padding-bottom: 7rem !important;
  }
  .sm\:pb-10 {
    padding-bottom: 8rem !important;
  }
  .sm\:pb-11 {
    padding-bottom: 9rem !important;
  }
  .sm\:pb-12 {
    padding-bottom: 10rem !important;
  }
  .sm\:pb-13 {
    padding-bottom: 11rem !important;
  }
  .sm\:pb-14 {
    padding-bottom: 12rem !important;
  }
  .sm\:pb-15 {
    padding-bottom: 13rem !important;
  }
  .sm\:pb-18 {
    padding-bottom: 16rem !important;
  }
  .sm\:pb-30 {
    padding-bottom: 28rem !important;
  }
  .sm\:pb-1-em {
    padding-bottom: 0.25em !important;
  }
  .sm\:pb-1-5-em {
    padding-bottom: 0.375em !important;
  }
  .sm\:pb-2-em {
    padding-bottom: 0.5em !important;
  }
  .sm\:pb-2-25-em {
    padding-bottom: 0.625em !important;
  }
  .sm\:pb-2-5-em {
    padding-bottom: 0.75em !important;
  }
  .sm\:pb-3-em {
    padding-bottom: 1em !important;
  }
  .sm\:pb-4-em {
    padding-bottom: 2em !important;
  }
  .sm\:pb-5-em {
    padding-bottom: 3em !important;
  }
  .sm\:pb-6-em {
    padding-bottom: 4em !important;
  }
  .sm\:pb-7-em {
    padding-bottom: 5em !important;
  }
  .sm\:pb-8-em {
    padding-bottom: 6em !important;
  }
  .sm\:pb-9-em {
    padding-bottom: 7em !important;
  }
  .sm\:pb-10-em {
    padding-bottom: 8em !important;
  }
  .sm\:pb-11-em {
    padding-bottom: 9em !important;
  }
  .sm\:pb-12-em {
    padding-bottom: 10em !important;
  }
  .sm\:pb-13-em {
    padding-bottom: 11em !important;
  }
  .sm\:pb-14-em {
    padding-bottom: 12em !important;
  }
  .sm\:pb-15-em {
    padding-bottom: 13em !important;
  }
  .sm\:pl-0 {
    padding-left: 0 !important;
  }
  .sm\:pl-0-25 {
    padding-left: 0.0625rem !important;
  }
  .sm\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .sm\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .sm\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .sm\:pl-2-5 {
    padding-left: 0.75rem !important;
  }
  .sm\:pl-3 {
    padding-left: 1rem !important;
  }
  .sm\:pl-3-5 {
    padding-left: 1.5rem !important;
  }
  .sm\:pl-4 {
    padding-left: 2rem !important;
  }
  .sm\:pl-5 {
    padding-left: 3rem !important;
  }
  .sm\:pl-5-5 {
    padding-left: 3.5rem !important;
  }
  .sm\:pl-6 {
    padding-left: 4rem !important;
  }
  .sm\:pl-7 {
    padding-left: 5rem !important;
  }
  .sm\:pl-8 {
    padding-left: 6rem !important;
  }
  .sm\:pl-9 {
    padding-left: 7rem !important;
  }
  .sm\:pl-10 {
    padding-left: 8rem !important;
  }
  .sm\:pl-11 {
    padding-left: 9rem !important;
  }
  .sm\:pl-12 {
    padding-left: 10rem !important;
  }
  .sm\:pl-13 {
    padding-left: 11rem !important;
  }
  .sm\:pl-14 {
    padding-left: 12rem !important;
  }
  .sm\:pl-15 {
    padding-left: 13rem !important;
  }
  .sm\:pl-18 {
    padding-left: 16rem !important;
  }
  .sm\:pl-30 {
    padding-left: 28rem !important;
  }
  .sm\:pl-1-em {
    padding-left: 0.25em !important;
  }
  .sm\:pl-1-5-em {
    padding-left: 0.375em !important;
  }
  .sm\:pl-2-em {
    padding-left: 0.5em !important;
  }
  .sm\:pl-2-25-em {
    padding-left: 0.625em !important;
  }
  .sm\:pl-2-5-em {
    padding-left: 0.75em !important;
  }
  .sm\:pl-3-em {
    padding-left: 1em !important;
  }
  .sm\:pl-4-em {
    padding-left: 2em !important;
  }
  .sm\:pl-5-em {
    padding-left: 3em !important;
  }
  .sm\:pl-6-em {
    padding-left: 4em !important;
  }
  .sm\:pl-7-em {
    padding-left: 5em !important;
  }
  .sm\:pl-8-em {
    padding-left: 6em !important;
  }
  .sm\:pl-9-em {
    padding-left: 7em !important;
  }
  .sm\:pl-10-em {
    padding-left: 8em !important;
  }
  .sm\:pl-11-em {
    padding-left: 9em !important;
  }
  .sm\:pl-12-em {
    padding-left: 10em !important;
  }
  .sm\:pl-13-em {
    padding-left: 11em !important;
  }
  .sm\:pl-14-em {
    padding-left: 12em !important;
  }
  .sm\:pl-15-em {
    padding-left: 13em !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:p-0 {
    padding: 0 !important;
  }
  .md\:p-0-25 {
    padding: 0.0625rem !important;
  }
  .md\:p-0-5 {
    padding: 0.125rem !important;
  }
  .md\:p-1 {
    padding: 0.25rem !important;
  }
  .md\:p-2 {
    padding: 0.5rem !important;
  }
  .md\:p-2-5 {
    padding: 0.75rem !important;
  }
  .md\:p-3 {
    padding: 1rem !important;
  }
  .md\:p-3-5 {
    padding: 1.5rem !important;
  }
  .md\:p-4 {
    padding: 2rem !important;
  }
  .md\:p-5 {
    padding: 3rem !important;
  }
  .md\:p-5-5 {
    padding: 3.5rem !important;
  }
  .md\:p-6 {
    padding: 4rem !important;
  }
  .md\:p-7 {
    padding: 5rem !important;
  }
  .md\:p-8 {
    padding: 6rem !important;
  }
  .md\:p-9 {
    padding: 7rem !important;
  }
  .md\:p-10 {
    padding: 8rem !important;
  }
  .md\:p-11 {
    padding: 9rem !important;
  }
  .md\:p-12 {
    padding: 10rem !important;
  }
  .md\:p-13 {
    padding: 11rem !important;
  }
  .md\:p-14 {
    padding: 12rem !important;
  }
  .md\:p-15 {
    padding: 13rem !important;
  }
  .md\:p-18 {
    padding: 16rem !important;
  }
  .md\:p-30 {
    padding: 28rem !important;
  }
  .md\:p-1-em {
    padding: 0.25em !important;
  }
  .md\:p-1-5-em {
    padding: 0.375em !important;
  }
  .md\:p-2-em {
    padding: 0.5em !important;
  }
  .md\:p-2-25-em {
    padding: 0.625em !important;
  }
  .md\:p-2-5-em {
    padding: 0.75em !important;
  }
  .md\:p-3-em {
    padding: 1em !important;
  }
  .md\:p-4-em {
    padding: 2em !important;
  }
  .md\:p-5-em {
    padding: 3em !important;
  }
  .md\:p-6-em {
    padding: 4em !important;
  }
  .md\:p-7-em {
    padding: 5em !important;
  }
  .md\:p-8-em {
    padding: 6em !important;
  }
  .md\:p-9-em {
    padding: 7em !important;
  }
  .md\:p-10-em {
    padding: 8em !important;
  }
  .md\:p-11-em {
    padding: 9em !important;
  }
  .md\:p-12-em {
    padding: 10em !important;
  }
  .md\:p-13-em {
    padding: 11em !important;
  }
  .md\:p-14-em {
    padding: 12em !important;
  }
  .md\:p-15-em {
    padding: 13em !important;
  }
  .md\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .md\:px-0-25 {
    padding-left: 0.0625rem !important;
    padding-right: 0.0625rem !important;
  }
  .md\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .md\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .md\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .md\:px-2-5 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .md\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .md\:px-3-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .md\:px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .md\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .md\:px-5-5 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .md\:px-6 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .md\:px-7 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .md\:px-8 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .md\:px-9 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .md\:px-10 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .md\:px-11 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .md\:px-12 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .md\:px-13 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .md\:px-14 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .md\:px-15 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .md\:px-18 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .md\:px-30 {
    padding-left: 28rem !important;
    padding-right: 28rem !important;
  }
  .md\:px-1-em {
    padding-left: 0.25em !important;
    padding-right: 0.25em !important;
  }
  .md\:px-1-5-em {
    padding-left: 0.375em !important;
    padding-right: 0.375em !important;
  }
  .md\:px-2-em {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
  .md\:px-2-25-em {
    padding-left: 0.625em !important;
    padding-right: 0.625em !important;
  }
  .md\:px-2-5-em {
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
  }
  .md\:px-3-em {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
  .md\:px-4-em {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
  .md\:px-5-em {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
  .md\:px-6-em {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
  .md\:px-7-em {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }
  .md\:px-8-em {
    padding-left: 6em !important;
    padding-right: 6em !important;
  }
  .md\:px-9-em {
    padding-left: 7em !important;
    padding-right: 7em !important;
  }
  .md\:px-10-em {
    padding-left: 8em !important;
    padding-right: 8em !important;
  }
  .md\:px-11-em {
    padding-left: 9em !important;
    padding-right: 9em !important;
  }
  .md\:px-12-em {
    padding-left: 10em !important;
    padding-right: 10em !important;
  }
  .md\:px-13-em {
    padding-left: 11em !important;
    padding-right: 11em !important;
  }
  .md\:px-14-em {
    padding-left: 12em !important;
    padding-right: 12em !important;
  }
  .md\:px-15-em {
    padding-left: 13em !important;
    padding-right: 13em !important;
  }
  .md\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .md\:py-0-25 {
    padding-top: 0.0625rem !important;
    padding-bottom: 0.0625rem !important;
  }
  .md\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .md\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .md\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .md\:py-2-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .md\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .md\:py-3-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .md\:py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .md\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .md\:py-5-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .md\:py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .md\:py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .md\:py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .md\:py-9 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .md\:py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .md\:py-11 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .md\:py-12 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .md\:py-13 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .md\:py-14 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .md\:py-15 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .md\:py-18 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .md\:py-30 {
    padding-top: 28rem !important;
    padding-bottom: 28rem !important;
  }
  .md\:py-1-em {
    padding-top: 0.25em !important;
    padding-bottom: 0.25em !important;
  }
  .md\:py-1-5-em {
    padding-top: 0.375em !important;
    padding-bottom: 0.375em !important;
  }
  .md\:py-2-em {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
  }
  .md\:py-2-25-em {
    padding-top: 0.625em !important;
    padding-bottom: 0.625em !important;
  }
  .md\:py-2-5-em {
    padding-top: 0.75em !important;
    padding-bottom: 0.75em !important;
  }
  .md\:py-3-em {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  .md\:py-4-em {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
  }
  .md\:py-5-em {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  .md\:py-6-em {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .md\:py-7-em {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
  .md\:py-8-em {
    padding-top: 6em !important;
    padding-bottom: 6em !important;
  }
  .md\:py-9-em {
    padding-top: 7em !important;
    padding-bottom: 7em !important;
  }
  .md\:py-10-em {
    padding-top: 8em !important;
    padding-bottom: 8em !important;
  }
  .md\:py-11-em {
    padding-top: 9em !important;
    padding-bottom: 9em !important;
  }
  .md\:py-12-em {
    padding-top: 10em !important;
    padding-bottom: 10em !important;
  }
  .md\:py-13-em {
    padding-top: 11em !important;
    padding-bottom: 11em !important;
  }
  .md\:py-14-em {
    padding-top: 12em !important;
    padding-bottom: 12em !important;
  }
  .md\:py-15-em {
    padding-top: 13em !important;
    padding-bottom: 13em !important;
  }
  .md\:pt-0 {
    padding-top: 0 !important;
  }
  .md\:pt-0-25 {
    padding-top: 0.0625rem !important;
  }
  .md\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .md\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .md\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .md\:pt-2-5 {
    padding-top: 0.75rem !important;
  }
  .md\:pt-3 {
    padding-top: 1rem !important;
  }
  .md\:pt-3-5 {
    padding-top: 1.5rem !important;
  }
  .md\:pt-4 {
    padding-top: 2rem !important;
  }
  .md\:pt-5 {
    padding-top: 3rem !important;
  }
  .md\:pt-5-5 {
    padding-top: 3.5rem !important;
  }
  .md\:pt-6 {
    padding-top: 4rem !important;
  }
  .md\:pt-7 {
    padding-top: 5rem !important;
  }
  .md\:pt-8 {
    padding-top: 6rem !important;
  }
  .md\:pt-9 {
    padding-top: 7rem !important;
  }
  .md\:pt-10 {
    padding-top: 8rem !important;
  }
  .md\:pt-11 {
    padding-top: 9rem !important;
  }
  .md\:pt-12 {
    padding-top: 10rem !important;
  }
  .md\:pt-13 {
    padding-top: 11rem !important;
  }
  .md\:pt-14 {
    padding-top: 12rem !important;
  }
  .md\:pt-15 {
    padding-top: 13rem !important;
  }
  .md\:pt-18 {
    padding-top: 16rem !important;
  }
  .md\:pt-30 {
    padding-top: 28rem !important;
  }
  .md\:pt-1-em {
    padding-top: 0.25em !important;
  }
  .md\:pt-1-5-em {
    padding-top: 0.375em !important;
  }
  .md\:pt-2-em {
    padding-top: 0.5em !important;
  }
  .md\:pt-2-25-em {
    padding-top: 0.625em !important;
  }
  .md\:pt-2-5-em {
    padding-top: 0.75em !important;
  }
  .md\:pt-3-em {
    padding-top: 1em !important;
  }
  .md\:pt-4-em {
    padding-top: 2em !important;
  }
  .md\:pt-5-em {
    padding-top: 3em !important;
  }
  .md\:pt-6-em {
    padding-top: 4em !important;
  }
  .md\:pt-7-em {
    padding-top: 5em !important;
  }
  .md\:pt-8-em {
    padding-top: 6em !important;
  }
  .md\:pt-9-em {
    padding-top: 7em !important;
  }
  .md\:pt-10-em {
    padding-top: 8em !important;
  }
  .md\:pt-11-em {
    padding-top: 9em !important;
  }
  .md\:pt-12-em {
    padding-top: 10em !important;
  }
  .md\:pt-13-em {
    padding-top: 11em !important;
  }
  .md\:pt-14-em {
    padding-top: 12em !important;
  }
  .md\:pt-15-em {
    padding-top: 13em !important;
  }
  .md\:pr-0 {
    padding-right: 0 !important;
  }
  .md\:pr-0-25 {
    padding-right: 0.0625rem !important;
  }
  .md\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .md\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .md\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .md\:pr-2-5 {
    padding-right: 0.75rem !important;
  }
  .md\:pr-3 {
    padding-right: 1rem !important;
  }
  .md\:pr-3-5 {
    padding-right: 1.5rem !important;
  }
  .md\:pr-4 {
    padding-right: 2rem !important;
  }
  .md\:pr-5 {
    padding-right: 3rem !important;
  }
  .md\:pr-5-5 {
    padding-right: 3.5rem !important;
  }
  .md\:pr-6 {
    padding-right: 4rem !important;
  }
  .md\:pr-7 {
    padding-right: 5rem !important;
  }
  .md\:pr-8 {
    padding-right: 6rem !important;
  }
  .md\:pr-9 {
    padding-right: 7rem !important;
  }
  .md\:pr-10 {
    padding-right: 8rem !important;
  }
  .md\:pr-11 {
    padding-right: 9rem !important;
  }
  .md\:pr-12 {
    padding-right: 10rem !important;
  }
  .md\:pr-13 {
    padding-right: 11rem !important;
  }
  .md\:pr-14 {
    padding-right: 12rem !important;
  }
  .md\:pr-15 {
    padding-right: 13rem !important;
  }
  .md\:pr-18 {
    padding-right: 16rem !important;
  }
  .md\:pr-30 {
    padding-right: 28rem !important;
  }
  .md\:pr-1-em {
    padding-right: 0.25em !important;
  }
  .md\:pr-1-5-em {
    padding-right: 0.375em !important;
  }
  .md\:pr-2-em {
    padding-right: 0.5em !important;
  }
  .md\:pr-2-25-em {
    padding-right: 0.625em !important;
  }
  .md\:pr-2-5-em {
    padding-right: 0.75em !important;
  }
  .md\:pr-3-em {
    padding-right: 1em !important;
  }
  .md\:pr-4-em {
    padding-right: 2em !important;
  }
  .md\:pr-5-em {
    padding-right: 3em !important;
  }
  .md\:pr-6-em {
    padding-right: 4em !important;
  }
  .md\:pr-7-em {
    padding-right: 5em !important;
  }
  .md\:pr-8-em {
    padding-right: 6em !important;
  }
  .md\:pr-9-em {
    padding-right: 7em !important;
  }
  .md\:pr-10-em {
    padding-right: 8em !important;
  }
  .md\:pr-11-em {
    padding-right: 9em !important;
  }
  .md\:pr-12-em {
    padding-right: 10em !important;
  }
  .md\:pr-13-em {
    padding-right: 11em !important;
  }
  .md\:pr-14-em {
    padding-right: 12em !important;
  }
  .md\:pr-15-em {
    padding-right: 13em !important;
  }
  .md\:pb-0 {
    padding-bottom: 0 !important;
  }
  .md\:pb-0-25 {
    padding-bottom: 0.0625rem !important;
  }
  .md\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .md\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .md\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .md\:pb-2-5 {
    padding-bottom: 0.75rem !important;
  }
  .md\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .md\:pb-3-5 {
    padding-bottom: 1.5rem !important;
  }
  .md\:pb-4 {
    padding-bottom: 2rem !important;
  }
  .md\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .md\:pb-5-5 {
    padding-bottom: 3.5rem !important;
  }
  .md\:pb-6 {
    padding-bottom: 4rem !important;
  }
  .md\:pb-7 {
    padding-bottom: 5rem !important;
  }
  .md\:pb-8 {
    padding-bottom: 6rem !important;
  }
  .md\:pb-9 {
    padding-bottom: 7rem !important;
  }
  .md\:pb-10 {
    padding-bottom: 8rem !important;
  }
  .md\:pb-11 {
    padding-bottom: 9rem !important;
  }
  .md\:pb-12 {
    padding-bottom: 10rem !important;
  }
  .md\:pb-13 {
    padding-bottom: 11rem !important;
  }
  .md\:pb-14 {
    padding-bottom: 12rem !important;
  }
  .md\:pb-15 {
    padding-bottom: 13rem !important;
  }
  .md\:pb-18 {
    padding-bottom: 16rem !important;
  }
  .md\:pb-30 {
    padding-bottom: 28rem !important;
  }
  .md\:pb-1-em {
    padding-bottom: 0.25em !important;
  }
  .md\:pb-1-5-em {
    padding-bottom: 0.375em !important;
  }
  .md\:pb-2-em {
    padding-bottom: 0.5em !important;
  }
  .md\:pb-2-25-em {
    padding-bottom: 0.625em !important;
  }
  .md\:pb-2-5-em {
    padding-bottom: 0.75em !important;
  }
  .md\:pb-3-em {
    padding-bottom: 1em !important;
  }
  .md\:pb-4-em {
    padding-bottom: 2em !important;
  }
  .md\:pb-5-em {
    padding-bottom: 3em !important;
  }
  .md\:pb-6-em {
    padding-bottom: 4em !important;
  }
  .md\:pb-7-em {
    padding-bottom: 5em !important;
  }
  .md\:pb-8-em {
    padding-bottom: 6em !important;
  }
  .md\:pb-9-em {
    padding-bottom: 7em !important;
  }
  .md\:pb-10-em {
    padding-bottom: 8em !important;
  }
  .md\:pb-11-em {
    padding-bottom: 9em !important;
  }
  .md\:pb-12-em {
    padding-bottom: 10em !important;
  }
  .md\:pb-13-em {
    padding-bottom: 11em !important;
  }
  .md\:pb-14-em {
    padding-bottom: 12em !important;
  }
  .md\:pb-15-em {
    padding-bottom: 13em !important;
  }
  .md\:pl-0 {
    padding-left: 0 !important;
  }
  .md\:pl-0-25 {
    padding-left: 0.0625rem !important;
  }
  .md\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .md\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .md\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .md\:pl-2-5 {
    padding-left: 0.75rem !important;
  }
  .md\:pl-3 {
    padding-left: 1rem !important;
  }
  .md\:pl-3-5 {
    padding-left: 1.5rem !important;
  }
  .md\:pl-4 {
    padding-left: 2rem !important;
  }
  .md\:pl-5 {
    padding-left: 3rem !important;
  }
  .md\:pl-5-5 {
    padding-left: 3.5rem !important;
  }
  .md\:pl-6 {
    padding-left: 4rem !important;
  }
  .md\:pl-7 {
    padding-left: 5rem !important;
  }
  .md\:pl-8 {
    padding-left: 6rem !important;
  }
  .md\:pl-9 {
    padding-left: 7rem !important;
  }
  .md\:pl-10 {
    padding-left: 8rem !important;
  }
  .md\:pl-11 {
    padding-left: 9rem !important;
  }
  .md\:pl-12 {
    padding-left: 10rem !important;
  }
  .md\:pl-13 {
    padding-left: 11rem !important;
  }
  .md\:pl-14 {
    padding-left: 12rem !important;
  }
  .md\:pl-15 {
    padding-left: 13rem !important;
  }
  .md\:pl-18 {
    padding-left: 16rem !important;
  }
  .md\:pl-30 {
    padding-left: 28rem !important;
  }
  .md\:pl-1-em {
    padding-left: 0.25em !important;
  }
  .md\:pl-1-5-em {
    padding-left: 0.375em !important;
  }
  .md\:pl-2-em {
    padding-left: 0.5em !important;
  }
  .md\:pl-2-25-em {
    padding-left: 0.625em !important;
  }
  .md\:pl-2-5-em {
    padding-left: 0.75em !important;
  }
  .md\:pl-3-em {
    padding-left: 1em !important;
  }
  .md\:pl-4-em {
    padding-left: 2em !important;
  }
  .md\:pl-5-em {
    padding-left: 3em !important;
  }
  .md\:pl-6-em {
    padding-left: 4em !important;
  }
  .md\:pl-7-em {
    padding-left: 5em !important;
  }
  .md\:pl-8-em {
    padding-left: 6em !important;
  }
  .md\:pl-9-em {
    padding-left: 7em !important;
  }
  .md\:pl-10-em {
    padding-left: 8em !important;
  }
  .md\:pl-11-em {
    padding-left: 9em !important;
  }
  .md\:pl-12-em {
    padding-left: 10em !important;
  }
  .md\:pl-13-em {
    padding-left: 11em !important;
  }
  .md\:pl-14-em {
    padding-left: 12em !important;
  }
  .md\:pl-15-em {
    padding-left: 13em !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:p-0 {
    padding: 0 !important;
  }
  .lg\:p-0-25 {
    padding: 0.0625rem !important;
  }
  .lg\:p-0-5 {
    padding: 0.125rem !important;
  }
  .lg\:p-1 {
    padding: 0.25rem !important;
  }
  .lg\:p-2 {
    padding: 0.5rem !important;
  }
  .lg\:p-2-5 {
    padding: 0.75rem !important;
  }
  .lg\:p-3 {
    padding: 1rem !important;
  }
  .lg\:p-3-5 {
    padding: 1.5rem !important;
  }
  .lg\:p-4 {
    padding: 2rem !important;
  }
  .lg\:p-5 {
    padding: 3rem !important;
  }
  .lg\:p-5-5 {
    padding: 3.5rem !important;
  }
  .lg\:p-6 {
    padding: 4rem !important;
  }
  .lg\:p-7 {
    padding: 5rem !important;
  }
  .lg\:p-8 {
    padding: 6rem !important;
  }
  .lg\:p-9 {
    padding: 7rem !important;
  }
  .lg\:p-10 {
    padding: 8rem !important;
  }
  .lg\:p-11 {
    padding: 9rem !important;
  }
  .lg\:p-12 {
    padding: 10rem !important;
  }
  .lg\:p-13 {
    padding: 11rem !important;
  }
  .lg\:p-14 {
    padding: 12rem !important;
  }
  .lg\:p-15 {
    padding: 13rem !important;
  }
  .lg\:p-18 {
    padding: 16rem !important;
  }
  .lg\:p-30 {
    padding: 28rem !important;
  }
  .lg\:p-1-em {
    padding: 0.25em !important;
  }
  .lg\:p-1-5-em {
    padding: 0.375em !important;
  }
  .lg\:p-2-em {
    padding: 0.5em !important;
  }
  .lg\:p-2-25-em {
    padding: 0.625em !important;
  }
  .lg\:p-2-5-em {
    padding: 0.75em !important;
  }
  .lg\:p-3-em {
    padding: 1em !important;
  }
  .lg\:p-4-em {
    padding: 2em !important;
  }
  .lg\:p-5-em {
    padding: 3em !important;
  }
  .lg\:p-6-em {
    padding: 4em !important;
  }
  .lg\:p-7-em {
    padding: 5em !important;
  }
  .lg\:p-8-em {
    padding: 6em !important;
  }
  .lg\:p-9-em {
    padding: 7em !important;
  }
  .lg\:p-10-em {
    padding: 8em !important;
  }
  .lg\:p-11-em {
    padding: 9em !important;
  }
  .lg\:p-12-em {
    padding: 10em !important;
  }
  .lg\:p-13-em {
    padding: 11em !important;
  }
  .lg\:p-14-em {
    padding: 12em !important;
  }
  .lg\:p-15-em {
    padding: 13em !important;
  }
  .lg\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .lg\:px-0-25 {
    padding-left: 0.0625rem !important;
    padding-right: 0.0625rem !important;
  }
  .lg\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .lg\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .lg\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .lg\:px-2-5 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .lg\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .lg\:px-3-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .lg\:px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .lg\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .lg\:px-5-5 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .lg\:px-6 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .lg\:px-7 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .lg\:px-8 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .lg\:px-9 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .lg\:px-10 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .lg\:px-11 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .lg\:px-12 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .lg\:px-13 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .lg\:px-14 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .lg\:px-15 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .lg\:px-18 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .lg\:px-30 {
    padding-left: 28rem !important;
    padding-right: 28rem !important;
  }
  .lg\:px-1-em {
    padding-left: 0.25em !important;
    padding-right: 0.25em !important;
  }
  .lg\:px-1-5-em {
    padding-left: 0.375em !important;
    padding-right: 0.375em !important;
  }
  .lg\:px-2-em {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
  .lg\:px-2-25-em {
    padding-left: 0.625em !important;
    padding-right: 0.625em !important;
  }
  .lg\:px-2-5-em {
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
  }
  .lg\:px-3-em {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
  .lg\:px-4-em {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
  .lg\:px-5-em {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
  .lg\:px-6-em {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
  .lg\:px-7-em {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }
  .lg\:px-8-em {
    padding-left: 6em !important;
    padding-right: 6em !important;
  }
  .lg\:px-9-em {
    padding-left: 7em !important;
    padding-right: 7em !important;
  }
  .lg\:px-10-em {
    padding-left: 8em !important;
    padding-right: 8em !important;
  }
  .lg\:px-11-em {
    padding-left: 9em !important;
    padding-right: 9em !important;
  }
  .lg\:px-12-em {
    padding-left: 10em !important;
    padding-right: 10em !important;
  }
  .lg\:px-13-em {
    padding-left: 11em !important;
    padding-right: 11em !important;
  }
  .lg\:px-14-em {
    padding-left: 12em !important;
    padding-right: 12em !important;
  }
  .lg\:px-15-em {
    padding-left: 13em !important;
    padding-right: 13em !important;
  }
  .lg\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .lg\:py-0-25 {
    padding-top: 0.0625rem !important;
    padding-bottom: 0.0625rem !important;
  }
  .lg\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .lg\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .lg\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .lg\:py-2-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .lg\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .lg\:py-3-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .lg\:py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .lg\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .lg\:py-5-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .lg\:py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .lg\:py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .lg\:py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .lg\:py-9 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .lg\:py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .lg\:py-11 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .lg\:py-12 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .lg\:py-13 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .lg\:py-14 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .lg\:py-15 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .lg\:py-18 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .lg\:py-30 {
    padding-top: 28rem !important;
    padding-bottom: 28rem !important;
  }
  .lg\:py-1-em {
    padding-top: 0.25em !important;
    padding-bottom: 0.25em !important;
  }
  .lg\:py-1-5-em {
    padding-top: 0.375em !important;
    padding-bottom: 0.375em !important;
  }
  .lg\:py-2-em {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
  }
  .lg\:py-2-25-em {
    padding-top: 0.625em !important;
    padding-bottom: 0.625em !important;
  }
  .lg\:py-2-5-em {
    padding-top: 0.75em !important;
    padding-bottom: 0.75em !important;
  }
  .lg\:py-3-em {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  .lg\:py-4-em {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
  }
  .lg\:py-5-em {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  .lg\:py-6-em {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .lg\:py-7-em {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
  .lg\:py-8-em {
    padding-top: 6em !important;
    padding-bottom: 6em !important;
  }
  .lg\:py-9-em {
    padding-top: 7em !important;
    padding-bottom: 7em !important;
  }
  .lg\:py-10-em {
    padding-top: 8em !important;
    padding-bottom: 8em !important;
  }
  .lg\:py-11-em {
    padding-top: 9em !important;
    padding-bottom: 9em !important;
  }
  .lg\:py-12-em {
    padding-top: 10em !important;
    padding-bottom: 10em !important;
  }
  .lg\:py-13-em {
    padding-top: 11em !important;
    padding-bottom: 11em !important;
  }
  .lg\:py-14-em {
    padding-top: 12em !important;
    padding-bottom: 12em !important;
  }
  .lg\:py-15-em {
    padding-top: 13em !important;
    padding-bottom: 13em !important;
  }
  .lg\:pt-0 {
    padding-top: 0 !important;
  }
  .lg\:pt-0-25 {
    padding-top: 0.0625rem !important;
  }
  .lg\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .lg\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .lg\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .lg\:pt-2-5 {
    padding-top: 0.75rem !important;
  }
  .lg\:pt-3 {
    padding-top: 1rem !important;
  }
  .lg\:pt-3-5 {
    padding-top: 1.5rem !important;
  }
  .lg\:pt-4 {
    padding-top: 2rem !important;
  }
  .lg\:pt-5 {
    padding-top: 3rem !important;
  }
  .lg\:pt-5-5 {
    padding-top: 3.5rem !important;
  }
  .lg\:pt-6 {
    padding-top: 4rem !important;
  }
  .lg\:pt-7 {
    padding-top: 5rem !important;
  }
  .lg\:pt-8 {
    padding-top: 6rem !important;
  }
  .lg\:pt-9 {
    padding-top: 7rem !important;
  }
  .lg\:pt-10 {
    padding-top: 8rem !important;
  }
  .lg\:pt-11 {
    padding-top: 9rem !important;
  }
  .lg\:pt-12 {
    padding-top: 10rem !important;
  }
  .lg\:pt-13 {
    padding-top: 11rem !important;
  }
  .lg\:pt-14 {
    padding-top: 12rem !important;
  }
  .lg\:pt-15 {
    padding-top: 13rem !important;
  }
  .lg\:pt-18 {
    padding-top: 16rem !important;
  }
  .lg\:pt-30 {
    padding-top: 28rem !important;
  }
  .lg\:pt-1-em {
    padding-top: 0.25em !important;
  }
  .lg\:pt-1-5-em {
    padding-top: 0.375em !important;
  }
  .lg\:pt-2-em {
    padding-top: 0.5em !important;
  }
  .lg\:pt-2-25-em {
    padding-top: 0.625em !important;
  }
  .lg\:pt-2-5-em {
    padding-top: 0.75em !important;
  }
  .lg\:pt-3-em {
    padding-top: 1em !important;
  }
  .lg\:pt-4-em {
    padding-top: 2em !important;
  }
  .lg\:pt-5-em {
    padding-top: 3em !important;
  }
  .lg\:pt-6-em {
    padding-top: 4em !important;
  }
  .lg\:pt-7-em {
    padding-top: 5em !important;
  }
  .lg\:pt-8-em {
    padding-top: 6em !important;
  }
  .lg\:pt-9-em {
    padding-top: 7em !important;
  }
  .lg\:pt-10-em {
    padding-top: 8em !important;
  }
  .lg\:pt-11-em {
    padding-top: 9em !important;
  }
  .lg\:pt-12-em {
    padding-top: 10em !important;
  }
  .lg\:pt-13-em {
    padding-top: 11em !important;
  }
  .lg\:pt-14-em {
    padding-top: 12em !important;
  }
  .lg\:pt-15-em {
    padding-top: 13em !important;
  }
  .lg\:pr-0 {
    padding-right: 0 !important;
  }
  .lg\:pr-0-25 {
    padding-right: 0.0625rem !important;
  }
  .lg\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .lg\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .lg\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .lg\:pr-2-5 {
    padding-right: 0.75rem !important;
  }
  .lg\:pr-3 {
    padding-right: 1rem !important;
  }
  .lg\:pr-3-5 {
    padding-right: 1.5rem !important;
  }
  .lg\:pr-4 {
    padding-right: 2rem !important;
  }
  .lg\:pr-5 {
    padding-right: 3rem !important;
  }
  .lg\:pr-5-5 {
    padding-right: 3.5rem !important;
  }
  .lg\:pr-6 {
    padding-right: 4rem !important;
  }
  .lg\:pr-7 {
    padding-right: 5rem !important;
  }
  .lg\:pr-8 {
    padding-right: 6rem !important;
  }
  .lg\:pr-9 {
    padding-right: 7rem !important;
  }
  .lg\:pr-10 {
    padding-right: 8rem !important;
  }
  .lg\:pr-11 {
    padding-right: 9rem !important;
  }
  .lg\:pr-12 {
    padding-right: 10rem !important;
  }
  .lg\:pr-13 {
    padding-right: 11rem !important;
  }
  .lg\:pr-14 {
    padding-right: 12rem !important;
  }
  .lg\:pr-15 {
    padding-right: 13rem !important;
  }
  .lg\:pr-18 {
    padding-right: 16rem !important;
  }
  .lg\:pr-30 {
    padding-right: 28rem !important;
  }
  .lg\:pr-1-em {
    padding-right: 0.25em !important;
  }
  .lg\:pr-1-5-em {
    padding-right: 0.375em !important;
  }
  .lg\:pr-2-em {
    padding-right: 0.5em !important;
  }
  .lg\:pr-2-25-em {
    padding-right: 0.625em !important;
  }
  .lg\:pr-2-5-em {
    padding-right: 0.75em !important;
  }
  .lg\:pr-3-em {
    padding-right: 1em !important;
  }
  .lg\:pr-4-em {
    padding-right: 2em !important;
  }
  .lg\:pr-5-em {
    padding-right: 3em !important;
  }
  .lg\:pr-6-em {
    padding-right: 4em !important;
  }
  .lg\:pr-7-em {
    padding-right: 5em !important;
  }
  .lg\:pr-8-em {
    padding-right: 6em !important;
  }
  .lg\:pr-9-em {
    padding-right: 7em !important;
  }
  .lg\:pr-10-em {
    padding-right: 8em !important;
  }
  .lg\:pr-11-em {
    padding-right: 9em !important;
  }
  .lg\:pr-12-em {
    padding-right: 10em !important;
  }
  .lg\:pr-13-em {
    padding-right: 11em !important;
  }
  .lg\:pr-14-em {
    padding-right: 12em !important;
  }
  .lg\:pr-15-em {
    padding-right: 13em !important;
  }
  .lg\:pb-0 {
    padding-bottom: 0 !important;
  }
  .lg\:pb-0-25 {
    padding-bottom: 0.0625rem !important;
  }
  .lg\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .lg\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .lg\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .lg\:pb-2-5 {
    padding-bottom: 0.75rem !important;
  }
  .lg\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .lg\:pb-3-5 {
    padding-bottom: 1.5rem !important;
  }
  .lg\:pb-4 {
    padding-bottom: 2rem !important;
  }
  .lg\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .lg\:pb-5-5 {
    padding-bottom: 3.5rem !important;
  }
  .lg\:pb-6 {
    padding-bottom: 4rem !important;
  }
  .lg\:pb-7 {
    padding-bottom: 5rem !important;
  }
  .lg\:pb-8 {
    padding-bottom: 6rem !important;
  }
  .lg\:pb-9 {
    padding-bottom: 7rem !important;
  }
  .lg\:pb-10 {
    padding-bottom: 8rem !important;
  }
  .lg\:pb-11 {
    padding-bottom: 9rem !important;
  }
  .lg\:pb-12 {
    padding-bottom: 10rem !important;
  }
  .lg\:pb-13 {
    padding-bottom: 11rem !important;
  }
  .lg\:pb-14 {
    padding-bottom: 12rem !important;
  }
  .lg\:pb-15 {
    padding-bottom: 13rem !important;
  }
  .lg\:pb-18 {
    padding-bottom: 16rem !important;
  }
  .lg\:pb-30 {
    padding-bottom: 28rem !important;
  }
  .lg\:pb-1-em {
    padding-bottom: 0.25em !important;
  }
  .lg\:pb-1-5-em {
    padding-bottom: 0.375em !important;
  }
  .lg\:pb-2-em {
    padding-bottom: 0.5em !important;
  }
  .lg\:pb-2-25-em {
    padding-bottom: 0.625em !important;
  }
  .lg\:pb-2-5-em {
    padding-bottom: 0.75em !important;
  }
  .lg\:pb-3-em {
    padding-bottom: 1em !important;
  }
  .lg\:pb-4-em {
    padding-bottom: 2em !important;
  }
  .lg\:pb-5-em {
    padding-bottom: 3em !important;
  }
  .lg\:pb-6-em {
    padding-bottom: 4em !important;
  }
  .lg\:pb-7-em {
    padding-bottom: 5em !important;
  }
  .lg\:pb-8-em {
    padding-bottom: 6em !important;
  }
  .lg\:pb-9-em {
    padding-bottom: 7em !important;
  }
  .lg\:pb-10-em {
    padding-bottom: 8em !important;
  }
  .lg\:pb-11-em {
    padding-bottom: 9em !important;
  }
  .lg\:pb-12-em {
    padding-bottom: 10em !important;
  }
  .lg\:pb-13-em {
    padding-bottom: 11em !important;
  }
  .lg\:pb-14-em {
    padding-bottom: 12em !important;
  }
  .lg\:pb-15-em {
    padding-bottom: 13em !important;
  }
  .lg\:pl-0 {
    padding-left: 0 !important;
  }
  .lg\:pl-0-25 {
    padding-left: 0.0625rem !important;
  }
  .lg\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .lg\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .lg\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .lg\:pl-2-5 {
    padding-left: 0.75rem !important;
  }
  .lg\:pl-3 {
    padding-left: 1rem !important;
  }
  .lg\:pl-3-5 {
    padding-left: 1.5rem !important;
  }
  .lg\:pl-4 {
    padding-left: 2rem !important;
  }
  .lg\:pl-5 {
    padding-left: 3rem !important;
  }
  .lg\:pl-5-5 {
    padding-left: 3.5rem !important;
  }
  .lg\:pl-6 {
    padding-left: 4rem !important;
  }
  .lg\:pl-7 {
    padding-left: 5rem !important;
  }
  .lg\:pl-8 {
    padding-left: 6rem !important;
  }
  .lg\:pl-9 {
    padding-left: 7rem !important;
  }
  .lg\:pl-10 {
    padding-left: 8rem !important;
  }
  .lg\:pl-11 {
    padding-left: 9rem !important;
  }
  .lg\:pl-12 {
    padding-left: 10rem !important;
  }
  .lg\:pl-13 {
    padding-left: 11rem !important;
  }
  .lg\:pl-14 {
    padding-left: 12rem !important;
  }
  .lg\:pl-15 {
    padding-left: 13rem !important;
  }
  .lg\:pl-18 {
    padding-left: 16rem !important;
  }
  .lg\:pl-30 {
    padding-left: 28rem !important;
  }
  .lg\:pl-1-em {
    padding-left: 0.25em !important;
  }
  .lg\:pl-1-5-em {
    padding-left: 0.375em !important;
  }
  .lg\:pl-2-em {
    padding-left: 0.5em !important;
  }
  .lg\:pl-2-25-em {
    padding-left: 0.625em !important;
  }
  .lg\:pl-2-5-em {
    padding-left: 0.75em !important;
  }
  .lg\:pl-3-em {
    padding-left: 1em !important;
  }
  .lg\:pl-4-em {
    padding-left: 2em !important;
  }
  .lg\:pl-5-em {
    padding-left: 3em !important;
  }
  .lg\:pl-6-em {
    padding-left: 4em !important;
  }
  .lg\:pl-7-em {
    padding-left: 5em !important;
  }
  .lg\:pl-8-em {
    padding-left: 6em !important;
  }
  .lg\:pl-9-em {
    padding-left: 7em !important;
  }
  .lg\:pl-10-em {
    padding-left: 8em !important;
  }
  .lg\:pl-11-em {
    padding-left: 9em !important;
  }
  .lg\:pl-12-em {
    padding-left: 10em !important;
  }
  .lg\:pl-13-em {
    padding-left: 11em !important;
  }
  .lg\:pl-14-em {
    padding-left: 12em !important;
  }
  .lg\:pl-15-em {
    padding-left: 13em !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:p-0 {
    padding: 0 !important;
  }
  .xl\:p-0-25 {
    padding: 0.0625rem !important;
  }
  .xl\:p-0-5 {
    padding: 0.125rem !important;
  }
  .xl\:p-1 {
    padding: 0.25rem !important;
  }
  .xl\:p-2 {
    padding: 0.5rem !important;
  }
  .xl\:p-2-5 {
    padding: 0.75rem !important;
  }
  .xl\:p-3 {
    padding: 1rem !important;
  }
  .xl\:p-3-5 {
    padding: 1.5rem !important;
  }
  .xl\:p-4 {
    padding: 2rem !important;
  }
  .xl\:p-5 {
    padding: 3rem !important;
  }
  .xl\:p-5-5 {
    padding: 3.5rem !important;
  }
  .xl\:p-6 {
    padding: 4rem !important;
  }
  .xl\:p-7 {
    padding: 5rem !important;
  }
  .xl\:p-8 {
    padding: 6rem !important;
  }
  .xl\:p-9 {
    padding: 7rem !important;
  }
  .xl\:p-10 {
    padding: 8rem !important;
  }
  .xl\:p-11 {
    padding: 9rem !important;
  }
  .xl\:p-12 {
    padding: 10rem !important;
  }
  .xl\:p-13 {
    padding: 11rem !important;
  }
  .xl\:p-14 {
    padding: 12rem !important;
  }
  .xl\:p-15 {
    padding: 13rem !important;
  }
  .xl\:p-18 {
    padding: 16rem !important;
  }
  .xl\:p-30 {
    padding: 28rem !important;
  }
  .xl\:p-1-em {
    padding: 0.25em !important;
  }
  .xl\:p-1-5-em {
    padding: 0.375em !important;
  }
  .xl\:p-2-em {
    padding: 0.5em !important;
  }
  .xl\:p-2-25-em {
    padding: 0.625em !important;
  }
  .xl\:p-2-5-em {
    padding: 0.75em !important;
  }
  .xl\:p-3-em {
    padding: 1em !important;
  }
  .xl\:p-4-em {
    padding: 2em !important;
  }
  .xl\:p-5-em {
    padding: 3em !important;
  }
  .xl\:p-6-em {
    padding: 4em !important;
  }
  .xl\:p-7-em {
    padding: 5em !important;
  }
  .xl\:p-8-em {
    padding: 6em !important;
  }
  .xl\:p-9-em {
    padding: 7em !important;
  }
  .xl\:p-10-em {
    padding: 8em !important;
  }
  .xl\:p-11-em {
    padding: 9em !important;
  }
  .xl\:p-12-em {
    padding: 10em !important;
  }
  .xl\:p-13-em {
    padding: 11em !important;
  }
  .xl\:p-14-em {
    padding: 12em !important;
  }
  .xl\:p-15-em {
    padding: 13em !important;
  }
  .xl\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .xl\:px-0-25 {
    padding-left: 0.0625rem !important;
    padding-right: 0.0625rem !important;
  }
  .xl\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .xl\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .xl\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xl\:px-2-5 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .xl\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xl\:px-3-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xl\:px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xl\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xl\:px-5-5 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .xl\:px-6 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xl\:px-7 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xl\:px-8 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xl\:px-9 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .xl\:px-10 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xl\:px-11 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .xl\:px-12 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .xl\:px-13 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .xl\:px-14 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .xl\:px-15 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .xl\:px-18 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .xl\:px-30 {
    padding-left: 28rem !important;
    padding-right: 28rem !important;
  }
  .xl\:px-1-em {
    padding-left: 0.25em !important;
    padding-right: 0.25em !important;
  }
  .xl\:px-1-5-em {
    padding-left: 0.375em !important;
    padding-right: 0.375em !important;
  }
  .xl\:px-2-em {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
  .xl\:px-2-25-em {
    padding-left: 0.625em !important;
    padding-right: 0.625em !important;
  }
  .xl\:px-2-5-em {
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
  }
  .xl\:px-3-em {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
  .xl\:px-4-em {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
  .xl\:px-5-em {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
  .xl\:px-6-em {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
  .xl\:px-7-em {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }
  .xl\:px-8-em {
    padding-left: 6em !important;
    padding-right: 6em !important;
  }
  .xl\:px-9-em {
    padding-left: 7em !important;
    padding-right: 7em !important;
  }
  .xl\:px-10-em {
    padding-left: 8em !important;
    padding-right: 8em !important;
  }
  .xl\:px-11-em {
    padding-left: 9em !important;
    padding-right: 9em !important;
  }
  .xl\:px-12-em {
    padding-left: 10em !important;
    padding-right: 10em !important;
  }
  .xl\:px-13-em {
    padding-left: 11em !important;
    padding-right: 11em !important;
  }
  .xl\:px-14-em {
    padding-left: 12em !important;
    padding-right: 12em !important;
  }
  .xl\:px-15-em {
    padding-left: 13em !important;
    padding-right: 13em !important;
  }
  .xl\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .xl\:py-0-25 {
    padding-top: 0.0625rem !important;
    padding-bottom: 0.0625rem !important;
  }
  .xl\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .xl\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xl\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xl\:py-2-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xl\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xl\:py-3-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xl\:py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xl\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xl\:py-5-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .xl\:py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xl\:py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xl\:py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xl\:py-9 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .xl\:py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xl\:py-11 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .xl\:py-12 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .xl\:py-13 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .xl\:py-14 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .xl\:py-15 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .xl\:py-18 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .xl\:py-30 {
    padding-top: 28rem !important;
    padding-bottom: 28rem !important;
  }
  .xl\:py-1-em {
    padding-top: 0.25em !important;
    padding-bottom: 0.25em !important;
  }
  .xl\:py-1-5-em {
    padding-top: 0.375em !important;
    padding-bottom: 0.375em !important;
  }
  .xl\:py-2-em {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
  }
  .xl\:py-2-25-em {
    padding-top: 0.625em !important;
    padding-bottom: 0.625em !important;
  }
  .xl\:py-2-5-em {
    padding-top: 0.75em !important;
    padding-bottom: 0.75em !important;
  }
  .xl\:py-3-em {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  .xl\:py-4-em {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
  }
  .xl\:py-5-em {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  .xl\:py-6-em {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .xl\:py-7-em {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
  .xl\:py-8-em {
    padding-top: 6em !important;
    padding-bottom: 6em !important;
  }
  .xl\:py-9-em {
    padding-top: 7em !important;
    padding-bottom: 7em !important;
  }
  .xl\:py-10-em {
    padding-top: 8em !important;
    padding-bottom: 8em !important;
  }
  .xl\:py-11-em {
    padding-top: 9em !important;
    padding-bottom: 9em !important;
  }
  .xl\:py-12-em {
    padding-top: 10em !important;
    padding-bottom: 10em !important;
  }
  .xl\:py-13-em {
    padding-top: 11em !important;
    padding-bottom: 11em !important;
  }
  .xl\:py-14-em {
    padding-top: 12em !important;
    padding-bottom: 12em !important;
  }
  .xl\:py-15-em {
    padding-top: 13em !important;
    padding-bottom: 13em !important;
  }
  .xl\:pt-0 {
    padding-top: 0 !important;
  }
  .xl\:pt-0-25 {
    padding-top: 0.0625rem !important;
  }
  .xl\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .xl\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .xl\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .xl\:pt-2-5 {
    padding-top: 0.75rem !important;
  }
  .xl\:pt-3 {
    padding-top: 1rem !important;
  }
  .xl\:pt-3-5 {
    padding-top: 1.5rem !important;
  }
  .xl\:pt-4 {
    padding-top: 2rem !important;
  }
  .xl\:pt-5 {
    padding-top: 3rem !important;
  }
  .xl\:pt-5-5 {
    padding-top: 3.5rem !important;
  }
  .xl\:pt-6 {
    padding-top: 4rem !important;
  }
  .xl\:pt-7 {
    padding-top: 5rem !important;
  }
  .xl\:pt-8 {
    padding-top: 6rem !important;
  }
  .xl\:pt-9 {
    padding-top: 7rem !important;
  }
  .xl\:pt-10 {
    padding-top: 8rem !important;
  }
  .xl\:pt-11 {
    padding-top: 9rem !important;
  }
  .xl\:pt-12 {
    padding-top: 10rem !important;
  }
  .xl\:pt-13 {
    padding-top: 11rem !important;
  }
  .xl\:pt-14 {
    padding-top: 12rem !important;
  }
  .xl\:pt-15 {
    padding-top: 13rem !important;
  }
  .xl\:pt-18 {
    padding-top: 16rem !important;
  }
  .xl\:pt-30 {
    padding-top: 28rem !important;
  }
  .xl\:pt-1-em {
    padding-top: 0.25em !important;
  }
  .xl\:pt-1-5-em {
    padding-top: 0.375em !important;
  }
  .xl\:pt-2-em {
    padding-top: 0.5em !important;
  }
  .xl\:pt-2-25-em {
    padding-top: 0.625em !important;
  }
  .xl\:pt-2-5-em {
    padding-top: 0.75em !important;
  }
  .xl\:pt-3-em {
    padding-top: 1em !important;
  }
  .xl\:pt-4-em {
    padding-top: 2em !important;
  }
  .xl\:pt-5-em {
    padding-top: 3em !important;
  }
  .xl\:pt-6-em {
    padding-top: 4em !important;
  }
  .xl\:pt-7-em {
    padding-top: 5em !important;
  }
  .xl\:pt-8-em {
    padding-top: 6em !important;
  }
  .xl\:pt-9-em {
    padding-top: 7em !important;
  }
  .xl\:pt-10-em {
    padding-top: 8em !important;
  }
  .xl\:pt-11-em {
    padding-top: 9em !important;
  }
  .xl\:pt-12-em {
    padding-top: 10em !important;
  }
  .xl\:pt-13-em {
    padding-top: 11em !important;
  }
  .xl\:pt-14-em {
    padding-top: 12em !important;
  }
  .xl\:pt-15-em {
    padding-top: 13em !important;
  }
  .xl\:pr-0 {
    padding-right: 0 !important;
  }
  .xl\:pr-0-25 {
    padding-right: 0.0625rem !important;
  }
  .xl\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .xl\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .xl\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .xl\:pr-2-5 {
    padding-right: 0.75rem !important;
  }
  .xl\:pr-3 {
    padding-right: 1rem !important;
  }
  .xl\:pr-3-5 {
    padding-right: 1.5rem !important;
  }
  .xl\:pr-4 {
    padding-right: 2rem !important;
  }
  .xl\:pr-5 {
    padding-right: 3rem !important;
  }
  .xl\:pr-5-5 {
    padding-right: 3.5rem !important;
  }
  .xl\:pr-6 {
    padding-right: 4rem !important;
  }
  .xl\:pr-7 {
    padding-right: 5rem !important;
  }
  .xl\:pr-8 {
    padding-right: 6rem !important;
  }
  .xl\:pr-9 {
    padding-right: 7rem !important;
  }
  .xl\:pr-10 {
    padding-right: 8rem !important;
  }
  .xl\:pr-11 {
    padding-right: 9rem !important;
  }
  .xl\:pr-12 {
    padding-right: 10rem !important;
  }
  .xl\:pr-13 {
    padding-right: 11rem !important;
  }
  .xl\:pr-14 {
    padding-right: 12rem !important;
  }
  .xl\:pr-15 {
    padding-right: 13rem !important;
  }
  .xl\:pr-18 {
    padding-right: 16rem !important;
  }
  .xl\:pr-30 {
    padding-right: 28rem !important;
  }
  .xl\:pr-1-em {
    padding-right: 0.25em !important;
  }
  .xl\:pr-1-5-em {
    padding-right: 0.375em !important;
  }
  .xl\:pr-2-em {
    padding-right: 0.5em !important;
  }
  .xl\:pr-2-25-em {
    padding-right: 0.625em !important;
  }
  .xl\:pr-2-5-em {
    padding-right: 0.75em !important;
  }
  .xl\:pr-3-em {
    padding-right: 1em !important;
  }
  .xl\:pr-4-em {
    padding-right: 2em !important;
  }
  .xl\:pr-5-em {
    padding-right: 3em !important;
  }
  .xl\:pr-6-em {
    padding-right: 4em !important;
  }
  .xl\:pr-7-em {
    padding-right: 5em !important;
  }
  .xl\:pr-8-em {
    padding-right: 6em !important;
  }
  .xl\:pr-9-em {
    padding-right: 7em !important;
  }
  .xl\:pr-10-em {
    padding-right: 8em !important;
  }
  .xl\:pr-11-em {
    padding-right: 9em !important;
  }
  .xl\:pr-12-em {
    padding-right: 10em !important;
  }
  .xl\:pr-13-em {
    padding-right: 11em !important;
  }
  .xl\:pr-14-em {
    padding-right: 12em !important;
  }
  .xl\:pr-15-em {
    padding-right: 13em !important;
  }
  .xl\:pb-0 {
    padding-bottom: 0 !important;
  }
  .xl\:pb-0-25 {
    padding-bottom: 0.0625rem !important;
  }
  .xl\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .xl\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xl\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xl\:pb-2-5 {
    padding-bottom: 0.75rem !important;
  }
  .xl\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .xl\:pb-3-5 {
    padding-bottom: 1.5rem !important;
  }
  .xl\:pb-4 {
    padding-bottom: 2rem !important;
  }
  .xl\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .xl\:pb-5-5 {
    padding-bottom: 3.5rem !important;
  }
  .xl\:pb-6 {
    padding-bottom: 4rem !important;
  }
  .xl\:pb-7 {
    padding-bottom: 5rem !important;
  }
  .xl\:pb-8 {
    padding-bottom: 6rem !important;
  }
  .xl\:pb-9 {
    padding-bottom: 7rem !important;
  }
  .xl\:pb-10 {
    padding-bottom: 8rem !important;
  }
  .xl\:pb-11 {
    padding-bottom: 9rem !important;
  }
  .xl\:pb-12 {
    padding-bottom: 10rem !important;
  }
  .xl\:pb-13 {
    padding-bottom: 11rem !important;
  }
  .xl\:pb-14 {
    padding-bottom: 12rem !important;
  }
  .xl\:pb-15 {
    padding-bottom: 13rem !important;
  }
  .xl\:pb-18 {
    padding-bottom: 16rem !important;
  }
  .xl\:pb-30 {
    padding-bottom: 28rem !important;
  }
  .xl\:pb-1-em {
    padding-bottom: 0.25em !important;
  }
  .xl\:pb-1-5-em {
    padding-bottom: 0.375em !important;
  }
  .xl\:pb-2-em {
    padding-bottom: 0.5em !important;
  }
  .xl\:pb-2-25-em {
    padding-bottom: 0.625em !important;
  }
  .xl\:pb-2-5-em {
    padding-bottom: 0.75em !important;
  }
  .xl\:pb-3-em {
    padding-bottom: 1em !important;
  }
  .xl\:pb-4-em {
    padding-bottom: 2em !important;
  }
  .xl\:pb-5-em {
    padding-bottom: 3em !important;
  }
  .xl\:pb-6-em {
    padding-bottom: 4em !important;
  }
  .xl\:pb-7-em {
    padding-bottom: 5em !important;
  }
  .xl\:pb-8-em {
    padding-bottom: 6em !important;
  }
  .xl\:pb-9-em {
    padding-bottom: 7em !important;
  }
  .xl\:pb-10-em {
    padding-bottom: 8em !important;
  }
  .xl\:pb-11-em {
    padding-bottom: 9em !important;
  }
  .xl\:pb-12-em {
    padding-bottom: 10em !important;
  }
  .xl\:pb-13-em {
    padding-bottom: 11em !important;
  }
  .xl\:pb-14-em {
    padding-bottom: 12em !important;
  }
  .xl\:pb-15-em {
    padding-bottom: 13em !important;
  }
  .xl\:pl-0 {
    padding-left: 0 !important;
  }
  .xl\:pl-0-25 {
    padding-left: 0.0625rem !important;
  }
  .xl\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .xl\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .xl\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .xl\:pl-2-5 {
    padding-left: 0.75rem !important;
  }
  .xl\:pl-3 {
    padding-left: 1rem !important;
  }
  .xl\:pl-3-5 {
    padding-left: 1.5rem !important;
  }
  .xl\:pl-4 {
    padding-left: 2rem !important;
  }
  .xl\:pl-5 {
    padding-left: 3rem !important;
  }
  .xl\:pl-5-5 {
    padding-left: 3.5rem !important;
  }
  .xl\:pl-6 {
    padding-left: 4rem !important;
  }
  .xl\:pl-7 {
    padding-left: 5rem !important;
  }
  .xl\:pl-8 {
    padding-left: 6rem !important;
  }
  .xl\:pl-9 {
    padding-left: 7rem !important;
  }
  .xl\:pl-10 {
    padding-left: 8rem !important;
  }
  .xl\:pl-11 {
    padding-left: 9rem !important;
  }
  .xl\:pl-12 {
    padding-left: 10rem !important;
  }
  .xl\:pl-13 {
    padding-left: 11rem !important;
  }
  .xl\:pl-14 {
    padding-left: 12rem !important;
  }
  .xl\:pl-15 {
    padding-left: 13rem !important;
  }
  .xl\:pl-18 {
    padding-left: 16rem !important;
  }
  .xl\:pl-30 {
    padding-left: 28rem !important;
  }
  .xl\:pl-1-em {
    padding-left: 0.25em !important;
  }
  .xl\:pl-1-5-em {
    padding-left: 0.375em !important;
  }
  .xl\:pl-2-em {
    padding-left: 0.5em !important;
  }
  .xl\:pl-2-25-em {
    padding-left: 0.625em !important;
  }
  .xl\:pl-2-5-em {
    padding-left: 0.75em !important;
  }
  .xl\:pl-3-em {
    padding-left: 1em !important;
  }
  .xl\:pl-4-em {
    padding-left: 2em !important;
  }
  .xl\:pl-5-em {
    padding-left: 3em !important;
  }
  .xl\:pl-6-em {
    padding-left: 4em !important;
  }
  .xl\:pl-7-em {
    padding-left: 5em !important;
  }
  .xl\:pl-8-em {
    padding-left: 6em !important;
  }
  .xl\:pl-9-em {
    padding-left: 7em !important;
  }
  .xl\:pl-10-em {
    padding-left: 8em !important;
  }
  .xl\:pl-11-em {
    padding-left: 9em !important;
  }
  .xl\:pl-12-em {
    padding-left: 10em !important;
  }
  .xl\:pl-13-em {
    padding-left: 11em !important;
  }
  .xl\:pl-14-em {
    padding-left: 12em !important;
  }
  .xl\:pl-15-em {
    padding-left: 13em !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:p-0 {
    padding: 0 !important;
  }
  .xxl\:p-0-25 {
    padding: 0.0625rem !important;
  }
  .xxl\:p-0-5 {
    padding: 0.125rem !important;
  }
  .xxl\:p-1 {
    padding: 0.25rem !important;
  }
  .xxl\:p-2 {
    padding: 0.5rem !important;
  }
  .xxl\:p-2-5 {
    padding: 0.75rem !important;
  }
  .xxl\:p-3 {
    padding: 1rem !important;
  }
  .xxl\:p-3-5 {
    padding: 1.5rem !important;
  }
  .xxl\:p-4 {
    padding: 2rem !important;
  }
  .xxl\:p-5 {
    padding: 3rem !important;
  }
  .xxl\:p-5-5 {
    padding: 3.5rem !important;
  }
  .xxl\:p-6 {
    padding: 4rem !important;
  }
  .xxl\:p-7 {
    padding: 5rem !important;
  }
  .xxl\:p-8 {
    padding: 6rem !important;
  }
  .xxl\:p-9 {
    padding: 7rem !important;
  }
  .xxl\:p-10 {
    padding: 8rem !important;
  }
  .xxl\:p-11 {
    padding: 9rem !important;
  }
  .xxl\:p-12 {
    padding: 10rem !important;
  }
  .xxl\:p-13 {
    padding: 11rem !important;
  }
  .xxl\:p-14 {
    padding: 12rem !important;
  }
  .xxl\:p-15 {
    padding: 13rem !important;
  }
  .xxl\:p-18 {
    padding: 16rem !important;
  }
  .xxl\:p-30 {
    padding: 28rem !important;
  }
  .xxl\:p-1-em {
    padding: 0.25em !important;
  }
  .xxl\:p-1-5-em {
    padding: 0.375em !important;
  }
  .xxl\:p-2-em {
    padding: 0.5em !important;
  }
  .xxl\:p-2-25-em {
    padding: 0.625em !important;
  }
  .xxl\:p-2-5-em {
    padding: 0.75em !important;
  }
  .xxl\:p-3-em {
    padding: 1em !important;
  }
  .xxl\:p-4-em {
    padding: 2em !important;
  }
  .xxl\:p-5-em {
    padding: 3em !important;
  }
  .xxl\:p-6-em {
    padding: 4em !important;
  }
  .xxl\:p-7-em {
    padding: 5em !important;
  }
  .xxl\:p-8-em {
    padding: 6em !important;
  }
  .xxl\:p-9-em {
    padding: 7em !important;
  }
  .xxl\:p-10-em {
    padding: 8em !important;
  }
  .xxl\:p-11-em {
    padding: 9em !important;
  }
  .xxl\:p-12-em {
    padding: 10em !important;
  }
  .xxl\:p-13-em {
    padding: 11em !important;
  }
  .xxl\:p-14-em {
    padding: 12em !important;
  }
  .xxl\:p-15-em {
    padding: 13em !important;
  }
  .xxl\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .xxl\:px-0-25 {
    padding-left: 0.0625rem !important;
    padding-right: 0.0625rem !important;
  }
  .xxl\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .xxl\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .xxl\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xxl\:px-2-5 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .xxl\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .xxl\:px-3-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .xxl\:px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .xxl\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .xxl\:px-5-5 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .xxl\:px-6 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .xxl\:px-7 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .xxl\:px-8 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .xxl\:px-9 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .xxl\:px-10 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .xxl\:px-11 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .xxl\:px-12 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .xxl\:px-13 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .xxl\:px-14 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .xxl\:px-15 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .xxl\:px-18 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .xxl\:px-30 {
    padding-left: 28rem !important;
    padding-right: 28rem !important;
  }
  .xxl\:px-1-em {
    padding-left: 0.25em !important;
    padding-right: 0.25em !important;
  }
  .xxl\:px-1-5-em {
    padding-left: 0.375em !important;
    padding-right: 0.375em !important;
  }
  .xxl\:px-2-em {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
  .xxl\:px-2-25-em {
    padding-left: 0.625em !important;
    padding-right: 0.625em !important;
  }
  .xxl\:px-2-5-em {
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
  }
  .xxl\:px-3-em {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
  .xxl\:px-4-em {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
  .xxl\:px-5-em {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
  .xxl\:px-6-em {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
  .xxl\:px-7-em {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }
  .xxl\:px-8-em {
    padding-left: 6em !important;
    padding-right: 6em !important;
  }
  .xxl\:px-9-em {
    padding-left: 7em !important;
    padding-right: 7em !important;
  }
  .xxl\:px-10-em {
    padding-left: 8em !important;
    padding-right: 8em !important;
  }
  .xxl\:px-11-em {
    padding-left: 9em !important;
    padding-right: 9em !important;
  }
  .xxl\:px-12-em {
    padding-left: 10em !important;
    padding-right: 10em !important;
  }
  .xxl\:px-13-em {
    padding-left: 11em !important;
    padding-right: 11em !important;
  }
  .xxl\:px-14-em {
    padding-left: 12em !important;
    padding-right: 12em !important;
  }
  .xxl\:px-15-em {
    padding-left: 13em !important;
    padding-right: 13em !important;
  }
  .xxl\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .xxl\:py-0-25 {
    padding-top: 0.0625rem !important;
    padding-bottom: 0.0625rem !important;
  }
  .xxl\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .xxl\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .xxl\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .xxl\:py-2-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .xxl\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .xxl\:py-3-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .xxl\:py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .xxl\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .xxl\:py-5-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .xxl\:py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .xxl\:py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .xxl\:py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .xxl\:py-9 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .xxl\:py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .xxl\:py-11 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .xxl\:py-12 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .xxl\:py-13 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .xxl\:py-14 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .xxl\:py-15 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .xxl\:py-18 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .xxl\:py-30 {
    padding-top: 28rem !important;
    padding-bottom: 28rem !important;
  }
  .xxl\:py-1-em {
    padding-top: 0.25em !important;
    padding-bottom: 0.25em !important;
  }
  .xxl\:py-1-5-em {
    padding-top: 0.375em !important;
    padding-bottom: 0.375em !important;
  }
  .xxl\:py-2-em {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
  }
  .xxl\:py-2-25-em {
    padding-top: 0.625em !important;
    padding-bottom: 0.625em !important;
  }
  .xxl\:py-2-5-em {
    padding-top: 0.75em !important;
    padding-bottom: 0.75em !important;
  }
  .xxl\:py-3-em {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  .xxl\:py-4-em {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
  }
  .xxl\:py-5-em {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  .xxl\:py-6-em {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .xxl\:py-7-em {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
  .xxl\:py-8-em {
    padding-top: 6em !important;
    padding-bottom: 6em !important;
  }
  .xxl\:py-9-em {
    padding-top: 7em !important;
    padding-bottom: 7em !important;
  }
  .xxl\:py-10-em {
    padding-top: 8em !important;
    padding-bottom: 8em !important;
  }
  .xxl\:py-11-em {
    padding-top: 9em !important;
    padding-bottom: 9em !important;
  }
  .xxl\:py-12-em {
    padding-top: 10em !important;
    padding-bottom: 10em !important;
  }
  .xxl\:py-13-em {
    padding-top: 11em !important;
    padding-bottom: 11em !important;
  }
  .xxl\:py-14-em {
    padding-top: 12em !important;
    padding-bottom: 12em !important;
  }
  .xxl\:py-15-em {
    padding-top: 13em !important;
    padding-bottom: 13em !important;
  }
  .xxl\:pt-0 {
    padding-top: 0 !important;
  }
  .xxl\:pt-0-25 {
    padding-top: 0.0625rem !important;
  }
  .xxl\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .xxl\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .xxl\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .xxl\:pt-2-5 {
    padding-top: 0.75rem !important;
  }
  .xxl\:pt-3 {
    padding-top: 1rem !important;
  }
  .xxl\:pt-3-5 {
    padding-top: 1.5rem !important;
  }
  .xxl\:pt-4 {
    padding-top: 2rem !important;
  }
  .xxl\:pt-5 {
    padding-top: 3rem !important;
  }
  .xxl\:pt-5-5 {
    padding-top: 3.5rem !important;
  }
  .xxl\:pt-6 {
    padding-top: 4rem !important;
  }
  .xxl\:pt-7 {
    padding-top: 5rem !important;
  }
  .xxl\:pt-8 {
    padding-top: 6rem !important;
  }
  .xxl\:pt-9 {
    padding-top: 7rem !important;
  }
  .xxl\:pt-10 {
    padding-top: 8rem !important;
  }
  .xxl\:pt-11 {
    padding-top: 9rem !important;
  }
  .xxl\:pt-12 {
    padding-top: 10rem !important;
  }
  .xxl\:pt-13 {
    padding-top: 11rem !important;
  }
  .xxl\:pt-14 {
    padding-top: 12rem !important;
  }
  .xxl\:pt-15 {
    padding-top: 13rem !important;
  }
  .xxl\:pt-18 {
    padding-top: 16rem !important;
  }
  .xxl\:pt-30 {
    padding-top: 28rem !important;
  }
  .xxl\:pt-1-em {
    padding-top: 0.25em !important;
  }
  .xxl\:pt-1-5-em {
    padding-top: 0.375em !important;
  }
  .xxl\:pt-2-em {
    padding-top: 0.5em !important;
  }
  .xxl\:pt-2-25-em {
    padding-top: 0.625em !important;
  }
  .xxl\:pt-2-5-em {
    padding-top: 0.75em !important;
  }
  .xxl\:pt-3-em {
    padding-top: 1em !important;
  }
  .xxl\:pt-4-em {
    padding-top: 2em !important;
  }
  .xxl\:pt-5-em {
    padding-top: 3em !important;
  }
  .xxl\:pt-6-em {
    padding-top: 4em !important;
  }
  .xxl\:pt-7-em {
    padding-top: 5em !important;
  }
  .xxl\:pt-8-em {
    padding-top: 6em !important;
  }
  .xxl\:pt-9-em {
    padding-top: 7em !important;
  }
  .xxl\:pt-10-em {
    padding-top: 8em !important;
  }
  .xxl\:pt-11-em {
    padding-top: 9em !important;
  }
  .xxl\:pt-12-em {
    padding-top: 10em !important;
  }
  .xxl\:pt-13-em {
    padding-top: 11em !important;
  }
  .xxl\:pt-14-em {
    padding-top: 12em !important;
  }
  .xxl\:pt-15-em {
    padding-top: 13em !important;
  }
  .xxl\:pr-0 {
    padding-right: 0 !important;
  }
  .xxl\:pr-0-25 {
    padding-right: 0.0625rem !important;
  }
  .xxl\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .xxl\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .xxl\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .xxl\:pr-2-5 {
    padding-right: 0.75rem !important;
  }
  .xxl\:pr-3 {
    padding-right: 1rem !important;
  }
  .xxl\:pr-3-5 {
    padding-right: 1.5rem !important;
  }
  .xxl\:pr-4 {
    padding-right: 2rem !important;
  }
  .xxl\:pr-5 {
    padding-right: 3rem !important;
  }
  .xxl\:pr-5-5 {
    padding-right: 3.5rem !important;
  }
  .xxl\:pr-6 {
    padding-right: 4rem !important;
  }
  .xxl\:pr-7 {
    padding-right: 5rem !important;
  }
  .xxl\:pr-8 {
    padding-right: 6rem !important;
  }
  .xxl\:pr-9 {
    padding-right: 7rem !important;
  }
  .xxl\:pr-10 {
    padding-right: 8rem !important;
  }
  .xxl\:pr-11 {
    padding-right: 9rem !important;
  }
  .xxl\:pr-12 {
    padding-right: 10rem !important;
  }
  .xxl\:pr-13 {
    padding-right: 11rem !important;
  }
  .xxl\:pr-14 {
    padding-right: 12rem !important;
  }
  .xxl\:pr-15 {
    padding-right: 13rem !important;
  }
  .xxl\:pr-18 {
    padding-right: 16rem !important;
  }
  .xxl\:pr-30 {
    padding-right: 28rem !important;
  }
  .xxl\:pr-1-em {
    padding-right: 0.25em !important;
  }
  .xxl\:pr-1-5-em {
    padding-right: 0.375em !important;
  }
  .xxl\:pr-2-em {
    padding-right: 0.5em !important;
  }
  .xxl\:pr-2-25-em {
    padding-right: 0.625em !important;
  }
  .xxl\:pr-2-5-em {
    padding-right: 0.75em !important;
  }
  .xxl\:pr-3-em {
    padding-right: 1em !important;
  }
  .xxl\:pr-4-em {
    padding-right: 2em !important;
  }
  .xxl\:pr-5-em {
    padding-right: 3em !important;
  }
  .xxl\:pr-6-em {
    padding-right: 4em !important;
  }
  .xxl\:pr-7-em {
    padding-right: 5em !important;
  }
  .xxl\:pr-8-em {
    padding-right: 6em !important;
  }
  .xxl\:pr-9-em {
    padding-right: 7em !important;
  }
  .xxl\:pr-10-em {
    padding-right: 8em !important;
  }
  .xxl\:pr-11-em {
    padding-right: 9em !important;
  }
  .xxl\:pr-12-em {
    padding-right: 10em !important;
  }
  .xxl\:pr-13-em {
    padding-right: 11em !important;
  }
  .xxl\:pr-14-em {
    padding-right: 12em !important;
  }
  .xxl\:pr-15-em {
    padding-right: 13em !important;
  }
  .xxl\:pb-0 {
    padding-bottom: 0 !important;
  }
  .xxl\:pb-0-25 {
    padding-bottom: 0.0625rem !important;
  }
  .xxl\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .xxl\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .xxl\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .xxl\:pb-2-5 {
    padding-bottom: 0.75rem !important;
  }
  .xxl\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .xxl\:pb-3-5 {
    padding-bottom: 1.5rem !important;
  }
  .xxl\:pb-4 {
    padding-bottom: 2rem !important;
  }
  .xxl\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .xxl\:pb-5-5 {
    padding-bottom: 3.5rem !important;
  }
  .xxl\:pb-6 {
    padding-bottom: 4rem !important;
  }
  .xxl\:pb-7 {
    padding-bottom: 5rem !important;
  }
  .xxl\:pb-8 {
    padding-bottom: 6rem !important;
  }
  .xxl\:pb-9 {
    padding-bottom: 7rem !important;
  }
  .xxl\:pb-10 {
    padding-bottom: 8rem !important;
  }
  .xxl\:pb-11 {
    padding-bottom: 9rem !important;
  }
  .xxl\:pb-12 {
    padding-bottom: 10rem !important;
  }
  .xxl\:pb-13 {
    padding-bottom: 11rem !important;
  }
  .xxl\:pb-14 {
    padding-bottom: 12rem !important;
  }
  .xxl\:pb-15 {
    padding-bottom: 13rem !important;
  }
  .xxl\:pb-18 {
    padding-bottom: 16rem !important;
  }
  .xxl\:pb-30 {
    padding-bottom: 28rem !important;
  }
  .xxl\:pb-1-em {
    padding-bottom: 0.25em !important;
  }
  .xxl\:pb-1-5-em {
    padding-bottom: 0.375em !important;
  }
  .xxl\:pb-2-em {
    padding-bottom: 0.5em !important;
  }
  .xxl\:pb-2-25-em {
    padding-bottom: 0.625em !important;
  }
  .xxl\:pb-2-5-em {
    padding-bottom: 0.75em !important;
  }
  .xxl\:pb-3-em {
    padding-bottom: 1em !important;
  }
  .xxl\:pb-4-em {
    padding-bottom: 2em !important;
  }
  .xxl\:pb-5-em {
    padding-bottom: 3em !important;
  }
  .xxl\:pb-6-em {
    padding-bottom: 4em !important;
  }
  .xxl\:pb-7-em {
    padding-bottom: 5em !important;
  }
  .xxl\:pb-8-em {
    padding-bottom: 6em !important;
  }
  .xxl\:pb-9-em {
    padding-bottom: 7em !important;
  }
  .xxl\:pb-10-em {
    padding-bottom: 8em !important;
  }
  .xxl\:pb-11-em {
    padding-bottom: 9em !important;
  }
  .xxl\:pb-12-em {
    padding-bottom: 10em !important;
  }
  .xxl\:pb-13-em {
    padding-bottom: 11em !important;
  }
  .xxl\:pb-14-em {
    padding-bottom: 12em !important;
  }
  .xxl\:pb-15-em {
    padding-bottom: 13em !important;
  }
  .xxl\:pl-0 {
    padding-left: 0 !important;
  }
  .xxl\:pl-0-25 {
    padding-left: 0.0625rem !important;
  }
  .xxl\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .xxl\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .xxl\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .xxl\:pl-2-5 {
    padding-left: 0.75rem !important;
  }
  .xxl\:pl-3 {
    padding-left: 1rem !important;
  }
  .xxl\:pl-3-5 {
    padding-left: 1.5rem !important;
  }
  .xxl\:pl-4 {
    padding-left: 2rem !important;
  }
  .xxl\:pl-5 {
    padding-left: 3rem !important;
  }
  .xxl\:pl-5-5 {
    padding-left: 3.5rem !important;
  }
  .xxl\:pl-6 {
    padding-left: 4rem !important;
  }
  .xxl\:pl-7 {
    padding-left: 5rem !important;
  }
  .xxl\:pl-8 {
    padding-left: 6rem !important;
  }
  .xxl\:pl-9 {
    padding-left: 7rem !important;
  }
  .xxl\:pl-10 {
    padding-left: 8rem !important;
  }
  .xxl\:pl-11 {
    padding-left: 9rem !important;
  }
  .xxl\:pl-12 {
    padding-left: 10rem !important;
  }
  .xxl\:pl-13 {
    padding-left: 11rem !important;
  }
  .xxl\:pl-14 {
    padding-left: 12rem !important;
  }
  .xxl\:pl-15 {
    padding-left: 13rem !important;
  }
  .xxl\:pl-18 {
    padding-left: 16rem !important;
  }
  .xxl\:pl-30 {
    padding-left: 28rem !important;
  }
  .xxl\:pl-1-em {
    padding-left: 0.25em !important;
  }
  .xxl\:pl-1-5-em {
    padding-left: 0.375em !important;
  }
  .xxl\:pl-2-em {
    padding-left: 0.5em !important;
  }
  .xxl\:pl-2-25-em {
    padding-left: 0.625em !important;
  }
  .xxl\:pl-2-5-em {
    padding-left: 0.75em !important;
  }
  .xxl\:pl-3-em {
    padding-left: 1em !important;
  }
  .xxl\:pl-4-em {
    padding-left: 2em !important;
  }
  .xxl\:pl-5-em {
    padding-left: 3em !important;
  }
  .xxl\:pl-6-em {
    padding-left: 4em !important;
  }
  .xxl\:pl-7-em {
    padding-left: 5em !important;
  }
  .xxl\:pl-8-em {
    padding-left: 6em !important;
  }
  .xxl\:pl-9-em {
    padding-left: 7em !important;
  }
  .xxl\:pl-10-em {
    padding-left: 8em !important;
  }
  .xxl\:pl-11-em {
    padding-left: 9em !important;
  }
  .xxl\:pl-12-em {
    padding-left: 10em !important;
  }
  .xxl\:pl-13-em {
    padding-left: 11em !important;
  }
  .xxl\:pl-14-em {
    padding-left: 12em !important;
  }
  .xxl\:pl-15-em {
    padding-left: 13em !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:p-0 {
    padding: 0 !important;
  }
  .max\:p-0-25 {
    padding: 0.0625rem !important;
  }
  .max\:p-0-5 {
    padding: 0.125rem !important;
  }
  .max\:p-1 {
    padding: 0.25rem !important;
  }
  .max\:p-2 {
    padding: 0.5rem !important;
  }
  .max\:p-2-5 {
    padding: 0.75rem !important;
  }
  .max\:p-3 {
    padding: 1rem !important;
  }
  .max\:p-3-5 {
    padding: 1.5rem !important;
  }
  .max\:p-4 {
    padding: 2rem !important;
  }
  .max\:p-5 {
    padding: 3rem !important;
  }
  .max\:p-5-5 {
    padding: 3.5rem !important;
  }
  .max\:p-6 {
    padding: 4rem !important;
  }
  .max\:p-7 {
    padding: 5rem !important;
  }
  .max\:p-8 {
    padding: 6rem !important;
  }
  .max\:p-9 {
    padding: 7rem !important;
  }
  .max\:p-10 {
    padding: 8rem !important;
  }
  .max\:p-11 {
    padding: 9rem !important;
  }
  .max\:p-12 {
    padding: 10rem !important;
  }
  .max\:p-13 {
    padding: 11rem !important;
  }
  .max\:p-14 {
    padding: 12rem !important;
  }
  .max\:p-15 {
    padding: 13rem !important;
  }
  .max\:p-18 {
    padding: 16rem !important;
  }
  .max\:p-30 {
    padding: 28rem !important;
  }
  .max\:p-1-em {
    padding: 0.25em !important;
  }
  .max\:p-1-5-em {
    padding: 0.375em !important;
  }
  .max\:p-2-em {
    padding: 0.5em !important;
  }
  .max\:p-2-25-em {
    padding: 0.625em !important;
  }
  .max\:p-2-5-em {
    padding: 0.75em !important;
  }
  .max\:p-3-em {
    padding: 1em !important;
  }
  .max\:p-4-em {
    padding: 2em !important;
  }
  .max\:p-5-em {
    padding: 3em !important;
  }
  .max\:p-6-em {
    padding: 4em !important;
  }
  .max\:p-7-em {
    padding: 5em !important;
  }
  .max\:p-8-em {
    padding: 6em !important;
  }
  .max\:p-9-em {
    padding: 7em !important;
  }
  .max\:p-10-em {
    padding: 8em !important;
  }
  .max\:p-11-em {
    padding: 9em !important;
  }
  .max\:p-12-em {
    padding: 10em !important;
  }
  .max\:p-13-em {
    padding: 11em !important;
  }
  .max\:p-14-em {
    padding: 12em !important;
  }
  .max\:p-15-em {
    padding: 13em !important;
  }
  .max\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .max\:px-0-25 {
    padding-left: 0.0625rem !important;
    padding-right: 0.0625rem !important;
  }
  .max\:px-0-5 {
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }
  .max\:px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .max\:px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .max\:px-2-5 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .max\:px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .max\:px-3-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .max\:px-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .max\:px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .max\:px-5-5 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .max\:px-6 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .max\:px-7 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .max\:px-8 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .max\:px-9 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .max\:px-10 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .max\:px-11 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .max\:px-12 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
  .max\:px-13 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }
  .max\:px-14 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }
  .max\:px-15 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }
  .max\:px-18 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }
  .max\:px-30 {
    padding-left: 28rem !important;
    padding-right: 28rem !important;
  }
  .max\:px-1-em {
    padding-left: 0.25em !important;
    padding-right: 0.25em !important;
  }
  .max\:px-1-5-em {
    padding-left: 0.375em !important;
    padding-right: 0.375em !important;
  }
  .max\:px-2-em {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
  .max\:px-2-25-em {
    padding-left: 0.625em !important;
    padding-right: 0.625em !important;
  }
  .max\:px-2-5-em {
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
  }
  .max\:px-3-em {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
  .max\:px-4-em {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
  .max\:px-5-em {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
  .max\:px-6-em {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
  .max\:px-7-em {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }
  .max\:px-8-em {
    padding-left: 6em !important;
    padding-right: 6em !important;
  }
  .max\:px-9-em {
    padding-left: 7em !important;
    padding-right: 7em !important;
  }
  .max\:px-10-em {
    padding-left: 8em !important;
    padding-right: 8em !important;
  }
  .max\:px-11-em {
    padding-left: 9em !important;
    padding-right: 9em !important;
  }
  .max\:px-12-em {
    padding-left: 10em !important;
    padding-right: 10em !important;
  }
  .max\:px-13-em {
    padding-left: 11em !important;
    padding-right: 11em !important;
  }
  .max\:px-14-em {
    padding-left: 12em !important;
    padding-right: 12em !important;
  }
  .max\:px-15-em {
    padding-left: 13em !important;
    padding-right: 13em !important;
  }
  .max\:py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .max\:py-0-25 {
    padding-top: 0.0625rem !important;
    padding-bottom: 0.0625rem !important;
  }
  .max\:py-0-5 {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }
  .max\:py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .max\:py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .max\:py-2-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .max\:py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .max\:py-3-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .max\:py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .max\:py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .max\:py-5-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .max\:py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .max\:py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .max\:py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .max\:py-9 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .max\:py-10 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .max\:py-11 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .max\:py-12 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .max\:py-13 {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .max\:py-14 {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .max\:py-15 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .max\:py-18 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .max\:py-30 {
    padding-top: 28rem !important;
    padding-bottom: 28rem !important;
  }
  .max\:py-1-em {
    padding-top: 0.25em !important;
    padding-bottom: 0.25em !important;
  }
  .max\:py-1-5-em {
    padding-top: 0.375em !important;
    padding-bottom: 0.375em !important;
  }
  .max\:py-2-em {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
  }
  .max\:py-2-25-em {
    padding-top: 0.625em !important;
    padding-bottom: 0.625em !important;
  }
  .max\:py-2-5-em {
    padding-top: 0.75em !important;
    padding-bottom: 0.75em !important;
  }
  .max\:py-3-em {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  .max\:py-4-em {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
  }
  .max\:py-5-em {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  .max\:py-6-em {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .max\:py-7-em {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
  .max\:py-8-em {
    padding-top: 6em !important;
    padding-bottom: 6em !important;
  }
  .max\:py-9-em {
    padding-top: 7em !important;
    padding-bottom: 7em !important;
  }
  .max\:py-10-em {
    padding-top: 8em !important;
    padding-bottom: 8em !important;
  }
  .max\:py-11-em {
    padding-top: 9em !important;
    padding-bottom: 9em !important;
  }
  .max\:py-12-em {
    padding-top: 10em !important;
    padding-bottom: 10em !important;
  }
  .max\:py-13-em {
    padding-top: 11em !important;
    padding-bottom: 11em !important;
  }
  .max\:py-14-em {
    padding-top: 12em !important;
    padding-bottom: 12em !important;
  }
  .max\:py-15-em {
    padding-top: 13em !important;
    padding-bottom: 13em !important;
  }
  .max\:pt-0 {
    padding-top: 0 !important;
  }
  .max\:pt-0-25 {
    padding-top: 0.0625rem !important;
  }
  .max\:pt-0-5 {
    padding-top: 0.125rem !important;
  }
  .max\:pt-1 {
    padding-top: 0.25rem !important;
  }
  .max\:pt-2 {
    padding-top: 0.5rem !important;
  }
  .max\:pt-2-5 {
    padding-top: 0.75rem !important;
  }
  .max\:pt-3 {
    padding-top: 1rem !important;
  }
  .max\:pt-3-5 {
    padding-top: 1.5rem !important;
  }
  .max\:pt-4 {
    padding-top: 2rem !important;
  }
  .max\:pt-5 {
    padding-top: 3rem !important;
  }
  .max\:pt-5-5 {
    padding-top: 3.5rem !important;
  }
  .max\:pt-6 {
    padding-top: 4rem !important;
  }
  .max\:pt-7 {
    padding-top: 5rem !important;
  }
  .max\:pt-8 {
    padding-top: 6rem !important;
  }
  .max\:pt-9 {
    padding-top: 7rem !important;
  }
  .max\:pt-10 {
    padding-top: 8rem !important;
  }
  .max\:pt-11 {
    padding-top: 9rem !important;
  }
  .max\:pt-12 {
    padding-top: 10rem !important;
  }
  .max\:pt-13 {
    padding-top: 11rem !important;
  }
  .max\:pt-14 {
    padding-top: 12rem !important;
  }
  .max\:pt-15 {
    padding-top: 13rem !important;
  }
  .max\:pt-18 {
    padding-top: 16rem !important;
  }
  .max\:pt-30 {
    padding-top: 28rem !important;
  }
  .max\:pt-1-em {
    padding-top: 0.25em !important;
  }
  .max\:pt-1-5-em {
    padding-top: 0.375em !important;
  }
  .max\:pt-2-em {
    padding-top: 0.5em !important;
  }
  .max\:pt-2-25-em {
    padding-top: 0.625em !important;
  }
  .max\:pt-2-5-em {
    padding-top: 0.75em !important;
  }
  .max\:pt-3-em {
    padding-top: 1em !important;
  }
  .max\:pt-4-em {
    padding-top: 2em !important;
  }
  .max\:pt-5-em {
    padding-top: 3em !important;
  }
  .max\:pt-6-em {
    padding-top: 4em !important;
  }
  .max\:pt-7-em {
    padding-top: 5em !important;
  }
  .max\:pt-8-em {
    padding-top: 6em !important;
  }
  .max\:pt-9-em {
    padding-top: 7em !important;
  }
  .max\:pt-10-em {
    padding-top: 8em !important;
  }
  .max\:pt-11-em {
    padding-top: 9em !important;
  }
  .max\:pt-12-em {
    padding-top: 10em !important;
  }
  .max\:pt-13-em {
    padding-top: 11em !important;
  }
  .max\:pt-14-em {
    padding-top: 12em !important;
  }
  .max\:pt-15-em {
    padding-top: 13em !important;
  }
  .max\:pr-0 {
    padding-right: 0 !important;
  }
  .max\:pr-0-25 {
    padding-right: 0.0625rem !important;
  }
  .max\:pr-0-5 {
    padding-right: 0.125rem !important;
  }
  .max\:pr-1 {
    padding-right: 0.25rem !important;
  }
  .max\:pr-2 {
    padding-right: 0.5rem !important;
  }
  .max\:pr-2-5 {
    padding-right: 0.75rem !important;
  }
  .max\:pr-3 {
    padding-right: 1rem !important;
  }
  .max\:pr-3-5 {
    padding-right: 1.5rem !important;
  }
  .max\:pr-4 {
    padding-right: 2rem !important;
  }
  .max\:pr-5 {
    padding-right: 3rem !important;
  }
  .max\:pr-5-5 {
    padding-right: 3.5rem !important;
  }
  .max\:pr-6 {
    padding-right: 4rem !important;
  }
  .max\:pr-7 {
    padding-right: 5rem !important;
  }
  .max\:pr-8 {
    padding-right: 6rem !important;
  }
  .max\:pr-9 {
    padding-right: 7rem !important;
  }
  .max\:pr-10 {
    padding-right: 8rem !important;
  }
  .max\:pr-11 {
    padding-right: 9rem !important;
  }
  .max\:pr-12 {
    padding-right: 10rem !important;
  }
  .max\:pr-13 {
    padding-right: 11rem !important;
  }
  .max\:pr-14 {
    padding-right: 12rem !important;
  }
  .max\:pr-15 {
    padding-right: 13rem !important;
  }
  .max\:pr-18 {
    padding-right: 16rem !important;
  }
  .max\:pr-30 {
    padding-right: 28rem !important;
  }
  .max\:pr-1-em {
    padding-right: 0.25em !important;
  }
  .max\:pr-1-5-em {
    padding-right: 0.375em !important;
  }
  .max\:pr-2-em {
    padding-right: 0.5em !important;
  }
  .max\:pr-2-25-em {
    padding-right: 0.625em !important;
  }
  .max\:pr-2-5-em {
    padding-right: 0.75em !important;
  }
  .max\:pr-3-em {
    padding-right: 1em !important;
  }
  .max\:pr-4-em {
    padding-right: 2em !important;
  }
  .max\:pr-5-em {
    padding-right: 3em !important;
  }
  .max\:pr-6-em {
    padding-right: 4em !important;
  }
  .max\:pr-7-em {
    padding-right: 5em !important;
  }
  .max\:pr-8-em {
    padding-right: 6em !important;
  }
  .max\:pr-9-em {
    padding-right: 7em !important;
  }
  .max\:pr-10-em {
    padding-right: 8em !important;
  }
  .max\:pr-11-em {
    padding-right: 9em !important;
  }
  .max\:pr-12-em {
    padding-right: 10em !important;
  }
  .max\:pr-13-em {
    padding-right: 11em !important;
  }
  .max\:pr-14-em {
    padding-right: 12em !important;
  }
  .max\:pr-15-em {
    padding-right: 13em !important;
  }
  .max\:pb-0 {
    padding-bottom: 0 !important;
  }
  .max\:pb-0-25 {
    padding-bottom: 0.0625rem !important;
  }
  .max\:pb-0-5 {
    padding-bottom: 0.125rem !important;
  }
  .max\:pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .max\:pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .max\:pb-2-5 {
    padding-bottom: 0.75rem !important;
  }
  .max\:pb-3 {
    padding-bottom: 1rem !important;
  }
  .max\:pb-3-5 {
    padding-bottom: 1.5rem !important;
  }
  .max\:pb-4 {
    padding-bottom: 2rem !important;
  }
  .max\:pb-5 {
    padding-bottom: 3rem !important;
  }
  .max\:pb-5-5 {
    padding-bottom: 3.5rem !important;
  }
  .max\:pb-6 {
    padding-bottom: 4rem !important;
  }
  .max\:pb-7 {
    padding-bottom: 5rem !important;
  }
  .max\:pb-8 {
    padding-bottom: 6rem !important;
  }
  .max\:pb-9 {
    padding-bottom: 7rem !important;
  }
  .max\:pb-10 {
    padding-bottom: 8rem !important;
  }
  .max\:pb-11 {
    padding-bottom: 9rem !important;
  }
  .max\:pb-12 {
    padding-bottom: 10rem !important;
  }
  .max\:pb-13 {
    padding-bottom: 11rem !important;
  }
  .max\:pb-14 {
    padding-bottom: 12rem !important;
  }
  .max\:pb-15 {
    padding-bottom: 13rem !important;
  }
  .max\:pb-18 {
    padding-bottom: 16rem !important;
  }
  .max\:pb-30 {
    padding-bottom: 28rem !important;
  }
  .max\:pb-1-em {
    padding-bottom: 0.25em !important;
  }
  .max\:pb-1-5-em {
    padding-bottom: 0.375em !important;
  }
  .max\:pb-2-em {
    padding-bottom: 0.5em !important;
  }
  .max\:pb-2-25-em {
    padding-bottom: 0.625em !important;
  }
  .max\:pb-2-5-em {
    padding-bottom: 0.75em !important;
  }
  .max\:pb-3-em {
    padding-bottom: 1em !important;
  }
  .max\:pb-4-em {
    padding-bottom: 2em !important;
  }
  .max\:pb-5-em {
    padding-bottom: 3em !important;
  }
  .max\:pb-6-em {
    padding-bottom: 4em !important;
  }
  .max\:pb-7-em {
    padding-bottom: 5em !important;
  }
  .max\:pb-8-em {
    padding-bottom: 6em !important;
  }
  .max\:pb-9-em {
    padding-bottom: 7em !important;
  }
  .max\:pb-10-em {
    padding-bottom: 8em !important;
  }
  .max\:pb-11-em {
    padding-bottom: 9em !important;
  }
  .max\:pb-12-em {
    padding-bottom: 10em !important;
  }
  .max\:pb-13-em {
    padding-bottom: 11em !important;
  }
  .max\:pb-14-em {
    padding-bottom: 12em !important;
  }
  .max\:pb-15-em {
    padding-bottom: 13em !important;
  }
  .max\:pl-0 {
    padding-left: 0 !important;
  }
  .max\:pl-0-25 {
    padding-left: 0.0625rem !important;
  }
  .max\:pl-0-5 {
    padding-left: 0.125rem !important;
  }
  .max\:pl-1 {
    padding-left: 0.25rem !important;
  }
  .max\:pl-2 {
    padding-left: 0.5rem !important;
  }
  .max\:pl-2-5 {
    padding-left: 0.75rem !important;
  }
  .max\:pl-3 {
    padding-left: 1rem !important;
  }
  .max\:pl-3-5 {
    padding-left: 1.5rem !important;
  }
  .max\:pl-4 {
    padding-left: 2rem !important;
  }
  .max\:pl-5 {
    padding-left: 3rem !important;
  }
  .max\:pl-5-5 {
    padding-left: 3.5rem !important;
  }
  .max\:pl-6 {
    padding-left: 4rem !important;
  }
  .max\:pl-7 {
    padding-left: 5rem !important;
  }
  .max\:pl-8 {
    padding-left: 6rem !important;
  }
  .max\:pl-9 {
    padding-left: 7rem !important;
  }
  .max\:pl-10 {
    padding-left: 8rem !important;
  }
  .max\:pl-11 {
    padding-left: 9rem !important;
  }
  .max\:pl-12 {
    padding-left: 10rem !important;
  }
  .max\:pl-13 {
    padding-left: 11rem !important;
  }
  .max\:pl-14 {
    padding-left: 12rem !important;
  }
  .max\:pl-15 {
    padding-left: 13rem !important;
  }
  .max\:pl-18 {
    padding-left: 16rem !important;
  }
  .max\:pl-30 {
    padding-left: 28rem !important;
  }
  .max\:pl-1-em {
    padding-left: 0.25em !important;
  }
  .max\:pl-1-5-em {
    padding-left: 0.375em !important;
  }
  .max\:pl-2-em {
    padding-left: 0.5em !important;
  }
  .max\:pl-2-25-em {
    padding-left: 0.625em !important;
  }
  .max\:pl-2-5-em {
    padding-left: 0.75em !important;
  }
  .max\:pl-3-em {
    padding-left: 1em !important;
  }
  .max\:pl-4-em {
    padding-left: 2em !important;
  }
  .max\:pl-5-em {
    padding-left: 3em !important;
  }
  .max\:pl-6-em {
    padding-left: 4em !important;
  }
  .max\:pl-7-em {
    padding-left: 5em !important;
  }
  .max\:pl-8-em {
    padding-left: 6em !important;
  }
  .max\:pl-9-em {
    padding-left: 7em !important;
  }
  .max\:pl-10-em {
    padding-left: 8em !important;
  }
  .max\:pl-11-em {
    padding-left: 9em !important;
  }
  .max\:pl-12-em {
    padding-left: 10em !important;
  }
  .max\:pl-13-em {
    padding-left: 11em !important;
  }
  .max\:pl-14-em {
    padding-left: 12em !important;
  }
  .max\:pl-15-em {
    padding-left: 13em !important;
  }
}
/* MARGIN */
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (min-width: 360px) {
  .xs\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.m--1\/6 {
  margin: -16.666666% !important;
}

.m--1\/5 {
  margin: -20% !important;
}

.m--1\/4 {
  margin: -25% !important;
}

.m--2\/7 {
  margin: -28.57142857% !important;
}

.m--1\/3 {
  margin: -33.333333% !important;
}

.m--2\/5 {
  margin: -40% !important;
}

.m--1\/2 {
  margin: -50% !important;
}

.m--1\/12 {
  margin: -8.333333% !important;
}

.m--1\/10 {
  margin: -10% !important;
}

.m--5\/12 {
  margin: -41.6666666% !important;
}

.m--7\/12 {
  margin: -58.333333% !important;
}

.m--3\/5 {
  margin: -60% !important;
}

.m--11\/12 {
  margin: -91.6666666% !important;
}

.m--2\/3 {
  margin: -66.666667% !important;
}

.m--3\/4 {
  margin: -75% !important;
}

.m--4\/5 {
  margin: -80% !important;
}

.m--5\/6 {
  margin: -83.3333333% !important;
}

.m--30 {
  margin: -28rem !important;
}

.m--24 {
  margin: -22rem !important;
}

.m--18 {
  margin: -16rem !important;
}

.m--15 {
  margin: -13rem !important;
}

.m--14 {
  margin: -12rem !important;
}

.m--13 {
  margin: -11rem !important;
}

.m--12 {
  margin: -10rem !important;
}

.m--11 {
  margin: -9rem !important;
}

.m--10 {
  margin: -8rem !important;
}

.m--9 {
  margin: -7rem !important;
}

.m--8 {
  margin: -6rem !important;
}

.m--7 {
  margin: -5rem !important;
}

.m--6 {
  margin: -4rem !important;
}

.m--5 {
  margin: -3rem !important;
}

.m--4-5 {
  margin: -2.5rem !important;
}

.m--4 {
  margin: -2rem !important;
}

.m--3-5 {
  margin: -1.5rem !important;
}

.m--3 {
  margin: -1rem !important;
}

.m--2-5 {
  margin: -0.75rem !important;
}

.m--2 {
  margin: -0.5rem !important;
}

.m--1 {
  margin: -0.25rem !important;
}

.m--0-5 {
  margin: -0.125rem !important;
}

.m-0 {
  margin: 0 !important;
}

.m-0-25 {
  margin: 0.0625rem !important;
}

.m-0-5 {
  margin: 0.125rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-2-5 {
  margin: 0.75rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-3-5 {
  margin: 1.5rem !important;
}

.m-4 {
  margin: 2rem !important;
}

.m-4-5 {
  margin: 2.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-6 {
  margin: 4rem !important;
}

.m-6-5 {
  margin: 4.5rem !important;
}

.m-7 {
  margin: 5rem !important;
}

.m-8 {
  margin: 6rem !important;
}

.m-9 {
  margin: 7rem !important;
}

.m-10 {
  margin: 8rem !important;
}

.m-11 {
  margin: 9rem !important;
}

.m-12 {
  margin: 10rem !important;
}

.m-13 {
  margin: 11rem !important;
}

.m-14 {
  margin: 12rem !important;
}

.m-15 {
  margin: 13rem !important;
}

.m-30 {
  margin: 28rem !important;
}

.m-1-em {
  margin: 0.25em !important;
}

.m-1-5-em {
  margin: 0.375em !important;
}

.m-2-em {
  margin: 0.5em !important;
}

.m-2-25-em {
  margin: 0.625em !important;
}

.m-2-5-em {
  margin: 0.75em !important;
}

.m-3-em {
  margin: 1em !important;
}

.m-4-em {
  margin: 2em !important;
}

.m-5-em {
  margin: 3em !important;
}

.m-6-em {
  margin: 4em !important;
}

.m-7-em {
  margin: 5em !important;
}

.m-8-em {
  margin: 6em !important;
}

.m-9-em {
  margin: 7em !important;
}

.m-1px {
  margin: 1px !important;
}

.m--1px {
  margin: -1px !important;
}

.m-1\/8 {
  margin: 12.5% !important;
}

.m-1\/6 {
  margin: 16.666666% !important;
}

.m-1\/5 {
  margin: 20% !important;
}

.m-1\/4 {
  margin: 25% !important;
}

.m-2\/7 {
  margin: 28.57142857% !important;
}

.m-1\/3 {
  margin: 33.333333% !important;
}

.m-2\/5 {
  margin: 40% !important;
}

.m-1\/2 {
  margin: 50% !important;
}

.m-1\/12 {
  margin: 8.333333% !important;
}

.m-1\/10 {
  margin: 10% !important;
}

.m-5\/12 {
  margin: 41.6666666% !important;
}

.m-7\/12 {
  margin: 58.333333% !important;
}

.m-3\/5 {
  margin: 60% !important;
}

.m-11\/12 {
  margin: 91.6666666% !important;
}

.m-2\/3 {
  margin: 66.666667% !important;
}

.m-3\/4 {
  margin: 75% !important;
}

.m-4\/5 {
  margin: 80% !important;
}

.m-5\/6 {
  margin: 83.3333333% !important;
}

.mx--1\/6 {
  margin-left: -16.666666% !important;
  margin-right: -16.666666% !important;
}

.mx--1\/5 {
  margin-left: -20% !important;
  margin-right: -20% !important;
}

.mx--1\/4 {
  margin-left: -25% !important;
  margin-right: -25% !important;
}

.mx--2\/7 {
  margin-left: -28.57142857% !important;
  margin-right: -28.57142857% !important;
}

.mx--1\/3 {
  margin-left: -33.333333% !important;
  margin-right: -33.333333% !important;
}

.mx--2\/5 {
  margin-left: -40% !important;
  margin-right: -40% !important;
}

.mx--1\/2 {
  margin-left: -50% !important;
  margin-right: -50% !important;
}

.mx--1\/12 {
  margin-left: -8.333333% !important;
  margin-right: -8.333333% !important;
}

.mx--1\/10 {
  margin-left: -10% !important;
  margin-right: -10% !important;
}

.mx--5\/12 {
  margin-left: -41.6666666% !important;
  margin-right: -41.6666666% !important;
}

.mx--7\/12 {
  margin-left: -58.333333% !important;
  margin-right: -58.333333% !important;
}

.mx--3\/5 {
  margin-left: -60% !important;
  margin-right: -60% !important;
}

.mx--11\/12 {
  margin-left: -91.6666666% !important;
  margin-right: -91.6666666% !important;
}

.mx--2\/3 {
  margin-left: -66.666667% !important;
  margin-right: -66.666667% !important;
}

.mx--3\/4 {
  margin-left: -75% !important;
  margin-right: -75% !important;
}

.mx--4\/5 {
  margin-left: -80% !important;
  margin-right: -80% !important;
}

.mx--5\/6 {
  margin-left: -83.3333333% !important;
  margin-right: -83.3333333% !important;
}

.mx--30 {
  margin-left: -28rem !important;
  margin-right: -28rem !important;
}

.mx--24 {
  margin-left: -22rem !important;
  margin-right: -22rem !important;
}

.mx--18 {
  margin-left: -16rem !important;
  margin-right: -16rem !important;
}

.mx--15 {
  margin-left: -13rem !important;
  margin-right: -13rem !important;
}

.mx--14 {
  margin-left: -12rem !important;
  margin-right: -12rem !important;
}

.mx--13 {
  margin-left: -11rem !important;
  margin-right: -11rem !important;
}

.mx--12 {
  margin-left: -10rem !important;
  margin-right: -10rem !important;
}

.mx--11 {
  margin-left: -9rem !important;
  margin-right: -9rem !important;
}

.mx--10 {
  margin-left: -8rem !important;
  margin-right: -8rem !important;
}

.mx--9 {
  margin-left: -7rem !important;
  margin-right: -7rem !important;
}

.mx--8 {
  margin-left: -6rem !important;
  margin-right: -6rem !important;
}

.mx--7 {
  margin-left: -5rem !important;
  margin-right: -5rem !important;
}

.mx--6 {
  margin-left: -4rem !important;
  margin-right: -4rem !important;
}

.mx--5 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.mx--4-5 {
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important;
}

.mx--4 {
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}

.mx--3-5 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

.mx--3 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.mx--2-5 {
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}

.mx--2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.mx--1 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}

.mx--0-5 {
  margin-left: -0.125rem !important;
  margin-right: -0.125rem !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-0-25 {
  margin-left: 0.0625rem !important;
  margin-right: 0.0625rem !important;
}

.mx-0-5 {
  margin-left: 0.125rem !important;
  margin-right: 0.125rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mx-2-5 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-3-5 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-4 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.mx-4-5 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.mx-6 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.mx-6-5 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

.mx-7 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.mx-8 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.mx-9 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.mx-10 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.mx-11 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.mx-12 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.mx-13 {
  margin-left: 11rem !important;
  margin-right: 11rem !important;
}

.mx-14 {
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}

.mx-15 {
  margin-left: 13rem !important;
  margin-right: 13rem !important;
}

.mx-30 {
  margin-left: 28rem !important;
  margin-right: 28rem !important;
}

.mx-1-em {
  margin-left: 0.25em !important;
  margin-right: 0.25em !important;
}

.mx-1-5-em {
  margin-left: 0.375em !important;
  margin-right: 0.375em !important;
}

.mx-2-em {
  margin-left: 0.5em !important;
  margin-right: 0.5em !important;
}

.mx-2-25-em {
  margin-left: 0.625em !important;
  margin-right: 0.625em !important;
}

.mx-2-5-em {
  margin-left: 0.75em !important;
  margin-right: 0.75em !important;
}

.mx-3-em {
  margin-left: 1em !important;
  margin-right: 1em !important;
}

.mx-4-em {
  margin-left: 2em !important;
  margin-right: 2em !important;
}

.mx-5-em {
  margin-left: 3em !important;
  margin-right: 3em !important;
}

.mx-6-em {
  margin-left: 4em !important;
  margin-right: 4em !important;
}

.mx-7-em {
  margin-left: 5em !important;
  margin-right: 5em !important;
}

.mx-8-em {
  margin-left: 6em !important;
  margin-right: 6em !important;
}

.mx-9-em {
  margin-left: 7em !important;
  margin-right: 7em !important;
}

.mx-1px {
  margin-left: 1px !important;
  margin-right: 1px !important;
}

.mx--1px {
  margin-left: -1px !important;
  margin-right: -1px !important;
}

.mx-1\/8 {
  margin-left: 12.5% !important;
  margin-right: 12.5% !important;
}

.mx-1\/6 {
  margin-left: 16.666666% !important;
  margin-right: 16.666666% !important;
}

.mx-1\/5 {
  margin-left: 20% !important;
  margin-right: 20% !important;
}

.mx-1\/4 {
  margin-left: 25% !important;
  margin-right: 25% !important;
}

.mx-2\/7 {
  margin-left: 28.57142857% !important;
  margin-right: 28.57142857% !important;
}

.mx-1\/3 {
  margin-left: 33.333333% !important;
  margin-right: 33.333333% !important;
}

.mx-2\/5 {
  margin-left: 40% !important;
  margin-right: 40% !important;
}

.mx-1\/2 {
  margin-left: 50% !important;
  margin-right: 50% !important;
}

.mx-1\/12 {
  margin-left: 8.333333% !important;
  margin-right: 8.333333% !important;
}

.mx-1\/10 {
  margin-left: 10% !important;
  margin-right: 10% !important;
}

.mx-5\/12 {
  margin-left: 41.6666666% !important;
  margin-right: 41.6666666% !important;
}

.mx-7\/12 {
  margin-left: 58.333333% !important;
  margin-right: 58.333333% !important;
}

.mx-3\/5 {
  margin-left: 60% !important;
  margin-right: 60% !important;
}

.mx-11\/12 {
  margin-left: 91.6666666% !important;
  margin-right: 91.6666666% !important;
}

.mx-2\/3 {
  margin-left: 66.666667% !important;
  margin-right: 66.666667% !important;
}

.mx-3\/4 {
  margin-left: 75% !important;
  margin-right: 75% !important;
}

.mx-4\/5 {
  margin-left: 80% !important;
  margin-right: 80% !important;
}

.mx-5\/6 {
  margin-left: 83.3333333% !important;
  margin-right: 83.3333333% !important;
}

.my--1\/6 {
  margin-top: -16.666666% !important;
  margin-bottom: -16.666666% !important;
}

.my--1\/5 {
  margin-top: -20% !important;
  margin-bottom: -20% !important;
}

.my--1\/4 {
  margin-top: -25% !important;
  margin-bottom: -25% !important;
}

.my--2\/7 {
  margin-top: -28.57142857% !important;
  margin-bottom: -28.57142857% !important;
}

.my--1\/3 {
  margin-top: -33.333333% !important;
  margin-bottom: -33.333333% !important;
}

.my--2\/5 {
  margin-top: -40% !important;
  margin-bottom: -40% !important;
}

.my--1\/2 {
  margin-top: -50% !important;
  margin-bottom: -50% !important;
}

.my--1\/12 {
  margin-top: -8.333333% !important;
  margin-bottom: -8.333333% !important;
}

.my--1\/10 {
  margin-top: -10% !important;
  margin-bottom: -10% !important;
}

.my--5\/12 {
  margin-top: -41.6666666% !important;
  margin-bottom: -41.6666666% !important;
}

.my--7\/12 {
  margin-top: -58.333333% !important;
  margin-bottom: -58.333333% !important;
}

.my--3\/5 {
  margin-top: -60% !important;
  margin-bottom: -60% !important;
}

.my--11\/12 {
  margin-top: -91.6666666% !important;
  margin-bottom: -91.6666666% !important;
}

.my--2\/3 {
  margin-top: -66.666667% !important;
  margin-bottom: -66.666667% !important;
}

.my--3\/4 {
  margin-top: -75% !important;
  margin-bottom: -75% !important;
}

.my--4\/5 {
  margin-top: -80% !important;
  margin-bottom: -80% !important;
}

.my--5\/6 {
  margin-top: -83.3333333% !important;
  margin-bottom: -83.3333333% !important;
}

.my--30 {
  margin-top: -28rem !important;
  margin-bottom: -28rem !important;
}

.my--24 {
  margin-top: -22rem !important;
  margin-bottom: -22rem !important;
}

.my--18 {
  margin-top: -16rem !important;
  margin-bottom: -16rem !important;
}

.my--15 {
  margin-top: -13rem !important;
  margin-bottom: -13rem !important;
}

.my--14 {
  margin-top: -12rem !important;
  margin-bottom: -12rem !important;
}

.my--13 {
  margin-top: -11rem !important;
  margin-bottom: -11rem !important;
}

.my--12 {
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}

.my--11 {
  margin-top: -9rem !important;
  margin-bottom: -9rem !important;
}

.my--10 {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.my--9 {
  margin-top: -7rem !important;
  margin-bottom: -7rem !important;
}

.my--8 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.my--7 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.my--6 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.my--5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.my--4-5 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.my--4 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.my--3-5 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my--3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my--2-5 {
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}

.my--2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my--1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my--0-5 {
  margin-top: -0.125rem !important;
  margin-bottom: -0.125rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-0-25 {
  margin-top: 0.0625rem !important;
  margin-bottom: 0.0625rem !important;
}

.my-0-5 {
  margin-top: 0.125rem !important;
  margin-bottom: 0.125rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-2-5 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-3-5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-4-5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-6 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-6-5 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.my-7 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.my-8 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.my-9 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.my-10 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.my-11 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.my-12 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.my-13 {
  margin-top: 11rem !important;
  margin-bottom: 11rem !important;
}

.my-14 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

.my-15 {
  margin-top: 13rem !important;
  margin-bottom: 13rem !important;
}

.my-30 {
  margin-top: 28rem !important;
  margin-bottom: 28rem !important;
}

.my-1-em {
  margin-top: 0.25em !important;
  margin-bottom: 0.25em !important;
}

.my-1-5-em {
  margin-top: 0.375em !important;
  margin-bottom: 0.375em !important;
}

.my-2-em {
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}

.my-2-25-em {
  margin-top: 0.625em !important;
  margin-bottom: 0.625em !important;
}

.my-2-5-em {
  margin-top: 0.75em !important;
  margin-bottom: 0.75em !important;
}

.my-3-em {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}

.my-4-em {
  margin-top: 2em !important;
  margin-bottom: 2em !important;
}

.my-5-em {
  margin-top: 3em !important;
  margin-bottom: 3em !important;
}

.my-6-em {
  margin-top: 4em !important;
  margin-bottom: 4em !important;
}

.my-7-em {
  margin-top: 5em !important;
  margin-bottom: 5em !important;
}

.my-8-em {
  margin-top: 6em !important;
  margin-bottom: 6em !important;
}

.my-9-em {
  margin-top: 7em !important;
  margin-bottom: 7em !important;
}

.my-1px {
  margin-top: 1px !important;
  margin-bottom: 1px !important;
}

.my--1px {
  margin-top: -1px !important;
  margin-bottom: -1px !important;
}

.my-1\/8 {
  margin-top: 12.5% !important;
  margin-bottom: 12.5% !important;
}

.my-1\/6 {
  margin-top: 16.666666% !important;
  margin-bottom: 16.666666% !important;
}

.my-1\/5 {
  margin-top: 20% !important;
  margin-bottom: 20% !important;
}

.my-1\/4 {
  margin-top: 25% !important;
  margin-bottom: 25% !important;
}

.my-2\/7 {
  margin-top: 28.57142857% !important;
  margin-bottom: 28.57142857% !important;
}

.my-1\/3 {
  margin-top: 33.333333% !important;
  margin-bottom: 33.333333% !important;
}

.my-2\/5 {
  margin-top: 40% !important;
  margin-bottom: 40% !important;
}

.my-1\/2 {
  margin-top: 50% !important;
  margin-bottom: 50% !important;
}

.my-1\/12 {
  margin-top: 8.333333% !important;
  margin-bottom: 8.333333% !important;
}

.my-1\/10 {
  margin-top: 10% !important;
  margin-bottom: 10% !important;
}

.my-5\/12 {
  margin-top: 41.6666666% !important;
  margin-bottom: 41.6666666% !important;
}

.my-7\/12 {
  margin-top: 58.333333% !important;
  margin-bottom: 58.333333% !important;
}

.my-3\/5 {
  margin-top: 60% !important;
  margin-bottom: 60% !important;
}

.my-11\/12 {
  margin-top: 91.6666666% !important;
  margin-bottom: 91.6666666% !important;
}

.my-2\/3 {
  margin-top: 66.666667% !important;
  margin-bottom: 66.666667% !important;
}

.my-3\/4 {
  margin-top: 75% !important;
  margin-bottom: 75% !important;
}

.my-4\/5 {
  margin-top: 80% !important;
  margin-bottom: 80% !important;
}

.my-5\/6 {
  margin-top: 83.3333333% !important;
  margin-bottom: 83.3333333% !important;
}

.mt--1\/6 {
  margin-top: -16.666666% !important;
}

.mt--1\/5 {
  margin-top: -20% !important;
}

.mt--1\/4 {
  margin-top: -25% !important;
}

.mt--2\/7 {
  margin-top: -28.57142857% !important;
}

.mt--1\/3 {
  margin-top: -33.333333% !important;
}

.mt--2\/5 {
  margin-top: -40% !important;
}

.mt--1\/2 {
  margin-top: -50% !important;
}

.mt--1\/12 {
  margin-top: -8.333333% !important;
}

.mt--1\/10 {
  margin-top: -10% !important;
}

.mt--5\/12 {
  margin-top: -41.6666666% !important;
}

.mt--7\/12 {
  margin-top: -58.333333% !important;
}

.mt--3\/5 {
  margin-top: -60% !important;
}

.mt--11\/12 {
  margin-top: -91.6666666% !important;
}

.mt--2\/3 {
  margin-top: -66.666667% !important;
}

.mt--3\/4 {
  margin-top: -75% !important;
}

.mt--4\/5 {
  margin-top: -80% !important;
}

.mt--5\/6 {
  margin-top: -83.3333333% !important;
}

.mt--30 {
  margin-top: -28rem !important;
}

.mt--24 {
  margin-top: -22rem !important;
}

.mt--18 {
  margin-top: -16rem !important;
}

.mt--15 {
  margin-top: -13rem !important;
}

.mt--14 {
  margin-top: -12rem !important;
}

.mt--13 {
  margin-top: -11rem !important;
}

.mt--12 {
  margin-top: -10rem !important;
}

.mt--11 {
  margin-top: -9rem !important;
}

.mt--10 {
  margin-top: -8rem !important;
}

.mt--9 {
  margin-top: -7rem !important;
}

.mt--8 {
  margin-top: -6rem !important;
}

.mt--7 {
  margin-top: -5rem !important;
}

.mt--6 {
  margin-top: -4rem !important;
}

.mt--5 {
  margin-top: -3rem !important;
}

.mt--4-5 {
  margin-top: -2.5rem !important;
}

.mt--4 {
  margin-top: -2rem !important;
}

.mt--3-5 {
  margin-top: -1.5rem !important;
}

.mt--3 {
  margin-top: -1rem !important;
}

.mt--2-5 {
  margin-top: -0.75rem !important;
}

.mt--2 {
  margin-top: -0.5rem !important;
}

.mt--1 {
  margin-top: -0.25rem !important;
}

.mt--0-5 {
  margin-top: -0.125rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-0-25 {
  margin-top: 0.0625rem !important;
}

.mt-0-5 {
  margin-top: 0.125rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-2-5 {
  margin-top: 0.75rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-3-5 {
  margin-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mt-4-5 {
  margin-top: 2.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-6 {
  margin-top: 4rem !important;
}

.mt-6-5 {
  margin-top: 4.5rem !important;
}

.mt-7 {
  margin-top: 5rem !important;
}

.mt-8 {
  margin-top: 6rem !important;
}

.mt-9 {
  margin-top: 7rem !important;
}

.mt-10 {
  margin-top: 8rem !important;
}

.mt-11 {
  margin-top: 9rem !important;
}

.mt-12 {
  margin-top: 10rem !important;
}

.mt-13 {
  margin-top: 11rem !important;
}

.mt-14 {
  margin-top: 12rem !important;
}

.mt-15 {
  margin-top: 13rem !important;
}

.mt-30 {
  margin-top: 28rem !important;
}

.mt-1-em {
  margin-top: 0.25em !important;
}

.mt-1-5-em {
  margin-top: 0.375em !important;
}

.mt-2-em {
  margin-top: 0.5em !important;
}

.mt-2-25-em {
  margin-top: 0.625em !important;
}

.mt-2-5-em {
  margin-top: 0.75em !important;
}

.mt-3-em {
  margin-top: 1em !important;
}

.mt-4-em {
  margin-top: 2em !important;
}

.mt-5-em {
  margin-top: 3em !important;
}

.mt-6-em {
  margin-top: 4em !important;
}

.mt-7-em {
  margin-top: 5em !important;
}

.mt-8-em {
  margin-top: 6em !important;
}

.mt-9-em {
  margin-top: 7em !important;
}

.mt-1px {
  margin-top: 1px !important;
}

.mt--1px {
  margin-top: -1px !important;
}

.mt-1\/8 {
  margin-top: 12.5% !important;
}

.mt-1\/6 {
  margin-top: 16.666666% !important;
}

.mt-1\/5 {
  margin-top: 20% !important;
}

.mt-1\/4 {
  margin-top: 25% !important;
}

.mt-2\/7 {
  margin-top: 28.57142857% !important;
}

.mt-1\/3 {
  margin-top: 33.333333% !important;
}

.mt-2\/5 {
  margin-top: 40% !important;
}

.mt-1\/2 {
  margin-top: 50% !important;
}

.mt-1\/12 {
  margin-top: 8.333333% !important;
}

.mt-1\/10 {
  margin-top: 10% !important;
}

.mt-5\/12 {
  margin-top: 41.6666666% !important;
}

.mt-7\/12 {
  margin-top: 58.333333% !important;
}

.mt-3\/5 {
  margin-top: 60% !important;
}

.mt-11\/12 {
  margin-top: 91.6666666% !important;
}

.mt-2\/3 {
  margin-top: 66.666667% !important;
}

.mt-3\/4 {
  margin-top: 75% !important;
}

.mt-4\/5 {
  margin-top: 80% !important;
}

.mt-5\/6 {
  margin-top: 83.3333333% !important;
}

.mr--1\/6 {
  margin-right: -16.666666% !important;
}

.mr--1\/5 {
  margin-right: -20% !important;
}

.mr--1\/4 {
  margin-right: -25% !important;
}

.mr--2\/7 {
  margin-right: -28.57142857% !important;
}

.mr--1\/3 {
  margin-right: -33.333333% !important;
}

.mr--2\/5 {
  margin-right: -40% !important;
}

.mr--1\/2 {
  margin-right: -50% !important;
}

.mr--1\/12 {
  margin-right: -8.333333% !important;
}

.mr--1\/10 {
  margin-right: -10% !important;
}

.mr--5\/12 {
  margin-right: -41.6666666% !important;
}

.mr--7\/12 {
  margin-right: -58.333333% !important;
}

.mr--3\/5 {
  margin-right: -60% !important;
}

.mr--11\/12 {
  margin-right: -91.6666666% !important;
}

.mr--2\/3 {
  margin-right: -66.666667% !important;
}

.mr--3\/4 {
  margin-right: -75% !important;
}

.mr--4\/5 {
  margin-right: -80% !important;
}

.mr--5\/6 {
  margin-right: -83.3333333% !important;
}

.mr--30 {
  margin-right: -28rem !important;
}

.mr--24 {
  margin-right: -22rem !important;
}

.mr--18 {
  margin-right: -16rem !important;
}

.mr--15 {
  margin-right: -13rem !important;
}

.mr--14 {
  margin-right: -12rem !important;
}

.mr--13 {
  margin-right: -11rem !important;
}

.mr--12 {
  margin-right: -10rem !important;
}

.mr--11 {
  margin-right: -9rem !important;
}

.mr--10 {
  margin-right: -8rem !important;
}

.mr--9 {
  margin-right: -7rem !important;
}

.mr--8 {
  margin-right: -6rem !important;
}

.mr--7 {
  margin-right: -5rem !important;
}

.mr--6 {
  margin-right: -4rem !important;
}

.mr--5 {
  margin-right: -3rem !important;
}

.mr--4-5 {
  margin-right: -2.5rem !important;
}

.mr--4 {
  margin-right: -2rem !important;
}

.mr--3-5 {
  margin-right: -1.5rem !important;
}

.mr--3 {
  margin-right: -1rem !important;
}

.mr--2-5 {
  margin-right: -0.75rem !important;
}

.mr--2 {
  margin-right: -0.5rem !important;
}

.mr--1 {
  margin-right: -0.25rem !important;
}

.mr--0-5 {
  margin-right: -0.125rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-0-25 {
  margin-right: 0.0625rem !important;
}

.mr-0-5 {
  margin-right: 0.125rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-2-5 {
  margin-right: 0.75rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mr-3-5 {
  margin-right: 1.5rem !important;
}

.mr-4 {
  margin-right: 2rem !important;
}

.mr-4-5 {
  margin-right: 2.5rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}

.mr-6 {
  margin-right: 4rem !important;
}

.mr-6-5 {
  margin-right: 4.5rem !important;
}

.mr-7 {
  margin-right: 5rem !important;
}

.mr-8 {
  margin-right: 6rem !important;
}

.mr-9 {
  margin-right: 7rem !important;
}

.mr-10 {
  margin-right: 8rem !important;
}

.mr-11 {
  margin-right: 9rem !important;
}

.mr-12 {
  margin-right: 10rem !important;
}

.mr-13 {
  margin-right: 11rem !important;
}

.mr-14 {
  margin-right: 12rem !important;
}

.mr-15 {
  margin-right: 13rem !important;
}

.mr-30 {
  margin-right: 28rem !important;
}

.mr-1-em {
  margin-right: 0.25em !important;
}

.mr-1-5-em {
  margin-right: 0.375em !important;
}

.mr-2-em {
  margin-right: 0.5em !important;
}

.mr-2-25-em {
  margin-right: 0.625em !important;
}

.mr-2-5-em {
  margin-right: 0.75em !important;
}

.mr-3-em {
  margin-right: 1em !important;
}

.mr-4-em {
  margin-right: 2em !important;
}

.mr-5-em {
  margin-right: 3em !important;
}

.mr-6-em {
  margin-right: 4em !important;
}

.mr-7-em {
  margin-right: 5em !important;
}

.mr-8-em {
  margin-right: 6em !important;
}

.mr-9-em {
  margin-right: 7em !important;
}

.mr-1px {
  margin-right: 1px !important;
}

.mr--1px {
  margin-right: -1px !important;
}

.mr-1\/8 {
  margin-right: 12.5% !important;
}

.mr-1\/6 {
  margin-right: 16.666666% !important;
}

.mr-1\/5 {
  margin-right: 20% !important;
}

.mr-1\/4 {
  margin-right: 25% !important;
}

.mr-2\/7 {
  margin-right: 28.57142857% !important;
}

.mr-1\/3 {
  margin-right: 33.333333% !important;
}

.mr-2\/5 {
  margin-right: 40% !important;
}

.mr-1\/2 {
  margin-right: 50% !important;
}

.mr-1\/12 {
  margin-right: 8.333333% !important;
}

.mr-1\/10 {
  margin-right: 10% !important;
}

.mr-5\/12 {
  margin-right: 41.6666666% !important;
}

.mr-7\/12 {
  margin-right: 58.333333% !important;
}

.mr-3\/5 {
  margin-right: 60% !important;
}

.mr-11\/12 {
  margin-right: 91.6666666% !important;
}

.mr-2\/3 {
  margin-right: 66.666667% !important;
}

.mr-3\/4 {
  margin-right: 75% !important;
}

.mr-4\/5 {
  margin-right: 80% !important;
}

.mr-5\/6 {
  margin-right: 83.3333333% !important;
}

.mb--1\/6 {
  margin-bottom: -16.666666% !important;
}

.mb--1\/5 {
  margin-bottom: -20% !important;
}

.mb--1\/4 {
  margin-bottom: -25% !important;
}

.mb--2\/7 {
  margin-bottom: -28.57142857% !important;
}

.mb--1\/3 {
  margin-bottom: -33.333333% !important;
}

.mb--2\/5 {
  margin-bottom: -40% !important;
}

.mb--1\/2 {
  margin-bottom: -50% !important;
}

.mb--1\/12 {
  margin-bottom: -8.333333% !important;
}

.mb--1\/10 {
  margin-bottom: -10% !important;
}

.mb--5\/12 {
  margin-bottom: -41.6666666% !important;
}

.mb--7\/12 {
  margin-bottom: -58.333333% !important;
}

.mb--3\/5 {
  margin-bottom: -60% !important;
}

.mb--11\/12 {
  margin-bottom: -91.6666666% !important;
}

.mb--2\/3 {
  margin-bottom: -66.666667% !important;
}

.mb--3\/4 {
  margin-bottom: -75% !important;
}

.mb--4\/5 {
  margin-bottom: -80% !important;
}

.mb--5\/6 {
  margin-bottom: -83.3333333% !important;
}

.mb--30 {
  margin-bottom: -28rem !important;
}

.mb--24 {
  margin-bottom: -22rem !important;
}

.mb--18 {
  margin-bottom: -16rem !important;
}

.mb--15 {
  margin-bottom: -13rem !important;
}

.mb--14 {
  margin-bottom: -12rem !important;
}

.mb--13 {
  margin-bottom: -11rem !important;
}

.mb--12 {
  margin-bottom: -10rem !important;
}

.mb--11 {
  margin-bottom: -9rem !important;
}

.mb--10 {
  margin-bottom: -8rem !important;
}

.mb--9 {
  margin-bottom: -7rem !important;
}

.mb--8 {
  margin-bottom: -6rem !important;
}

.mb--7 {
  margin-bottom: -5rem !important;
}

.mb--6 {
  margin-bottom: -4rem !important;
}

.mb--5 {
  margin-bottom: -3rem !important;
}

.mb--4-5 {
  margin-bottom: -2.5rem !important;
}

.mb--4 {
  margin-bottom: -2rem !important;
}

.mb--3-5 {
  margin-bottom: -1.5rem !important;
}

.mb--3 {
  margin-bottom: -1rem !important;
}

.mb--2-5 {
  margin-bottom: -0.75rem !important;
}

.mb--2 {
  margin-bottom: -0.5rem !important;
}

.mb--1 {
  margin-bottom: -0.25rem !important;
}

.mb--0-5 {
  margin-bottom: -0.125rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-0-25 {
  margin-bottom: 0.0625rem !important;
}

.mb-0-5 {
  margin-bottom: 0.125rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-2-5 {
  margin-bottom: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-3-5 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-4-5 {
  margin-bottom: 2.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-6 {
  margin-bottom: 4rem !important;
}

.mb-6-5 {
  margin-bottom: 4.5rem !important;
}

.mb-7 {
  margin-bottom: 5rem !important;
}

.mb-8 {
  margin-bottom: 6rem !important;
}

.mb-9 {
  margin-bottom: 7rem !important;
}

.mb-10 {
  margin-bottom: 8rem !important;
}

.mb-11 {
  margin-bottom: 9rem !important;
}

.mb-12 {
  margin-bottom: 10rem !important;
}

.mb-13 {
  margin-bottom: 11rem !important;
}

.mb-14 {
  margin-bottom: 12rem !important;
}

.mb-15 {
  margin-bottom: 13rem !important;
}

.mb-30 {
  margin-bottom: 28rem !important;
}

.mb-1-em {
  margin-bottom: 0.25em !important;
}

.mb-1-5-em {
  margin-bottom: 0.375em !important;
}

.mb-2-em {
  margin-bottom: 0.5em !important;
}

.mb-2-25-em {
  margin-bottom: 0.625em !important;
}

.mb-2-5-em {
  margin-bottom: 0.75em !important;
}

.mb-3-em {
  margin-bottom: 1em !important;
}

.mb-4-em {
  margin-bottom: 2em !important;
}

.mb-5-em {
  margin-bottom: 3em !important;
}

.mb-6-em {
  margin-bottom: 4em !important;
}

.mb-7-em {
  margin-bottom: 5em !important;
}

.mb-8-em {
  margin-bottom: 6em !important;
}

.mb-9-em {
  margin-bottom: 7em !important;
}

.mb-1px {
  margin-bottom: 1px !important;
}

.mb--1px {
  margin-bottom: -1px !important;
}

.mb-1\/8 {
  margin-bottom: 12.5% !important;
}

.mb-1\/6 {
  margin-bottom: 16.666666% !important;
}

.mb-1\/5 {
  margin-bottom: 20% !important;
}

.mb-1\/4 {
  margin-bottom: 25% !important;
}

.mb-2\/7 {
  margin-bottom: 28.57142857% !important;
}

.mb-1\/3 {
  margin-bottom: 33.333333% !important;
}

.mb-2\/5 {
  margin-bottom: 40% !important;
}

.mb-1\/2 {
  margin-bottom: 50% !important;
}

.mb-1\/12 {
  margin-bottom: 8.333333% !important;
}

.mb-1\/10 {
  margin-bottom: 10% !important;
}

.mb-5\/12 {
  margin-bottom: 41.6666666% !important;
}

.mb-7\/12 {
  margin-bottom: 58.333333% !important;
}

.mb-3\/5 {
  margin-bottom: 60% !important;
}

.mb-11\/12 {
  margin-bottom: 91.6666666% !important;
}

.mb-2\/3 {
  margin-bottom: 66.666667% !important;
}

.mb-3\/4 {
  margin-bottom: 75% !important;
}

.mb-4\/5 {
  margin-bottom: 80% !important;
}

.mb-5\/6 {
  margin-bottom: 83.3333333% !important;
}

.ml--1\/6 {
  margin-left: -16.666666% !important;
}

.ml--1\/5 {
  margin-left: -20% !important;
}

.ml--1\/4 {
  margin-left: -25% !important;
}

.ml--2\/7 {
  margin-left: -28.57142857% !important;
}

.ml--1\/3 {
  margin-left: -33.333333% !important;
}

.ml--2\/5 {
  margin-left: -40% !important;
}

.ml--1\/2 {
  margin-left: -50% !important;
}

.ml--1\/12 {
  margin-left: -8.333333% !important;
}

.ml--1\/10 {
  margin-left: -10% !important;
}

.ml--5\/12 {
  margin-left: -41.6666666% !important;
}

.ml--7\/12 {
  margin-left: -58.333333% !important;
}

.ml--3\/5 {
  margin-left: -60% !important;
}

.ml--11\/12 {
  margin-left: -91.6666666% !important;
}

.ml--2\/3 {
  margin-left: -66.666667% !important;
}

.ml--3\/4 {
  margin-left: -75% !important;
}

.ml--4\/5 {
  margin-left: -80% !important;
}

.ml--5\/6 {
  margin-left: -83.3333333% !important;
}

.ml--30 {
  margin-left: -28rem !important;
}

.ml--24 {
  margin-left: -22rem !important;
}

.ml--18 {
  margin-left: -16rem !important;
}

.ml--15 {
  margin-left: -13rem !important;
}

.ml--14 {
  margin-left: -12rem !important;
}

.ml--13 {
  margin-left: -11rem !important;
}

.ml--12 {
  margin-left: -10rem !important;
}

.ml--11 {
  margin-left: -9rem !important;
}

.ml--10 {
  margin-left: -8rem !important;
}

.ml--9 {
  margin-left: -7rem !important;
}

.ml--8 {
  margin-left: -6rem !important;
}

.ml--7 {
  margin-left: -5rem !important;
}

.ml--6 {
  margin-left: -4rem !important;
}

.ml--5 {
  margin-left: -3rem !important;
}

.ml--4-5 {
  margin-left: -2.5rem !important;
}

.ml--4 {
  margin-left: -2rem !important;
}

.ml--3-5 {
  margin-left: -1.5rem !important;
}

.ml--3 {
  margin-left: -1rem !important;
}

.ml--2-5 {
  margin-left: -0.75rem !important;
}

.ml--2 {
  margin-left: -0.5rem !important;
}

.ml--1 {
  margin-left: -0.25rem !important;
}

.ml--0-5 {
  margin-left: -0.125rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-0-25 {
  margin-left: 0.0625rem !important;
}

.ml-0-5 {
  margin-left: 0.125rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-2-5 {
  margin-left: 0.75rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.ml-3-5 {
  margin-left: 1.5rem !important;
}

.ml-4 {
  margin-left: 2rem !important;
}

.ml-4-5 {
  margin-left: 2.5rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}

.ml-6 {
  margin-left: 4rem !important;
}

.ml-6-5 {
  margin-left: 4.5rem !important;
}

.ml-7 {
  margin-left: 5rem !important;
}

.ml-8 {
  margin-left: 6rem !important;
}

.ml-9 {
  margin-left: 7rem !important;
}

.ml-10 {
  margin-left: 8rem !important;
}

.ml-11 {
  margin-left: 9rem !important;
}

.ml-12 {
  margin-left: 10rem !important;
}

.ml-13 {
  margin-left: 11rem !important;
}

.ml-14 {
  margin-left: 12rem !important;
}

.ml-15 {
  margin-left: 13rem !important;
}

.ml-30 {
  margin-left: 28rem !important;
}

.ml-1-em {
  margin-left: 0.25em !important;
}

.ml-1-5-em {
  margin-left: 0.375em !important;
}

.ml-2-em {
  margin-left: 0.5em !important;
}

.ml-2-25-em {
  margin-left: 0.625em !important;
}

.ml-2-5-em {
  margin-left: 0.75em !important;
}

.ml-3-em {
  margin-left: 1em !important;
}

.ml-4-em {
  margin-left: 2em !important;
}

.ml-5-em {
  margin-left: 3em !important;
}

.ml-6-em {
  margin-left: 4em !important;
}

.ml-7-em {
  margin-left: 5em !important;
}

.ml-8-em {
  margin-left: 6em !important;
}

.ml-9-em {
  margin-left: 7em !important;
}

.ml-1px {
  margin-left: 1px !important;
}

.ml--1px {
  margin-left: -1px !important;
}

.ml-1\/8 {
  margin-left: 12.5% !important;
}

.ml-1\/6 {
  margin-left: 16.666666% !important;
}

.ml-1\/5 {
  margin-left: 20% !important;
}

.ml-1\/4 {
  margin-left: 25% !important;
}

.ml-2\/7 {
  margin-left: 28.57142857% !important;
}

.ml-1\/3 {
  margin-left: 33.333333% !important;
}

.ml-2\/5 {
  margin-left: 40% !important;
}

.ml-1\/2 {
  margin-left: 50% !important;
}

.ml-1\/12 {
  margin-left: 8.333333% !important;
}

.ml-1\/10 {
  margin-left: 10% !important;
}

.ml-5\/12 {
  margin-left: 41.6666666% !important;
}

.ml-7\/12 {
  margin-left: 58.333333% !important;
}

.ml-3\/5 {
  margin-left: 60% !important;
}

.ml-11\/12 {
  margin-left: 91.6666666% !important;
}

.ml-2\/3 {
  margin-left: 66.666667% !important;
}

.ml-3\/4 {
  margin-left: 75% !important;
}

.ml-4\/5 {
  margin-left: 80% !important;
}

.ml-5\/6 {
  margin-left: 83.3333333% !important;
}

@media screen and (min-width: 360px) {
  .xs\:m--1\/6 {
    margin: -16.666666% !important;
  }
  .xs\:m--1\/5 {
    margin: -20% !important;
  }
  .xs\:m--1\/4 {
    margin: -25% !important;
  }
  .xs\:m--2\/7 {
    margin: -28.57142857% !important;
  }
  .xs\:m--1\/3 {
    margin: -33.333333% !important;
  }
  .xs\:m--2\/5 {
    margin: -40% !important;
  }
  .xs\:m--1\/2 {
    margin: -50% !important;
  }
  .xs\:m--1\/12 {
    margin: -8.333333% !important;
  }
  .xs\:m--1\/10 {
    margin: -10% !important;
  }
  .xs\:m--5\/12 {
    margin: -41.6666666% !important;
  }
  .xs\:m--7\/12 {
    margin: -58.333333% !important;
  }
  .xs\:m--3\/5 {
    margin: -60% !important;
  }
  .xs\:m--11\/12 {
    margin: -91.6666666% !important;
  }
  .xs\:m--2\/3 {
    margin: -66.666667% !important;
  }
  .xs\:m--3\/4 {
    margin: -75% !important;
  }
  .xs\:m--4\/5 {
    margin: -80% !important;
  }
  .xs\:m--5\/6 {
    margin: -83.3333333% !important;
  }
  .xs\:m--30 {
    margin: -28rem !important;
  }
  .xs\:m--24 {
    margin: -22rem !important;
  }
  .xs\:m--18 {
    margin: -16rem !important;
  }
  .xs\:m--15 {
    margin: -13rem !important;
  }
  .xs\:m--14 {
    margin: -12rem !important;
  }
  .xs\:m--13 {
    margin: -11rem !important;
  }
  .xs\:m--12 {
    margin: -10rem !important;
  }
  .xs\:m--11 {
    margin: -9rem !important;
  }
  .xs\:m--10 {
    margin: -8rem !important;
  }
  .xs\:m--9 {
    margin: -7rem !important;
  }
  .xs\:m--8 {
    margin: -6rem !important;
  }
  .xs\:m--7 {
    margin: -5rem !important;
  }
  .xs\:m--6 {
    margin: -4rem !important;
  }
  .xs\:m--5 {
    margin: -3rem !important;
  }
  .xs\:m--4-5 {
    margin: -2.5rem !important;
  }
  .xs\:m--4 {
    margin: -2rem !important;
  }
  .xs\:m--3-5 {
    margin: -1.5rem !important;
  }
  .xs\:m--3 {
    margin: -1rem !important;
  }
  .xs\:m--2-5 {
    margin: -0.75rem !important;
  }
  .xs\:m--2 {
    margin: -0.5rem !important;
  }
  .xs\:m--1 {
    margin: -0.25rem !important;
  }
  .xs\:m--0-5 {
    margin: -0.125rem !important;
  }
  .xs\:m-0 {
    margin: 0 !important;
  }
  .xs\:m-0-25 {
    margin: 0.0625rem !important;
  }
  .xs\:m-0-5 {
    margin: 0.125rem !important;
  }
  .xs\:m-1 {
    margin: 0.25rem !important;
  }
  .xs\:m-2 {
    margin: 0.5rem !important;
  }
  .xs\:m-2-5 {
    margin: 0.75rem !important;
  }
  .xs\:m-3 {
    margin: 1rem !important;
  }
  .xs\:m-3-5 {
    margin: 1.5rem !important;
  }
  .xs\:m-4 {
    margin: 2rem !important;
  }
  .xs\:m-4-5 {
    margin: 2.5rem !important;
  }
  .xs\:m-5 {
    margin: 3rem !important;
  }
  .xs\:m-6 {
    margin: 4rem !important;
  }
  .xs\:m-6-5 {
    margin: 4.5rem !important;
  }
  .xs\:m-7 {
    margin: 5rem !important;
  }
  .xs\:m-8 {
    margin: 6rem !important;
  }
  .xs\:m-9 {
    margin: 7rem !important;
  }
  .xs\:m-10 {
    margin: 8rem !important;
  }
  .xs\:m-11 {
    margin: 9rem !important;
  }
  .xs\:m-12 {
    margin: 10rem !important;
  }
  .xs\:m-13 {
    margin: 11rem !important;
  }
  .xs\:m-14 {
    margin: 12rem !important;
  }
  .xs\:m-15 {
    margin: 13rem !important;
  }
  .xs\:m-30 {
    margin: 28rem !important;
  }
  .xs\:m-1-em {
    margin: 0.25em !important;
  }
  .xs\:m-1-5-em {
    margin: 0.375em !important;
  }
  .xs\:m-2-em {
    margin: 0.5em !important;
  }
  .xs\:m-2-25-em {
    margin: 0.625em !important;
  }
  .xs\:m-2-5-em {
    margin: 0.75em !important;
  }
  .xs\:m-3-em {
    margin: 1em !important;
  }
  .xs\:m-4-em {
    margin: 2em !important;
  }
  .xs\:m-5-em {
    margin: 3em !important;
  }
  .xs\:m-6-em {
    margin: 4em !important;
  }
  .xs\:m-7-em {
    margin: 5em !important;
  }
  .xs\:m-8-em {
    margin: 6em !important;
  }
  .xs\:m-9-em {
    margin: 7em !important;
  }
  .xs\:m-1px {
    margin: 1px !important;
  }
  .xs\:m--1px {
    margin: -1px !important;
  }
  .xs\:m-1\/8 {
    margin: 12.5% !important;
  }
  .xs\:m-1\/6 {
    margin: 16.666666% !important;
  }
  .xs\:m-1\/5 {
    margin: 20% !important;
  }
  .xs\:m-1\/4 {
    margin: 25% !important;
  }
  .xs\:m-2\/7 {
    margin: 28.57142857% !important;
  }
  .xs\:m-1\/3 {
    margin: 33.333333% !important;
  }
  .xs\:m-2\/5 {
    margin: 40% !important;
  }
  .xs\:m-1\/2 {
    margin: 50% !important;
  }
  .xs\:m-1\/12 {
    margin: 8.333333% !important;
  }
  .xs\:m-1\/10 {
    margin: 10% !important;
  }
  .xs\:m-5\/12 {
    margin: 41.6666666% !important;
  }
  .xs\:m-7\/12 {
    margin: 58.333333% !important;
  }
  .xs\:m-3\/5 {
    margin: 60% !important;
  }
  .xs\:m-11\/12 {
    margin: 91.6666666% !important;
  }
  .xs\:m-2\/3 {
    margin: 66.666667% !important;
  }
  .xs\:m-3\/4 {
    margin: 75% !important;
  }
  .xs\:m-4\/5 {
    margin: 80% !important;
  }
  .xs\:m-5\/6 {
    margin: 83.3333333% !important;
  }
  .xs\:mx--1\/6 {
    margin-left: -16.666666% !important;
    margin-right: -16.666666% !important;
  }
  .xs\:mx--1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }
  .xs\:mx--1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }
  .xs\:mx--2\/7 {
    margin-left: -28.57142857% !important;
    margin-right: -28.57142857% !important;
  }
  .xs\:mx--1\/3 {
    margin-left: -33.333333% !important;
    margin-right: -33.333333% !important;
  }
  .xs\:mx--2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }
  .xs\:mx--1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }
  .xs\:mx--1\/12 {
    margin-left: -8.333333% !important;
    margin-right: -8.333333% !important;
  }
  .xs\:mx--1\/10 {
    margin-left: -10% !important;
    margin-right: -10% !important;
  }
  .xs\:mx--5\/12 {
    margin-left: -41.6666666% !important;
    margin-right: -41.6666666% !important;
  }
  .xs\:mx--7\/12 {
    margin-left: -58.333333% !important;
    margin-right: -58.333333% !important;
  }
  .xs\:mx--3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }
  .xs\:mx--11\/12 {
    margin-left: -91.6666666% !important;
    margin-right: -91.6666666% !important;
  }
  .xs\:mx--2\/3 {
    margin-left: -66.666667% !important;
    margin-right: -66.666667% !important;
  }
  .xs\:mx--3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }
  .xs\:mx--4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }
  .xs\:mx--5\/6 {
    margin-left: -83.3333333% !important;
    margin-right: -83.3333333% !important;
  }
  .xs\:mx--30 {
    margin-left: -28rem !important;
    margin-right: -28rem !important;
  }
  .xs\:mx--24 {
    margin-left: -22rem !important;
    margin-right: -22rem !important;
  }
  .xs\:mx--18 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }
  .xs\:mx--15 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }
  .xs\:mx--14 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }
  .xs\:mx--13 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }
  .xs\:mx--12 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }
  .xs\:mx--11 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }
  .xs\:mx--10 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .xs\:mx--9 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }
  .xs\:mx--8 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .xs\:mx--7 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .xs\:mx--6 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .xs\:mx--5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .xs\:mx--4-5 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .xs\:mx--4 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .xs\:mx--3-5 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .xs\:mx--3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .xs\:mx--2-5 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .xs\:mx--2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xs\:mx--1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .xs\:mx--0-5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }
  .xs\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .xs\:mx-0-25 {
    margin-left: 0.0625rem !important;
    margin-right: 0.0625rem !important;
  }
  .xs\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .xs\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .xs\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xs\:mx-2-5 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .xs\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xs\:mx-3-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xs\:mx-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xs\:mx-4-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xs\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xs\:mx-6 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xs\:mx-6-5 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .xs\:mx-7 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xs\:mx-8 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xs\:mx-9 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .xs\:mx-10 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xs\:mx-11 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .xs\:mx-12 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .xs\:mx-13 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .xs\:mx-14 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .xs\:mx-15 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .xs\:mx-30 {
    margin-left: 28rem !important;
    margin-right: 28rem !important;
  }
  .xs\:mx-1-em {
    margin-left: 0.25em !important;
    margin-right: 0.25em !important;
  }
  .xs\:mx-1-5-em {
    margin-left: 0.375em !important;
    margin-right: 0.375em !important;
  }
  .xs\:mx-2-em {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .xs\:mx-2-25-em {
    margin-left: 0.625em !important;
    margin-right: 0.625em !important;
  }
  .xs\:mx-2-5-em {
    margin-left: 0.75em !important;
    margin-right: 0.75em !important;
  }
  .xs\:mx-3-em {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .xs\:mx-4-em {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .xs\:mx-5-em {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .xs\:mx-6-em {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .xs\:mx-7-em {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .xs\:mx-8-em {
    margin-left: 6em !important;
    margin-right: 6em !important;
  }
  .xs\:mx-9-em {
    margin-left: 7em !important;
    margin-right: 7em !important;
  }
  .xs\:mx-1px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .xs\:mx--1px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }
  .xs\:mx-1\/8 {
    margin-left: 12.5% !important;
    margin-right: 12.5% !important;
  }
  .xs\:mx-1\/6 {
    margin-left: 16.666666% !important;
    margin-right: 16.666666% !important;
  }
  .xs\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }
  .xs\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }
  .xs\:mx-2\/7 {
    margin-left: 28.57142857% !important;
    margin-right: 28.57142857% !important;
  }
  .xs\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }
  .xs\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }
  .xs\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }
  .xs\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }
  .xs\:mx-1\/10 {
    margin-left: 10% !important;
    margin-right: 10% !important;
  }
  .xs\:mx-5\/12 {
    margin-left: 41.6666666% !important;
    margin-right: 41.6666666% !important;
  }
  .xs\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }
  .xs\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }
  .xs\:mx-11\/12 {
    margin-left: 91.6666666% !important;
    margin-right: 91.6666666% !important;
  }
  .xs\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }
  .xs\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }
  .xs\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }
  .xs\:mx-5\/6 {
    margin-left: 83.3333333% !important;
    margin-right: 83.3333333% !important;
  }
  .xs\:my--1\/6 {
    margin-top: -16.666666% !important;
    margin-bottom: -16.666666% !important;
  }
  .xs\:my--1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }
  .xs\:my--1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }
  .xs\:my--2\/7 {
    margin-top: -28.57142857% !important;
    margin-bottom: -28.57142857% !important;
  }
  .xs\:my--1\/3 {
    margin-top: -33.333333% !important;
    margin-bottom: -33.333333% !important;
  }
  .xs\:my--2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }
  .xs\:my--1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }
  .xs\:my--1\/12 {
    margin-top: -8.333333% !important;
    margin-bottom: -8.333333% !important;
  }
  .xs\:my--1\/10 {
    margin-top: -10% !important;
    margin-bottom: -10% !important;
  }
  .xs\:my--5\/12 {
    margin-top: -41.6666666% !important;
    margin-bottom: -41.6666666% !important;
  }
  .xs\:my--7\/12 {
    margin-top: -58.333333% !important;
    margin-bottom: -58.333333% !important;
  }
  .xs\:my--3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }
  .xs\:my--11\/12 {
    margin-top: -91.6666666% !important;
    margin-bottom: -91.6666666% !important;
  }
  .xs\:my--2\/3 {
    margin-top: -66.666667% !important;
    margin-bottom: -66.666667% !important;
  }
  .xs\:my--3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }
  .xs\:my--4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }
  .xs\:my--5\/6 {
    margin-top: -83.3333333% !important;
    margin-bottom: -83.3333333% !important;
  }
  .xs\:my--30 {
    margin-top: -28rem !important;
    margin-bottom: -28rem !important;
  }
  .xs\:my--24 {
    margin-top: -22rem !important;
    margin-bottom: -22rem !important;
  }
  .xs\:my--18 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }
  .xs\:my--15 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .xs\:my--14 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .xs\:my--13 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }
  .xs\:my--12 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .xs\:my--11 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .xs\:my--10 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .xs\:my--9 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .xs\:my--8 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .xs\:my--7 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .xs\:my--6 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .xs\:my--5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .xs\:my--4-5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .xs\:my--4 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .xs\:my--3-5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .xs\:my--3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .xs\:my--2-5 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .xs\:my--2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .xs\:my--1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .xs\:my--0-5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }
  .xs\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .xs\:my-0-25 {
    margin-top: 0.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }
  .xs\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .xs\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .xs\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xs\:my-2-5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .xs\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xs\:my-3-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xs\:my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xs\:my-4-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xs\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xs\:my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xs\:my-6-5 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .xs\:my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xs\:my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xs\:my-9 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .xs\:my-10 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xs\:my-11 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .xs\:my-12 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .xs\:my-13 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .xs\:my-14 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .xs\:my-15 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .xs\:my-30 {
    margin-top: 28rem !important;
    margin-bottom: 28rem !important;
  }
  .xs\:my-1-em {
    margin-top: 0.25em !important;
    margin-bottom: 0.25em !important;
  }
  .xs\:my-1-5-em {
    margin-top: 0.375em !important;
    margin-bottom: 0.375em !important;
  }
  .xs\:my-2-em {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .xs\:my-2-25-em {
    margin-top: 0.625em !important;
    margin-bottom: 0.625em !important;
  }
  .xs\:my-2-5-em {
    margin-top: 0.75em !important;
    margin-bottom: 0.75em !important;
  }
  .xs\:my-3-em {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .xs\:my-4-em {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .xs\:my-5-em {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .xs\:my-6-em {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .xs\:my-7-em {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .xs\:my-8-em {
    margin-top: 6em !important;
    margin-bottom: 6em !important;
  }
  .xs\:my-9-em {
    margin-top: 7em !important;
    margin-bottom: 7em !important;
  }
  .xs\:my-1px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .xs\:my--1px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }
  .xs\:my-1\/8 {
    margin-top: 12.5% !important;
    margin-bottom: 12.5% !important;
  }
  .xs\:my-1\/6 {
    margin-top: 16.666666% !important;
    margin-bottom: 16.666666% !important;
  }
  .xs\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }
  .xs\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }
  .xs\:my-2\/7 {
    margin-top: 28.57142857% !important;
    margin-bottom: 28.57142857% !important;
  }
  .xs\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }
  .xs\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }
  .xs\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }
  .xs\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }
  .xs\:my-1\/10 {
    margin-top: 10% !important;
    margin-bottom: 10% !important;
  }
  .xs\:my-5\/12 {
    margin-top: 41.6666666% !important;
    margin-bottom: 41.6666666% !important;
  }
  .xs\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }
  .xs\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }
  .xs\:my-11\/12 {
    margin-top: 91.6666666% !important;
    margin-bottom: 91.6666666% !important;
  }
  .xs\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }
  .xs\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }
  .xs\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }
  .xs\:my-5\/6 {
    margin-top: 83.3333333% !important;
    margin-bottom: 83.3333333% !important;
  }
  .xs\:mt--1\/6 {
    margin-top: -16.666666% !important;
  }
  .xs\:mt--1\/5 {
    margin-top: -20% !important;
  }
  .xs\:mt--1\/4 {
    margin-top: -25% !important;
  }
  .xs\:mt--2\/7 {
    margin-top: -28.57142857% !important;
  }
  .xs\:mt--1\/3 {
    margin-top: -33.333333% !important;
  }
  .xs\:mt--2\/5 {
    margin-top: -40% !important;
  }
  .xs\:mt--1\/2 {
    margin-top: -50% !important;
  }
  .xs\:mt--1\/12 {
    margin-top: -8.333333% !important;
  }
  .xs\:mt--1\/10 {
    margin-top: -10% !important;
  }
  .xs\:mt--5\/12 {
    margin-top: -41.6666666% !important;
  }
  .xs\:mt--7\/12 {
    margin-top: -58.333333% !important;
  }
  .xs\:mt--3\/5 {
    margin-top: -60% !important;
  }
  .xs\:mt--11\/12 {
    margin-top: -91.6666666% !important;
  }
  .xs\:mt--2\/3 {
    margin-top: -66.666667% !important;
  }
  .xs\:mt--3\/4 {
    margin-top: -75% !important;
  }
  .xs\:mt--4\/5 {
    margin-top: -80% !important;
  }
  .xs\:mt--5\/6 {
    margin-top: -83.3333333% !important;
  }
  .xs\:mt--30 {
    margin-top: -28rem !important;
  }
  .xs\:mt--24 {
    margin-top: -22rem !important;
  }
  .xs\:mt--18 {
    margin-top: -16rem !important;
  }
  .xs\:mt--15 {
    margin-top: -13rem !important;
  }
  .xs\:mt--14 {
    margin-top: -12rem !important;
  }
  .xs\:mt--13 {
    margin-top: -11rem !important;
  }
  .xs\:mt--12 {
    margin-top: -10rem !important;
  }
  .xs\:mt--11 {
    margin-top: -9rem !important;
  }
  .xs\:mt--10 {
    margin-top: -8rem !important;
  }
  .xs\:mt--9 {
    margin-top: -7rem !important;
  }
  .xs\:mt--8 {
    margin-top: -6rem !important;
  }
  .xs\:mt--7 {
    margin-top: -5rem !important;
  }
  .xs\:mt--6 {
    margin-top: -4rem !important;
  }
  .xs\:mt--5 {
    margin-top: -3rem !important;
  }
  .xs\:mt--4-5 {
    margin-top: -2.5rem !important;
  }
  .xs\:mt--4 {
    margin-top: -2rem !important;
  }
  .xs\:mt--3-5 {
    margin-top: -1.5rem !important;
  }
  .xs\:mt--3 {
    margin-top: -1rem !important;
  }
  .xs\:mt--2-5 {
    margin-top: -0.75rem !important;
  }
  .xs\:mt--2 {
    margin-top: -0.5rem !important;
  }
  .xs\:mt--1 {
    margin-top: -0.25rem !important;
  }
  .xs\:mt--0-5 {
    margin-top: -0.125rem !important;
  }
  .xs\:mt-0 {
    margin-top: 0 !important;
  }
  .xs\:mt-0-25 {
    margin-top: 0.0625rem !important;
  }
  .xs\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .xs\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .xs\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .xs\:mt-2-5 {
    margin-top: 0.75rem !important;
  }
  .xs\:mt-3 {
    margin-top: 1rem !important;
  }
  .xs\:mt-3-5 {
    margin-top: 1.5rem !important;
  }
  .xs\:mt-4 {
    margin-top: 2rem !important;
  }
  .xs\:mt-4-5 {
    margin-top: 2.5rem !important;
  }
  .xs\:mt-5 {
    margin-top: 3rem !important;
  }
  .xs\:mt-6 {
    margin-top: 4rem !important;
  }
  .xs\:mt-6-5 {
    margin-top: 4.5rem !important;
  }
  .xs\:mt-7 {
    margin-top: 5rem !important;
  }
  .xs\:mt-8 {
    margin-top: 6rem !important;
  }
  .xs\:mt-9 {
    margin-top: 7rem !important;
  }
  .xs\:mt-10 {
    margin-top: 8rem !important;
  }
  .xs\:mt-11 {
    margin-top: 9rem !important;
  }
  .xs\:mt-12 {
    margin-top: 10rem !important;
  }
  .xs\:mt-13 {
    margin-top: 11rem !important;
  }
  .xs\:mt-14 {
    margin-top: 12rem !important;
  }
  .xs\:mt-15 {
    margin-top: 13rem !important;
  }
  .xs\:mt-30 {
    margin-top: 28rem !important;
  }
  .xs\:mt-1-em {
    margin-top: 0.25em !important;
  }
  .xs\:mt-1-5-em {
    margin-top: 0.375em !important;
  }
  .xs\:mt-2-em {
    margin-top: 0.5em !important;
  }
  .xs\:mt-2-25-em {
    margin-top: 0.625em !important;
  }
  .xs\:mt-2-5-em {
    margin-top: 0.75em !important;
  }
  .xs\:mt-3-em {
    margin-top: 1em !important;
  }
  .xs\:mt-4-em {
    margin-top: 2em !important;
  }
  .xs\:mt-5-em {
    margin-top: 3em !important;
  }
  .xs\:mt-6-em {
    margin-top: 4em !important;
  }
  .xs\:mt-7-em {
    margin-top: 5em !important;
  }
  .xs\:mt-8-em {
    margin-top: 6em !important;
  }
  .xs\:mt-9-em {
    margin-top: 7em !important;
  }
  .xs\:mt-1px {
    margin-top: 1px !important;
  }
  .xs\:mt--1px {
    margin-top: -1px !important;
  }
  .xs\:mt-1\/8 {
    margin-top: 12.5% !important;
  }
  .xs\:mt-1\/6 {
    margin-top: 16.666666% !important;
  }
  .xs\:mt-1\/5 {
    margin-top: 20% !important;
  }
  .xs\:mt-1\/4 {
    margin-top: 25% !important;
  }
  .xs\:mt-2\/7 {
    margin-top: 28.57142857% !important;
  }
  .xs\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }
  .xs\:mt-2\/5 {
    margin-top: 40% !important;
  }
  .xs\:mt-1\/2 {
    margin-top: 50% !important;
  }
  .xs\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }
  .xs\:mt-1\/10 {
    margin-top: 10% !important;
  }
  .xs\:mt-5\/12 {
    margin-top: 41.6666666% !important;
  }
  .xs\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }
  .xs\:mt-3\/5 {
    margin-top: 60% !important;
  }
  .xs\:mt-11\/12 {
    margin-top: 91.6666666% !important;
  }
  .xs\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }
  .xs\:mt-3\/4 {
    margin-top: 75% !important;
  }
  .xs\:mt-4\/5 {
    margin-top: 80% !important;
  }
  .xs\:mt-5\/6 {
    margin-top: 83.3333333% !important;
  }
  .xs\:mr--1\/6 {
    margin-right: -16.666666% !important;
  }
  .xs\:mr--1\/5 {
    margin-right: -20% !important;
  }
  .xs\:mr--1\/4 {
    margin-right: -25% !important;
  }
  .xs\:mr--2\/7 {
    margin-right: -28.57142857% !important;
  }
  .xs\:mr--1\/3 {
    margin-right: -33.333333% !important;
  }
  .xs\:mr--2\/5 {
    margin-right: -40% !important;
  }
  .xs\:mr--1\/2 {
    margin-right: -50% !important;
  }
  .xs\:mr--1\/12 {
    margin-right: -8.333333% !important;
  }
  .xs\:mr--1\/10 {
    margin-right: -10% !important;
  }
  .xs\:mr--5\/12 {
    margin-right: -41.6666666% !important;
  }
  .xs\:mr--7\/12 {
    margin-right: -58.333333% !important;
  }
  .xs\:mr--3\/5 {
    margin-right: -60% !important;
  }
  .xs\:mr--11\/12 {
    margin-right: -91.6666666% !important;
  }
  .xs\:mr--2\/3 {
    margin-right: -66.666667% !important;
  }
  .xs\:mr--3\/4 {
    margin-right: -75% !important;
  }
  .xs\:mr--4\/5 {
    margin-right: -80% !important;
  }
  .xs\:mr--5\/6 {
    margin-right: -83.3333333% !important;
  }
  .xs\:mr--30 {
    margin-right: -28rem !important;
  }
  .xs\:mr--24 {
    margin-right: -22rem !important;
  }
  .xs\:mr--18 {
    margin-right: -16rem !important;
  }
  .xs\:mr--15 {
    margin-right: -13rem !important;
  }
  .xs\:mr--14 {
    margin-right: -12rem !important;
  }
  .xs\:mr--13 {
    margin-right: -11rem !important;
  }
  .xs\:mr--12 {
    margin-right: -10rem !important;
  }
  .xs\:mr--11 {
    margin-right: -9rem !important;
  }
  .xs\:mr--10 {
    margin-right: -8rem !important;
  }
  .xs\:mr--9 {
    margin-right: -7rem !important;
  }
  .xs\:mr--8 {
    margin-right: -6rem !important;
  }
  .xs\:mr--7 {
    margin-right: -5rem !important;
  }
  .xs\:mr--6 {
    margin-right: -4rem !important;
  }
  .xs\:mr--5 {
    margin-right: -3rem !important;
  }
  .xs\:mr--4-5 {
    margin-right: -2.5rem !important;
  }
  .xs\:mr--4 {
    margin-right: -2rem !important;
  }
  .xs\:mr--3-5 {
    margin-right: -1.5rem !important;
  }
  .xs\:mr--3 {
    margin-right: -1rem !important;
  }
  .xs\:mr--2-5 {
    margin-right: -0.75rem !important;
  }
  .xs\:mr--2 {
    margin-right: -0.5rem !important;
  }
  .xs\:mr--1 {
    margin-right: -0.25rem !important;
  }
  .xs\:mr--0-5 {
    margin-right: -0.125rem !important;
  }
  .xs\:mr-0 {
    margin-right: 0 !important;
  }
  .xs\:mr-0-25 {
    margin-right: 0.0625rem !important;
  }
  .xs\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .xs\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .xs\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .xs\:mr-2-5 {
    margin-right: 0.75rem !important;
  }
  .xs\:mr-3 {
    margin-right: 1rem !important;
  }
  .xs\:mr-3-5 {
    margin-right: 1.5rem !important;
  }
  .xs\:mr-4 {
    margin-right: 2rem !important;
  }
  .xs\:mr-4-5 {
    margin-right: 2.5rem !important;
  }
  .xs\:mr-5 {
    margin-right: 3rem !important;
  }
  .xs\:mr-6 {
    margin-right: 4rem !important;
  }
  .xs\:mr-6-5 {
    margin-right: 4.5rem !important;
  }
  .xs\:mr-7 {
    margin-right: 5rem !important;
  }
  .xs\:mr-8 {
    margin-right: 6rem !important;
  }
  .xs\:mr-9 {
    margin-right: 7rem !important;
  }
  .xs\:mr-10 {
    margin-right: 8rem !important;
  }
  .xs\:mr-11 {
    margin-right: 9rem !important;
  }
  .xs\:mr-12 {
    margin-right: 10rem !important;
  }
  .xs\:mr-13 {
    margin-right: 11rem !important;
  }
  .xs\:mr-14 {
    margin-right: 12rem !important;
  }
  .xs\:mr-15 {
    margin-right: 13rem !important;
  }
  .xs\:mr-30 {
    margin-right: 28rem !important;
  }
  .xs\:mr-1-em {
    margin-right: 0.25em !important;
  }
  .xs\:mr-1-5-em {
    margin-right: 0.375em !important;
  }
  .xs\:mr-2-em {
    margin-right: 0.5em !important;
  }
  .xs\:mr-2-25-em {
    margin-right: 0.625em !important;
  }
  .xs\:mr-2-5-em {
    margin-right: 0.75em !important;
  }
  .xs\:mr-3-em {
    margin-right: 1em !important;
  }
  .xs\:mr-4-em {
    margin-right: 2em !important;
  }
  .xs\:mr-5-em {
    margin-right: 3em !important;
  }
  .xs\:mr-6-em {
    margin-right: 4em !important;
  }
  .xs\:mr-7-em {
    margin-right: 5em !important;
  }
  .xs\:mr-8-em {
    margin-right: 6em !important;
  }
  .xs\:mr-9-em {
    margin-right: 7em !important;
  }
  .xs\:mr-1px {
    margin-right: 1px !important;
  }
  .xs\:mr--1px {
    margin-right: -1px !important;
  }
  .xs\:mr-1\/8 {
    margin-right: 12.5% !important;
  }
  .xs\:mr-1\/6 {
    margin-right: 16.666666% !important;
  }
  .xs\:mr-1\/5 {
    margin-right: 20% !important;
  }
  .xs\:mr-1\/4 {
    margin-right: 25% !important;
  }
  .xs\:mr-2\/7 {
    margin-right: 28.57142857% !important;
  }
  .xs\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }
  .xs\:mr-2\/5 {
    margin-right: 40% !important;
  }
  .xs\:mr-1\/2 {
    margin-right: 50% !important;
  }
  .xs\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }
  .xs\:mr-1\/10 {
    margin-right: 10% !important;
  }
  .xs\:mr-5\/12 {
    margin-right: 41.6666666% !important;
  }
  .xs\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }
  .xs\:mr-3\/5 {
    margin-right: 60% !important;
  }
  .xs\:mr-11\/12 {
    margin-right: 91.6666666% !important;
  }
  .xs\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }
  .xs\:mr-3\/4 {
    margin-right: 75% !important;
  }
  .xs\:mr-4\/5 {
    margin-right: 80% !important;
  }
  .xs\:mr-5\/6 {
    margin-right: 83.3333333% !important;
  }
  .xs\:mb--1\/6 {
    margin-bottom: -16.666666% !important;
  }
  .xs\:mb--1\/5 {
    margin-bottom: -20% !important;
  }
  .xs\:mb--1\/4 {
    margin-bottom: -25% !important;
  }
  .xs\:mb--2\/7 {
    margin-bottom: -28.57142857% !important;
  }
  .xs\:mb--1\/3 {
    margin-bottom: -33.333333% !important;
  }
  .xs\:mb--2\/5 {
    margin-bottom: -40% !important;
  }
  .xs\:mb--1\/2 {
    margin-bottom: -50% !important;
  }
  .xs\:mb--1\/12 {
    margin-bottom: -8.333333% !important;
  }
  .xs\:mb--1\/10 {
    margin-bottom: -10% !important;
  }
  .xs\:mb--5\/12 {
    margin-bottom: -41.6666666% !important;
  }
  .xs\:mb--7\/12 {
    margin-bottom: -58.333333% !important;
  }
  .xs\:mb--3\/5 {
    margin-bottom: -60% !important;
  }
  .xs\:mb--11\/12 {
    margin-bottom: -91.6666666% !important;
  }
  .xs\:mb--2\/3 {
    margin-bottom: -66.666667% !important;
  }
  .xs\:mb--3\/4 {
    margin-bottom: -75% !important;
  }
  .xs\:mb--4\/5 {
    margin-bottom: -80% !important;
  }
  .xs\:mb--5\/6 {
    margin-bottom: -83.3333333% !important;
  }
  .xs\:mb--30 {
    margin-bottom: -28rem !important;
  }
  .xs\:mb--24 {
    margin-bottom: -22rem !important;
  }
  .xs\:mb--18 {
    margin-bottom: -16rem !important;
  }
  .xs\:mb--15 {
    margin-bottom: -13rem !important;
  }
  .xs\:mb--14 {
    margin-bottom: -12rem !important;
  }
  .xs\:mb--13 {
    margin-bottom: -11rem !important;
  }
  .xs\:mb--12 {
    margin-bottom: -10rem !important;
  }
  .xs\:mb--11 {
    margin-bottom: -9rem !important;
  }
  .xs\:mb--10 {
    margin-bottom: -8rem !important;
  }
  .xs\:mb--9 {
    margin-bottom: -7rem !important;
  }
  .xs\:mb--8 {
    margin-bottom: -6rem !important;
  }
  .xs\:mb--7 {
    margin-bottom: -5rem !important;
  }
  .xs\:mb--6 {
    margin-bottom: -4rem !important;
  }
  .xs\:mb--5 {
    margin-bottom: -3rem !important;
  }
  .xs\:mb--4-5 {
    margin-bottom: -2.5rem !important;
  }
  .xs\:mb--4 {
    margin-bottom: -2rem !important;
  }
  .xs\:mb--3-5 {
    margin-bottom: -1.5rem !important;
  }
  .xs\:mb--3 {
    margin-bottom: -1rem !important;
  }
  .xs\:mb--2-5 {
    margin-bottom: -0.75rem !important;
  }
  .xs\:mb--2 {
    margin-bottom: -0.5rem !important;
  }
  .xs\:mb--1 {
    margin-bottom: -0.25rem !important;
  }
  .xs\:mb--0-5 {
    margin-bottom: -0.125rem !important;
  }
  .xs\:mb-0 {
    margin-bottom: 0 !important;
  }
  .xs\:mb-0-25 {
    margin-bottom: 0.0625rem !important;
  }
  .xs\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .xs\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xs\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xs\:mb-2-5 {
    margin-bottom: 0.75rem !important;
  }
  .xs\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .xs\:mb-3-5 {
    margin-bottom: 1.5rem !important;
  }
  .xs\:mb-4 {
    margin-bottom: 2rem !important;
  }
  .xs\:mb-4-5 {
    margin-bottom: 2.5rem !important;
  }
  .xs\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .xs\:mb-6 {
    margin-bottom: 4rem !important;
  }
  .xs\:mb-6-5 {
    margin-bottom: 4.5rem !important;
  }
  .xs\:mb-7 {
    margin-bottom: 5rem !important;
  }
  .xs\:mb-8 {
    margin-bottom: 6rem !important;
  }
  .xs\:mb-9 {
    margin-bottom: 7rem !important;
  }
  .xs\:mb-10 {
    margin-bottom: 8rem !important;
  }
  .xs\:mb-11 {
    margin-bottom: 9rem !important;
  }
  .xs\:mb-12 {
    margin-bottom: 10rem !important;
  }
  .xs\:mb-13 {
    margin-bottom: 11rem !important;
  }
  .xs\:mb-14 {
    margin-bottom: 12rem !important;
  }
  .xs\:mb-15 {
    margin-bottom: 13rem !important;
  }
  .xs\:mb-30 {
    margin-bottom: 28rem !important;
  }
  .xs\:mb-1-em {
    margin-bottom: 0.25em !important;
  }
  .xs\:mb-1-5-em {
    margin-bottom: 0.375em !important;
  }
  .xs\:mb-2-em {
    margin-bottom: 0.5em !important;
  }
  .xs\:mb-2-25-em {
    margin-bottom: 0.625em !important;
  }
  .xs\:mb-2-5-em {
    margin-bottom: 0.75em !important;
  }
  .xs\:mb-3-em {
    margin-bottom: 1em !important;
  }
  .xs\:mb-4-em {
    margin-bottom: 2em !important;
  }
  .xs\:mb-5-em {
    margin-bottom: 3em !important;
  }
  .xs\:mb-6-em {
    margin-bottom: 4em !important;
  }
  .xs\:mb-7-em {
    margin-bottom: 5em !important;
  }
  .xs\:mb-8-em {
    margin-bottom: 6em !important;
  }
  .xs\:mb-9-em {
    margin-bottom: 7em !important;
  }
  .xs\:mb-1px {
    margin-bottom: 1px !important;
  }
  .xs\:mb--1px {
    margin-bottom: -1px !important;
  }
  .xs\:mb-1\/8 {
    margin-bottom: 12.5% !important;
  }
  .xs\:mb-1\/6 {
    margin-bottom: 16.666666% !important;
  }
  .xs\:mb-1\/5 {
    margin-bottom: 20% !important;
  }
  .xs\:mb-1\/4 {
    margin-bottom: 25% !important;
  }
  .xs\:mb-2\/7 {
    margin-bottom: 28.57142857% !important;
  }
  .xs\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }
  .xs\:mb-2\/5 {
    margin-bottom: 40% !important;
  }
  .xs\:mb-1\/2 {
    margin-bottom: 50% !important;
  }
  .xs\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }
  .xs\:mb-1\/10 {
    margin-bottom: 10% !important;
  }
  .xs\:mb-5\/12 {
    margin-bottom: 41.6666666% !important;
  }
  .xs\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }
  .xs\:mb-3\/5 {
    margin-bottom: 60% !important;
  }
  .xs\:mb-11\/12 {
    margin-bottom: 91.6666666% !important;
  }
  .xs\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }
  .xs\:mb-3\/4 {
    margin-bottom: 75% !important;
  }
  .xs\:mb-4\/5 {
    margin-bottom: 80% !important;
  }
  .xs\:mb-5\/6 {
    margin-bottom: 83.3333333% !important;
  }
  .xs\:ml--1\/6 {
    margin-left: -16.666666% !important;
  }
  .xs\:ml--1\/5 {
    margin-left: -20% !important;
  }
  .xs\:ml--1\/4 {
    margin-left: -25% !important;
  }
  .xs\:ml--2\/7 {
    margin-left: -28.57142857% !important;
  }
  .xs\:ml--1\/3 {
    margin-left: -33.333333% !important;
  }
  .xs\:ml--2\/5 {
    margin-left: -40% !important;
  }
  .xs\:ml--1\/2 {
    margin-left: -50% !important;
  }
  .xs\:ml--1\/12 {
    margin-left: -8.333333% !important;
  }
  .xs\:ml--1\/10 {
    margin-left: -10% !important;
  }
  .xs\:ml--5\/12 {
    margin-left: -41.6666666% !important;
  }
  .xs\:ml--7\/12 {
    margin-left: -58.333333% !important;
  }
  .xs\:ml--3\/5 {
    margin-left: -60% !important;
  }
  .xs\:ml--11\/12 {
    margin-left: -91.6666666% !important;
  }
  .xs\:ml--2\/3 {
    margin-left: -66.666667% !important;
  }
  .xs\:ml--3\/4 {
    margin-left: -75% !important;
  }
  .xs\:ml--4\/5 {
    margin-left: -80% !important;
  }
  .xs\:ml--5\/6 {
    margin-left: -83.3333333% !important;
  }
  .xs\:ml--30 {
    margin-left: -28rem !important;
  }
  .xs\:ml--24 {
    margin-left: -22rem !important;
  }
  .xs\:ml--18 {
    margin-left: -16rem !important;
  }
  .xs\:ml--15 {
    margin-left: -13rem !important;
  }
  .xs\:ml--14 {
    margin-left: -12rem !important;
  }
  .xs\:ml--13 {
    margin-left: -11rem !important;
  }
  .xs\:ml--12 {
    margin-left: -10rem !important;
  }
  .xs\:ml--11 {
    margin-left: -9rem !important;
  }
  .xs\:ml--10 {
    margin-left: -8rem !important;
  }
  .xs\:ml--9 {
    margin-left: -7rem !important;
  }
  .xs\:ml--8 {
    margin-left: -6rem !important;
  }
  .xs\:ml--7 {
    margin-left: -5rem !important;
  }
  .xs\:ml--6 {
    margin-left: -4rem !important;
  }
  .xs\:ml--5 {
    margin-left: -3rem !important;
  }
  .xs\:ml--4-5 {
    margin-left: -2.5rem !important;
  }
  .xs\:ml--4 {
    margin-left: -2rem !important;
  }
  .xs\:ml--3-5 {
    margin-left: -1.5rem !important;
  }
  .xs\:ml--3 {
    margin-left: -1rem !important;
  }
  .xs\:ml--2-5 {
    margin-left: -0.75rem !important;
  }
  .xs\:ml--2 {
    margin-left: -0.5rem !important;
  }
  .xs\:ml--1 {
    margin-left: -0.25rem !important;
  }
  .xs\:ml--0-5 {
    margin-left: -0.125rem !important;
  }
  .xs\:ml-0 {
    margin-left: 0 !important;
  }
  .xs\:ml-0-25 {
    margin-left: 0.0625rem !important;
  }
  .xs\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .xs\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .xs\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .xs\:ml-2-5 {
    margin-left: 0.75rem !important;
  }
  .xs\:ml-3 {
    margin-left: 1rem !important;
  }
  .xs\:ml-3-5 {
    margin-left: 1.5rem !important;
  }
  .xs\:ml-4 {
    margin-left: 2rem !important;
  }
  .xs\:ml-4-5 {
    margin-left: 2.5rem !important;
  }
  .xs\:ml-5 {
    margin-left: 3rem !important;
  }
  .xs\:ml-6 {
    margin-left: 4rem !important;
  }
  .xs\:ml-6-5 {
    margin-left: 4.5rem !important;
  }
  .xs\:ml-7 {
    margin-left: 5rem !important;
  }
  .xs\:ml-8 {
    margin-left: 6rem !important;
  }
  .xs\:ml-9 {
    margin-left: 7rem !important;
  }
  .xs\:ml-10 {
    margin-left: 8rem !important;
  }
  .xs\:ml-11 {
    margin-left: 9rem !important;
  }
  .xs\:ml-12 {
    margin-left: 10rem !important;
  }
  .xs\:ml-13 {
    margin-left: 11rem !important;
  }
  .xs\:ml-14 {
    margin-left: 12rem !important;
  }
  .xs\:ml-15 {
    margin-left: 13rem !important;
  }
  .xs\:ml-30 {
    margin-left: 28rem !important;
  }
  .xs\:ml-1-em {
    margin-left: 0.25em !important;
  }
  .xs\:ml-1-5-em {
    margin-left: 0.375em !important;
  }
  .xs\:ml-2-em {
    margin-left: 0.5em !important;
  }
  .xs\:ml-2-25-em {
    margin-left: 0.625em !important;
  }
  .xs\:ml-2-5-em {
    margin-left: 0.75em !important;
  }
  .xs\:ml-3-em {
    margin-left: 1em !important;
  }
  .xs\:ml-4-em {
    margin-left: 2em !important;
  }
  .xs\:ml-5-em {
    margin-left: 3em !important;
  }
  .xs\:ml-6-em {
    margin-left: 4em !important;
  }
  .xs\:ml-7-em {
    margin-left: 5em !important;
  }
  .xs\:ml-8-em {
    margin-left: 6em !important;
  }
  .xs\:ml-9-em {
    margin-left: 7em !important;
  }
  .xs\:ml-1px {
    margin-left: 1px !important;
  }
  .xs\:ml--1px {
    margin-left: -1px !important;
  }
  .xs\:ml-1\/8 {
    margin-left: 12.5% !important;
  }
  .xs\:ml-1\/6 {
    margin-left: 16.666666% !important;
  }
  .xs\:ml-1\/5 {
    margin-left: 20% !important;
  }
  .xs\:ml-1\/4 {
    margin-left: 25% !important;
  }
  .xs\:ml-2\/7 {
    margin-left: 28.57142857% !important;
  }
  .xs\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }
  .xs\:ml-2\/5 {
    margin-left: 40% !important;
  }
  .xs\:ml-1\/2 {
    margin-left: 50% !important;
  }
  .xs\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }
  .xs\:ml-1\/10 {
    margin-left: 10% !important;
  }
  .xs\:ml-5\/12 {
    margin-left: 41.6666666% !important;
  }
  .xs\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }
  .xs\:ml-3\/5 {
    margin-left: 60% !important;
  }
  .xs\:ml-11\/12 {
    margin-left: 91.6666666% !important;
  }
  .xs\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }
  .xs\:ml-3\/4 {
    margin-left: 75% !important;
  }
  .xs\:ml-4\/5 {
    margin-left: 80% !important;
  }
  .xs\:ml-5\/6 {
    margin-left: 83.3333333% !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:m--1\/6 {
    margin: -16.666666% !important;
  }
  .sm\:m--1\/5 {
    margin: -20% !important;
  }
  .sm\:m--1\/4 {
    margin: -25% !important;
  }
  .sm\:m--2\/7 {
    margin: -28.57142857% !important;
  }
  .sm\:m--1\/3 {
    margin: -33.333333% !important;
  }
  .sm\:m--2\/5 {
    margin: -40% !important;
  }
  .sm\:m--1\/2 {
    margin: -50% !important;
  }
  .sm\:m--1\/12 {
    margin: -8.333333% !important;
  }
  .sm\:m--1\/10 {
    margin: -10% !important;
  }
  .sm\:m--5\/12 {
    margin: -41.6666666% !important;
  }
  .sm\:m--7\/12 {
    margin: -58.333333% !important;
  }
  .sm\:m--3\/5 {
    margin: -60% !important;
  }
  .sm\:m--11\/12 {
    margin: -91.6666666% !important;
  }
  .sm\:m--2\/3 {
    margin: -66.666667% !important;
  }
  .sm\:m--3\/4 {
    margin: -75% !important;
  }
  .sm\:m--4\/5 {
    margin: -80% !important;
  }
  .sm\:m--5\/6 {
    margin: -83.3333333% !important;
  }
  .sm\:m--30 {
    margin: -28rem !important;
  }
  .sm\:m--24 {
    margin: -22rem !important;
  }
  .sm\:m--18 {
    margin: -16rem !important;
  }
  .sm\:m--15 {
    margin: -13rem !important;
  }
  .sm\:m--14 {
    margin: -12rem !important;
  }
  .sm\:m--13 {
    margin: -11rem !important;
  }
  .sm\:m--12 {
    margin: -10rem !important;
  }
  .sm\:m--11 {
    margin: -9rem !important;
  }
  .sm\:m--10 {
    margin: -8rem !important;
  }
  .sm\:m--9 {
    margin: -7rem !important;
  }
  .sm\:m--8 {
    margin: -6rem !important;
  }
  .sm\:m--7 {
    margin: -5rem !important;
  }
  .sm\:m--6 {
    margin: -4rem !important;
  }
  .sm\:m--5 {
    margin: -3rem !important;
  }
  .sm\:m--4-5 {
    margin: -2.5rem !important;
  }
  .sm\:m--4 {
    margin: -2rem !important;
  }
  .sm\:m--3-5 {
    margin: -1.5rem !important;
  }
  .sm\:m--3 {
    margin: -1rem !important;
  }
  .sm\:m--2-5 {
    margin: -0.75rem !important;
  }
  .sm\:m--2 {
    margin: -0.5rem !important;
  }
  .sm\:m--1 {
    margin: -0.25rem !important;
  }
  .sm\:m--0-5 {
    margin: -0.125rem !important;
  }
  .sm\:m-0 {
    margin: 0 !important;
  }
  .sm\:m-0-25 {
    margin: 0.0625rem !important;
  }
  .sm\:m-0-5 {
    margin: 0.125rem !important;
  }
  .sm\:m-1 {
    margin: 0.25rem !important;
  }
  .sm\:m-2 {
    margin: 0.5rem !important;
  }
  .sm\:m-2-5 {
    margin: 0.75rem !important;
  }
  .sm\:m-3 {
    margin: 1rem !important;
  }
  .sm\:m-3-5 {
    margin: 1.5rem !important;
  }
  .sm\:m-4 {
    margin: 2rem !important;
  }
  .sm\:m-4-5 {
    margin: 2.5rem !important;
  }
  .sm\:m-5 {
    margin: 3rem !important;
  }
  .sm\:m-6 {
    margin: 4rem !important;
  }
  .sm\:m-6-5 {
    margin: 4.5rem !important;
  }
  .sm\:m-7 {
    margin: 5rem !important;
  }
  .sm\:m-8 {
    margin: 6rem !important;
  }
  .sm\:m-9 {
    margin: 7rem !important;
  }
  .sm\:m-10 {
    margin: 8rem !important;
  }
  .sm\:m-11 {
    margin: 9rem !important;
  }
  .sm\:m-12 {
    margin: 10rem !important;
  }
  .sm\:m-13 {
    margin: 11rem !important;
  }
  .sm\:m-14 {
    margin: 12rem !important;
  }
  .sm\:m-15 {
    margin: 13rem !important;
  }
  .sm\:m-30 {
    margin: 28rem !important;
  }
  .sm\:m-1-em {
    margin: 0.25em !important;
  }
  .sm\:m-1-5-em {
    margin: 0.375em !important;
  }
  .sm\:m-2-em {
    margin: 0.5em !important;
  }
  .sm\:m-2-25-em {
    margin: 0.625em !important;
  }
  .sm\:m-2-5-em {
    margin: 0.75em !important;
  }
  .sm\:m-3-em {
    margin: 1em !important;
  }
  .sm\:m-4-em {
    margin: 2em !important;
  }
  .sm\:m-5-em {
    margin: 3em !important;
  }
  .sm\:m-6-em {
    margin: 4em !important;
  }
  .sm\:m-7-em {
    margin: 5em !important;
  }
  .sm\:m-8-em {
    margin: 6em !important;
  }
  .sm\:m-9-em {
    margin: 7em !important;
  }
  .sm\:m-1px {
    margin: 1px !important;
  }
  .sm\:m--1px {
    margin: -1px !important;
  }
  .sm\:m-1\/8 {
    margin: 12.5% !important;
  }
  .sm\:m-1\/6 {
    margin: 16.666666% !important;
  }
  .sm\:m-1\/5 {
    margin: 20% !important;
  }
  .sm\:m-1\/4 {
    margin: 25% !important;
  }
  .sm\:m-2\/7 {
    margin: 28.57142857% !important;
  }
  .sm\:m-1\/3 {
    margin: 33.333333% !important;
  }
  .sm\:m-2\/5 {
    margin: 40% !important;
  }
  .sm\:m-1\/2 {
    margin: 50% !important;
  }
  .sm\:m-1\/12 {
    margin: 8.333333% !important;
  }
  .sm\:m-1\/10 {
    margin: 10% !important;
  }
  .sm\:m-5\/12 {
    margin: 41.6666666% !important;
  }
  .sm\:m-7\/12 {
    margin: 58.333333% !important;
  }
  .sm\:m-3\/5 {
    margin: 60% !important;
  }
  .sm\:m-11\/12 {
    margin: 91.6666666% !important;
  }
  .sm\:m-2\/3 {
    margin: 66.666667% !important;
  }
  .sm\:m-3\/4 {
    margin: 75% !important;
  }
  .sm\:m-4\/5 {
    margin: 80% !important;
  }
  .sm\:m-5\/6 {
    margin: 83.3333333% !important;
  }
  .sm\:mx--1\/6 {
    margin-left: -16.666666% !important;
    margin-right: -16.666666% !important;
  }
  .sm\:mx--1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }
  .sm\:mx--1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }
  .sm\:mx--2\/7 {
    margin-left: -28.57142857% !important;
    margin-right: -28.57142857% !important;
  }
  .sm\:mx--1\/3 {
    margin-left: -33.333333% !important;
    margin-right: -33.333333% !important;
  }
  .sm\:mx--2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }
  .sm\:mx--1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }
  .sm\:mx--1\/12 {
    margin-left: -8.333333% !important;
    margin-right: -8.333333% !important;
  }
  .sm\:mx--1\/10 {
    margin-left: -10% !important;
    margin-right: -10% !important;
  }
  .sm\:mx--5\/12 {
    margin-left: -41.6666666% !important;
    margin-right: -41.6666666% !important;
  }
  .sm\:mx--7\/12 {
    margin-left: -58.333333% !important;
    margin-right: -58.333333% !important;
  }
  .sm\:mx--3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }
  .sm\:mx--11\/12 {
    margin-left: -91.6666666% !important;
    margin-right: -91.6666666% !important;
  }
  .sm\:mx--2\/3 {
    margin-left: -66.666667% !important;
    margin-right: -66.666667% !important;
  }
  .sm\:mx--3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }
  .sm\:mx--4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }
  .sm\:mx--5\/6 {
    margin-left: -83.3333333% !important;
    margin-right: -83.3333333% !important;
  }
  .sm\:mx--30 {
    margin-left: -28rem !important;
    margin-right: -28rem !important;
  }
  .sm\:mx--24 {
    margin-left: -22rem !important;
    margin-right: -22rem !important;
  }
  .sm\:mx--18 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }
  .sm\:mx--15 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }
  .sm\:mx--14 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }
  .sm\:mx--13 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }
  .sm\:mx--12 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }
  .sm\:mx--11 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }
  .sm\:mx--10 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .sm\:mx--9 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }
  .sm\:mx--8 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .sm\:mx--7 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .sm\:mx--6 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .sm\:mx--5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .sm\:mx--4-5 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .sm\:mx--4 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .sm\:mx--3-5 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .sm\:mx--3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .sm\:mx--2-5 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .sm\:mx--2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .sm\:mx--1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .sm\:mx--0-5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }
  .sm\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .sm\:mx-0-25 {
    margin-left: 0.0625rem !important;
    margin-right: 0.0625rem !important;
  }
  .sm\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .sm\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .sm\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .sm\:mx-2-5 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .sm\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .sm\:mx-3-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .sm\:mx-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .sm\:mx-4-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .sm\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .sm\:mx-6 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .sm\:mx-6-5 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .sm\:mx-7 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .sm\:mx-8 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .sm\:mx-9 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .sm\:mx-10 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .sm\:mx-11 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .sm\:mx-12 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .sm\:mx-13 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .sm\:mx-14 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .sm\:mx-15 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .sm\:mx-30 {
    margin-left: 28rem !important;
    margin-right: 28rem !important;
  }
  .sm\:mx-1-em {
    margin-left: 0.25em !important;
    margin-right: 0.25em !important;
  }
  .sm\:mx-1-5-em {
    margin-left: 0.375em !important;
    margin-right: 0.375em !important;
  }
  .sm\:mx-2-em {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .sm\:mx-2-25-em {
    margin-left: 0.625em !important;
    margin-right: 0.625em !important;
  }
  .sm\:mx-2-5-em {
    margin-left: 0.75em !important;
    margin-right: 0.75em !important;
  }
  .sm\:mx-3-em {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .sm\:mx-4-em {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .sm\:mx-5-em {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .sm\:mx-6-em {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .sm\:mx-7-em {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .sm\:mx-8-em {
    margin-left: 6em !important;
    margin-right: 6em !important;
  }
  .sm\:mx-9-em {
    margin-left: 7em !important;
    margin-right: 7em !important;
  }
  .sm\:mx-1px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .sm\:mx--1px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }
  .sm\:mx-1\/8 {
    margin-left: 12.5% !important;
    margin-right: 12.5% !important;
  }
  .sm\:mx-1\/6 {
    margin-left: 16.666666% !important;
    margin-right: 16.666666% !important;
  }
  .sm\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }
  .sm\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }
  .sm\:mx-2\/7 {
    margin-left: 28.57142857% !important;
    margin-right: 28.57142857% !important;
  }
  .sm\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }
  .sm\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }
  .sm\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }
  .sm\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }
  .sm\:mx-1\/10 {
    margin-left: 10% !important;
    margin-right: 10% !important;
  }
  .sm\:mx-5\/12 {
    margin-left: 41.6666666% !important;
    margin-right: 41.6666666% !important;
  }
  .sm\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }
  .sm\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }
  .sm\:mx-11\/12 {
    margin-left: 91.6666666% !important;
    margin-right: 91.6666666% !important;
  }
  .sm\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }
  .sm\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }
  .sm\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }
  .sm\:mx-5\/6 {
    margin-left: 83.3333333% !important;
    margin-right: 83.3333333% !important;
  }
  .sm\:my--1\/6 {
    margin-top: -16.666666% !important;
    margin-bottom: -16.666666% !important;
  }
  .sm\:my--1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }
  .sm\:my--1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }
  .sm\:my--2\/7 {
    margin-top: -28.57142857% !important;
    margin-bottom: -28.57142857% !important;
  }
  .sm\:my--1\/3 {
    margin-top: -33.333333% !important;
    margin-bottom: -33.333333% !important;
  }
  .sm\:my--2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }
  .sm\:my--1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }
  .sm\:my--1\/12 {
    margin-top: -8.333333% !important;
    margin-bottom: -8.333333% !important;
  }
  .sm\:my--1\/10 {
    margin-top: -10% !important;
    margin-bottom: -10% !important;
  }
  .sm\:my--5\/12 {
    margin-top: -41.6666666% !important;
    margin-bottom: -41.6666666% !important;
  }
  .sm\:my--7\/12 {
    margin-top: -58.333333% !important;
    margin-bottom: -58.333333% !important;
  }
  .sm\:my--3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }
  .sm\:my--11\/12 {
    margin-top: -91.6666666% !important;
    margin-bottom: -91.6666666% !important;
  }
  .sm\:my--2\/3 {
    margin-top: -66.666667% !important;
    margin-bottom: -66.666667% !important;
  }
  .sm\:my--3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }
  .sm\:my--4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }
  .sm\:my--5\/6 {
    margin-top: -83.3333333% !important;
    margin-bottom: -83.3333333% !important;
  }
  .sm\:my--30 {
    margin-top: -28rem !important;
    margin-bottom: -28rem !important;
  }
  .sm\:my--24 {
    margin-top: -22rem !important;
    margin-bottom: -22rem !important;
  }
  .sm\:my--18 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }
  .sm\:my--15 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .sm\:my--14 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .sm\:my--13 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }
  .sm\:my--12 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .sm\:my--11 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .sm\:my--10 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .sm\:my--9 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .sm\:my--8 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .sm\:my--7 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .sm\:my--6 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .sm\:my--5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .sm\:my--4-5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .sm\:my--4 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .sm\:my--3-5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .sm\:my--3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .sm\:my--2-5 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .sm\:my--2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .sm\:my--1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .sm\:my--0-5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }
  .sm\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .sm\:my-0-25 {
    margin-top: 0.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }
  .sm\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .sm\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .sm\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .sm\:my-2-5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .sm\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .sm\:my-3-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .sm\:my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .sm\:my-4-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .sm\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .sm\:my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .sm\:my-6-5 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .sm\:my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .sm\:my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .sm\:my-9 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .sm\:my-10 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .sm\:my-11 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .sm\:my-12 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .sm\:my-13 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .sm\:my-14 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .sm\:my-15 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .sm\:my-30 {
    margin-top: 28rem !important;
    margin-bottom: 28rem !important;
  }
  .sm\:my-1-em {
    margin-top: 0.25em !important;
    margin-bottom: 0.25em !important;
  }
  .sm\:my-1-5-em {
    margin-top: 0.375em !important;
    margin-bottom: 0.375em !important;
  }
  .sm\:my-2-em {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .sm\:my-2-25-em {
    margin-top: 0.625em !important;
    margin-bottom: 0.625em !important;
  }
  .sm\:my-2-5-em {
    margin-top: 0.75em !important;
    margin-bottom: 0.75em !important;
  }
  .sm\:my-3-em {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .sm\:my-4-em {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .sm\:my-5-em {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .sm\:my-6-em {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .sm\:my-7-em {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .sm\:my-8-em {
    margin-top: 6em !important;
    margin-bottom: 6em !important;
  }
  .sm\:my-9-em {
    margin-top: 7em !important;
    margin-bottom: 7em !important;
  }
  .sm\:my-1px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .sm\:my--1px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }
  .sm\:my-1\/8 {
    margin-top: 12.5% !important;
    margin-bottom: 12.5% !important;
  }
  .sm\:my-1\/6 {
    margin-top: 16.666666% !important;
    margin-bottom: 16.666666% !important;
  }
  .sm\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }
  .sm\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }
  .sm\:my-2\/7 {
    margin-top: 28.57142857% !important;
    margin-bottom: 28.57142857% !important;
  }
  .sm\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }
  .sm\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }
  .sm\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }
  .sm\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }
  .sm\:my-1\/10 {
    margin-top: 10% !important;
    margin-bottom: 10% !important;
  }
  .sm\:my-5\/12 {
    margin-top: 41.6666666% !important;
    margin-bottom: 41.6666666% !important;
  }
  .sm\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }
  .sm\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }
  .sm\:my-11\/12 {
    margin-top: 91.6666666% !important;
    margin-bottom: 91.6666666% !important;
  }
  .sm\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }
  .sm\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }
  .sm\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }
  .sm\:my-5\/6 {
    margin-top: 83.3333333% !important;
    margin-bottom: 83.3333333% !important;
  }
  .sm\:mt--1\/6 {
    margin-top: -16.666666% !important;
  }
  .sm\:mt--1\/5 {
    margin-top: -20% !important;
  }
  .sm\:mt--1\/4 {
    margin-top: -25% !important;
  }
  .sm\:mt--2\/7 {
    margin-top: -28.57142857% !important;
  }
  .sm\:mt--1\/3 {
    margin-top: -33.333333% !important;
  }
  .sm\:mt--2\/5 {
    margin-top: -40% !important;
  }
  .sm\:mt--1\/2 {
    margin-top: -50% !important;
  }
  .sm\:mt--1\/12 {
    margin-top: -8.333333% !important;
  }
  .sm\:mt--1\/10 {
    margin-top: -10% !important;
  }
  .sm\:mt--5\/12 {
    margin-top: -41.6666666% !important;
  }
  .sm\:mt--7\/12 {
    margin-top: -58.333333% !important;
  }
  .sm\:mt--3\/5 {
    margin-top: -60% !important;
  }
  .sm\:mt--11\/12 {
    margin-top: -91.6666666% !important;
  }
  .sm\:mt--2\/3 {
    margin-top: -66.666667% !important;
  }
  .sm\:mt--3\/4 {
    margin-top: -75% !important;
  }
  .sm\:mt--4\/5 {
    margin-top: -80% !important;
  }
  .sm\:mt--5\/6 {
    margin-top: -83.3333333% !important;
  }
  .sm\:mt--30 {
    margin-top: -28rem !important;
  }
  .sm\:mt--24 {
    margin-top: -22rem !important;
  }
  .sm\:mt--18 {
    margin-top: -16rem !important;
  }
  .sm\:mt--15 {
    margin-top: -13rem !important;
  }
  .sm\:mt--14 {
    margin-top: -12rem !important;
  }
  .sm\:mt--13 {
    margin-top: -11rem !important;
  }
  .sm\:mt--12 {
    margin-top: -10rem !important;
  }
  .sm\:mt--11 {
    margin-top: -9rem !important;
  }
  .sm\:mt--10 {
    margin-top: -8rem !important;
  }
  .sm\:mt--9 {
    margin-top: -7rem !important;
  }
  .sm\:mt--8 {
    margin-top: -6rem !important;
  }
  .sm\:mt--7 {
    margin-top: -5rem !important;
  }
  .sm\:mt--6 {
    margin-top: -4rem !important;
  }
  .sm\:mt--5 {
    margin-top: -3rem !important;
  }
  .sm\:mt--4-5 {
    margin-top: -2.5rem !important;
  }
  .sm\:mt--4 {
    margin-top: -2rem !important;
  }
  .sm\:mt--3-5 {
    margin-top: -1.5rem !important;
  }
  .sm\:mt--3 {
    margin-top: -1rem !important;
  }
  .sm\:mt--2-5 {
    margin-top: -0.75rem !important;
  }
  .sm\:mt--2 {
    margin-top: -0.5rem !important;
  }
  .sm\:mt--1 {
    margin-top: -0.25rem !important;
  }
  .sm\:mt--0-5 {
    margin-top: -0.125rem !important;
  }
  .sm\:mt-0 {
    margin-top: 0 !important;
  }
  .sm\:mt-0-25 {
    margin-top: 0.0625rem !important;
  }
  .sm\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .sm\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .sm\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .sm\:mt-2-5 {
    margin-top: 0.75rem !important;
  }
  .sm\:mt-3 {
    margin-top: 1rem !important;
  }
  .sm\:mt-3-5 {
    margin-top: 1.5rem !important;
  }
  .sm\:mt-4 {
    margin-top: 2rem !important;
  }
  .sm\:mt-4-5 {
    margin-top: 2.5rem !important;
  }
  .sm\:mt-5 {
    margin-top: 3rem !important;
  }
  .sm\:mt-6 {
    margin-top: 4rem !important;
  }
  .sm\:mt-6-5 {
    margin-top: 4.5rem !important;
  }
  .sm\:mt-7 {
    margin-top: 5rem !important;
  }
  .sm\:mt-8 {
    margin-top: 6rem !important;
  }
  .sm\:mt-9 {
    margin-top: 7rem !important;
  }
  .sm\:mt-10 {
    margin-top: 8rem !important;
  }
  .sm\:mt-11 {
    margin-top: 9rem !important;
  }
  .sm\:mt-12 {
    margin-top: 10rem !important;
  }
  .sm\:mt-13 {
    margin-top: 11rem !important;
  }
  .sm\:mt-14 {
    margin-top: 12rem !important;
  }
  .sm\:mt-15 {
    margin-top: 13rem !important;
  }
  .sm\:mt-30 {
    margin-top: 28rem !important;
  }
  .sm\:mt-1-em {
    margin-top: 0.25em !important;
  }
  .sm\:mt-1-5-em {
    margin-top: 0.375em !important;
  }
  .sm\:mt-2-em {
    margin-top: 0.5em !important;
  }
  .sm\:mt-2-25-em {
    margin-top: 0.625em !important;
  }
  .sm\:mt-2-5-em {
    margin-top: 0.75em !important;
  }
  .sm\:mt-3-em {
    margin-top: 1em !important;
  }
  .sm\:mt-4-em {
    margin-top: 2em !important;
  }
  .sm\:mt-5-em {
    margin-top: 3em !important;
  }
  .sm\:mt-6-em {
    margin-top: 4em !important;
  }
  .sm\:mt-7-em {
    margin-top: 5em !important;
  }
  .sm\:mt-8-em {
    margin-top: 6em !important;
  }
  .sm\:mt-9-em {
    margin-top: 7em !important;
  }
  .sm\:mt-1px {
    margin-top: 1px !important;
  }
  .sm\:mt--1px {
    margin-top: -1px !important;
  }
  .sm\:mt-1\/8 {
    margin-top: 12.5% !important;
  }
  .sm\:mt-1\/6 {
    margin-top: 16.666666% !important;
  }
  .sm\:mt-1\/5 {
    margin-top: 20% !important;
  }
  .sm\:mt-1\/4 {
    margin-top: 25% !important;
  }
  .sm\:mt-2\/7 {
    margin-top: 28.57142857% !important;
  }
  .sm\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }
  .sm\:mt-2\/5 {
    margin-top: 40% !important;
  }
  .sm\:mt-1\/2 {
    margin-top: 50% !important;
  }
  .sm\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }
  .sm\:mt-1\/10 {
    margin-top: 10% !important;
  }
  .sm\:mt-5\/12 {
    margin-top: 41.6666666% !important;
  }
  .sm\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }
  .sm\:mt-3\/5 {
    margin-top: 60% !important;
  }
  .sm\:mt-11\/12 {
    margin-top: 91.6666666% !important;
  }
  .sm\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }
  .sm\:mt-3\/4 {
    margin-top: 75% !important;
  }
  .sm\:mt-4\/5 {
    margin-top: 80% !important;
  }
  .sm\:mt-5\/6 {
    margin-top: 83.3333333% !important;
  }
  .sm\:mr--1\/6 {
    margin-right: -16.666666% !important;
  }
  .sm\:mr--1\/5 {
    margin-right: -20% !important;
  }
  .sm\:mr--1\/4 {
    margin-right: -25% !important;
  }
  .sm\:mr--2\/7 {
    margin-right: -28.57142857% !important;
  }
  .sm\:mr--1\/3 {
    margin-right: -33.333333% !important;
  }
  .sm\:mr--2\/5 {
    margin-right: -40% !important;
  }
  .sm\:mr--1\/2 {
    margin-right: -50% !important;
  }
  .sm\:mr--1\/12 {
    margin-right: -8.333333% !important;
  }
  .sm\:mr--1\/10 {
    margin-right: -10% !important;
  }
  .sm\:mr--5\/12 {
    margin-right: -41.6666666% !important;
  }
  .sm\:mr--7\/12 {
    margin-right: -58.333333% !important;
  }
  .sm\:mr--3\/5 {
    margin-right: -60% !important;
  }
  .sm\:mr--11\/12 {
    margin-right: -91.6666666% !important;
  }
  .sm\:mr--2\/3 {
    margin-right: -66.666667% !important;
  }
  .sm\:mr--3\/4 {
    margin-right: -75% !important;
  }
  .sm\:mr--4\/5 {
    margin-right: -80% !important;
  }
  .sm\:mr--5\/6 {
    margin-right: -83.3333333% !important;
  }
  .sm\:mr--30 {
    margin-right: -28rem !important;
  }
  .sm\:mr--24 {
    margin-right: -22rem !important;
  }
  .sm\:mr--18 {
    margin-right: -16rem !important;
  }
  .sm\:mr--15 {
    margin-right: -13rem !important;
  }
  .sm\:mr--14 {
    margin-right: -12rem !important;
  }
  .sm\:mr--13 {
    margin-right: -11rem !important;
  }
  .sm\:mr--12 {
    margin-right: -10rem !important;
  }
  .sm\:mr--11 {
    margin-right: -9rem !important;
  }
  .sm\:mr--10 {
    margin-right: -8rem !important;
  }
  .sm\:mr--9 {
    margin-right: -7rem !important;
  }
  .sm\:mr--8 {
    margin-right: -6rem !important;
  }
  .sm\:mr--7 {
    margin-right: -5rem !important;
  }
  .sm\:mr--6 {
    margin-right: -4rem !important;
  }
  .sm\:mr--5 {
    margin-right: -3rem !important;
  }
  .sm\:mr--4-5 {
    margin-right: -2.5rem !important;
  }
  .sm\:mr--4 {
    margin-right: -2rem !important;
  }
  .sm\:mr--3-5 {
    margin-right: -1.5rem !important;
  }
  .sm\:mr--3 {
    margin-right: -1rem !important;
  }
  .sm\:mr--2-5 {
    margin-right: -0.75rem !important;
  }
  .sm\:mr--2 {
    margin-right: -0.5rem !important;
  }
  .sm\:mr--1 {
    margin-right: -0.25rem !important;
  }
  .sm\:mr--0-5 {
    margin-right: -0.125rem !important;
  }
  .sm\:mr-0 {
    margin-right: 0 !important;
  }
  .sm\:mr-0-25 {
    margin-right: 0.0625rem !important;
  }
  .sm\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .sm\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .sm\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .sm\:mr-2-5 {
    margin-right: 0.75rem !important;
  }
  .sm\:mr-3 {
    margin-right: 1rem !important;
  }
  .sm\:mr-3-5 {
    margin-right: 1.5rem !important;
  }
  .sm\:mr-4 {
    margin-right: 2rem !important;
  }
  .sm\:mr-4-5 {
    margin-right: 2.5rem !important;
  }
  .sm\:mr-5 {
    margin-right: 3rem !important;
  }
  .sm\:mr-6 {
    margin-right: 4rem !important;
  }
  .sm\:mr-6-5 {
    margin-right: 4.5rem !important;
  }
  .sm\:mr-7 {
    margin-right: 5rem !important;
  }
  .sm\:mr-8 {
    margin-right: 6rem !important;
  }
  .sm\:mr-9 {
    margin-right: 7rem !important;
  }
  .sm\:mr-10 {
    margin-right: 8rem !important;
  }
  .sm\:mr-11 {
    margin-right: 9rem !important;
  }
  .sm\:mr-12 {
    margin-right: 10rem !important;
  }
  .sm\:mr-13 {
    margin-right: 11rem !important;
  }
  .sm\:mr-14 {
    margin-right: 12rem !important;
  }
  .sm\:mr-15 {
    margin-right: 13rem !important;
  }
  .sm\:mr-30 {
    margin-right: 28rem !important;
  }
  .sm\:mr-1-em {
    margin-right: 0.25em !important;
  }
  .sm\:mr-1-5-em {
    margin-right: 0.375em !important;
  }
  .sm\:mr-2-em {
    margin-right: 0.5em !important;
  }
  .sm\:mr-2-25-em {
    margin-right: 0.625em !important;
  }
  .sm\:mr-2-5-em {
    margin-right: 0.75em !important;
  }
  .sm\:mr-3-em {
    margin-right: 1em !important;
  }
  .sm\:mr-4-em {
    margin-right: 2em !important;
  }
  .sm\:mr-5-em {
    margin-right: 3em !important;
  }
  .sm\:mr-6-em {
    margin-right: 4em !important;
  }
  .sm\:mr-7-em {
    margin-right: 5em !important;
  }
  .sm\:mr-8-em {
    margin-right: 6em !important;
  }
  .sm\:mr-9-em {
    margin-right: 7em !important;
  }
  .sm\:mr-1px {
    margin-right: 1px !important;
  }
  .sm\:mr--1px {
    margin-right: -1px !important;
  }
  .sm\:mr-1\/8 {
    margin-right: 12.5% !important;
  }
  .sm\:mr-1\/6 {
    margin-right: 16.666666% !important;
  }
  .sm\:mr-1\/5 {
    margin-right: 20% !important;
  }
  .sm\:mr-1\/4 {
    margin-right: 25% !important;
  }
  .sm\:mr-2\/7 {
    margin-right: 28.57142857% !important;
  }
  .sm\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }
  .sm\:mr-2\/5 {
    margin-right: 40% !important;
  }
  .sm\:mr-1\/2 {
    margin-right: 50% !important;
  }
  .sm\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }
  .sm\:mr-1\/10 {
    margin-right: 10% !important;
  }
  .sm\:mr-5\/12 {
    margin-right: 41.6666666% !important;
  }
  .sm\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }
  .sm\:mr-3\/5 {
    margin-right: 60% !important;
  }
  .sm\:mr-11\/12 {
    margin-right: 91.6666666% !important;
  }
  .sm\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }
  .sm\:mr-3\/4 {
    margin-right: 75% !important;
  }
  .sm\:mr-4\/5 {
    margin-right: 80% !important;
  }
  .sm\:mr-5\/6 {
    margin-right: 83.3333333% !important;
  }
  .sm\:mb--1\/6 {
    margin-bottom: -16.666666% !important;
  }
  .sm\:mb--1\/5 {
    margin-bottom: -20% !important;
  }
  .sm\:mb--1\/4 {
    margin-bottom: -25% !important;
  }
  .sm\:mb--2\/7 {
    margin-bottom: -28.57142857% !important;
  }
  .sm\:mb--1\/3 {
    margin-bottom: -33.333333% !important;
  }
  .sm\:mb--2\/5 {
    margin-bottom: -40% !important;
  }
  .sm\:mb--1\/2 {
    margin-bottom: -50% !important;
  }
  .sm\:mb--1\/12 {
    margin-bottom: -8.333333% !important;
  }
  .sm\:mb--1\/10 {
    margin-bottom: -10% !important;
  }
  .sm\:mb--5\/12 {
    margin-bottom: -41.6666666% !important;
  }
  .sm\:mb--7\/12 {
    margin-bottom: -58.333333% !important;
  }
  .sm\:mb--3\/5 {
    margin-bottom: -60% !important;
  }
  .sm\:mb--11\/12 {
    margin-bottom: -91.6666666% !important;
  }
  .sm\:mb--2\/3 {
    margin-bottom: -66.666667% !important;
  }
  .sm\:mb--3\/4 {
    margin-bottom: -75% !important;
  }
  .sm\:mb--4\/5 {
    margin-bottom: -80% !important;
  }
  .sm\:mb--5\/6 {
    margin-bottom: -83.3333333% !important;
  }
  .sm\:mb--30 {
    margin-bottom: -28rem !important;
  }
  .sm\:mb--24 {
    margin-bottom: -22rem !important;
  }
  .sm\:mb--18 {
    margin-bottom: -16rem !important;
  }
  .sm\:mb--15 {
    margin-bottom: -13rem !important;
  }
  .sm\:mb--14 {
    margin-bottom: -12rem !important;
  }
  .sm\:mb--13 {
    margin-bottom: -11rem !important;
  }
  .sm\:mb--12 {
    margin-bottom: -10rem !important;
  }
  .sm\:mb--11 {
    margin-bottom: -9rem !important;
  }
  .sm\:mb--10 {
    margin-bottom: -8rem !important;
  }
  .sm\:mb--9 {
    margin-bottom: -7rem !important;
  }
  .sm\:mb--8 {
    margin-bottom: -6rem !important;
  }
  .sm\:mb--7 {
    margin-bottom: -5rem !important;
  }
  .sm\:mb--6 {
    margin-bottom: -4rem !important;
  }
  .sm\:mb--5 {
    margin-bottom: -3rem !important;
  }
  .sm\:mb--4-5 {
    margin-bottom: -2.5rem !important;
  }
  .sm\:mb--4 {
    margin-bottom: -2rem !important;
  }
  .sm\:mb--3-5 {
    margin-bottom: -1.5rem !important;
  }
  .sm\:mb--3 {
    margin-bottom: -1rem !important;
  }
  .sm\:mb--2-5 {
    margin-bottom: -0.75rem !important;
  }
  .sm\:mb--2 {
    margin-bottom: -0.5rem !important;
  }
  .sm\:mb--1 {
    margin-bottom: -0.25rem !important;
  }
  .sm\:mb--0-5 {
    margin-bottom: -0.125rem !important;
  }
  .sm\:mb-0 {
    margin-bottom: 0 !important;
  }
  .sm\:mb-0-25 {
    margin-bottom: 0.0625rem !important;
  }
  .sm\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .sm\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .sm\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .sm\:mb-2-5 {
    margin-bottom: 0.75rem !important;
  }
  .sm\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .sm\:mb-3-5 {
    margin-bottom: 1.5rem !important;
  }
  .sm\:mb-4 {
    margin-bottom: 2rem !important;
  }
  .sm\:mb-4-5 {
    margin-bottom: 2.5rem !important;
  }
  .sm\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .sm\:mb-6 {
    margin-bottom: 4rem !important;
  }
  .sm\:mb-6-5 {
    margin-bottom: 4.5rem !important;
  }
  .sm\:mb-7 {
    margin-bottom: 5rem !important;
  }
  .sm\:mb-8 {
    margin-bottom: 6rem !important;
  }
  .sm\:mb-9 {
    margin-bottom: 7rem !important;
  }
  .sm\:mb-10 {
    margin-bottom: 8rem !important;
  }
  .sm\:mb-11 {
    margin-bottom: 9rem !important;
  }
  .sm\:mb-12 {
    margin-bottom: 10rem !important;
  }
  .sm\:mb-13 {
    margin-bottom: 11rem !important;
  }
  .sm\:mb-14 {
    margin-bottom: 12rem !important;
  }
  .sm\:mb-15 {
    margin-bottom: 13rem !important;
  }
  .sm\:mb-30 {
    margin-bottom: 28rem !important;
  }
  .sm\:mb-1-em {
    margin-bottom: 0.25em !important;
  }
  .sm\:mb-1-5-em {
    margin-bottom: 0.375em !important;
  }
  .sm\:mb-2-em {
    margin-bottom: 0.5em !important;
  }
  .sm\:mb-2-25-em {
    margin-bottom: 0.625em !important;
  }
  .sm\:mb-2-5-em {
    margin-bottom: 0.75em !important;
  }
  .sm\:mb-3-em {
    margin-bottom: 1em !important;
  }
  .sm\:mb-4-em {
    margin-bottom: 2em !important;
  }
  .sm\:mb-5-em {
    margin-bottom: 3em !important;
  }
  .sm\:mb-6-em {
    margin-bottom: 4em !important;
  }
  .sm\:mb-7-em {
    margin-bottom: 5em !important;
  }
  .sm\:mb-8-em {
    margin-bottom: 6em !important;
  }
  .sm\:mb-9-em {
    margin-bottom: 7em !important;
  }
  .sm\:mb-1px {
    margin-bottom: 1px !important;
  }
  .sm\:mb--1px {
    margin-bottom: -1px !important;
  }
  .sm\:mb-1\/8 {
    margin-bottom: 12.5% !important;
  }
  .sm\:mb-1\/6 {
    margin-bottom: 16.666666% !important;
  }
  .sm\:mb-1\/5 {
    margin-bottom: 20% !important;
  }
  .sm\:mb-1\/4 {
    margin-bottom: 25% !important;
  }
  .sm\:mb-2\/7 {
    margin-bottom: 28.57142857% !important;
  }
  .sm\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }
  .sm\:mb-2\/5 {
    margin-bottom: 40% !important;
  }
  .sm\:mb-1\/2 {
    margin-bottom: 50% !important;
  }
  .sm\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }
  .sm\:mb-1\/10 {
    margin-bottom: 10% !important;
  }
  .sm\:mb-5\/12 {
    margin-bottom: 41.6666666% !important;
  }
  .sm\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }
  .sm\:mb-3\/5 {
    margin-bottom: 60% !important;
  }
  .sm\:mb-11\/12 {
    margin-bottom: 91.6666666% !important;
  }
  .sm\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }
  .sm\:mb-3\/4 {
    margin-bottom: 75% !important;
  }
  .sm\:mb-4\/5 {
    margin-bottom: 80% !important;
  }
  .sm\:mb-5\/6 {
    margin-bottom: 83.3333333% !important;
  }
  .sm\:ml--1\/6 {
    margin-left: -16.666666% !important;
  }
  .sm\:ml--1\/5 {
    margin-left: -20% !important;
  }
  .sm\:ml--1\/4 {
    margin-left: -25% !important;
  }
  .sm\:ml--2\/7 {
    margin-left: -28.57142857% !important;
  }
  .sm\:ml--1\/3 {
    margin-left: -33.333333% !important;
  }
  .sm\:ml--2\/5 {
    margin-left: -40% !important;
  }
  .sm\:ml--1\/2 {
    margin-left: -50% !important;
  }
  .sm\:ml--1\/12 {
    margin-left: -8.333333% !important;
  }
  .sm\:ml--1\/10 {
    margin-left: -10% !important;
  }
  .sm\:ml--5\/12 {
    margin-left: -41.6666666% !important;
  }
  .sm\:ml--7\/12 {
    margin-left: -58.333333% !important;
  }
  .sm\:ml--3\/5 {
    margin-left: -60% !important;
  }
  .sm\:ml--11\/12 {
    margin-left: -91.6666666% !important;
  }
  .sm\:ml--2\/3 {
    margin-left: -66.666667% !important;
  }
  .sm\:ml--3\/4 {
    margin-left: -75% !important;
  }
  .sm\:ml--4\/5 {
    margin-left: -80% !important;
  }
  .sm\:ml--5\/6 {
    margin-left: -83.3333333% !important;
  }
  .sm\:ml--30 {
    margin-left: -28rem !important;
  }
  .sm\:ml--24 {
    margin-left: -22rem !important;
  }
  .sm\:ml--18 {
    margin-left: -16rem !important;
  }
  .sm\:ml--15 {
    margin-left: -13rem !important;
  }
  .sm\:ml--14 {
    margin-left: -12rem !important;
  }
  .sm\:ml--13 {
    margin-left: -11rem !important;
  }
  .sm\:ml--12 {
    margin-left: -10rem !important;
  }
  .sm\:ml--11 {
    margin-left: -9rem !important;
  }
  .sm\:ml--10 {
    margin-left: -8rem !important;
  }
  .sm\:ml--9 {
    margin-left: -7rem !important;
  }
  .sm\:ml--8 {
    margin-left: -6rem !important;
  }
  .sm\:ml--7 {
    margin-left: -5rem !important;
  }
  .sm\:ml--6 {
    margin-left: -4rem !important;
  }
  .sm\:ml--5 {
    margin-left: -3rem !important;
  }
  .sm\:ml--4-5 {
    margin-left: -2.5rem !important;
  }
  .sm\:ml--4 {
    margin-left: -2rem !important;
  }
  .sm\:ml--3-5 {
    margin-left: -1.5rem !important;
  }
  .sm\:ml--3 {
    margin-left: -1rem !important;
  }
  .sm\:ml--2-5 {
    margin-left: -0.75rem !important;
  }
  .sm\:ml--2 {
    margin-left: -0.5rem !important;
  }
  .sm\:ml--1 {
    margin-left: -0.25rem !important;
  }
  .sm\:ml--0-5 {
    margin-left: -0.125rem !important;
  }
  .sm\:ml-0 {
    margin-left: 0 !important;
  }
  .sm\:ml-0-25 {
    margin-left: 0.0625rem !important;
  }
  .sm\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .sm\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .sm\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .sm\:ml-2-5 {
    margin-left: 0.75rem !important;
  }
  .sm\:ml-3 {
    margin-left: 1rem !important;
  }
  .sm\:ml-3-5 {
    margin-left: 1.5rem !important;
  }
  .sm\:ml-4 {
    margin-left: 2rem !important;
  }
  .sm\:ml-4-5 {
    margin-left: 2.5rem !important;
  }
  .sm\:ml-5 {
    margin-left: 3rem !important;
  }
  .sm\:ml-6 {
    margin-left: 4rem !important;
  }
  .sm\:ml-6-5 {
    margin-left: 4.5rem !important;
  }
  .sm\:ml-7 {
    margin-left: 5rem !important;
  }
  .sm\:ml-8 {
    margin-left: 6rem !important;
  }
  .sm\:ml-9 {
    margin-left: 7rem !important;
  }
  .sm\:ml-10 {
    margin-left: 8rem !important;
  }
  .sm\:ml-11 {
    margin-left: 9rem !important;
  }
  .sm\:ml-12 {
    margin-left: 10rem !important;
  }
  .sm\:ml-13 {
    margin-left: 11rem !important;
  }
  .sm\:ml-14 {
    margin-left: 12rem !important;
  }
  .sm\:ml-15 {
    margin-left: 13rem !important;
  }
  .sm\:ml-30 {
    margin-left: 28rem !important;
  }
  .sm\:ml-1-em {
    margin-left: 0.25em !important;
  }
  .sm\:ml-1-5-em {
    margin-left: 0.375em !important;
  }
  .sm\:ml-2-em {
    margin-left: 0.5em !important;
  }
  .sm\:ml-2-25-em {
    margin-left: 0.625em !important;
  }
  .sm\:ml-2-5-em {
    margin-left: 0.75em !important;
  }
  .sm\:ml-3-em {
    margin-left: 1em !important;
  }
  .sm\:ml-4-em {
    margin-left: 2em !important;
  }
  .sm\:ml-5-em {
    margin-left: 3em !important;
  }
  .sm\:ml-6-em {
    margin-left: 4em !important;
  }
  .sm\:ml-7-em {
    margin-left: 5em !important;
  }
  .sm\:ml-8-em {
    margin-left: 6em !important;
  }
  .sm\:ml-9-em {
    margin-left: 7em !important;
  }
  .sm\:ml-1px {
    margin-left: 1px !important;
  }
  .sm\:ml--1px {
    margin-left: -1px !important;
  }
  .sm\:ml-1\/8 {
    margin-left: 12.5% !important;
  }
  .sm\:ml-1\/6 {
    margin-left: 16.666666% !important;
  }
  .sm\:ml-1\/5 {
    margin-left: 20% !important;
  }
  .sm\:ml-1\/4 {
    margin-left: 25% !important;
  }
  .sm\:ml-2\/7 {
    margin-left: 28.57142857% !important;
  }
  .sm\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }
  .sm\:ml-2\/5 {
    margin-left: 40% !important;
  }
  .sm\:ml-1\/2 {
    margin-left: 50% !important;
  }
  .sm\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }
  .sm\:ml-1\/10 {
    margin-left: 10% !important;
  }
  .sm\:ml-5\/12 {
    margin-left: 41.6666666% !important;
  }
  .sm\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }
  .sm\:ml-3\/5 {
    margin-left: 60% !important;
  }
  .sm\:ml-11\/12 {
    margin-left: 91.6666666% !important;
  }
  .sm\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }
  .sm\:ml-3\/4 {
    margin-left: 75% !important;
  }
  .sm\:ml-4\/5 {
    margin-left: 80% !important;
  }
  .sm\:ml-5\/6 {
    margin-left: 83.3333333% !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:m--1\/6 {
    margin: -16.666666% !important;
  }
  .md\:m--1\/5 {
    margin: -20% !important;
  }
  .md\:m--1\/4 {
    margin: -25% !important;
  }
  .md\:m--2\/7 {
    margin: -28.57142857% !important;
  }
  .md\:m--1\/3 {
    margin: -33.333333% !important;
  }
  .md\:m--2\/5 {
    margin: -40% !important;
  }
  .md\:m--1\/2 {
    margin: -50% !important;
  }
  .md\:m--1\/12 {
    margin: -8.333333% !important;
  }
  .md\:m--1\/10 {
    margin: -10% !important;
  }
  .md\:m--5\/12 {
    margin: -41.6666666% !important;
  }
  .md\:m--7\/12 {
    margin: -58.333333% !important;
  }
  .md\:m--3\/5 {
    margin: -60% !important;
  }
  .md\:m--11\/12 {
    margin: -91.6666666% !important;
  }
  .md\:m--2\/3 {
    margin: -66.666667% !important;
  }
  .md\:m--3\/4 {
    margin: -75% !important;
  }
  .md\:m--4\/5 {
    margin: -80% !important;
  }
  .md\:m--5\/6 {
    margin: -83.3333333% !important;
  }
  .md\:m--30 {
    margin: -28rem !important;
  }
  .md\:m--24 {
    margin: -22rem !important;
  }
  .md\:m--18 {
    margin: -16rem !important;
  }
  .md\:m--15 {
    margin: -13rem !important;
  }
  .md\:m--14 {
    margin: -12rem !important;
  }
  .md\:m--13 {
    margin: -11rem !important;
  }
  .md\:m--12 {
    margin: -10rem !important;
  }
  .md\:m--11 {
    margin: -9rem !important;
  }
  .md\:m--10 {
    margin: -8rem !important;
  }
  .md\:m--9 {
    margin: -7rem !important;
  }
  .md\:m--8 {
    margin: -6rem !important;
  }
  .md\:m--7 {
    margin: -5rem !important;
  }
  .md\:m--6 {
    margin: -4rem !important;
  }
  .md\:m--5 {
    margin: -3rem !important;
  }
  .md\:m--4-5 {
    margin: -2.5rem !important;
  }
  .md\:m--4 {
    margin: -2rem !important;
  }
  .md\:m--3-5 {
    margin: -1.5rem !important;
  }
  .md\:m--3 {
    margin: -1rem !important;
  }
  .md\:m--2-5 {
    margin: -0.75rem !important;
  }
  .md\:m--2 {
    margin: -0.5rem !important;
  }
  .md\:m--1 {
    margin: -0.25rem !important;
  }
  .md\:m--0-5 {
    margin: -0.125rem !important;
  }
  .md\:m-0 {
    margin: 0 !important;
  }
  .md\:m-0-25 {
    margin: 0.0625rem !important;
  }
  .md\:m-0-5 {
    margin: 0.125rem !important;
  }
  .md\:m-1 {
    margin: 0.25rem !important;
  }
  .md\:m-2 {
    margin: 0.5rem !important;
  }
  .md\:m-2-5 {
    margin: 0.75rem !important;
  }
  .md\:m-3 {
    margin: 1rem !important;
  }
  .md\:m-3-5 {
    margin: 1.5rem !important;
  }
  .md\:m-4 {
    margin: 2rem !important;
  }
  .md\:m-4-5 {
    margin: 2.5rem !important;
  }
  .md\:m-5 {
    margin: 3rem !important;
  }
  .md\:m-6 {
    margin: 4rem !important;
  }
  .md\:m-6-5 {
    margin: 4.5rem !important;
  }
  .md\:m-7 {
    margin: 5rem !important;
  }
  .md\:m-8 {
    margin: 6rem !important;
  }
  .md\:m-9 {
    margin: 7rem !important;
  }
  .md\:m-10 {
    margin: 8rem !important;
  }
  .md\:m-11 {
    margin: 9rem !important;
  }
  .md\:m-12 {
    margin: 10rem !important;
  }
  .md\:m-13 {
    margin: 11rem !important;
  }
  .md\:m-14 {
    margin: 12rem !important;
  }
  .md\:m-15 {
    margin: 13rem !important;
  }
  .md\:m-30 {
    margin: 28rem !important;
  }
  .md\:m-1-em {
    margin: 0.25em !important;
  }
  .md\:m-1-5-em {
    margin: 0.375em !important;
  }
  .md\:m-2-em {
    margin: 0.5em !important;
  }
  .md\:m-2-25-em {
    margin: 0.625em !important;
  }
  .md\:m-2-5-em {
    margin: 0.75em !important;
  }
  .md\:m-3-em {
    margin: 1em !important;
  }
  .md\:m-4-em {
    margin: 2em !important;
  }
  .md\:m-5-em {
    margin: 3em !important;
  }
  .md\:m-6-em {
    margin: 4em !important;
  }
  .md\:m-7-em {
    margin: 5em !important;
  }
  .md\:m-8-em {
    margin: 6em !important;
  }
  .md\:m-9-em {
    margin: 7em !important;
  }
  .md\:m-1px {
    margin: 1px !important;
  }
  .md\:m--1px {
    margin: -1px !important;
  }
  .md\:m-1\/8 {
    margin: 12.5% !important;
  }
  .md\:m-1\/6 {
    margin: 16.666666% !important;
  }
  .md\:m-1\/5 {
    margin: 20% !important;
  }
  .md\:m-1\/4 {
    margin: 25% !important;
  }
  .md\:m-2\/7 {
    margin: 28.57142857% !important;
  }
  .md\:m-1\/3 {
    margin: 33.333333% !important;
  }
  .md\:m-2\/5 {
    margin: 40% !important;
  }
  .md\:m-1\/2 {
    margin: 50% !important;
  }
  .md\:m-1\/12 {
    margin: 8.333333% !important;
  }
  .md\:m-1\/10 {
    margin: 10% !important;
  }
  .md\:m-5\/12 {
    margin: 41.6666666% !important;
  }
  .md\:m-7\/12 {
    margin: 58.333333% !important;
  }
  .md\:m-3\/5 {
    margin: 60% !important;
  }
  .md\:m-11\/12 {
    margin: 91.6666666% !important;
  }
  .md\:m-2\/3 {
    margin: 66.666667% !important;
  }
  .md\:m-3\/4 {
    margin: 75% !important;
  }
  .md\:m-4\/5 {
    margin: 80% !important;
  }
  .md\:m-5\/6 {
    margin: 83.3333333% !important;
  }
  .md\:mx--1\/6 {
    margin-left: -16.666666% !important;
    margin-right: -16.666666% !important;
  }
  .md\:mx--1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }
  .md\:mx--1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }
  .md\:mx--2\/7 {
    margin-left: -28.57142857% !important;
    margin-right: -28.57142857% !important;
  }
  .md\:mx--1\/3 {
    margin-left: -33.333333% !important;
    margin-right: -33.333333% !important;
  }
  .md\:mx--2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }
  .md\:mx--1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }
  .md\:mx--1\/12 {
    margin-left: -8.333333% !important;
    margin-right: -8.333333% !important;
  }
  .md\:mx--1\/10 {
    margin-left: -10% !important;
    margin-right: -10% !important;
  }
  .md\:mx--5\/12 {
    margin-left: -41.6666666% !important;
    margin-right: -41.6666666% !important;
  }
  .md\:mx--7\/12 {
    margin-left: -58.333333% !important;
    margin-right: -58.333333% !important;
  }
  .md\:mx--3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }
  .md\:mx--11\/12 {
    margin-left: -91.6666666% !important;
    margin-right: -91.6666666% !important;
  }
  .md\:mx--2\/3 {
    margin-left: -66.666667% !important;
    margin-right: -66.666667% !important;
  }
  .md\:mx--3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }
  .md\:mx--4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }
  .md\:mx--5\/6 {
    margin-left: -83.3333333% !important;
    margin-right: -83.3333333% !important;
  }
  .md\:mx--30 {
    margin-left: -28rem !important;
    margin-right: -28rem !important;
  }
  .md\:mx--24 {
    margin-left: -22rem !important;
    margin-right: -22rem !important;
  }
  .md\:mx--18 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }
  .md\:mx--15 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }
  .md\:mx--14 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }
  .md\:mx--13 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }
  .md\:mx--12 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }
  .md\:mx--11 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }
  .md\:mx--10 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .md\:mx--9 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }
  .md\:mx--8 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .md\:mx--7 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .md\:mx--6 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .md\:mx--5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .md\:mx--4-5 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .md\:mx--4 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .md\:mx--3-5 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .md\:mx--3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .md\:mx--2-5 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .md\:mx--2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .md\:mx--1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .md\:mx--0-5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }
  .md\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .md\:mx-0-25 {
    margin-left: 0.0625rem !important;
    margin-right: 0.0625rem !important;
  }
  .md\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .md\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .md\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .md\:mx-2-5 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .md\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .md\:mx-3-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .md\:mx-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .md\:mx-4-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .md\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .md\:mx-6 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .md\:mx-6-5 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .md\:mx-7 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .md\:mx-8 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .md\:mx-9 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .md\:mx-10 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .md\:mx-11 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .md\:mx-12 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .md\:mx-13 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .md\:mx-14 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .md\:mx-15 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .md\:mx-30 {
    margin-left: 28rem !important;
    margin-right: 28rem !important;
  }
  .md\:mx-1-em {
    margin-left: 0.25em !important;
    margin-right: 0.25em !important;
  }
  .md\:mx-1-5-em {
    margin-left: 0.375em !important;
    margin-right: 0.375em !important;
  }
  .md\:mx-2-em {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .md\:mx-2-25-em {
    margin-left: 0.625em !important;
    margin-right: 0.625em !important;
  }
  .md\:mx-2-5-em {
    margin-left: 0.75em !important;
    margin-right: 0.75em !important;
  }
  .md\:mx-3-em {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .md\:mx-4-em {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .md\:mx-5-em {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .md\:mx-6-em {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .md\:mx-7-em {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .md\:mx-8-em {
    margin-left: 6em !important;
    margin-right: 6em !important;
  }
  .md\:mx-9-em {
    margin-left: 7em !important;
    margin-right: 7em !important;
  }
  .md\:mx-1px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .md\:mx--1px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }
  .md\:mx-1\/8 {
    margin-left: 12.5% !important;
    margin-right: 12.5% !important;
  }
  .md\:mx-1\/6 {
    margin-left: 16.666666% !important;
    margin-right: 16.666666% !important;
  }
  .md\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }
  .md\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }
  .md\:mx-2\/7 {
    margin-left: 28.57142857% !important;
    margin-right: 28.57142857% !important;
  }
  .md\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }
  .md\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }
  .md\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }
  .md\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }
  .md\:mx-1\/10 {
    margin-left: 10% !important;
    margin-right: 10% !important;
  }
  .md\:mx-5\/12 {
    margin-left: 41.6666666% !important;
    margin-right: 41.6666666% !important;
  }
  .md\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }
  .md\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }
  .md\:mx-11\/12 {
    margin-left: 91.6666666% !important;
    margin-right: 91.6666666% !important;
  }
  .md\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }
  .md\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }
  .md\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }
  .md\:mx-5\/6 {
    margin-left: 83.3333333% !important;
    margin-right: 83.3333333% !important;
  }
  .md\:my--1\/6 {
    margin-top: -16.666666% !important;
    margin-bottom: -16.666666% !important;
  }
  .md\:my--1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }
  .md\:my--1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }
  .md\:my--2\/7 {
    margin-top: -28.57142857% !important;
    margin-bottom: -28.57142857% !important;
  }
  .md\:my--1\/3 {
    margin-top: -33.333333% !important;
    margin-bottom: -33.333333% !important;
  }
  .md\:my--2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }
  .md\:my--1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }
  .md\:my--1\/12 {
    margin-top: -8.333333% !important;
    margin-bottom: -8.333333% !important;
  }
  .md\:my--1\/10 {
    margin-top: -10% !important;
    margin-bottom: -10% !important;
  }
  .md\:my--5\/12 {
    margin-top: -41.6666666% !important;
    margin-bottom: -41.6666666% !important;
  }
  .md\:my--7\/12 {
    margin-top: -58.333333% !important;
    margin-bottom: -58.333333% !important;
  }
  .md\:my--3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }
  .md\:my--11\/12 {
    margin-top: -91.6666666% !important;
    margin-bottom: -91.6666666% !important;
  }
  .md\:my--2\/3 {
    margin-top: -66.666667% !important;
    margin-bottom: -66.666667% !important;
  }
  .md\:my--3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }
  .md\:my--4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }
  .md\:my--5\/6 {
    margin-top: -83.3333333% !important;
    margin-bottom: -83.3333333% !important;
  }
  .md\:my--30 {
    margin-top: -28rem !important;
    margin-bottom: -28rem !important;
  }
  .md\:my--24 {
    margin-top: -22rem !important;
    margin-bottom: -22rem !important;
  }
  .md\:my--18 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }
  .md\:my--15 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .md\:my--14 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .md\:my--13 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }
  .md\:my--12 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .md\:my--11 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .md\:my--10 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .md\:my--9 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .md\:my--8 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .md\:my--7 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .md\:my--6 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .md\:my--5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .md\:my--4-5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .md\:my--4 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .md\:my--3-5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .md\:my--3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .md\:my--2-5 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .md\:my--2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .md\:my--1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .md\:my--0-5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }
  .md\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .md\:my-0-25 {
    margin-top: 0.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }
  .md\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .md\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .md\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .md\:my-2-5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .md\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .md\:my-3-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .md\:my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .md\:my-4-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .md\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .md\:my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .md\:my-6-5 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .md\:my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .md\:my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .md\:my-9 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .md\:my-10 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .md\:my-11 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .md\:my-12 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .md\:my-13 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .md\:my-14 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .md\:my-15 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .md\:my-30 {
    margin-top: 28rem !important;
    margin-bottom: 28rem !important;
  }
  .md\:my-1-em {
    margin-top: 0.25em !important;
    margin-bottom: 0.25em !important;
  }
  .md\:my-1-5-em {
    margin-top: 0.375em !important;
    margin-bottom: 0.375em !important;
  }
  .md\:my-2-em {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .md\:my-2-25-em {
    margin-top: 0.625em !important;
    margin-bottom: 0.625em !important;
  }
  .md\:my-2-5-em {
    margin-top: 0.75em !important;
    margin-bottom: 0.75em !important;
  }
  .md\:my-3-em {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .md\:my-4-em {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .md\:my-5-em {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .md\:my-6-em {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .md\:my-7-em {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .md\:my-8-em {
    margin-top: 6em !important;
    margin-bottom: 6em !important;
  }
  .md\:my-9-em {
    margin-top: 7em !important;
    margin-bottom: 7em !important;
  }
  .md\:my-1px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .md\:my--1px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }
  .md\:my-1\/8 {
    margin-top: 12.5% !important;
    margin-bottom: 12.5% !important;
  }
  .md\:my-1\/6 {
    margin-top: 16.666666% !important;
    margin-bottom: 16.666666% !important;
  }
  .md\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }
  .md\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }
  .md\:my-2\/7 {
    margin-top: 28.57142857% !important;
    margin-bottom: 28.57142857% !important;
  }
  .md\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }
  .md\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }
  .md\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }
  .md\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }
  .md\:my-1\/10 {
    margin-top: 10% !important;
    margin-bottom: 10% !important;
  }
  .md\:my-5\/12 {
    margin-top: 41.6666666% !important;
    margin-bottom: 41.6666666% !important;
  }
  .md\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }
  .md\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }
  .md\:my-11\/12 {
    margin-top: 91.6666666% !important;
    margin-bottom: 91.6666666% !important;
  }
  .md\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }
  .md\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }
  .md\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }
  .md\:my-5\/6 {
    margin-top: 83.3333333% !important;
    margin-bottom: 83.3333333% !important;
  }
  .md\:mt--1\/6 {
    margin-top: -16.666666% !important;
  }
  .md\:mt--1\/5 {
    margin-top: -20% !important;
  }
  .md\:mt--1\/4 {
    margin-top: -25% !important;
  }
  .md\:mt--2\/7 {
    margin-top: -28.57142857% !important;
  }
  .md\:mt--1\/3 {
    margin-top: -33.333333% !important;
  }
  .md\:mt--2\/5 {
    margin-top: -40% !important;
  }
  .md\:mt--1\/2 {
    margin-top: -50% !important;
  }
  .md\:mt--1\/12 {
    margin-top: -8.333333% !important;
  }
  .md\:mt--1\/10 {
    margin-top: -10% !important;
  }
  .md\:mt--5\/12 {
    margin-top: -41.6666666% !important;
  }
  .md\:mt--7\/12 {
    margin-top: -58.333333% !important;
  }
  .md\:mt--3\/5 {
    margin-top: -60% !important;
  }
  .md\:mt--11\/12 {
    margin-top: -91.6666666% !important;
  }
  .md\:mt--2\/3 {
    margin-top: -66.666667% !important;
  }
  .md\:mt--3\/4 {
    margin-top: -75% !important;
  }
  .md\:mt--4\/5 {
    margin-top: -80% !important;
  }
  .md\:mt--5\/6 {
    margin-top: -83.3333333% !important;
  }
  .md\:mt--30 {
    margin-top: -28rem !important;
  }
  .md\:mt--24 {
    margin-top: -22rem !important;
  }
  .md\:mt--18 {
    margin-top: -16rem !important;
  }
  .md\:mt--15 {
    margin-top: -13rem !important;
  }
  .md\:mt--14 {
    margin-top: -12rem !important;
  }
  .md\:mt--13 {
    margin-top: -11rem !important;
  }
  .md\:mt--12 {
    margin-top: -10rem !important;
  }
  .md\:mt--11 {
    margin-top: -9rem !important;
  }
  .md\:mt--10 {
    margin-top: -8rem !important;
  }
  .md\:mt--9 {
    margin-top: -7rem !important;
  }
  .md\:mt--8 {
    margin-top: -6rem !important;
  }
  .md\:mt--7 {
    margin-top: -5rem !important;
  }
  .md\:mt--6 {
    margin-top: -4rem !important;
  }
  .md\:mt--5 {
    margin-top: -3rem !important;
  }
  .md\:mt--4-5 {
    margin-top: -2.5rem !important;
  }
  .md\:mt--4 {
    margin-top: -2rem !important;
  }
  .md\:mt--3-5 {
    margin-top: -1.5rem !important;
  }
  .md\:mt--3 {
    margin-top: -1rem !important;
  }
  .md\:mt--2-5 {
    margin-top: -0.75rem !important;
  }
  .md\:mt--2 {
    margin-top: -0.5rem !important;
  }
  .md\:mt--1 {
    margin-top: -0.25rem !important;
  }
  .md\:mt--0-5 {
    margin-top: -0.125rem !important;
  }
  .md\:mt-0 {
    margin-top: 0 !important;
  }
  .md\:mt-0-25 {
    margin-top: 0.0625rem !important;
  }
  .md\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .md\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .md\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .md\:mt-2-5 {
    margin-top: 0.75rem !important;
  }
  .md\:mt-3 {
    margin-top: 1rem !important;
  }
  .md\:mt-3-5 {
    margin-top: 1.5rem !important;
  }
  .md\:mt-4 {
    margin-top: 2rem !important;
  }
  .md\:mt-4-5 {
    margin-top: 2.5rem !important;
  }
  .md\:mt-5 {
    margin-top: 3rem !important;
  }
  .md\:mt-6 {
    margin-top: 4rem !important;
  }
  .md\:mt-6-5 {
    margin-top: 4.5rem !important;
  }
  .md\:mt-7 {
    margin-top: 5rem !important;
  }
  .md\:mt-8 {
    margin-top: 6rem !important;
  }
  .md\:mt-9 {
    margin-top: 7rem !important;
  }
  .md\:mt-10 {
    margin-top: 8rem !important;
  }
  .md\:mt-11 {
    margin-top: 9rem !important;
  }
  .md\:mt-12 {
    margin-top: 10rem !important;
  }
  .md\:mt-13 {
    margin-top: 11rem !important;
  }
  .md\:mt-14 {
    margin-top: 12rem !important;
  }
  .md\:mt-15 {
    margin-top: 13rem !important;
  }
  .md\:mt-30 {
    margin-top: 28rem !important;
  }
  .md\:mt-1-em {
    margin-top: 0.25em !important;
  }
  .md\:mt-1-5-em {
    margin-top: 0.375em !important;
  }
  .md\:mt-2-em {
    margin-top: 0.5em !important;
  }
  .md\:mt-2-25-em {
    margin-top: 0.625em !important;
  }
  .md\:mt-2-5-em {
    margin-top: 0.75em !important;
  }
  .md\:mt-3-em {
    margin-top: 1em !important;
  }
  .md\:mt-4-em {
    margin-top: 2em !important;
  }
  .md\:mt-5-em {
    margin-top: 3em !important;
  }
  .md\:mt-6-em {
    margin-top: 4em !important;
  }
  .md\:mt-7-em {
    margin-top: 5em !important;
  }
  .md\:mt-8-em {
    margin-top: 6em !important;
  }
  .md\:mt-9-em {
    margin-top: 7em !important;
  }
  .md\:mt-1px {
    margin-top: 1px !important;
  }
  .md\:mt--1px {
    margin-top: -1px !important;
  }
  .md\:mt-1\/8 {
    margin-top: 12.5% !important;
  }
  .md\:mt-1\/6 {
    margin-top: 16.666666% !important;
  }
  .md\:mt-1\/5 {
    margin-top: 20% !important;
  }
  .md\:mt-1\/4 {
    margin-top: 25% !important;
  }
  .md\:mt-2\/7 {
    margin-top: 28.57142857% !important;
  }
  .md\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }
  .md\:mt-2\/5 {
    margin-top: 40% !important;
  }
  .md\:mt-1\/2 {
    margin-top: 50% !important;
  }
  .md\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }
  .md\:mt-1\/10 {
    margin-top: 10% !important;
  }
  .md\:mt-5\/12 {
    margin-top: 41.6666666% !important;
  }
  .md\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }
  .md\:mt-3\/5 {
    margin-top: 60% !important;
  }
  .md\:mt-11\/12 {
    margin-top: 91.6666666% !important;
  }
  .md\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }
  .md\:mt-3\/4 {
    margin-top: 75% !important;
  }
  .md\:mt-4\/5 {
    margin-top: 80% !important;
  }
  .md\:mt-5\/6 {
    margin-top: 83.3333333% !important;
  }
  .md\:mr--1\/6 {
    margin-right: -16.666666% !important;
  }
  .md\:mr--1\/5 {
    margin-right: -20% !important;
  }
  .md\:mr--1\/4 {
    margin-right: -25% !important;
  }
  .md\:mr--2\/7 {
    margin-right: -28.57142857% !important;
  }
  .md\:mr--1\/3 {
    margin-right: -33.333333% !important;
  }
  .md\:mr--2\/5 {
    margin-right: -40% !important;
  }
  .md\:mr--1\/2 {
    margin-right: -50% !important;
  }
  .md\:mr--1\/12 {
    margin-right: -8.333333% !important;
  }
  .md\:mr--1\/10 {
    margin-right: -10% !important;
  }
  .md\:mr--5\/12 {
    margin-right: -41.6666666% !important;
  }
  .md\:mr--7\/12 {
    margin-right: -58.333333% !important;
  }
  .md\:mr--3\/5 {
    margin-right: -60% !important;
  }
  .md\:mr--11\/12 {
    margin-right: -91.6666666% !important;
  }
  .md\:mr--2\/3 {
    margin-right: -66.666667% !important;
  }
  .md\:mr--3\/4 {
    margin-right: -75% !important;
  }
  .md\:mr--4\/5 {
    margin-right: -80% !important;
  }
  .md\:mr--5\/6 {
    margin-right: -83.3333333% !important;
  }
  .md\:mr--30 {
    margin-right: -28rem !important;
  }
  .md\:mr--24 {
    margin-right: -22rem !important;
  }
  .md\:mr--18 {
    margin-right: -16rem !important;
  }
  .md\:mr--15 {
    margin-right: -13rem !important;
  }
  .md\:mr--14 {
    margin-right: -12rem !important;
  }
  .md\:mr--13 {
    margin-right: -11rem !important;
  }
  .md\:mr--12 {
    margin-right: -10rem !important;
  }
  .md\:mr--11 {
    margin-right: -9rem !important;
  }
  .md\:mr--10 {
    margin-right: -8rem !important;
  }
  .md\:mr--9 {
    margin-right: -7rem !important;
  }
  .md\:mr--8 {
    margin-right: -6rem !important;
  }
  .md\:mr--7 {
    margin-right: -5rem !important;
  }
  .md\:mr--6 {
    margin-right: -4rem !important;
  }
  .md\:mr--5 {
    margin-right: -3rem !important;
  }
  .md\:mr--4-5 {
    margin-right: -2.5rem !important;
  }
  .md\:mr--4 {
    margin-right: -2rem !important;
  }
  .md\:mr--3-5 {
    margin-right: -1.5rem !important;
  }
  .md\:mr--3 {
    margin-right: -1rem !important;
  }
  .md\:mr--2-5 {
    margin-right: -0.75rem !important;
  }
  .md\:mr--2 {
    margin-right: -0.5rem !important;
  }
  .md\:mr--1 {
    margin-right: -0.25rem !important;
  }
  .md\:mr--0-5 {
    margin-right: -0.125rem !important;
  }
  .md\:mr-0 {
    margin-right: 0 !important;
  }
  .md\:mr-0-25 {
    margin-right: 0.0625rem !important;
  }
  .md\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .md\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .md\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .md\:mr-2-5 {
    margin-right: 0.75rem !important;
  }
  .md\:mr-3 {
    margin-right: 1rem !important;
  }
  .md\:mr-3-5 {
    margin-right: 1.5rem !important;
  }
  .md\:mr-4 {
    margin-right: 2rem !important;
  }
  .md\:mr-4-5 {
    margin-right: 2.5rem !important;
  }
  .md\:mr-5 {
    margin-right: 3rem !important;
  }
  .md\:mr-6 {
    margin-right: 4rem !important;
  }
  .md\:mr-6-5 {
    margin-right: 4.5rem !important;
  }
  .md\:mr-7 {
    margin-right: 5rem !important;
  }
  .md\:mr-8 {
    margin-right: 6rem !important;
  }
  .md\:mr-9 {
    margin-right: 7rem !important;
  }
  .md\:mr-10 {
    margin-right: 8rem !important;
  }
  .md\:mr-11 {
    margin-right: 9rem !important;
  }
  .md\:mr-12 {
    margin-right: 10rem !important;
  }
  .md\:mr-13 {
    margin-right: 11rem !important;
  }
  .md\:mr-14 {
    margin-right: 12rem !important;
  }
  .md\:mr-15 {
    margin-right: 13rem !important;
  }
  .md\:mr-30 {
    margin-right: 28rem !important;
  }
  .md\:mr-1-em {
    margin-right: 0.25em !important;
  }
  .md\:mr-1-5-em {
    margin-right: 0.375em !important;
  }
  .md\:mr-2-em {
    margin-right: 0.5em !important;
  }
  .md\:mr-2-25-em {
    margin-right: 0.625em !important;
  }
  .md\:mr-2-5-em {
    margin-right: 0.75em !important;
  }
  .md\:mr-3-em {
    margin-right: 1em !important;
  }
  .md\:mr-4-em {
    margin-right: 2em !important;
  }
  .md\:mr-5-em {
    margin-right: 3em !important;
  }
  .md\:mr-6-em {
    margin-right: 4em !important;
  }
  .md\:mr-7-em {
    margin-right: 5em !important;
  }
  .md\:mr-8-em {
    margin-right: 6em !important;
  }
  .md\:mr-9-em {
    margin-right: 7em !important;
  }
  .md\:mr-1px {
    margin-right: 1px !important;
  }
  .md\:mr--1px {
    margin-right: -1px !important;
  }
  .md\:mr-1\/8 {
    margin-right: 12.5% !important;
  }
  .md\:mr-1\/6 {
    margin-right: 16.666666% !important;
  }
  .md\:mr-1\/5 {
    margin-right: 20% !important;
  }
  .md\:mr-1\/4 {
    margin-right: 25% !important;
  }
  .md\:mr-2\/7 {
    margin-right: 28.57142857% !important;
  }
  .md\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }
  .md\:mr-2\/5 {
    margin-right: 40% !important;
  }
  .md\:mr-1\/2 {
    margin-right: 50% !important;
  }
  .md\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }
  .md\:mr-1\/10 {
    margin-right: 10% !important;
  }
  .md\:mr-5\/12 {
    margin-right: 41.6666666% !important;
  }
  .md\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }
  .md\:mr-3\/5 {
    margin-right: 60% !important;
  }
  .md\:mr-11\/12 {
    margin-right: 91.6666666% !important;
  }
  .md\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }
  .md\:mr-3\/4 {
    margin-right: 75% !important;
  }
  .md\:mr-4\/5 {
    margin-right: 80% !important;
  }
  .md\:mr-5\/6 {
    margin-right: 83.3333333% !important;
  }
  .md\:mb--1\/6 {
    margin-bottom: -16.666666% !important;
  }
  .md\:mb--1\/5 {
    margin-bottom: -20% !important;
  }
  .md\:mb--1\/4 {
    margin-bottom: -25% !important;
  }
  .md\:mb--2\/7 {
    margin-bottom: -28.57142857% !important;
  }
  .md\:mb--1\/3 {
    margin-bottom: -33.333333% !important;
  }
  .md\:mb--2\/5 {
    margin-bottom: -40% !important;
  }
  .md\:mb--1\/2 {
    margin-bottom: -50% !important;
  }
  .md\:mb--1\/12 {
    margin-bottom: -8.333333% !important;
  }
  .md\:mb--1\/10 {
    margin-bottom: -10% !important;
  }
  .md\:mb--5\/12 {
    margin-bottom: -41.6666666% !important;
  }
  .md\:mb--7\/12 {
    margin-bottom: -58.333333% !important;
  }
  .md\:mb--3\/5 {
    margin-bottom: -60% !important;
  }
  .md\:mb--11\/12 {
    margin-bottom: -91.6666666% !important;
  }
  .md\:mb--2\/3 {
    margin-bottom: -66.666667% !important;
  }
  .md\:mb--3\/4 {
    margin-bottom: -75% !important;
  }
  .md\:mb--4\/5 {
    margin-bottom: -80% !important;
  }
  .md\:mb--5\/6 {
    margin-bottom: -83.3333333% !important;
  }
  .md\:mb--30 {
    margin-bottom: -28rem !important;
  }
  .md\:mb--24 {
    margin-bottom: -22rem !important;
  }
  .md\:mb--18 {
    margin-bottom: -16rem !important;
  }
  .md\:mb--15 {
    margin-bottom: -13rem !important;
  }
  .md\:mb--14 {
    margin-bottom: -12rem !important;
  }
  .md\:mb--13 {
    margin-bottom: -11rem !important;
  }
  .md\:mb--12 {
    margin-bottom: -10rem !important;
  }
  .md\:mb--11 {
    margin-bottom: -9rem !important;
  }
  .md\:mb--10 {
    margin-bottom: -8rem !important;
  }
  .md\:mb--9 {
    margin-bottom: -7rem !important;
  }
  .md\:mb--8 {
    margin-bottom: -6rem !important;
  }
  .md\:mb--7 {
    margin-bottom: -5rem !important;
  }
  .md\:mb--6 {
    margin-bottom: -4rem !important;
  }
  .md\:mb--5 {
    margin-bottom: -3rem !important;
  }
  .md\:mb--4-5 {
    margin-bottom: -2.5rem !important;
  }
  .md\:mb--4 {
    margin-bottom: -2rem !important;
  }
  .md\:mb--3-5 {
    margin-bottom: -1.5rem !important;
  }
  .md\:mb--3 {
    margin-bottom: -1rem !important;
  }
  .md\:mb--2-5 {
    margin-bottom: -0.75rem !important;
  }
  .md\:mb--2 {
    margin-bottom: -0.5rem !important;
  }
  .md\:mb--1 {
    margin-bottom: -0.25rem !important;
  }
  .md\:mb--0-5 {
    margin-bottom: -0.125rem !important;
  }
  .md\:mb-0 {
    margin-bottom: 0 !important;
  }
  .md\:mb-0-25 {
    margin-bottom: 0.0625rem !important;
  }
  .md\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .md\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .md\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .md\:mb-2-5 {
    margin-bottom: 0.75rem !important;
  }
  .md\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .md\:mb-3-5 {
    margin-bottom: 1.5rem !important;
  }
  .md\:mb-4 {
    margin-bottom: 2rem !important;
  }
  .md\:mb-4-5 {
    margin-bottom: 2.5rem !important;
  }
  .md\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .md\:mb-6 {
    margin-bottom: 4rem !important;
  }
  .md\:mb-6-5 {
    margin-bottom: 4.5rem !important;
  }
  .md\:mb-7 {
    margin-bottom: 5rem !important;
  }
  .md\:mb-8 {
    margin-bottom: 6rem !important;
  }
  .md\:mb-9 {
    margin-bottom: 7rem !important;
  }
  .md\:mb-10 {
    margin-bottom: 8rem !important;
  }
  .md\:mb-11 {
    margin-bottom: 9rem !important;
  }
  .md\:mb-12 {
    margin-bottom: 10rem !important;
  }
  .md\:mb-13 {
    margin-bottom: 11rem !important;
  }
  .md\:mb-14 {
    margin-bottom: 12rem !important;
  }
  .md\:mb-15 {
    margin-bottom: 13rem !important;
  }
  .md\:mb-30 {
    margin-bottom: 28rem !important;
  }
  .md\:mb-1-em {
    margin-bottom: 0.25em !important;
  }
  .md\:mb-1-5-em {
    margin-bottom: 0.375em !important;
  }
  .md\:mb-2-em {
    margin-bottom: 0.5em !important;
  }
  .md\:mb-2-25-em {
    margin-bottom: 0.625em !important;
  }
  .md\:mb-2-5-em {
    margin-bottom: 0.75em !important;
  }
  .md\:mb-3-em {
    margin-bottom: 1em !important;
  }
  .md\:mb-4-em {
    margin-bottom: 2em !important;
  }
  .md\:mb-5-em {
    margin-bottom: 3em !important;
  }
  .md\:mb-6-em {
    margin-bottom: 4em !important;
  }
  .md\:mb-7-em {
    margin-bottom: 5em !important;
  }
  .md\:mb-8-em {
    margin-bottom: 6em !important;
  }
  .md\:mb-9-em {
    margin-bottom: 7em !important;
  }
  .md\:mb-1px {
    margin-bottom: 1px !important;
  }
  .md\:mb--1px {
    margin-bottom: -1px !important;
  }
  .md\:mb-1\/8 {
    margin-bottom: 12.5% !important;
  }
  .md\:mb-1\/6 {
    margin-bottom: 16.666666% !important;
  }
  .md\:mb-1\/5 {
    margin-bottom: 20% !important;
  }
  .md\:mb-1\/4 {
    margin-bottom: 25% !important;
  }
  .md\:mb-2\/7 {
    margin-bottom: 28.57142857% !important;
  }
  .md\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }
  .md\:mb-2\/5 {
    margin-bottom: 40% !important;
  }
  .md\:mb-1\/2 {
    margin-bottom: 50% !important;
  }
  .md\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }
  .md\:mb-1\/10 {
    margin-bottom: 10% !important;
  }
  .md\:mb-5\/12 {
    margin-bottom: 41.6666666% !important;
  }
  .md\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }
  .md\:mb-3\/5 {
    margin-bottom: 60% !important;
  }
  .md\:mb-11\/12 {
    margin-bottom: 91.6666666% !important;
  }
  .md\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }
  .md\:mb-3\/4 {
    margin-bottom: 75% !important;
  }
  .md\:mb-4\/5 {
    margin-bottom: 80% !important;
  }
  .md\:mb-5\/6 {
    margin-bottom: 83.3333333% !important;
  }
  .md\:ml--1\/6 {
    margin-left: -16.666666% !important;
  }
  .md\:ml--1\/5 {
    margin-left: -20% !important;
  }
  .md\:ml--1\/4 {
    margin-left: -25% !important;
  }
  .md\:ml--2\/7 {
    margin-left: -28.57142857% !important;
  }
  .md\:ml--1\/3 {
    margin-left: -33.333333% !important;
  }
  .md\:ml--2\/5 {
    margin-left: -40% !important;
  }
  .md\:ml--1\/2 {
    margin-left: -50% !important;
  }
  .md\:ml--1\/12 {
    margin-left: -8.333333% !important;
  }
  .md\:ml--1\/10 {
    margin-left: -10% !important;
  }
  .md\:ml--5\/12 {
    margin-left: -41.6666666% !important;
  }
  .md\:ml--7\/12 {
    margin-left: -58.333333% !important;
  }
  .md\:ml--3\/5 {
    margin-left: -60% !important;
  }
  .md\:ml--11\/12 {
    margin-left: -91.6666666% !important;
  }
  .md\:ml--2\/3 {
    margin-left: -66.666667% !important;
  }
  .md\:ml--3\/4 {
    margin-left: -75% !important;
  }
  .md\:ml--4\/5 {
    margin-left: -80% !important;
  }
  .md\:ml--5\/6 {
    margin-left: -83.3333333% !important;
  }
  .md\:ml--30 {
    margin-left: -28rem !important;
  }
  .md\:ml--24 {
    margin-left: -22rem !important;
  }
  .md\:ml--18 {
    margin-left: -16rem !important;
  }
  .md\:ml--15 {
    margin-left: -13rem !important;
  }
  .md\:ml--14 {
    margin-left: -12rem !important;
  }
  .md\:ml--13 {
    margin-left: -11rem !important;
  }
  .md\:ml--12 {
    margin-left: -10rem !important;
  }
  .md\:ml--11 {
    margin-left: -9rem !important;
  }
  .md\:ml--10 {
    margin-left: -8rem !important;
  }
  .md\:ml--9 {
    margin-left: -7rem !important;
  }
  .md\:ml--8 {
    margin-left: -6rem !important;
  }
  .md\:ml--7 {
    margin-left: -5rem !important;
  }
  .md\:ml--6 {
    margin-left: -4rem !important;
  }
  .md\:ml--5 {
    margin-left: -3rem !important;
  }
  .md\:ml--4-5 {
    margin-left: -2.5rem !important;
  }
  .md\:ml--4 {
    margin-left: -2rem !important;
  }
  .md\:ml--3-5 {
    margin-left: -1.5rem !important;
  }
  .md\:ml--3 {
    margin-left: -1rem !important;
  }
  .md\:ml--2-5 {
    margin-left: -0.75rem !important;
  }
  .md\:ml--2 {
    margin-left: -0.5rem !important;
  }
  .md\:ml--1 {
    margin-left: -0.25rem !important;
  }
  .md\:ml--0-5 {
    margin-left: -0.125rem !important;
  }
  .md\:ml-0 {
    margin-left: 0 !important;
  }
  .md\:ml-0-25 {
    margin-left: 0.0625rem !important;
  }
  .md\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .md\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .md\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .md\:ml-2-5 {
    margin-left: 0.75rem !important;
  }
  .md\:ml-3 {
    margin-left: 1rem !important;
  }
  .md\:ml-3-5 {
    margin-left: 1.5rem !important;
  }
  .md\:ml-4 {
    margin-left: 2rem !important;
  }
  .md\:ml-4-5 {
    margin-left: 2.5rem !important;
  }
  .md\:ml-5 {
    margin-left: 3rem !important;
  }
  .md\:ml-6 {
    margin-left: 4rem !important;
  }
  .md\:ml-6-5 {
    margin-left: 4.5rem !important;
  }
  .md\:ml-7 {
    margin-left: 5rem !important;
  }
  .md\:ml-8 {
    margin-left: 6rem !important;
  }
  .md\:ml-9 {
    margin-left: 7rem !important;
  }
  .md\:ml-10 {
    margin-left: 8rem !important;
  }
  .md\:ml-11 {
    margin-left: 9rem !important;
  }
  .md\:ml-12 {
    margin-left: 10rem !important;
  }
  .md\:ml-13 {
    margin-left: 11rem !important;
  }
  .md\:ml-14 {
    margin-left: 12rem !important;
  }
  .md\:ml-15 {
    margin-left: 13rem !important;
  }
  .md\:ml-30 {
    margin-left: 28rem !important;
  }
  .md\:ml-1-em {
    margin-left: 0.25em !important;
  }
  .md\:ml-1-5-em {
    margin-left: 0.375em !important;
  }
  .md\:ml-2-em {
    margin-left: 0.5em !important;
  }
  .md\:ml-2-25-em {
    margin-left: 0.625em !important;
  }
  .md\:ml-2-5-em {
    margin-left: 0.75em !important;
  }
  .md\:ml-3-em {
    margin-left: 1em !important;
  }
  .md\:ml-4-em {
    margin-left: 2em !important;
  }
  .md\:ml-5-em {
    margin-left: 3em !important;
  }
  .md\:ml-6-em {
    margin-left: 4em !important;
  }
  .md\:ml-7-em {
    margin-left: 5em !important;
  }
  .md\:ml-8-em {
    margin-left: 6em !important;
  }
  .md\:ml-9-em {
    margin-left: 7em !important;
  }
  .md\:ml-1px {
    margin-left: 1px !important;
  }
  .md\:ml--1px {
    margin-left: -1px !important;
  }
  .md\:ml-1\/8 {
    margin-left: 12.5% !important;
  }
  .md\:ml-1\/6 {
    margin-left: 16.666666% !important;
  }
  .md\:ml-1\/5 {
    margin-left: 20% !important;
  }
  .md\:ml-1\/4 {
    margin-left: 25% !important;
  }
  .md\:ml-2\/7 {
    margin-left: 28.57142857% !important;
  }
  .md\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }
  .md\:ml-2\/5 {
    margin-left: 40% !important;
  }
  .md\:ml-1\/2 {
    margin-left: 50% !important;
  }
  .md\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }
  .md\:ml-1\/10 {
    margin-left: 10% !important;
  }
  .md\:ml-5\/12 {
    margin-left: 41.6666666% !important;
  }
  .md\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }
  .md\:ml-3\/5 {
    margin-left: 60% !important;
  }
  .md\:ml-11\/12 {
    margin-left: 91.6666666% !important;
  }
  .md\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }
  .md\:ml-3\/4 {
    margin-left: 75% !important;
  }
  .md\:ml-4\/5 {
    margin-left: 80% !important;
  }
  .md\:ml-5\/6 {
    margin-left: 83.3333333% !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:m--1\/6 {
    margin: -16.666666% !important;
  }
  .lg\:m--1\/5 {
    margin: -20% !important;
  }
  .lg\:m--1\/4 {
    margin: -25% !important;
  }
  .lg\:m--2\/7 {
    margin: -28.57142857% !important;
  }
  .lg\:m--1\/3 {
    margin: -33.333333% !important;
  }
  .lg\:m--2\/5 {
    margin: -40% !important;
  }
  .lg\:m--1\/2 {
    margin: -50% !important;
  }
  .lg\:m--1\/12 {
    margin: -8.333333% !important;
  }
  .lg\:m--1\/10 {
    margin: -10% !important;
  }
  .lg\:m--5\/12 {
    margin: -41.6666666% !important;
  }
  .lg\:m--7\/12 {
    margin: -58.333333% !important;
  }
  .lg\:m--3\/5 {
    margin: -60% !important;
  }
  .lg\:m--11\/12 {
    margin: -91.6666666% !important;
  }
  .lg\:m--2\/3 {
    margin: -66.666667% !important;
  }
  .lg\:m--3\/4 {
    margin: -75% !important;
  }
  .lg\:m--4\/5 {
    margin: -80% !important;
  }
  .lg\:m--5\/6 {
    margin: -83.3333333% !important;
  }
  .lg\:m--30 {
    margin: -28rem !important;
  }
  .lg\:m--24 {
    margin: -22rem !important;
  }
  .lg\:m--18 {
    margin: -16rem !important;
  }
  .lg\:m--15 {
    margin: -13rem !important;
  }
  .lg\:m--14 {
    margin: -12rem !important;
  }
  .lg\:m--13 {
    margin: -11rem !important;
  }
  .lg\:m--12 {
    margin: -10rem !important;
  }
  .lg\:m--11 {
    margin: -9rem !important;
  }
  .lg\:m--10 {
    margin: -8rem !important;
  }
  .lg\:m--9 {
    margin: -7rem !important;
  }
  .lg\:m--8 {
    margin: -6rem !important;
  }
  .lg\:m--7 {
    margin: -5rem !important;
  }
  .lg\:m--6 {
    margin: -4rem !important;
  }
  .lg\:m--5 {
    margin: -3rem !important;
  }
  .lg\:m--4-5 {
    margin: -2.5rem !important;
  }
  .lg\:m--4 {
    margin: -2rem !important;
  }
  .lg\:m--3-5 {
    margin: -1.5rem !important;
  }
  .lg\:m--3 {
    margin: -1rem !important;
  }
  .lg\:m--2-5 {
    margin: -0.75rem !important;
  }
  .lg\:m--2 {
    margin: -0.5rem !important;
  }
  .lg\:m--1 {
    margin: -0.25rem !important;
  }
  .lg\:m--0-5 {
    margin: -0.125rem !important;
  }
  .lg\:m-0 {
    margin: 0 !important;
  }
  .lg\:m-0-25 {
    margin: 0.0625rem !important;
  }
  .lg\:m-0-5 {
    margin: 0.125rem !important;
  }
  .lg\:m-1 {
    margin: 0.25rem !important;
  }
  .lg\:m-2 {
    margin: 0.5rem !important;
  }
  .lg\:m-2-5 {
    margin: 0.75rem !important;
  }
  .lg\:m-3 {
    margin: 1rem !important;
  }
  .lg\:m-3-5 {
    margin: 1.5rem !important;
  }
  .lg\:m-4 {
    margin: 2rem !important;
  }
  .lg\:m-4-5 {
    margin: 2.5rem !important;
  }
  .lg\:m-5 {
    margin: 3rem !important;
  }
  .lg\:m-6 {
    margin: 4rem !important;
  }
  .lg\:m-6-5 {
    margin: 4.5rem !important;
  }
  .lg\:m-7 {
    margin: 5rem !important;
  }
  .lg\:m-8 {
    margin: 6rem !important;
  }
  .lg\:m-9 {
    margin: 7rem !important;
  }
  .lg\:m-10 {
    margin: 8rem !important;
  }
  .lg\:m-11 {
    margin: 9rem !important;
  }
  .lg\:m-12 {
    margin: 10rem !important;
  }
  .lg\:m-13 {
    margin: 11rem !important;
  }
  .lg\:m-14 {
    margin: 12rem !important;
  }
  .lg\:m-15 {
    margin: 13rem !important;
  }
  .lg\:m-30 {
    margin: 28rem !important;
  }
  .lg\:m-1-em {
    margin: 0.25em !important;
  }
  .lg\:m-1-5-em {
    margin: 0.375em !important;
  }
  .lg\:m-2-em {
    margin: 0.5em !important;
  }
  .lg\:m-2-25-em {
    margin: 0.625em !important;
  }
  .lg\:m-2-5-em {
    margin: 0.75em !important;
  }
  .lg\:m-3-em {
    margin: 1em !important;
  }
  .lg\:m-4-em {
    margin: 2em !important;
  }
  .lg\:m-5-em {
    margin: 3em !important;
  }
  .lg\:m-6-em {
    margin: 4em !important;
  }
  .lg\:m-7-em {
    margin: 5em !important;
  }
  .lg\:m-8-em {
    margin: 6em !important;
  }
  .lg\:m-9-em {
    margin: 7em !important;
  }
  .lg\:m-1px {
    margin: 1px !important;
  }
  .lg\:m--1px {
    margin: -1px !important;
  }
  .lg\:m-1\/8 {
    margin: 12.5% !important;
  }
  .lg\:m-1\/6 {
    margin: 16.666666% !important;
  }
  .lg\:m-1\/5 {
    margin: 20% !important;
  }
  .lg\:m-1\/4 {
    margin: 25% !important;
  }
  .lg\:m-2\/7 {
    margin: 28.57142857% !important;
  }
  .lg\:m-1\/3 {
    margin: 33.333333% !important;
  }
  .lg\:m-2\/5 {
    margin: 40% !important;
  }
  .lg\:m-1\/2 {
    margin: 50% !important;
  }
  .lg\:m-1\/12 {
    margin: 8.333333% !important;
  }
  .lg\:m-1\/10 {
    margin: 10% !important;
  }
  .lg\:m-5\/12 {
    margin: 41.6666666% !important;
  }
  .lg\:m-7\/12 {
    margin: 58.333333% !important;
  }
  .lg\:m-3\/5 {
    margin: 60% !important;
  }
  .lg\:m-11\/12 {
    margin: 91.6666666% !important;
  }
  .lg\:m-2\/3 {
    margin: 66.666667% !important;
  }
  .lg\:m-3\/4 {
    margin: 75% !important;
  }
  .lg\:m-4\/5 {
    margin: 80% !important;
  }
  .lg\:m-5\/6 {
    margin: 83.3333333% !important;
  }
  .lg\:mx--1\/6 {
    margin-left: -16.666666% !important;
    margin-right: -16.666666% !important;
  }
  .lg\:mx--1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }
  .lg\:mx--1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }
  .lg\:mx--2\/7 {
    margin-left: -28.57142857% !important;
    margin-right: -28.57142857% !important;
  }
  .lg\:mx--1\/3 {
    margin-left: -33.333333% !important;
    margin-right: -33.333333% !important;
  }
  .lg\:mx--2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }
  .lg\:mx--1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }
  .lg\:mx--1\/12 {
    margin-left: -8.333333% !important;
    margin-right: -8.333333% !important;
  }
  .lg\:mx--1\/10 {
    margin-left: -10% !important;
    margin-right: -10% !important;
  }
  .lg\:mx--5\/12 {
    margin-left: -41.6666666% !important;
    margin-right: -41.6666666% !important;
  }
  .lg\:mx--7\/12 {
    margin-left: -58.333333% !important;
    margin-right: -58.333333% !important;
  }
  .lg\:mx--3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }
  .lg\:mx--11\/12 {
    margin-left: -91.6666666% !important;
    margin-right: -91.6666666% !important;
  }
  .lg\:mx--2\/3 {
    margin-left: -66.666667% !important;
    margin-right: -66.666667% !important;
  }
  .lg\:mx--3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }
  .lg\:mx--4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }
  .lg\:mx--5\/6 {
    margin-left: -83.3333333% !important;
    margin-right: -83.3333333% !important;
  }
  .lg\:mx--30 {
    margin-left: -28rem !important;
    margin-right: -28rem !important;
  }
  .lg\:mx--24 {
    margin-left: -22rem !important;
    margin-right: -22rem !important;
  }
  .lg\:mx--18 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }
  .lg\:mx--15 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }
  .lg\:mx--14 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }
  .lg\:mx--13 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }
  .lg\:mx--12 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }
  .lg\:mx--11 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }
  .lg\:mx--10 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .lg\:mx--9 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }
  .lg\:mx--8 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .lg\:mx--7 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .lg\:mx--6 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .lg\:mx--5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .lg\:mx--4-5 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .lg\:mx--4 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .lg\:mx--3-5 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .lg\:mx--3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .lg\:mx--2-5 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .lg\:mx--2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .lg\:mx--1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .lg\:mx--0-5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }
  .lg\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .lg\:mx-0-25 {
    margin-left: 0.0625rem !important;
    margin-right: 0.0625rem !important;
  }
  .lg\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .lg\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .lg\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .lg\:mx-2-5 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .lg\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .lg\:mx-3-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .lg\:mx-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .lg\:mx-4-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .lg\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .lg\:mx-6 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .lg\:mx-6-5 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .lg\:mx-7 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .lg\:mx-8 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .lg\:mx-9 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .lg\:mx-10 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .lg\:mx-11 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .lg\:mx-12 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .lg\:mx-13 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .lg\:mx-14 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .lg\:mx-15 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .lg\:mx-30 {
    margin-left: 28rem !important;
    margin-right: 28rem !important;
  }
  .lg\:mx-1-em {
    margin-left: 0.25em !important;
    margin-right: 0.25em !important;
  }
  .lg\:mx-1-5-em {
    margin-left: 0.375em !important;
    margin-right: 0.375em !important;
  }
  .lg\:mx-2-em {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .lg\:mx-2-25-em {
    margin-left: 0.625em !important;
    margin-right: 0.625em !important;
  }
  .lg\:mx-2-5-em {
    margin-left: 0.75em !important;
    margin-right: 0.75em !important;
  }
  .lg\:mx-3-em {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .lg\:mx-4-em {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .lg\:mx-5-em {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .lg\:mx-6-em {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .lg\:mx-7-em {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .lg\:mx-8-em {
    margin-left: 6em !important;
    margin-right: 6em !important;
  }
  .lg\:mx-9-em {
    margin-left: 7em !important;
    margin-right: 7em !important;
  }
  .lg\:mx-1px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .lg\:mx--1px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }
  .lg\:mx-1\/8 {
    margin-left: 12.5% !important;
    margin-right: 12.5% !important;
  }
  .lg\:mx-1\/6 {
    margin-left: 16.666666% !important;
    margin-right: 16.666666% !important;
  }
  .lg\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }
  .lg\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }
  .lg\:mx-2\/7 {
    margin-left: 28.57142857% !important;
    margin-right: 28.57142857% !important;
  }
  .lg\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }
  .lg\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }
  .lg\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }
  .lg\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }
  .lg\:mx-1\/10 {
    margin-left: 10% !important;
    margin-right: 10% !important;
  }
  .lg\:mx-5\/12 {
    margin-left: 41.6666666% !important;
    margin-right: 41.6666666% !important;
  }
  .lg\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }
  .lg\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }
  .lg\:mx-11\/12 {
    margin-left: 91.6666666% !important;
    margin-right: 91.6666666% !important;
  }
  .lg\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }
  .lg\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }
  .lg\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }
  .lg\:mx-5\/6 {
    margin-left: 83.3333333% !important;
    margin-right: 83.3333333% !important;
  }
  .lg\:my--1\/6 {
    margin-top: -16.666666% !important;
    margin-bottom: -16.666666% !important;
  }
  .lg\:my--1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }
  .lg\:my--1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }
  .lg\:my--2\/7 {
    margin-top: -28.57142857% !important;
    margin-bottom: -28.57142857% !important;
  }
  .lg\:my--1\/3 {
    margin-top: -33.333333% !important;
    margin-bottom: -33.333333% !important;
  }
  .lg\:my--2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }
  .lg\:my--1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }
  .lg\:my--1\/12 {
    margin-top: -8.333333% !important;
    margin-bottom: -8.333333% !important;
  }
  .lg\:my--1\/10 {
    margin-top: -10% !important;
    margin-bottom: -10% !important;
  }
  .lg\:my--5\/12 {
    margin-top: -41.6666666% !important;
    margin-bottom: -41.6666666% !important;
  }
  .lg\:my--7\/12 {
    margin-top: -58.333333% !important;
    margin-bottom: -58.333333% !important;
  }
  .lg\:my--3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }
  .lg\:my--11\/12 {
    margin-top: -91.6666666% !important;
    margin-bottom: -91.6666666% !important;
  }
  .lg\:my--2\/3 {
    margin-top: -66.666667% !important;
    margin-bottom: -66.666667% !important;
  }
  .lg\:my--3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }
  .lg\:my--4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }
  .lg\:my--5\/6 {
    margin-top: -83.3333333% !important;
    margin-bottom: -83.3333333% !important;
  }
  .lg\:my--30 {
    margin-top: -28rem !important;
    margin-bottom: -28rem !important;
  }
  .lg\:my--24 {
    margin-top: -22rem !important;
    margin-bottom: -22rem !important;
  }
  .lg\:my--18 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }
  .lg\:my--15 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .lg\:my--14 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .lg\:my--13 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }
  .lg\:my--12 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .lg\:my--11 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .lg\:my--10 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .lg\:my--9 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .lg\:my--8 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .lg\:my--7 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .lg\:my--6 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .lg\:my--5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .lg\:my--4-5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .lg\:my--4 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .lg\:my--3-5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .lg\:my--3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .lg\:my--2-5 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .lg\:my--2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .lg\:my--1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .lg\:my--0-5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }
  .lg\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .lg\:my-0-25 {
    margin-top: 0.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }
  .lg\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .lg\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .lg\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .lg\:my-2-5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .lg\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .lg\:my-3-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .lg\:my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .lg\:my-4-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .lg\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .lg\:my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .lg\:my-6-5 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .lg\:my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .lg\:my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .lg\:my-9 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .lg\:my-10 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .lg\:my-11 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .lg\:my-12 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .lg\:my-13 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .lg\:my-14 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .lg\:my-15 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .lg\:my-30 {
    margin-top: 28rem !important;
    margin-bottom: 28rem !important;
  }
  .lg\:my-1-em {
    margin-top: 0.25em !important;
    margin-bottom: 0.25em !important;
  }
  .lg\:my-1-5-em {
    margin-top: 0.375em !important;
    margin-bottom: 0.375em !important;
  }
  .lg\:my-2-em {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .lg\:my-2-25-em {
    margin-top: 0.625em !important;
    margin-bottom: 0.625em !important;
  }
  .lg\:my-2-5-em {
    margin-top: 0.75em !important;
    margin-bottom: 0.75em !important;
  }
  .lg\:my-3-em {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .lg\:my-4-em {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .lg\:my-5-em {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .lg\:my-6-em {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .lg\:my-7-em {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .lg\:my-8-em {
    margin-top: 6em !important;
    margin-bottom: 6em !important;
  }
  .lg\:my-9-em {
    margin-top: 7em !important;
    margin-bottom: 7em !important;
  }
  .lg\:my-1px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .lg\:my--1px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }
  .lg\:my-1\/8 {
    margin-top: 12.5% !important;
    margin-bottom: 12.5% !important;
  }
  .lg\:my-1\/6 {
    margin-top: 16.666666% !important;
    margin-bottom: 16.666666% !important;
  }
  .lg\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }
  .lg\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }
  .lg\:my-2\/7 {
    margin-top: 28.57142857% !important;
    margin-bottom: 28.57142857% !important;
  }
  .lg\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }
  .lg\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }
  .lg\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }
  .lg\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }
  .lg\:my-1\/10 {
    margin-top: 10% !important;
    margin-bottom: 10% !important;
  }
  .lg\:my-5\/12 {
    margin-top: 41.6666666% !important;
    margin-bottom: 41.6666666% !important;
  }
  .lg\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }
  .lg\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }
  .lg\:my-11\/12 {
    margin-top: 91.6666666% !important;
    margin-bottom: 91.6666666% !important;
  }
  .lg\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }
  .lg\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }
  .lg\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }
  .lg\:my-5\/6 {
    margin-top: 83.3333333% !important;
    margin-bottom: 83.3333333% !important;
  }
  .lg\:mt--1\/6 {
    margin-top: -16.666666% !important;
  }
  .lg\:mt--1\/5 {
    margin-top: -20% !important;
  }
  .lg\:mt--1\/4 {
    margin-top: -25% !important;
  }
  .lg\:mt--2\/7 {
    margin-top: -28.57142857% !important;
  }
  .lg\:mt--1\/3 {
    margin-top: -33.333333% !important;
  }
  .lg\:mt--2\/5 {
    margin-top: -40% !important;
  }
  .lg\:mt--1\/2 {
    margin-top: -50% !important;
  }
  .lg\:mt--1\/12 {
    margin-top: -8.333333% !important;
  }
  .lg\:mt--1\/10 {
    margin-top: -10% !important;
  }
  .lg\:mt--5\/12 {
    margin-top: -41.6666666% !important;
  }
  .lg\:mt--7\/12 {
    margin-top: -58.333333% !important;
  }
  .lg\:mt--3\/5 {
    margin-top: -60% !important;
  }
  .lg\:mt--11\/12 {
    margin-top: -91.6666666% !important;
  }
  .lg\:mt--2\/3 {
    margin-top: -66.666667% !important;
  }
  .lg\:mt--3\/4 {
    margin-top: -75% !important;
  }
  .lg\:mt--4\/5 {
    margin-top: -80% !important;
  }
  .lg\:mt--5\/6 {
    margin-top: -83.3333333% !important;
  }
  .lg\:mt--30 {
    margin-top: -28rem !important;
  }
  .lg\:mt--24 {
    margin-top: -22rem !important;
  }
  .lg\:mt--18 {
    margin-top: -16rem !important;
  }
  .lg\:mt--15 {
    margin-top: -13rem !important;
  }
  .lg\:mt--14 {
    margin-top: -12rem !important;
  }
  .lg\:mt--13 {
    margin-top: -11rem !important;
  }
  .lg\:mt--12 {
    margin-top: -10rem !important;
  }
  .lg\:mt--11 {
    margin-top: -9rem !important;
  }
  .lg\:mt--10 {
    margin-top: -8rem !important;
  }
  .lg\:mt--9 {
    margin-top: -7rem !important;
  }
  .lg\:mt--8 {
    margin-top: -6rem !important;
  }
  .lg\:mt--7 {
    margin-top: -5rem !important;
  }
  .lg\:mt--6 {
    margin-top: -4rem !important;
  }
  .lg\:mt--5 {
    margin-top: -3rem !important;
  }
  .lg\:mt--4-5 {
    margin-top: -2.5rem !important;
  }
  .lg\:mt--4 {
    margin-top: -2rem !important;
  }
  .lg\:mt--3-5 {
    margin-top: -1.5rem !important;
  }
  .lg\:mt--3 {
    margin-top: -1rem !important;
  }
  .lg\:mt--2-5 {
    margin-top: -0.75rem !important;
  }
  .lg\:mt--2 {
    margin-top: -0.5rem !important;
  }
  .lg\:mt--1 {
    margin-top: -0.25rem !important;
  }
  .lg\:mt--0-5 {
    margin-top: -0.125rem !important;
  }
  .lg\:mt-0 {
    margin-top: 0 !important;
  }
  .lg\:mt-0-25 {
    margin-top: 0.0625rem !important;
  }
  .lg\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .lg\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .lg\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .lg\:mt-2-5 {
    margin-top: 0.75rem !important;
  }
  .lg\:mt-3 {
    margin-top: 1rem !important;
  }
  .lg\:mt-3-5 {
    margin-top: 1.5rem !important;
  }
  .lg\:mt-4 {
    margin-top: 2rem !important;
  }
  .lg\:mt-4-5 {
    margin-top: 2.5rem !important;
  }
  .lg\:mt-5 {
    margin-top: 3rem !important;
  }
  .lg\:mt-6 {
    margin-top: 4rem !important;
  }
  .lg\:mt-6-5 {
    margin-top: 4.5rem !important;
  }
  .lg\:mt-7 {
    margin-top: 5rem !important;
  }
  .lg\:mt-8 {
    margin-top: 6rem !important;
  }
  .lg\:mt-9 {
    margin-top: 7rem !important;
  }
  .lg\:mt-10 {
    margin-top: 8rem !important;
  }
  .lg\:mt-11 {
    margin-top: 9rem !important;
  }
  .lg\:mt-12 {
    margin-top: 10rem !important;
  }
  .lg\:mt-13 {
    margin-top: 11rem !important;
  }
  .lg\:mt-14 {
    margin-top: 12rem !important;
  }
  .lg\:mt-15 {
    margin-top: 13rem !important;
  }
  .lg\:mt-30 {
    margin-top: 28rem !important;
  }
  .lg\:mt-1-em {
    margin-top: 0.25em !important;
  }
  .lg\:mt-1-5-em {
    margin-top: 0.375em !important;
  }
  .lg\:mt-2-em {
    margin-top: 0.5em !important;
  }
  .lg\:mt-2-25-em {
    margin-top: 0.625em !important;
  }
  .lg\:mt-2-5-em {
    margin-top: 0.75em !important;
  }
  .lg\:mt-3-em {
    margin-top: 1em !important;
  }
  .lg\:mt-4-em {
    margin-top: 2em !important;
  }
  .lg\:mt-5-em {
    margin-top: 3em !important;
  }
  .lg\:mt-6-em {
    margin-top: 4em !important;
  }
  .lg\:mt-7-em {
    margin-top: 5em !important;
  }
  .lg\:mt-8-em {
    margin-top: 6em !important;
  }
  .lg\:mt-9-em {
    margin-top: 7em !important;
  }
  .lg\:mt-1px {
    margin-top: 1px !important;
  }
  .lg\:mt--1px {
    margin-top: -1px !important;
  }
  .lg\:mt-1\/8 {
    margin-top: 12.5% !important;
  }
  .lg\:mt-1\/6 {
    margin-top: 16.666666% !important;
  }
  .lg\:mt-1\/5 {
    margin-top: 20% !important;
  }
  .lg\:mt-1\/4 {
    margin-top: 25% !important;
  }
  .lg\:mt-2\/7 {
    margin-top: 28.57142857% !important;
  }
  .lg\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }
  .lg\:mt-2\/5 {
    margin-top: 40% !important;
  }
  .lg\:mt-1\/2 {
    margin-top: 50% !important;
  }
  .lg\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }
  .lg\:mt-1\/10 {
    margin-top: 10% !important;
  }
  .lg\:mt-5\/12 {
    margin-top: 41.6666666% !important;
  }
  .lg\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }
  .lg\:mt-3\/5 {
    margin-top: 60% !important;
  }
  .lg\:mt-11\/12 {
    margin-top: 91.6666666% !important;
  }
  .lg\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }
  .lg\:mt-3\/4 {
    margin-top: 75% !important;
  }
  .lg\:mt-4\/5 {
    margin-top: 80% !important;
  }
  .lg\:mt-5\/6 {
    margin-top: 83.3333333% !important;
  }
  .lg\:mr--1\/6 {
    margin-right: -16.666666% !important;
  }
  .lg\:mr--1\/5 {
    margin-right: -20% !important;
  }
  .lg\:mr--1\/4 {
    margin-right: -25% !important;
  }
  .lg\:mr--2\/7 {
    margin-right: -28.57142857% !important;
  }
  .lg\:mr--1\/3 {
    margin-right: -33.333333% !important;
  }
  .lg\:mr--2\/5 {
    margin-right: -40% !important;
  }
  .lg\:mr--1\/2 {
    margin-right: -50% !important;
  }
  .lg\:mr--1\/12 {
    margin-right: -8.333333% !important;
  }
  .lg\:mr--1\/10 {
    margin-right: -10% !important;
  }
  .lg\:mr--5\/12 {
    margin-right: -41.6666666% !important;
  }
  .lg\:mr--7\/12 {
    margin-right: -58.333333% !important;
  }
  .lg\:mr--3\/5 {
    margin-right: -60% !important;
  }
  .lg\:mr--11\/12 {
    margin-right: -91.6666666% !important;
  }
  .lg\:mr--2\/3 {
    margin-right: -66.666667% !important;
  }
  .lg\:mr--3\/4 {
    margin-right: -75% !important;
  }
  .lg\:mr--4\/5 {
    margin-right: -80% !important;
  }
  .lg\:mr--5\/6 {
    margin-right: -83.3333333% !important;
  }
  .lg\:mr--30 {
    margin-right: -28rem !important;
  }
  .lg\:mr--24 {
    margin-right: -22rem !important;
  }
  .lg\:mr--18 {
    margin-right: -16rem !important;
  }
  .lg\:mr--15 {
    margin-right: -13rem !important;
  }
  .lg\:mr--14 {
    margin-right: -12rem !important;
  }
  .lg\:mr--13 {
    margin-right: -11rem !important;
  }
  .lg\:mr--12 {
    margin-right: -10rem !important;
  }
  .lg\:mr--11 {
    margin-right: -9rem !important;
  }
  .lg\:mr--10 {
    margin-right: -8rem !important;
  }
  .lg\:mr--9 {
    margin-right: -7rem !important;
  }
  .lg\:mr--8 {
    margin-right: -6rem !important;
  }
  .lg\:mr--7 {
    margin-right: -5rem !important;
  }
  .lg\:mr--6 {
    margin-right: -4rem !important;
  }
  .lg\:mr--5 {
    margin-right: -3rem !important;
  }
  .lg\:mr--4-5 {
    margin-right: -2.5rem !important;
  }
  .lg\:mr--4 {
    margin-right: -2rem !important;
  }
  .lg\:mr--3-5 {
    margin-right: -1.5rem !important;
  }
  .lg\:mr--3 {
    margin-right: -1rem !important;
  }
  .lg\:mr--2-5 {
    margin-right: -0.75rem !important;
  }
  .lg\:mr--2 {
    margin-right: -0.5rem !important;
  }
  .lg\:mr--1 {
    margin-right: -0.25rem !important;
  }
  .lg\:mr--0-5 {
    margin-right: -0.125rem !important;
  }
  .lg\:mr-0 {
    margin-right: 0 !important;
  }
  .lg\:mr-0-25 {
    margin-right: 0.0625rem !important;
  }
  .lg\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .lg\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .lg\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .lg\:mr-2-5 {
    margin-right: 0.75rem !important;
  }
  .lg\:mr-3 {
    margin-right: 1rem !important;
  }
  .lg\:mr-3-5 {
    margin-right: 1.5rem !important;
  }
  .lg\:mr-4 {
    margin-right: 2rem !important;
  }
  .lg\:mr-4-5 {
    margin-right: 2.5rem !important;
  }
  .lg\:mr-5 {
    margin-right: 3rem !important;
  }
  .lg\:mr-6 {
    margin-right: 4rem !important;
  }
  .lg\:mr-6-5 {
    margin-right: 4.5rem !important;
  }
  .lg\:mr-7 {
    margin-right: 5rem !important;
  }
  .lg\:mr-8 {
    margin-right: 6rem !important;
  }
  .lg\:mr-9 {
    margin-right: 7rem !important;
  }
  .lg\:mr-10 {
    margin-right: 8rem !important;
  }
  .lg\:mr-11 {
    margin-right: 9rem !important;
  }
  .lg\:mr-12 {
    margin-right: 10rem !important;
  }
  .lg\:mr-13 {
    margin-right: 11rem !important;
  }
  .lg\:mr-14 {
    margin-right: 12rem !important;
  }
  .lg\:mr-15 {
    margin-right: 13rem !important;
  }
  .lg\:mr-30 {
    margin-right: 28rem !important;
  }
  .lg\:mr-1-em {
    margin-right: 0.25em !important;
  }
  .lg\:mr-1-5-em {
    margin-right: 0.375em !important;
  }
  .lg\:mr-2-em {
    margin-right: 0.5em !important;
  }
  .lg\:mr-2-25-em {
    margin-right: 0.625em !important;
  }
  .lg\:mr-2-5-em {
    margin-right: 0.75em !important;
  }
  .lg\:mr-3-em {
    margin-right: 1em !important;
  }
  .lg\:mr-4-em {
    margin-right: 2em !important;
  }
  .lg\:mr-5-em {
    margin-right: 3em !important;
  }
  .lg\:mr-6-em {
    margin-right: 4em !important;
  }
  .lg\:mr-7-em {
    margin-right: 5em !important;
  }
  .lg\:mr-8-em {
    margin-right: 6em !important;
  }
  .lg\:mr-9-em {
    margin-right: 7em !important;
  }
  .lg\:mr-1px {
    margin-right: 1px !important;
  }
  .lg\:mr--1px {
    margin-right: -1px !important;
  }
  .lg\:mr-1\/8 {
    margin-right: 12.5% !important;
  }
  .lg\:mr-1\/6 {
    margin-right: 16.666666% !important;
  }
  .lg\:mr-1\/5 {
    margin-right: 20% !important;
  }
  .lg\:mr-1\/4 {
    margin-right: 25% !important;
  }
  .lg\:mr-2\/7 {
    margin-right: 28.57142857% !important;
  }
  .lg\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }
  .lg\:mr-2\/5 {
    margin-right: 40% !important;
  }
  .lg\:mr-1\/2 {
    margin-right: 50% !important;
  }
  .lg\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }
  .lg\:mr-1\/10 {
    margin-right: 10% !important;
  }
  .lg\:mr-5\/12 {
    margin-right: 41.6666666% !important;
  }
  .lg\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }
  .lg\:mr-3\/5 {
    margin-right: 60% !important;
  }
  .lg\:mr-11\/12 {
    margin-right: 91.6666666% !important;
  }
  .lg\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }
  .lg\:mr-3\/4 {
    margin-right: 75% !important;
  }
  .lg\:mr-4\/5 {
    margin-right: 80% !important;
  }
  .lg\:mr-5\/6 {
    margin-right: 83.3333333% !important;
  }
  .lg\:mb--1\/6 {
    margin-bottom: -16.666666% !important;
  }
  .lg\:mb--1\/5 {
    margin-bottom: -20% !important;
  }
  .lg\:mb--1\/4 {
    margin-bottom: -25% !important;
  }
  .lg\:mb--2\/7 {
    margin-bottom: -28.57142857% !important;
  }
  .lg\:mb--1\/3 {
    margin-bottom: -33.333333% !important;
  }
  .lg\:mb--2\/5 {
    margin-bottom: -40% !important;
  }
  .lg\:mb--1\/2 {
    margin-bottom: -50% !important;
  }
  .lg\:mb--1\/12 {
    margin-bottom: -8.333333% !important;
  }
  .lg\:mb--1\/10 {
    margin-bottom: -10% !important;
  }
  .lg\:mb--5\/12 {
    margin-bottom: -41.6666666% !important;
  }
  .lg\:mb--7\/12 {
    margin-bottom: -58.333333% !important;
  }
  .lg\:mb--3\/5 {
    margin-bottom: -60% !important;
  }
  .lg\:mb--11\/12 {
    margin-bottom: -91.6666666% !important;
  }
  .lg\:mb--2\/3 {
    margin-bottom: -66.666667% !important;
  }
  .lg\:mb--3\/4 {
    margin-bottom: -75% !important;
  }
  .lg\:mb--4\/5 {
    margin-bottom: -80% !important;
  }
  .lg\:mb--5\/6 {
    margin-bottom: -83.3333333% !important;
  }
  .lg\:mb--30 {
    margin-bottom: -28rem !important;
  }
  .lg\:mb--24 {
    margin-bottom: -22rem !important;
  }
  .lg\:mb--18 {
    margin-bottom: -16rem !important;
  }
  .lg\:mb--15 {
    margin-bottom: -13rem !important;
  }
  .lg\:mb--14 {
    margin-bottom: -12rem !important;
  }
  .lg\:mb--13 {
    margin-bottom: -11rem !important;
  }
  .lg\:mb--12 {
    margin-bottom: -10rem !important;
  }
  .lg\:mb--11 {
    margin-bottom: -9rem !important;
  }
  .lg\:mb--10 {
    margin-bottom: -8rem !important;
  }
  .lg\:mb--9 {
    margin-bottom: -7rem !important;
  }
  .lg\:mb--8 {
    margin-bottom: -6rem !important;
  }
  .lg\:mb--7 {
    margin-bottom: -5rem !important;
  }
  .lg\:mb--6 {
    margin-bottom: -4rem !important;
  }
  .lg\:mb--5 {
    margin-bottom: -3rem !important;
  }
  .lg\:mb--4-5 {
    margin-bottom: -2.5rem !important;
  }
  .lg\:mb--4 {
    margin-bottom: -2rem !important;
  }
  .lg\:mb--3-5 {
    margin-bottom: -1.5rem !important;
  }
  .lg\:mb--3 {
    margin-bottom: -1rem !important;
  }
  .lg\:mb--2-5 {
    margin-bottom: -0.75rem !important;
  }
  .lg\:mb--2 {
    margin-bottom: -0.5rem !important;
  }
  .lg\:mb--1 {
    margin-bottom: -0.25rem !important;
  }
  .lg\:mb--0-5 {
    margin-bottom: -0.125rem !important;
  }
  .lg\:mb-0 {
    margin-bottom: 0 !important;
  }
  .lg\:mb-0-25 {
    margin-bottom: 0.0625rem !important;
  }
  .lg\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .lg\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .lg\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .lg\:mb-2-5 {
    margin-bottom: 0.75rem !important;
  }
  .lg\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .lg\:mb-3-5 {
    margin-bottom: 1.5rem !important;
  }
  .lg\:mb-4 {
    margin-bottom: 2rem !important;
  }
  .lg\:mb-4-5 {
    margin-bottom: 2.5rem !important;
  }
  .lg\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .lg\:mb-6 {
    margin-bottom: 4rem !important;
  }
  .lg\:mb-6-5 {
    margin-bottom: 4.5rem !important;
  }
  .lg\:mb-7 {
    margin-bottom: 5rem !important;
  }
  .lg\:mb-8 {
    margin-bottom: 6rem !important;
  }
  .lg\:mb-9 {
    margin-bottom: 7rem !important;
  }
  .lg\:mb-10 {
    margin-bottom: 8rem !important;
  }
  .lg\:mb-11 {
    margin-bottom: 9rem !important;
  }
  .lg\:mb-12 {
    margin-bottom: 10rem !important;
  }
  .lg\:mb-13 {
    margin-bottom: 11rem !important;
  }
  .lg\:mb-14 {
    margin-bottom: 12rem !important;
  }
  .lg\:mb-15 {
    margin-bottom: 13rem !important;
  }
  .lg\:mb-30 {
    margin-bottom: 28rem !important;
  }
  .lg\:mb-1-em {
    margin-bottom: 0.25em !important;
  }
  .lg\:mb-1-5-em {
    margin-bottom: 0.375em !important;
  }
  .lg\:mb-2-em {
    margin-bottom: 0.5em !important;
  }
  .lg\:mb-2-25-em {
    margin-bottom: 0.625em !important;
  }
  .lg\:mb-2-5-em {
    margin-bottom: 0.75em !important;
  }
  .lg\:mb-3-em {
    margin-bottom: 1em !important;
  }
  .lg\:mb-4-em {
    margin-bottom: 2em !important;
  }
  .lg\:mb-5-em {
    margin-bottom: 3em !important;
  }
  .lg\:mb-6-em {
    margin-bottom: 4em !important;
  }
  .lg\:mb-7-em {
    margin-bottom: 5em !important;
  }
  .lg\:mb-8-em {
    margin-bottom: 6em !important;
  }
  .lg\:mb-9-em {
    margin-bottom: 7em !important;
  }
  .lg\:mb-1px {
    margin-bottom: 1px !important;
  }
  .lg\:mb--1px {
    margin-bottom: -1px !important;
  }
  .lg\:mb-1\/8 {
    margin-bottom: 12.5% !important;
  }
  .lg\:mb-1\/6 {
    margin-bottom: 16.666666% !important;
  }
  .lg\:mb-1\/5 {
    margin-bottom: 20% !important;
  }
  .lg\:mb-1\/4 {
    margin-bottom: 25% !important;
  }
  .lg\:mb-2\/7 {
    margin-bottom: 28.57142857% !important;
  }
  .lg\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }
  .lg\:mb-2\/5 {
    margin-bottom: 40% !important;
  }
  .lg\:mb-1\/2 {
    margin-bottom: 50% !important;
  }
  .lg\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }
  .lg\:mb-1\/10 {
    margin-bottom: 10% !important;
  }
  .lg\:mb-5\/12 {
    margin-bottom: 41.6666666% !important;
  }
  .lg\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }
  .lg\:mb-3\/5 {
    margin-bottom: 60% !important;
  }
  .lg\:mb-11\/12 {
    margin-bottom: 91.6666666% !important;
  }
  .lg\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }
  .lg\:mb-3\/4 {
    margin-bottom: 75% !important;
  }
  .lg\:mb-4\/5 {
    margin-bottom: 80% !important;
  }
  .lg\:mb-5\/6 {
    margin-bottom: 83.3333333% !important;
  }
  .lg\:ml--1\/6 {
    margin-left: -16.666666% !important;
  }
  .lg\:ml--1\/5 {
    margin-left: -20% !important;
  }
  .lg\:ml--1\/4 {
    margin-left: -25% !important;
  }
  .lg\:ml--2\/7 {
    margin-left: -28.57142857% !important;
  }
  .lg\:ml--1\/3 {
    margin-left: -33.333333% !important;
  }
  .lg\:ml--2\/5 {
    margin-left: -40% !important;
  }
  .lg\:ml--1\/2 {
    margin-left: -50% !important;
  }
  .lg\:ml--1\/12 {
    margin-left: -8.333333% !important;
  }
  .lg\:ml--1\/10 {
    margin-left: -10% !important;
  }
  .lg\:ml--5\/12 {
    margin-left: -41.6666666% !important;
  }
  .lg\:ml--7\/12 {
    margin-left: -58.333333% !important;
  }
  .lg\:ml--3\/5 {
    margin-left: -60% !important;
  }
  .lg\:ml--11\/12 {
    margin-left: -91.6666666% !important;
  }
  .lg\:ml--2\/3 {
    margin-left: -66.666667% !important;
  }
  .lg\:ml--3\/4 {
    margin-left: -75% !important;
  }
  .lg\:ml--4\/5 {
    margin-left: -80% !important;
  }
  .lg\:ml--5\/6 {
    margin-left: -83.3333333% !important;
  }
  .lg\:ml--30 {
    margin-left: -28rem !important;
  }
  .lg\:ml--24 {
    margin-left: -22rem !important;
  }
  .lg\:ml--18 {
    margin-left: -16rem !important;
  }
  .lg\:ml--15 {
    margin-left: -13rem !important;
  }
  .lg\:ml--14 {
    margin-left: -12rem !important;
  }
  .lg\:ml--13 {
    margin-left: -11rem !important;
  }
  .lg\:ml--12 {
    margin-left: -10rem !important;
  }
  .lg\:ml--11 {
    margin-left: -9rem !important;
  }
  .lg\:ml--10 {
    margin-left: -8rem !important;
  }
  .lg\:ml--9 {
    margin-left: -7rem !important;
  }
  .lg\:ml--8 {
    margin-left: -6rem !important;
  }
  .lg\:ml--7 {
    margin-left: -5rem !important;
  }
  .lg\:ml--6 {
    margin-left: -4rem !important;
  }
  .lg\:ml--5 {
    margin-left: -3rem !important;
  }
  .lg\:ml--4-5 {
    margin-left: -2.5rem !important;
  }
  .lg\:ml--4 {
    margin-left: -2rem !important;
  }
  .lg\:ml--3-5 {
    margin-left: -1.5rem !important;
  }
  .lg\:ml--3 {
    margin-left: -1rem !important;
  }
  .lg\:ml--2-5 {
    margin-left: -0.75rem !important;
  }
  .lg\:ml--2 {
    margin-left: -0.5rem !important;
  }
  .lg\:ml--1 {
    margin-left: -0.25rem !important;
  }
  .lg\:ml--0-5 {
    margin-left: -0.125rem !important;
  }
  .lg\:ml-0 {
    margin-left: 0 !important;
  }
  .lg\:ml-0-25 {
    margin-left: 0.0625rem !important;
  }
  .lg\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .lg\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .lg\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .lg\:ml-2-5 {
    margin-left: 0.75rem !important;
  }
  .lg\:ml-3 {
    margin-left: 1rem !important;
  }
  .lg\:ml-3-5 {
    margin-left: 1.5rem !important;
  }
  .lg\:ml-4 {
    margin-left: 2rem !important;
  }
  .lg\:ml-4-5 {
    margin-left: 2.5rem !important;
  }
  .lg\:ml-5 {
    margin-left: 3rem !important;
  }
  .lg\:ml-6 {
    margin-left: 4rem !important;
  }
  .lg\:ml-6-5 {
    margin-left: 4.5rem !important;
  }
  .lg\:ml-7 {
    margin-left: 5rem !important;
  }
  .lg\:ml-8 {
    margin-left: 6rem !important;
  }
  .lg\:ml-9 {
    margin-left: 7rem !important;
  }
  .lg\:ml-10 {
    margin-left: 8rem !important;
  }
  .lg\:ml-11 {
    margin-left: 9rem !important;
  }
  .lg\:ml-12 {
    margin-left: 10rem !important;
  }
  .lg\:ml-13 {
    margin-left: 11rem !important;
  }
  .lg\:ml-14 {
    margin-left: 12rem !important;
  }
  .lg\:ml-15 {
    margin-left: 13rem !important;
  }
  .lg\:ml-30 {
    margin-left: 28rem !important;
  }
  .lg\:ml-1-em {
    margin-left: 0.25em !important;
  }
  .lg\:ml-1-5-em {
    margin-left: 0.375em !important;
  }
  .lg\:ml-2-em {
    margin-left: 0.5em !important;
  }
  .lg\:ml-2-25-em {
    margin-left: 0.625em !important;
  }
  .lg\:ml-2-5-em {
    margin-left: 0.75em !important;
  }
  .lg\:ml-3-em {
    margin-left: 1em !important;
  }
  .lg\:ml-4-em {
    margin-left: 2em !important;
  }
  .lg\:ml-5-em {
    margin-left: 3em !important;
  }
  .lg\:ml-6-em {
    margin-left: 4em !important;
  }
  .lg\:ml-7-em {
    margin-left: 5em !important;
  }
  .lg\:ml-8-em {
    margin-left: 6em !important;
  }
  .lg\:ml-9-em {
    margin-left: 7em !important;
  }
  .lg\:ml-1px {
    margin-left: 1px !important;
  }
  .lg\:ml--1px {
    margin-left: -1px !important;
  }
  .lg\:ml-1\/8 {
    margin-left: 12.5% !important;
  }
  .lg\:ml-1\/6 {
    margin-left: 16.666666% !important;
  }
  .lg\:ml-1\/5 {
    margin-left: 20% !important;
  }
  .lg\:ml-1\/4 {
    margin-left: 25% !important;
  }
  .lg\:ml-2\/7 {
    margin-left: 28.57142857% !important;
  }
  .lg\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }
  .lg\:ml-2\/5 {
    margin-left: 40% !important;
  }
  .lg\:ml-1\/2 {
    margin-left: 50% !important;
  }
  .lg\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }
  .lg\:ml-1\/10 {
    margin-left: 10% !important;
  }
  .lg\:ml-5\/12 {
    margin-left: 41.6666666% !important;
  }
  .lg\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }
  .lg\:ml-3\/5 {
    margin-left: 60% !important;
  }
  .lg\:ml-11\/12 {
    margin-left: 91.6666666% !important;
  }
  .lg\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }
  .lg\:ml-3\/4 {
    margin-left: 75% !important;
  }
  .lg\:ml-4\/5 {
    margin-left: 80% !important;
  }
  .lg\:ml-5\/6 {
    margin-left: 83.3333333% !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:m--1\/6 {
    margin: -16.666666% !important;
  }
  .xl\:m--1\/5 {
    margin: -20% !important;
  }
  .xl\:m--1\/4 {
    margin: -25% !important;
  }
  .xl\:m--2\/7 {
    margin: -28.57142857% !important;
  }
  .xl\:m--1\/3 {
    margin: -33.333333% !important;
  }
  .xl\:m--2\/5 {
    margin: -40% !important;
  }
  .xl\:m--1\/2 {
    margin: -50% !important;
  }
  .xl\:m--1\/12 {
    margin: -8.333333% !important;
  }
  .xl\:m--1\/10 {
    margin: -10% !important;
  }
  .xl\:m--5\/12 {
    margin: -41.6666666% !important;
  }
  .xl\:m--7\/12 {
    margin: -58.333333% !important;
  }
  .xl\:m--3\/5 {
    margin: -60% !important;
  }
  .xl\:m--11\/12 {
    margin: -91.6666666% !important;
  }
  .xl\:m--2\/3 {
    margin: -66.666667% !important;
  }
  .xl\:m--3\/4 {
    margin: -75% !important;
  }
  .xl\:m--4\/5 {
    margin: -80% !important;
  }
  .xl\:m--5\/6 {
    margin: -83.3333333% !important;
  }
  .xl\:m--30 {
    margin: -28rem !important;
  }
  .xl\:m--24 {
    margin: -22rem !important;
  }
  .xl\:m--18 {
    margin: -16rem !important;
  }
  .xl\:m--15 {
    margin: -13rem !important;
  }
  .xl\:m--14 {
    margin: -12rem !important;
  }
  .xl\:m--13 {
    margin: -11rem !important;
  }
  .xl\:m--12 {
    margin: -10rem !important;
  }
  .xl\:m--11 {
    margin: -9rem !important;
  }
  .xl\:m--10 {
    margin: -8rem !important;
  }
  .xl\:m--9 {
    margin: -7rem !important;
  }
  .xl\:m--8 {
    margin: -6rem !important;
  }
  .xl\:m--7 {
    margin: -5rem !important;
  }
  .xl\:m--6 {
    margin: -4rem !important;
  }
  .xl\:m--5 {
    margin: -3rem !important;
  }
  .xl\:m--4-5 {
    margin: -2.5rem !important;
  }
  .xl\:m--4 {
    margin: -2rem !important;
  }
  .xl\:m--3-5 {
    margin: -1.5rem !important;
  }
  .xl\:m--3 {
    margin: -1rem !important;
  }
  .xl\:m--2-5 {
    margin: -0.75rem !important;
  }
  .xl\:m--2 {
    margin: -0.5rem !important;
  }
  .xl\:m--1 {
    margin: -0.25rem !important;
  }
  .xl\:m--0-5 {
    margin: -0.125rem !important;
  }
  .xl\:m-0 {
    margin: 0 !important;
  }
  .xl\:m-0-25 {
    margin: 0.0625rem !important;
  }
  .xl\:m-0-5 {
    margin: 0.125rem !important;
  }
  .xl\:m-1 {
    margin: 0.25rem !important;
  }
  .xl\:m-2 {
    margin: 0.5rem !important;
  }
  .xl\:m-2-5 {
    margin: 0.75rem !important;
  }
  .xl\:m-3 {
    margin: 1rem !important;
  }
  .xl\:m-3-5 {
    margin: 1.5rem !important;
  }
  .xl\:m-4 {
    margin: 2rem !important;
  }
  .xl\:m-4-5 {
    margin: 2.5rem !important;
  }
  .xl\:m-5 {
    margin: 3rem !important;
  }
  .xl\:m-6 {
    margin: 4rem !important;
  }
  .xl\:m-6-5 {
    margin: 4.5rem !important;
  }
  .xl\:m-7 {
    margin: 5rem !important;
  }
  .xl\:m-8 {
    margin: 6rem !important;
  }
  .xl\:m-9 {
    margin: 7rem !important;
  }
  .xl\:m-10 {
    margin: 8rem !important;
  }
  .xl\:m-11 {
    margin: 9rem !important;
  }
  .xl\:m-12 {
    margin: 10rem !important;
  }
  .xl\:m-13 {
    margin: 11rem !important;
  }
  .xl\:m-14 {
    margin: 12rem !important;
  }
  .xl\:m-15 {
    margin: 13rem !important;
  }
  .xl\:m-30 {
    margin: 28rem !important;
  }
  .xl\:m-1-em {
    margin: 0.25em !important;
  }
  .xl\:m-1-5-em {
    margin: 0.375em !important;
  }
  .xl\:m-2-em {
    margin: 0.5em !important;
  }
  .xl\:m-2-25-em {
    margin: 0.625em !important;
  }
  .xl\:m-2-5-em {
    margin: 0.75em !important;
  }
  .xl\:m-3-em {
    margin: 1em !important;
  }
  .xl\:m-4-em {
    margin: 2em !important;
  }
  .xl\:m-5-em {
    margin: 3em !important;
  }
  .xl\:m-6-em {
    margin: 4em !important;
  }
  .xl\:m-7-em {
    margin: 5em !important;
  }
  .xl\:m-8-em {
    margin: 6em !important;
  }
  .xl\:m-9-em {
    margin: 7em !important;
  }
  .xl\:m-1px {
    margin: 1px !important;
  }
  .xl\:m--1px {
    margin: -1px !important;
  }
  .xl\:m-1\/8 {
    margin: 12.5% !important;
  }
  .xl\:m-1\/6 {
    margin: 16.666666% !important;
  }
  .xl\:m-1\/5 {
    margin: 20% !important;
  }
  .xl\:m-1\/4 {
    margin: 25% !important;
  }
  .xl\:m-2\/7 {
    margin: 28.57142857% !important;
  }
  .xl\:m-1\/3 {
    margin: 33.333333% !important;
  }
  .xl\:m-2\/5 {
    margin: 40% !important;
  }
  .xl\:m-1\/2 {
    margin: 50% !important;
  }
  .xl\:m-1\/12 {
    margin: 8.333333% !important;
  }
  .xl\:m-1\/10 {
    margin: 10% !important;
  }
  .xl\:m-5\/12 {
    margin: 41.6666666% !important;
  }
  .xl\:m-7\/12 {
    margin: 58.333333% !important;
  }
  .xl\:m-3\/5 {
    margin: 60% !important;
  }
  .xl\:m-11\/12 {
    margin: 91.6666666% !important;
  }
  .xl\:m-2\/3 {
    margin: 66.666667% !important;
  }
  .xl\:m-3\/4 {
    margin: 75% !important;
  }
  .xl\:m-4\/5 {
    margin: 80% !important;
  }
  .xl\:m-5\/6 {
    margin: 83.3333333% !important;
  }
  .xl\:mx--1\/6 {
    margin-left: -16.666666% !important;
    margin-right: -16.666666% !important;
  }
  .xl\:mx--1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }
  .xl\:mx--1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }
  .xl\:mx--2\/7 {
    margin-left: -28.57142857% !important;
    margin-right: -28.57142857% !important;
  }
  .xl\:mx--1\/3 {
    margin-left: -33.333333% !important;
    margin-right: -33.333333% !important;
  }
  .xl\:mx--2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }
  .xl\:mx--1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }
  .xl\:mx--1\/12 {
    margin-left: -8.333333% !important;
    margin-right: -8.333333% !important;
  }
  .xl\:mx--1\/10 {
    margin-left: -10% !important;
    margin-right: -10% !important;
  }
  .xl\:mx--5\/12 {
    margin-left: -41.6666666% !important;
    margin-right: -41.6666666% !important;
  }
  .xl\:mx--7\/12 {
    margin-left: -58.333333% !important;
    margin-right: -58.333333% !important;
  }
  .xl\:mx--3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }
  .xl\:mx--11\/12 {
    margin-left: -91.6666666% !important;
    margin-right: -91.6666666% !important;
  }
  .xl\:mx--2\/3 {
    margin-left: -66.666667% !important;
    margin-right: -66.666667% !important;
  }
  .xl\:mx--3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }
  .xl\:mx--4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }
  .xl\:mx--5\/6 {
    margin-left: -83.3333333% !important;
    margin-right: -83.3333333% !important;
  }
  .xl\:mx--30 {
    margin-left: -28rem !important;
    margin-right: -28rem !important;
  }
  .xl\:mx--24 {
    margin-left: -22rem !important;
    margin-right: -22rem !important;
  }
  .xl\:mx--18 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }
  .xl\:mx--15 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }
  .xl\:mx--14 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }
  .xl\:mx--13 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }
  .xl\:mx--12 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }
  .xl\:mx--11 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }
  .xl\:mx--10 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .xl\:mx--9 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }
  .xl\:mx--8 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .xl\:mx--7 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .xl\:mx--6 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .xl\:mx--5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .xl\:mx--4-5 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .xl\:mx--4 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .xl\:mx--3-5 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .xl\:mx--3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .xl\:mx--2-5 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .xl\:mx--2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xl\:mx--1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .xl\:mx--0-5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }
  .xl\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .xl\:mx-0-25 {
    margin-left: 0.0625rem !important;
    margin-right: 0.0625rem !important;
  }
  .xl\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .xl\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .xl\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xl\:mx-2-5 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .xl\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xl\:mx-3-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xl\:mx-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xl\:mx-4-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xl\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xl\:mx-6 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xl\:mx-6-5 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .xl\:mx-7 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xl\:mx-8 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xl\:mx-9 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .xl\:mx-10 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xl\:mx-11 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .xl\:mx-12 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .xl\:mx-13 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .xl\:mx-14 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .xl\:mx-15 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .xl\:mx-30 {
    margin-left: 28rem !important;
    margin-right: 28rem !important;
  }
  .xl\:mx-1-em {
    margin-left: 0.25em !important;
    margin-right: 0.25em !important;
  }
  .xl\:mx-1-5-em {
    margin-left: 0.375em !important;
    margin-right: 0.375em !important;
  }
  .xl\:mx-2-em {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .xl\:mx-2-25-em {
    margin-left: 0.625em !important;
    margin-right: 0.625em !important;
  }
  .xl\:mx-2-5-em {
    margin-left: 0.75em !important;
    margin-right: 0.75em !important;
  }
  .xl\:mx-3-em {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .xl\:mx-4-em {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .xl\:mx-5-em {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .xl\:mx-6-em {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .xl\:mx-7-em {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .xl\:mx-8-em {
    margin-left: 6em !important;
    margin-right: 6em !important;
  }
  .xl\:mx-9-em {
    margin-left: 7em !important;
    margin-right: 7em !important;
  }
  .xl\:mx-1px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .xl\:mx--1px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }
  .xl\:mx-1\/8 {
    margin-left: 12.5% !important;
    margin-right: 12.5% !important;
  }
  .xl\:mx-1\/6 {
    margin-left: 16.666666% !important;
    margin-right: 16.666666% !important;
  }
  .xl\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }
  .xl\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }
  .xl\:mx-2\/7 {
    margin-left: 28.57142857% !important;
    margin-right: 28.57142857% !important;
  }
  .xl\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }
  .xl\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }
  .xl\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }
  .xl\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }
  .xl\:mx-1\/10 {
    margin-left: 10% !important;
    margin-right: 10% !important;
  }
  .xl\:mx-5\/12 {
    margin-left: 41.6666666% !important;
    margin-right: 41.6666666% !important;
  }
  .xl\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }
  .xl\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }
  .xl\:mx-11\/12 {
    margin-left: 91.6666666% !important;
    margin-right: 91.6666666% !important;
  }
  .xl\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }
  .xl\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }
  .xl\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }
  .xl\:mx-5\/6 {
    margin-left: 83.3333333% !important;
    margin-right: 83.3333333% !important;
  }
  .xl\:my--1\/6 {
    margin-top: -16.666666% !important;
    margin-bottom: -16.666666% !important;
  }
  .xl\:my--1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }
  .xl\:my--1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }
  .xl\:my--2\/7 {
    margin-top: -28.57142857% !important;
    margin-bottom: -28.57142857% !important;
  }
  .xl\:my--1\/3 {
    margin-top: -33.333333% !important;
    margin-bottom: -33.333333% !important;
  }
  .xl\:my--2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }
  .xl\:my--1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }
  .xl\:my--1\/12 {
    margin-top: -8.333333% !important;
    margin-bottom: -8.333333% !important;
  }
  .xl\:my--1\/10 {
    margin-top: -10% !important;
    margin-bottom: -10% !important;
  }
  .xl\:my--5\/12 {
    margin-top: -41.6666666% !important;
    margin-bottom: -41.6666666% !important;
  }
  .xl\:my--7\/12 {
    margin-top: -58.333333% !important;
    margin-bottom: -58.333333% !important;
  }
  .xl\:my--3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }
  .xl\:my--11\/12 {
    margin-top: -91.6666666% !important;
    margin-bottom: -91.6666666% !important;
  }
  .xl\:my--2\/3 {
    margin-top: -66.666667% !important;
    margin-bottom: -66.666667% !important;
  }
  .xl\:my--3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }
  .xl\:my--4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }
  .xl\:my--5\/6 {
    margin-top: -83.3333333% !important;
    margin-bottom: -83.3333333% !important;
  }
  .xl\:my--30 {
    margin-top: -28rem !important;
    margin-bottom: -28rem !important;
  }
  .xl\:my--24 {
    margin-top: -22rem !important;
    margin-bottom: -22rem !important;
  }
  .xl\:my--18 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }
  .xl\:my--15 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .xl\:my--14 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .xl\:my--13 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }
  .xl\:my--12 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .xl\:my--11 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .xl\:my--10 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .xl\:my--9 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .xl\:my--8 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .xl\:my--7 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .xl\:my--6 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .xl\:my--5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .xl\:my--4-5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .xl\:my--4 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .xl\:my--3-5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .xl\:my--3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .xl\:my--2-5 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .xl\:my--2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .xl\:my--1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .xl\:my--0-5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }
  .xl\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .xl\:my-0-25 {
    margin-top: 0.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }
  .xl\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .xl\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .xl\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xl\:my-2-5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .xl\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xl\:my-3-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xl\:my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xl\:my-4-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xl\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xl\:my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xl\:my-6-5 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .xl\:my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xl\:my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xl\:my-9 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .xl\:my-10 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xl\:my-11 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .xl\:my-12 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .xl\:my-13 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .xl\:my-14 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .xl\:my-15 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .xl\:my-30 {
    margin-top: 28rem !important;
    margin-bottom: 28rem !important;
  }
  .xl\:my-1-em {
    margin-top: 0.25em !important;
    margin-bottom: 0.25em !important;
  }
  .xl\:my-1-5-em {
    margin-top: 0.375em !important;
    margin-bottom: 0.375em !important;
  }
  .xl\:my-2-em {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .xl\:my-2-25-em {
    margin-top: 0.625em !important;
    margin-bottom: 0.625em !important;
  }
  .xl\:my-2-5-em {
    margin-top: 0.75em !important;
    margin-bottom: 0.75em !important;
  }
  .xl\:my-3-em {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .xl\:my-4-em {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .xl\:my-5-em {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .xl\:my-6-em {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .xl\:my-7-em {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .xl\:my-8-em {
    margin-top: 6em !important;
    margin-bottom: 6em !important;
  }
  .xl\:my-9-em {
    margin-top: 7em !important;
    margin-bottom: 7em !important;
  }
  .xl\:my-1px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .xl\:my--1px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }
  .xl\:my-1\/8 {
    margin-top: 12.5% !important;
    margin-bottom: 12.5% !important;
  }
  .xl\:my-1\/6 {
    margin-top: 16.666666% !important;
    margin-bottom: 16.666666% !important;
  }
  .xl\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }
  .xl\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }
  .xl\:my-2\/7 {
    margin-top: 28.57142857% !important;
    margin-bottom: 28.57142857% !important;
  }
  .xl\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }
  .xl\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }
  .xl\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }
  .xl\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }
  .xl\:my-1\/10 {
    margin-top: 10% !important;
    margin-bottom: 10% !important;
  }
  .xl\:my-5\/12 {
    margin-top: 41.6666666% !important;
    margin-bottom: 41.6666666% !important;
  }
  .xl\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }
  .xl\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }
  .xl\:my-11\/12 {
    margin-top: 91.6666666% !important;
    margin-bottom: 91.6666666% !important;
  }
  .xl\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }
  .xl\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }
  .xl\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }
  .xl\:my-5\/6 {
    margin-top: 83.3333333% !important;
    margin-bottom: 83.3333333% !important;
  }
  .xl\:mt--1\/6 {
    margin-top: -16.666666% !important;
  }
  .xl\:mt--1\/5 {
    margin-top: -20% !important;
  }
  .xl\:mt--1\/4 {
    margin-top: -25% !important;
  }
  .xl\:mt--2\/7 {
    margin-top: -28.57142857% !important;
  }
  .xl\:mt--1\/3 {
    margin-top: -33.333333% !important;
  }
  .xl\:mt--2\/5 {
    margin-top: -40% !important;
  }
  .xl\:mt--1\/2 {
    margin-top: -50% !important;
  }
  .xl\:mt--1\/12 {
    margin-top: -8.333333% !important;
  }
  .xl\:mt--1\/10 {
    margin-top: -10% !important;
  }
  .xl\:mt--5\/12 {
    margin-top: -41.6666666% !important;
  }
  .xl\:mt--7\/12 {
    margin-top: -58.333333% !important;
  }
  .xl\:mt--3\/5 {
    margin-top: -60% !important;
  }
  .xl\:mt--11\/12 {
    margin-top: -91.6666666% !important;
  }
  .xl\:mt--2\/3 {
    margin-top: -66.666667% !important;
  }
  .xl\:mt--3\/4 {
    margin-top: -75% !important;
  }
  .xl\:mt--4\/5 {
    margin-top: -80% !important;
  }
  .xl\:mt--5\/6 {
    margin-top: -83.3333333% !important;
  }
  .xl\:mt--30 {
    margin-top: -28rem !important;
  }
  .xl\:mt--24 {
    margin-top: -22rem !important;
  }
  .xl\:mt--18 {
    margin-top: -16rem !important;
  }
  .xl\:mt--15 {
    margin-top: -13rem !important;
  }
  .xl\:mt--14 {
    margin-top: -12rem !important;
  }
  .xl\:mt--13 {
    margin-top: -11rem !important;
  }
  .xl\:mt--12 {
    margin-top: -10rem !important;
  }
  .xl\:mt--11 {
    margin-top: -9rem !important;
  }
  .xl\:mt--10 {
    margin-top: -8rem !important;
  }
  .xl\:mt--9 {
    margin-top: -7rem !important;
  }
  .xl\:mt--8 {
    margin-top: -6rem !important;
  }
  .xl\:mt--7 {
    margin-top: -5rem !important;
  }
  .xl\:mt--6 {
    margin-top: -4rem !important;
  }
  .xl\:mt--5 {
    margin-top: -3rem !important;
  }
  .xl\:mt--4-5 {
    margin-top: -2.5rem !important;
  }
  .xl\:mt--4 {
    margin-top: -2rem !important;
  }
  .xl\:mt--3-5 {
    margin-top: -1.5rem !important;
  }
  .xl\:mt--3 {
    margin-top: -1rem !important;
  }
  .xl\:mt--2-5 {
    margin-top: -0.75rem !important;
  }
  .xl\:mt--2 {
    margin-top: -0.5rem !important;
  }
  .xl\:mt--1 {
    margin-top: -0.25rem !important;
  }
  .xl\:mt--0-5 {
    margin-top: -0.125rem !important;
  }
  .xl\:mt-0 {
    margin-top: 0 !important;
  }
  .xl\:mt-0-25 {
    margin-top: 0.0625rem !important;
  }
  .xl\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .xl\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .xl\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .xl\:mt-2-5 {
    margin-top: 0.75rem !important;
  }
  .xl\:mt-3 {
    margin-top: 1rem !important;
  }
  .xl\:mt-3-5 {
    margin-top: 1.5rem !important;
  }
  .xl\:mt-4 {
    margin-top: 2rem !important;
  }
  .xl\:mt-4-5 {
    margin-top: 2.5rem !important;
  }
  .xl\:mt-5 {
    margin-top: 3rem !important;
  }
  .xl\:mt-6 {
    margin-top: 4rem !important;
  }
  .xl\:mt-6-5 {
    margin-top: 4.5rem !important;
  }
  .xl\:mt-7 {
    margin-top: 5rem !important;
  }
  .xl\:mt-8 {
    margin-top: 6rem !important;
  }
  .xl\:mt-9 {
    margin-top: 7rem !important;
  }
  .xl\:mt-10 {
    margin-top: 8rem !important;
  }
  .xl\:mt-11 {
    margin-top: 9rem !important;
  }
  .xl\:mt-12 {
    margin-top: 10rem !important;
  }
  .xl\:mt-13 {
    margin-top: 11rem !important;
  }
  .xl\:mt-14 {
    margin-top: 12rem !important;
  }
  .xl\:mt-15 {
    margin-top: 13rem !important;
  }
  .xl\:mt-30 {
    margin-top: 28rem !important;
  }
  .xl\:mt-1-em {
    margin-top: 0.25em !important;
  }
  .xl\:mt-1-5-em {
    margin-top: 0.375em !important;
  }
  .xl\:mt-2-em {
    margin-top: 0.5em !important;
  }
  .xl\:mt-2-25-em {
    margin-top: 0.625em !important;
  }
  .xl\:mt-2-5-em {
    margin-top: 0.75em !important;
  }
  .xl\:mt-3-em {
    margin-top: 1em !important;
  }
  .xl\:mt-4-em {
    margin-top: 2em !important;
  }
  .xl\:mt-5-em {
    margin-top: 3em !important;
  }
  .xl\:mt-6-em {
    margin-top: 4em !important;
  }
  .xl\:mt-7-em {
    margin-top: 5em !important;
  }
  .xl\:mt-8-em {
    margin-top: 6em !important;
  }
  .xl\:mt-9-em {
    margin-top: 7em !important;
  }
  .xl\:mt-1px {
    margin-top: 1px !important;
  }
  .xl\:mt--1px {
    margin-top: -1px !important;
  }
  .xl\:mt-1\/8 {
    margin-top: 12.5% !important;
  }
  .xl\:mt-1\/6 {
    margin-top: 16.666666% !important;
  }
  .xl\:mt-1\/5 {
    margin-top: 20% !important;
  }
  .xl\:mt-1\/4 {
    margin-top: 25% !important;
  }
  .xl\:mt-2\/7 {
    margin-top: 28.57142857% !important;
  }
  .xl\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }
  .xl\:mt-2\/5 {
    margin-top: 40% !important;
  }
  .xl\:mt-1\/2 {
    margin-top: 50% !important;
  }
  .xl\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }
  .xl\:mt-1\/10 {
    margin-top: 10% !important;
  }
  .xl\:mt-5\/12 {
    margin-top: 41.6666666% !important;
  }
  .xl\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }
  .xl\:mt-3\/5 {
    margin-top: 60% !important;
  }
  .xl\:mt-11\/12 {
    margin-top: 91.6666666% !important;
  }
  .xl\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }
  .xl\:mt-3\/4 {
    margin-top: 75% !important;
  }
  .xl\:mt-4\/5 {
    margin-top: 80% !important;
  }
  .xl\:mt-5\/6 {
    margin-top: 83.3333333% !important;
  }
  .xl\:mr--1\/6 {
    margin-right: -16.666666% !important;
  }
  .xl\:mr--1\/5 {
    margin-right: -20% !important;
  }
  .xl\:mr--1\/4 {
    margin-right: -25% !important;
  }
  .xl\:mr--2\/7 {
    margin-right: -28.57142857% !important;
  }
  .xl\:mr--1\/3 {
    margin-right: -33.333333% !important;
  }
  .xl\:mr--2\/5 {
    margin-right: -40% !important;
  }
  .xl\:mr--1\/2 {
    margin-right: -50% !important;
  }
  .xl\:mr--1\/12 {
    margin-right: -8.333333% !important;
  }
  .xl\:mr--1\/10 {
    margin-right: -10% !important;
  }
  .xl\:mr--5\/12 {
    margin-right: -41.6666666% !important;
  }
  .xl\:mr--7\/12 {
    margin-right: -58.333333% !important;
  }
  .xl\:mr--3\/5 {
    margin-right: -60% !important;
  }
  .xl\:mr--11\/12 {
    margin-right: -91.6666666% !important;
  }
  .xl\:mr--2\/3 {
    margin-right: -66.666667% !important;
  }
  .xl\:mr--3\/4 {
    margin-right: -75% !important;
  }
  .xl\:mr--4\/5 {
    margin-right: -80% !important;
  }
  .xl\:mr--5\/6 {
    margin-right: -83.3333333% !important;
  }
  .xl\:mr--30 {
    margin-right: -28rem !important;
  }
  .xl\:mr--24 {
    margin-right: -22rem !important;
  }
  .xl\:mr--18 {
    margin-right: -16rem !important;
  }
  .xl\:mr--15 {
    margin-right: -13rem !important;
  }
  .xl\:mr--14 {
    margin-right: -12rem !important;
  }
  .xl\:mr--13 {
    margin-right: -11rem !important;
  }
  .xl\:mr--12 {
    margin-right: -10rem !important;
  }
  .xl\:mr--11 {
    margin-right: -9rem !important;
  }
  .xl\:mr--10 {
    margin-right: -8rem !important;
  }
  .xl\:mr--9 {
    margin-right: -7rem !important;
  }
  .xl\:mr--8 {
    margin-right: -6rem !important;
  }
  .xl\:mr--7 {
    margin-right: -5rem !important;
  }
  .xl\:mr--6 {
    margin-right: -4rem !important;
  }
  .xl\:mr--5 {
    margin-right: -3rem !important;
  }
  .xl\:mr--4-5 {
    margin-right: -2.5rem !important;
  }
  .xl\:mr--4 {
    margin-right: -2rem !important;
  }
  .xl\:mr--3-5 {
    margin-right: -1.5rem !important;
  }
  .xl\:mr--3 {
    margin-right: -1rem !important;
  }
  .xl\:mr--2-5 {
    margin-right: -0.75rem !important;
  }
  .xl\:mr--2 {
    margin-right: -0.5rem !important;
  }
  .xl\:mr--1 {
    margin-right: -0.25rem !important;
  }
  .xl\:mr--0-5 {
    margin-right: -0.125rem !important;
  }
  .xl\:mr-0 {
    margin-right: 0 !important;
  }
  .xl\:mr-0-25 {
    margin-right: 0.0625rem !important;
  }
  .xl\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .xl\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .xl\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .xl\:mr-2-5 {
    margin-right: 0.75rem !important;
  }
  .xl\:mr-3 {
    margin-right: 1rem !important;
  }
  .xl\:mr-3-5 {
    margin-right: 1.5rem !important;
  }
  .xl\:mr-4 {
    margin-right: 2rem !important;
  }
  .xl\:mr-4-5 {
    margin-right: 2.5rem !important;
  }
  .xl\:mr-5 {
    margin-right: 3rem !important;
  }
  .xl\:mr-6 {
    margin-right: 4rem !important;
  }
  .xl\:mr-6-5 {
    margin-right: 4.5rem !important;
  }
  .xl\:mr-7 {
    margin-right: 5rem !important;
  }
  .xl\:mr-8 {
    margin-right: 6rem !important;
  }
  .xl\:mr-9 {
    margin-right: 7rem !important;
  }
  .xl\:mr-10 {
    margin-right: 8rem !important;
  }
  .xl\:mr-11 {
    margin-right: 9rem !important;
  }
  .xl\:mr-12 {
    margin-right: 10rem !important;
  }
  .xl\:mr-13 {
    margin-right: 11rem !important;
  }
  .xl\:mr-14 {
    margin-right: 12rem !important;
  }
  .xl\:mr-15 {
    margin-right: 13rem !important;
  }
  .xl\:mr-30 {
    margin-right: 28rem !important;
  }
  .xl\:mr-1-em {
    margin-right: 0.25em !important;
  }
  .xl\:mr-1-5-em {
    margin-right: 0.375em !important;
  }
  .xl\:mr-2-em {
    margin-right: 0.5em !important;
  }
  .xl\:mr-2-25-em {
    margin-right: 0.625em !important;
  }
  .xl\:mr-2-5-em {
    margin-right: 0.75em !important;
  }
  .xl\:mr-3-em {
    margin-right: 1em !important;
  }
  .xl\:mr-4-em {
    margin-right: 2em !important;
  }
  .xl\:mr-5-em {
    margin-right: 3em !important;
  }
  .xl\:mr-6-em {
    margin-right: 4em !important;
  }
  .xl\:mr-7-em {
    margin-right: 5em !important;
  }
  .xl\:mr-8-em {
    margin-right: 6em !important;
  }
  .xl\:mr-9-em {
    margin-right: 7em !important;
  }
  .xl\:mr-1px {
    margin-right: 1px !important;
  }
  .xl\:mr--1px {
    margin-right: -1px !important;
  }
  .xl\:mr-1\/8 {
    margin-right: 12.5% !important;
  }
  .xl\:mr-1\/6 {
    margin-right: 16.666666% !important;
  }
  .xl\:mr-1\/5 {
    margin-right: 20% !important;
  }
  .xl\:mr-1\/4 {
    margin-right: 25% !important;
  }
  .xl\:mr-2\/7 {
    margin-right: 28.57142857% !important;
  }
  .xl\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }
  .xl\:mr-2\/5 {
    margin-right: 40% !important;
  }
  .xl\:mr-1\/2 {
    margin-right: 50% !important;
  }
  .xl\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }
  .xl\:mr-1\/10 {
    margin-right: 10% !important;
  }
  .xl\:mr-5\/12 {
    margin-right: 41.6666666% !important;
  }
  .xl\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }
  .xl\:mr-3\/5 {
    margin-right: 60% !important;
  }
  .xl\:mr-11\/12 {
    margin-right: 91.6666666% !important;
  }
  .xl\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }
  .xl\:mr-3\/4 {
    margin-right: 75% !important;
  }
  .xl\:mr-4\/5 {
    margin-right: 80% !important;
  }
  .xl\:mr-5\/6 {
    margin-right: 83.3333333% !important;
  }
  .xl\:mb--1\/6 {
    margin-bottom: -16.666666% !important;
  }
  .xl\:mb--1\/5 {
    margin-bottom: -20% !important;
  }
  .xl\:mb--1\/4 {
    margin-bottom: -25% !important;
  }
  .xl\:mb--2\/7 {
    margin-bottom: -28.57142857% !important;
  }
  .xl\:mb--1\/3 {
    margin-bottom: -33.333333% !important;
  }
  .xl\:mb--2\/5 {
    margin-bottom: -40% !important;
  }
  .xl\:mb--1\/2 {
    margin-bottom: -50% !important;
  }
  .xl\:mb--1\/12 {
    margin-bottom: -8.333333% !important;
  }
  .xl\:mb--1\/10 {
    margin-bottom: -10% !important;
  }
  .xl\:mb--5\/12 {
    margin-bottom: -41.6666666% !important;
  }
  .xl\:mb--7\/12 {
    margin-bottom: -58.333333% !important;
  }
  .xl\:mb--3\/5 {
    margin-bottom: -60% !important;
  }
  .xl\:mb--11\/12 {
    margin-bottom: -91.6666666% !important;
  }
  .xl\:mb--2\/3 {
    margin-bottom: -66.666667% !important;
  }
  .xl\:mb--3\/4 {
    margin-bottom: -75% !important;
  }
  .xl\:mb--4\/5 {
    margin-bottom: -80% !important;
  }
  .xl\:mb--5\/6 {
    margin-bottom: -83.3333333% !important;
  }
  .xl\:mb--30 {
    margin-bottom: -28rem !important;
  }
  .xl\:mb--24 {
    margin-bottom: -22rem !important;
  }
  .xl\:mb--18 {
    margin-bottom: -16rem !important;
  }
  .xl\:mb--15 {
    margin-bottom: -13rem !important;
  }
  .xl\:mb--14 {
    margin-bottom: -12rem !important;
  }
  .xl\:mb--13 {
    margin-bottom: -11rem !important;
  }
  .xl\:mb--12 {
    margin-bottom: -10rem !important;
  }
  .xl\:mb--11 {
    margin-bottom: -9rem !important;
  }
  .xl\:mb--10 {
    margin-bottom: -8rem !important;
  }
  .xl\:mb--9 {
    margin-bottom: -7rem !important;
  }
  .xl\:mb--8 {
    margin-bottom: -6rem !important;
  }
  .xl\:mb--7 {
    margin-bottom: -5rem !important;
  }
  .xl\:mb--6 {
    margin-bottom: -4rem !important;
  }
  .xl\:mb--5 {
    margin-bottom: -3rem !important;
  }
  .xl\:mb--4-5 {
    margin-bottom: -2.5rem !important;
  }
  .xl\:mb--4 {
    margin-bottom: -2rem !important;
  }
  .xl\:mb--3-5 {
    margin-bottom: -1.5rem !important;
  }
  .xl\:mb--3 {
    margin-bottom: -1rem !important;
  }
  .xl\:mb--2-5 {
    margin-bottom: -0.75rem !important;
  }
  .xl\:mb--2 {
    margin-bottom: -0.5rem !important;
  }
  .xl\:mb--1 {
    margin-bottom: -0.25rem !important;
  }
  .xl\:mb--0-5 {
    margin-bottom: -0.125rem !important;
  }
  .xl\:mb-0 {
    margin-bottom: 0 !important;
  }
  .xl\:mb-0-25 {
    margin-bottom: 0.0625rem !important;
  }
  .xl\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .xl\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xl\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xl\:mb-2-5 {
    margin-bottom: 0.75rem !important;
  }
  .xl\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .xl\:mb-3-5 {
    margin-bottom: 1.5rem !important;
  }
  .xl\:mb-4 {
    margin-bottom: 2rem !important;
  }
  .xl\:mb-4-5 {
    margin-bottom: 2.5rem !important;
  }
  .xl\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .xl\:mb-6 {
    margin-bottom: 4rem !important;
  }
  .xl\:mb-6-5 {
    margin-bottom: 4.5rem !important;
  }
  .xl\:mb-7 {
    margin-bottom: 5rem !important;
  }
  .xl\:mb-8 {
    margin-bottom: 6rem !important;
  }
  .xl\:mb-9 {
    margin-bottom: 7rem !important;
  }
  .xl\:mb-10 {
    margin-bottom: 8rem !important;
  }
  .xl\:mb-11 {
    margin-bottom: 9rem !important;
  }
  .xl\:mb-12 {
    margin-bottom: 10rem !important;
  }
  .xl\:mb-13 {
    margin-bottom: 11rem !important;
  }
  .xl\:mb-14 {
    margin-bottom: 12rem !important;
  }
  .xl\:mb-15 {
    margin-bottom: 13rem !important;
  }
  .xl\:mb-30 {
    margin-bottom: 28rem !important;
  }
  .xl\:mb-1-em {
    margin-bottom: 0.25em !important;
  }
  .xl\:mb-1-5-em {
    margin-bottom: 0.375em !important;
  }
  .xl\:mb-2-em {
    margin-bottom: 0.5em !important;
  }
  .xl\:mb-2-25-em {
    margin-bottom: 0.625em !important;
  }
  .xl\:mb-2-5-em {
    margin-bottom: 0.75em !important;
  }
  .xl\:mb-3-em {
    margin-bottom: 1em !important;
  }
  .xl\:mb-4-em {
    margin-bottom: 2em !important;
  }
  .xl\:mb-5-em {
    margin-bottom: 3em !important;
  }
  .xl\:mb-6-em {
    margin-bottom: 4em !important;
  }
  .xl\:mb-7-em {
    margin-bottom: 5em !important;
  }
  .xl\:mb-8-em {
    margin-bottom: 6em !important;
  }
  .xl\:mb-9-em {
    margin-bottom: 7em !important;
  }
  .xl\:mb-1px {
    margin-bottom: 1px !important;
  }
  .xl\:mb--1px {
    margin-bottom: -1px !important;
  }
  .xl\:mb-1\/8 {
    margin-bottom: 12.5% !important;
  }
  .xl\:mb-1\/6 {
    margin-bottom: 16.666666% !important;
  }
  .xl\:mb-1\/5 {
    margin-bottom: 20% !important;
  }
  .xl\:mb-1\/4 {
    margin-bottom: 25% !important;
  }
  .xl\:mb-2\/7 {
    margin-bottom: 28.57142857% !important;
  }
  .xl\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }
  .xl\:mb-2\/5 {
    margin-bottom: 40% !important;
  }
  .xl\:mb-1\/2 {
    margin-bottom: 50% !important;
  }
  .xl\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }
  .xl\:mb-1\/10 {
    margin-bottom: 10% !important;
  }
  .xl\:mb-5\/12 {
    margin-bottom: 41.6666666% !important;
  }
  .xl\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }
  .xl\:mb-3\/5 {
    margin-bottom: 60% !important;
  }
  .xl\:mb-11\/12 {
    margin-bottom: 91.6666666% !important;
  }
  .xl\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }
  .xl\:mb-3\/4 {
    margin-bottom: 75% !important;
  }
  .xl\:mb-4\/5 {
    margin-bottom: 80% !important;
  }
  .xl\:mb-5\/6 {
    margin-bottom: 83.3333333% !important;
  }
  .xl\:ml--1\/6 {
    margin-left: -16.666666% !important;
  }
  .xl\:ml--1\/5 {
    margin-left: -20% !important;
  }
  .xl\:ml--1\/4 {
    margin-left: -25% !important;
  }
  .xl\:ml--2\/7 {
    margin-left: -28.57142857% !important;
  }
  .xl\:ml--1\/3 {
    margin-left: -33.333333% !important;
  }
  .xl\:ml--2\/5 {
    margin-left: -40% !important;
  }
  .xl\:ml--1\/2 {
    margin-left: -50% !important;
  }
  .xl\:ml--1\/12 {
    margin-left: -8.333333% !important;
  }
  .xl\:ml--1\/10 {
    margin-left: -10% !important;
  }
  .xl\:ml--5\/12 {
    margin-left: -41.6666666% !important;
  }
  .xl\:ml--7\/12 {
    margin-left: -58.333333% !important;
  }
  .xl\:ml--3\/5 {
    margin-left: -60% !important;
  }
  .xl\:ml--11\/12 {
    margin-left: -91.6666666% !important;
  }
  .xl\:ml--2\/3 {
    margin-left: -66.666667% !important;
  }
  .xl\:ml--3\/4 {
    margin-left: -75% !important;
  }
  .xl\:ml--4\/5 {
    margin-left: -80% !important;
  }
  .xl\:ml--5\/6 {
    margin-left: -83.3333333% !important;
  }
  .xl\:ml--30 {
    margin-left: -28rem !important;
  }
  .xl\:ml--24 {
    margin-left: -22rem !important;
  }
  .xl\:ml--18 {
    margin-left: -16rem !important;
  }
  .xl\:ml--15 {
    margin-left: -13rem !important;
  }
  .xl\:ml--14 {
    margin-left: -12rem !important;
  }
  .xl\:ml--13 {
    margin-left: -11rem !important;
  }
  .xl\:ml--12 {
    margin-left: -10rem !important;
  }
  .xl\:ml--11 {
    margin-left: -9rem !important;
  }
  .xl\:ml--10 {
    margin-left: -8rem !important;
  }
  .xl\:ml--9 {
    margin-left: -7rem !important;
  }
  .xl\:ml--8 {
    margin-left: -6rem !important;
  }
  .xl\:ml--7 {
    margin-left: -5rem !important;
  }
  .xl\:ml--6 {
    margin-left: -4rem !important;
  }
  .xl\:ml--5 {
    margin-left: -3rem !important;
  }
  .xl\:ml--4-5 {
    margin-left: -2.5rem !important;
  }
  .xl\:ml--4 {
    margin-left: -2rem !important;
  }
  .xl\:ml--3-5 {
    margin-left: -1.5rem !important;
  }
  .xl\:ml--3 {
    margin-left: -1rem !important;
  }
  .xl\:ml--2-5 {
    margin-left: -0.75rem !important;
  }
  .xl\:ml--2 {
    margin-left: -0.5rem !important;
  }
  .xl\:ml--1 {
    margin-left: -0.25rem !important;
  }
  .xl\:ml--0-5 {
    margin-left: -0.125rem !important;
  }
  .xl\:ml-0 {
    margin-left: 0 !important;
  }
  .xl\:ml-0-25 {
    margin-left: 0.0625rem !important;
  }
  .xl\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .xl\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .xl\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .xl\:ml-2-5 {
    margin-left: 0.75rem !important;
  }
  .xl\:ml-3 {
    margin-left: 1rem !important;
  }
  .xl\:ml-3-5 {
    margin-left: 1.5rem !important;
  }
  .xl\:ml-4 {
    margin-left: 2rem !important;
  }
  .xl\:ml-4-5 {
    margin-left: 2.5rem !important;
  }
  .xl\:ml-5 {
    margin-left: 3rem !important;
  }
  .xl\:ml-6 {
    margin-left: 4rem !important;
  }
  .xl\:ml-6-5 {
    margin-left: 4.5rem !important;
  }
  .xl\:ml-7 {
    margin-left: 5rem !important;
  }
  .xl\:ml-8 {
    margin-left: 6rem !important;
  }
  .xl\:ml-9 {
    margin-left: 7rem !important;
  }
  .xl\:ml-10 {
    margin-left: 8rem !important;
  }
  .xl\:ml-11 {
    margin-left: 9rem !important;
  }
  .xl\:ml-12 {
    margin-left: 10rem !important;
  }
  .xl\:ml-13 {
    margin-left: 11rem !important;
  }
  .xl\:ml-14 {
    margin-left: 12rem !important;
  }
  .xl\:ml-15 {
    margin-left: 13rem !important;
  }
  .xl\:ml-30 {
    margin-left: 28rem !important;
  }
  .xl\:ml-1-em {
    margin-left: 0.25em !important;
  }
  .xl\:ml-1-5-em {
    margin-left: 0.375em !important;
  }
  .xl\:ml-2-em {
    margin-left: 0.5em !important;
  }
  .xl\:ml-2-25-em {
    margin-left: 0.625em !important;
  }
  .xl\:ml-2-5-em {
    margin-left: 0.75em !important;
  }
  .xl\:ml-3-em {
    margin-left: 1em !important;
  }
  .xl\:ml-4-em {
    margin-left: 2em !important;
  }
  .xl\:ml-5-em {
    margin-left: 3em !important;
  }
  .xl\:ml-6-em {
    margin-left: 4em !important;
  }
  .xl\:ml-7-em {
    margin-left: 5em !important;
  }
  .xl\:ml-8-em {
    margin-left: 6em !important;
  }
  .xl\:ml-9-em {
    margin-left: 7em !important;
  }
  .xl\:ml-1px {
    margin-left: 1px !important;
  }
  .xl\:ml--1px {
    margin-left: -1px !important;
  }
  .xl\:ml-1\/8 {
    margin-left: 12.5% !important;
  }
  .xl\:ml-1\/6 {
    margin-left: 16.666666% !important;
  }
  .xl\:ml-1\/5 {
    margin-left: 20% !important;
  }
  .xl\:ml-1\/4 {
    margin-left: 25% !important;
  }
  .xl\:ml-2\/7 {
    margin-left: 28.57142857% !important;
  }
  .xl\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }
  .xl\:ml-2\/5 {
    margin-left: 40% !important;
  }
  .xl\:ml-1\/2 {
    margin-left: 50% !important;
  }
  .xl\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }
  .xl\:ml-1\/10 {
    margin-left: 10% !important;
  }
  .xl\:ml-5\/12 {
    margin-left: 41.6666666% !important;
  }
  .xl\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }
  .xl\:ml-3\/5 {
    margin-left: 60% !important;
  }
  .xl\:ml-11\/12 {
    margin-left: 91.6666666% !important;
  }
  .xl\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }
  .xl\:ml-3\/4 {
    margin-left: 75% !important;
  }
  .xl\:ml-4\/5 {
    margin-left: 80% !important;
  }
  .xl\:ml-5\/6 {
    margin-left: 83.3333333% !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:m--1\/6 {
    margin: -16.666666% !important;
  }
  .xxl\:m--1\/5 {
    margin: -20% !important;
  }
  .xxl\:m--1\/4 {
    margin: -25% !important;
  }
  .xxl\:m--2\/7 {
    margin: -28.57142857% !important;
  }
  .xxl\:m--1\/3 {
    margin: -33.333333% !important;
  }
  .xxl\:m--2\/5 {
    margin: -40% !important;
  }
  .xxl\:m--1\/2 {
    margin: -50% !important;
  }
  .xxl\:m--1\/12 {
    margin: -8.333333% !important;
  }
  .xxl\:m--1\/10 {
    margin: -10% !important;
  }
  .xxl\:m--5\/12 {
    margin: -41.6666666% !important;
  }
  .xxl\:m--7\/12 {
    margin: -58.333333% !important;
  }
  .xxl\:m--3\/5 {
    margin: -60% !important;
  }
  .xxl\:m--11\/12 {
    margin: -91.6666666% !important;
  }
  .xxl\:m--2\/3 {
    margin: -66.666667% !important;
  }
  .xxl\:m--3\/4 {
    margin: -75% !important;
  }
  .xxl\:m--4\/5 {
    margin: -80% !important;
  }
  .xxl\:m--5\/6 {
    margin: -83.3333333% !important;
  }
  .xxl\:m--30 {
    margin: -28rem !important;
  }
  .xxl\:m--24 {
    margin: -22rem !important;
  }
  .xxl\:m--18 {
    margin: -16rem !important;
  }
  .xxl\:m--15 {
    margin: -13rem !important;
  }
  .xxl\:m--14 {
    margin: -12rem !important;
  }
  .xxl\:m--13 {
    margin: -11rem !important;
  }
  .xxl\:m--12 {
    margin: -10rem !important;
  }
  .xxl\:m--11 {
    margin: -9rem !important;
  }
  .xxl\:m--10 {
    margin: -8rem !important;
  }
  .xxl\:m--9 {
    margin: -7rem !important;
  }
  .xxl\:m--8 {
    margin: -6rem !important;
  }
  .xxl\:m--7 {
    margin: -5rem !important;
  }
  .xxl\:m--6 {
    margin: -4rem !important;
  }
  .xxl\:m--5 {
    margin: -3rem !important;
  }
  .xxl\:m--4-5 {
    margin: -2.5rem !important;
  }
  .xxl\:m--4 {
    margin: -2rem !important;
  }
  .xxl\:m--3-5 {
    margin: -1.5rem !important;
  }
  .xxl\:m--3 {
    margin: -1rem !important;
  }
  .xxl\:m--2-5 {
    margin: -0.75rem !important;
  }
  .xxl\:m--2 {
    margin: -0.5rem !important;
  }
  .xxl\:m--1 {
    margin: -0.25rem !important;
  }
  .xxl\:m--0-5 {
    margin: -0.125rem !important;
  }
  .xxl\:m-0 {
    margin: 0 !important;
  }
  .xxl\:m-0-25 {
    margin: 0.0625rem !important;
  }
  .xxl\:m-0-5 {
    margin: 0.125rem !important;
  }
  .xxl\:m-1 {
    margin: 0.25rem !important;
  }
  .xxl\:m-2 {
    margin: 0.5rem !important;
  }
  .xxl\:m-2-5 {
    margin: 0.75rem !important;
  }
  .xxl\:m-3 {
    margin: 1rem !important;
  }
  .xxl\:m-3-5 {
    margin: 1.5rem !important;
  }
  .xxl\:m-4 {
    margin: 2rem !important;
  }
  .xxl\:m-4-5 {
    margin: 2.5rem !important;
  }
  .xxl\:m-5 {
    margin: 3rem !important;
  }
  .xxl\:m-6 {
    margin: 4rem !important;
  }
  .xxl\:m-6-5 {
    margin: 4.5rem !important;
  }
  .xxl\:m-7 {
    margin: 5rem !important;
  }
  .xxl\:m-8 {
    margin: 6rem !important;
  }
  .xxl\:m-9 {
    margin: 7rem !important;
  }
  .xxl\:m-10 {
    margin: 8rem !important;
  }
  .xxl\:m-11 {
    margin: 9rem !important;
  }
  .xxl\:m-12 {
    margin: 10rem !important;
  }
  .xxl\:m-13 {
    margin: 11rem !important;
  }
  .xxl\:m-14 {
    margin: 12rem !important;
  }
  .xxl\:m-15 {
    margin: 13rem !important;
  }
  .xxl\:m-30 {
    margin: 28rem !important;
  }
  .xxl\:m-1-em {
    margin: 0.25em !important;
  }
  .xxl\:m-1-5-em {
    margin: 0.375em !important;
  }
  .xxl\:m-2-em {
    margin: 0.5em !important;
  }
  .xxl\:m-2-25-em {
    margin: 0.625em !important;
  }
  .xxl\:m-2-5-em {
    margin: 0.75em !important;
  }
  .xxl\:m-3-em {
    margin: 1em !important;
  }
  .xxl\:m-4-em {
    margin: 2em !important;
  }
  .xxl\:m-5-em {
    margin: 3em !important;
  }
  .xxl\:m-6-em {
    margin: 4em !important;
  }
  .xxl\:m-7-em {
    margin: 5em !important;
  }
  .xxl\:m-8-em {
    margin: 6em !important;
  }
  .xxl\:m-9-em {
    margin: 7em !important;
  }
  .xxl\:m-1px {
    margin: 1px !important;
  }
  .xxl\:m--1px {
    margin: -1px !important;
  }
  .xxl\:m-1\/8 {
    margin: 12.5% !important;
  }
  .xxl\:m-1\/6 {
    margin: 16.666666% !important;
  }
  .xxl\:m-1\/5 {
    margin: 20% !important;
  }
  .xxl\:m-1\/4 {
    margin: 25% !important;
  }
  .xxl\:m-2\/7 {
    margin: 28.57142857% !important;
  }
  .xxl\:m-1\/3 {
    margin: 33.333333% !important;
  }
  .xxl\:m-2\/5 {
    margin: 40% !important;
  }
  .xxl\:m-1\/2 {
    margin: 50% !important;
  }
  .xxl\:m-1\/12 {
    margin: 8.333333% !important;
  }
  .xxl\:m-1\/10 {
    margin: 10% !important;
  }
  .xxl\:m-5\/12 {
    margin: 41.6666666% !important;
  }
  .xxl\:m-7\/12 {
    margin: 58.333333% !important;
  }
  .xxl\:m-3\/5 {
    margin: 60% !important;
  }
  .xxl\:m-11\/12 {
    margin: 91.6666666% !important;
  }
  .xxl\:m-2\/3 {
    margin: 66.666667% !important;
  }
  .xxl\:m-3\/4 {
    margin: 75% !important;
  }
  .xxl\:m-4\/5 {
    margin: 80% !important;
  }
  .xxl\:m-5\/6 {
    margin: 83.3333333% !important;
  }
  .xxl\:mx--1\/6 {
    margin-left: -16.666666% !important;
    margin-right: -16.666666% !important;
  }
  .xxl\:mx--1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }
  .xxl\:mx--1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }
  .xxl\:mx--2\/7 {
    margin-left: -28.57142857% !important;
    margin-right: -28.57142857% !important;
  }
  .xxl\:mx--1\/3 {
    margin-left: -33.333333% !important;
    margin-right: -33.333333% !important;
  }
  .xxl\:mx--2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }
  .xxl\:mx--1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }
  .xxl\:mx--1\/12 {
    margin-left: -8.333333% !important;
    margin-right: -8.333333% !important;
  }
  .xxl\:mx--1\/10 {
    margin-left: -10% !important;
    margin-right: -10% !important;
  }
  .xxl\:mx--5\/12 {
    margin-left: -41.6666666% !important;
    margin-right: -41.6666666% !important;
  }
  .xxl\:mx--7\/12 {
    margin-left: -58.333333% !important;
    margin-right: -58.333333% !important;
  }
  .xxl\:mx--3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }
  .xxl\:mx--11\/12 {
    margin-left: -91.6666666% !important;
    margin-right: -91.6666666% !important;
  }
  .xxl\:mx--2\/3 {
    margin-left: -66.666667% !important;
    margin-right: -66.666667% !important;
  }
  .xxl\:mx--3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }
  .xxl\:mx--4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }
  .xxl\:mx--5\/6 {
    margin-left: -83.3333333% !important;
    margin-right: -83.3333333% !important;
  }
  .xxl\:mx--30 {
    margin-left: -28rem !important;
    margin-right: -28rem !important;
  }
  .xxl\:mx--24 {
    margin-left: -22rem !important;
    margin-right: -22rem !important;
  }
  .xxl\:mx--18 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }
  .xxl\:mx--15 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }
  .xxl\:mx--14 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }
  .xxl\:mx--13 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }
  .xxl\:mx--12 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }
  .xxl\:mx--11 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }
  .xxl\:mx--10 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .xxl\:mx--9 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }
  .xxl\:mx--8 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .xxl\:mx--7 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .xxl\:mx--6 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .xxl\:mx--5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .xxl\:mx--4-5 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .xxl\:mx--4 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .xxl\:mx--3-5 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .xxl\:mx--3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .xxl\:mx--2-5 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .xxl\:mx--2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xxl\:mx--1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .xxl\:mx--0-5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }
  .xxl\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .xxl\:mx-0-25 {
    margin-left: 0.0625rem !important;
    margin-right: 0.0625rem !important;
  }
  .xxl\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .xxl\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .xxl\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .xxl\:mx-2-5 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .xxl\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .xxl\:mx-3-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .xxl\:mx-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .xxl\:mx-4-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .xxl\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .xxl\:mx-6 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .xxl\:mx-6-5 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .xxl\:mx-7 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .xxl\:mx-8 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .xxl\:mx-9 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .xxl\:mx-10 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .xxl\:mx-11 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .xxl\:mx-12 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .xxl\:mx-13 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .xxl\:mx-14 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .xxl\:mx-15 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .xxl\:mx-30 {
    margin-left: 28rem !important;
    margin-right: 28rem !important;
  }
  .xxl\:mx-1-em {
    margin-left: 0.25em !important;
    margin-right: 0.25em !important;
  }
  .xxl\:mx-1-5-em {
    margin-left: 0.375em !important;
    margin-right: 0.375em !important;
  }
  .xxl\:mx-2-em {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .xxl\:mx-2-25-em {
    margin-left: 0.625em !important;
    margin-right: 0.625em !important;
  }
  .xxl\:mx-2-5-em {
    margin-left: 0.75em !important;
    margin-right: 0.75em !important;
  }
  .xxl\:mx-3-em {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .xxl\:mx-4-em {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .xxl\:mx-5-em {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .xxl\:mx-6-em {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .xxl\:mx-7-em {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .xxl\:mx-8-em {
    margin-left: 6em !important;
    margin-right: 6em !important;
  }
  .xxl\:mx-9-em {
    margin-left: 7em !important;
    margin-right: 7em !important;
  }
  .xxl\:mx-1px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .xxl\:mx--1px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }
  .xxl\:mx-1\/8 {
    margin-left: 12.5% !important;
    margin-right: 12.5% !important;
  }
  .xxl\:mx-1\/6 {
    margin-left: 16.666666% !important;
    margin-right: 16.666666% !important;
  }
  .xxl\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }
  .xxl\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }
  .xxl\:mx-2\/7 {
    margin-left: 28.57142857% !important;
    margin-right: 28.57142857% !important;
  }
  .xxl\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }
  .xxl\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }
  .xxl\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }
  .xxl\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }
  .xxl\:mx-1\/10 {
    margin-left: 10% !important;
    margin-right: 10% !important;
  }
  .xxl\:mx-5\/12 {
    margin-left: 41.6666666% !important;
    margin-right: 41.6666666% !important;
  }
  .xxl\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }
  .xxl\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }
  .xxl\:mx-11\/12 {
    margin-left: 91.6666666% !important;
    margin-right: 91.6666666% !important;
  }
  .xxl\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }
  .xxl\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }
  .xxl\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }
  .xxl\:mx-5\/6 {
    margin-left: 83.3333333% !important;
    margin-right: 83.3333333% !important;
  }
  .xxl\:my--1\/6 {
    margin-top: -16.666666% !important;
    margin-bottom: -16.666666% !important;
  }
  .xxl\:my--1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }
  .xxl\:my--1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }
  .xxl\:my--2\/7 {
    margin-top: -28.57142857% !important;
    margin-bottom: -28.57142857% !important;
  }
  .xxl\:my--1\/3 {
    margin-top: -33.333333% !important;
    margin-bottom: -33.333333% !important;
  }
  .xxl\:my--2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }
  .xxl\:my--1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }
  .xxl\:my--1\/12 {
    margin-top: -8.333333% !important;
    margin-bottom: -8.333333% !important;
  }
  .xxl\:my--1\/10 {
    margin-top: -10% !important;
    margin-bottom: -10% !important;
  }
  .xxl\:my--5\/12 {
    margin-top: -41.6666666% !important;
    margin-bottom: -41.6666666% !important;
  }
  .xxl\:my--7\/12 {
    margin-top: -58.333333% !important;
    margin-bottom: -58.333333% !important;
  }
  .xxl\:my--3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }
  .xxl\:my--11\/12 {
    margin-top: -91.6666666% !important;
    margin-bottom: -91.6666666% !important;
  }
  .xxl\:my--2\/3 {
    margin-top: -66.666667% !important;
    margin-bottom: -66.666667% !important;
  }
  .xxl\:my--3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }
  .xxl\:my--4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }
  .xxl\:my--5\/6 {
    margin-top: -83.3333333% !important;
    margin-bottom: -83.3333333% !important;
  }
  .xxl\:my--30 {
    margin-top: -28rem !important;
    margin-bottom: -28rem !important;
  }
  .xxl\:my--24 {
    margin-top: -22rem !important;
    margin-bottom: -22rem !important;
  }
  .xxl\:my--18 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }
  .xxl\:my--15 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .xxl\:my--14 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .xxl\:my--13 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }
  .xxl\:my--12 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .xxl\:my--11 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .xxl\:my--10 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .xxl\:my--9 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .xxl\:my--8 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .xxl\:my--7 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .xxl\:my--6 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .xxl\:my--5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .xxl\:my--4-5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .xxl\:my--4 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .xxl\:my--3-5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .xxl\:my--3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .xxl\:my--2-5 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .xxl\:my--2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .xxl\:my--1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .xxl\:my--0-5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }
  .xxl\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .xxl\:my-0-25 {
    margin-top: 0.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }
  .xxl\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .xxl\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .xxl\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .xxl\:my-2-5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .xxl\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .xxl\:my-3-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .xxl\:my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .xxl\:my-4-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .xxl\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .xxl\:my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .xxl\:my-6-5 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .xxl\:my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .xxl\:my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .xxl\:my-9 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .xxl\:my-10 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .xxl\:my-11 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .xxl\:my-12 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .xxl\:my-13 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .xxl\:my-14 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .xxl\:my-15 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .xxl\:my-30 {
    margin-top: 28rem !important;
    margin-bottom: 28rem !important;
  }
  .xxl\:my-1-em {
    margin-top: 0.25em !important;
    margin-bottom: 0.25em !important;
  }
  .xxl\:my-1-5-em {
    margin-top: 0.375em !important;
    margin-bottom: 0.375em !important;
  }
  .xxl\:my-2-em {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .xxl\:my-2-25-em {
    margin-top: 0.625em !important;
    margin-bottom: 0.625em !important;
  }
  .xxl\:my-2-5-em {
    margin-top: 0.75em !important;
    margin-bottom: 0.75em !important;
  }
  .xxl\:my-3-em {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .xxl\:my-4-em {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .xxl\:my-5-em {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .xxl\:my-6-em {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .xxl\:my-7-em {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .xxl\:my-8-em {
    margin-top: 6em !important;
    margin-bottom: 6em !important;
  }
  .xxl\:my-9-em {
    margin-top: 7em !important;
    margin-bottom: 7em !important;
  }
  .xxl\:my-1px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .xxl\:my--1px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }
  .xxl\:my-1\/8 {
    margin-top: 12.5% !important;
    margin-bottom: 12.5% !important;
  }
  .xxl\:my-1\/6 {
    margin-top: 16.666666% !important;
    margin-bottom: 16.666666% !important;
  }
  .xxl\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }
  .xxl\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }
  .xxl\:my-2\/7 {
    margin-top: 28.57142857% !important;
    margin-bottom: 28.57142857% !important;
  }
  .xxl\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }
  .xxl\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }
  .xxl\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }
  .xxl\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }
  .xxl\:my-1\/10 {
    margin-top: 10% !important;
    margin-bottom: 10% !important;
  }
  .xxl\:my-5\/12 {
    margin-top: 41.6666666% !important;
    margin-bottom: 41.6666666% !important;
  }
  .xxl\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }
  .xxl\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }
  .xxl\:my-11\/12 {
    margin-top: 91.6666666% !important;
    margin-bottom: 91.6666666% !important;
  }
  .xxl\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }
  .xxl\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }
  .xxl\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }
  .xxl\:my-5\/6 {
    margin-top: 83.3333333% !important;
    margin-bottom: 83.3333333% !important;
  }
  .xxl\:mt--1\/6 {
    margin-top: -16.666666% !important;
  }
  .xxl\:mt--1\/5 {
    margin-top: -20% !important;
  }
  .xxl\:mt--1\/4 {
    margin-top: -25% !important;
  }
  .xxl\:mt--2\/7 {
    margin-top: -28.57142857% !important;
  }
  .xxl\:mt--1\/3 {
    margin-top: -33.333333% !important;
  }
  .xxl\:mt--2\/5 {
    margin-top: -40% !important;
  }
  .xxl\:mt--1\/2 {
    margin-top: -50% !important;
  }
  .xxl\:mt--1\/12 {
    margin-top: -8.333333% !important;
  }
  .xxl\:mt--1\/10 {
    margin-top: -10% !important;
  }
  .xxl\:mt--5\/12 {
    margin-top: -41.6666666% !important;
  }
  .xxl\:mt--7\/12 {
    margin-top: -58.333333% !important;
  }
  .xxl\:mt--3\/5 {
    margin-top: -60% !important;
  }
  .xxl\:mt--11\/12 {
    margin-top: -91.6666666% !important;
  }
  .xxl\:mt--2\/3 {
    margin-top: -66.666667% !important;
  }
  .xxl\:mt--3\/4 {
    margin-top: -75% !important;
  }
  .xxl\:mt--4\/5 {
    margin-top: -80% !important;
  }
  .xxl\:mt--5\/6 {
    margin-top: -83.3333333% !important;
  }
  .xxl\:mt--30 {
    margin-top: -28rem !important;
  }
  .xxl\:mt--24 {
    margin-top: -22rem !important;
  }
  .xxl\:mt--18 {
    margin-top: -16rem !important;
  }
  .xxl\:mt--15 {
    margin-top: -13rem !important;
  }
  .xxl\:mt--14 {
    margin-top: -12rem !important;
  }
  .xxl\:mt--13 {
    margin-top: -11rem !important;
  }
  .xxl\:mt--12 {
    margin-top: -10rem !important;
  }
  .xxl\:mt--11 {
    margin-top: -9rem !important;
  }
  .xxl\:mt--10 {
    margin-top: -8rem !important;
  }
  .xxl\:mt--9 {
    margin-top: -7rem !important;
  }
  .xxl\:mt--8 {
    margin-top: -6rem !important;
  }
  .xxl\:mt--7 {
    margin-top: -5rem !important;
  }
  .xxl\:mt--6 {
    margin-top: -4rem !important;
  }
  .xxl\:mt--5 {
    margin-top: -3rem !important;
  }
  .xxl\:mt--4-5 {
    margin-top: -2.5rem !important;
  }
  .xxl\:mt--4 {
    margin-top: -2rem !important;
  }
  .xxl\:mt--3-5 {
    margin-top: -1.5rem !important;
  }
  .xxl\:mt--3 {
    margin-top: -1rem !important;
  }
  .xxl\:mt--2-5 {
    margin-top: -0.75rem !important;
  }
  .xxl\:mt--2 {
    margin-top: -0.5rem !important;
  }
  .xxl\:mt--1 {
    margin-top: -0.25rem !important;
  }
  .xxl\:mt--0-5 {
    margin-top: -0.125rem !important;
  }
  .xxl\:mt-0 {
    margin-top: 0 !important;
  }
  .xxl\:mt-0-25 {
    margin-top: 0.0625rem !important;
  }
  .xxl\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .xxl\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .xxl\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .xxl\:mt-2-5 {
    margin-top: 0.75rem !important;
  }
  .xxl\:mt-3 {
    margin-top: 1rem !important;
  }
  .xxl\:mt-3-5 {
    margin-top: 1.5rem !important;
  }
  .xxl\:mt-4 {
    margin-top: 2rem !important;
  }
  .xxl\:mt-4-5 {
    margin-top: 2.5rem !important;
  }
  .xxl\:mt-5 {
    margin-top: 3rem !important;
  }
  .xxl\:mt-6 {
    margin-top: 4rem !important;
  }
  .xxl\:mt-6-5 {
    margin-top: 4.5rem !important;
  }
  .xxl\:mt-7 {
    margin-top: 5rem !important;
  }
  .xxl\:mt-8 {
    margin-top: 6rem !important;
  }
  .xxl\:mt-9 {
    margin-top: 7rem !important;
  }
  .xxl\:mt-10 {
    margin-top: 8rem !important;
  }
  .xxl\:mt-11 {
    margin-top: 9rem !important;
  }
  .xxl\:mt-12 {
    margin-top: 10rem !important;
  }
  .xxl\:mt-13 {
    margin-top: 11rem !important;
  }
  .xxl\:mt-14 {
    margin-top: 12rem !important;
  }
  .xxl\:mt-15 {
    margin-top: 13rem !important;
  }
  .xxl\:mt-30 {
    margin-top: 28rem !important;
  }
  .xxl\:mt-1-em {
    margin-top: 0.25em !important;
  }
  .xxl\:mt-1-5-em {
    margin-top: 0.375em !important;
  }
  .xxl\:mt-2-em {
    margin-top: 0.5em !important;
  }
  .xxl\:mt-2-25-em {
    margin-top: 0.625em !important;
  }
  .xxl\:mt-2-5-em {
    margin-top: 0.75em !important;
  }
  .xxl\:mt-3-em {
    margin-top: 1em !important;
  }
  .xxl\:mt-4-em {
    margin-top: 2em !important;
  }
  .xxl\:mt-5-em {
    margin-top: 3em !important;
  }
  .xxl\:mt-6-em {
    margin-top: 4em !important;
  }
  .xxl\:mt-7-em {
    margin-top: 5em !important;
  }
  .xxl\:mt-8-em {
    margin-top: 6em !important;
  }
  .xxl\:mt-9-em {
    margin-top: 7em !important;
  }
  .xxl\:mt-1px {
    margin-top: 1px !important;
  }
  .xxl\:mt--1px {
    margin-top: -1px !important;
  }
  .xxl\:mt-1\/8 {
    margin-top: 12.5% !important;
  }
  .xxl\:mt-1\/6 {
    margin-top: 16.666666% !important;
  }
  .xxl\:mt-1\/5 {
    margin-top: 20% !important;
  }
  .xxl\:mt-1\/4 {
    margin-top: 25% !important;
  }
  .xxl\:mt-2\/7 {
    margin-top: 28.57142857% !important;
  }
  .xxl\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }
  .xxl\:mt-2\/5 {
    margin-top: 40% !important;
  }
  .xxl\:mt-1\/2 {
    margin-top: 50% !important;
  }
  .xxl\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }
  .xxl\:mt-1\/10 {
    margin-top: 10% !important;
  }
  .xxl\:mt-5\/12 {
    margin-top: 41.6666666% !important;
  }
  .xxl\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }
  .xxl\:mt-3\/5 {
    margin-top: 60% !important;
  }
  .xxl\:mt-11\/12 {
    margin-top: 91.6666666% !important;
  }
  .xxl\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }
  .xxl\:mt-3\/4 {
    margin-top: 75% !important;
  }
  .xxl\:mt-4\/5 {
    margin-top: 80% !important;
  }
  .xxl\:mt-5\/6 {
    margin-top: 83.3333333% !important;
  }
  .xxl\:mr--1\/6 {
    margin-right: -16.666666% !important;
  }
  .xxl\:mr--1\/5 {
    margin-right: -20% !important;
  }
  .xxl\:mr--1\/4 {
    margin-right: -25% !important;
  }
  .xxl\:mr--2\/7 {
    margin-right: -28.57142857% !important;
  }
  .xxl\:mr--1\/3 {
    margin-right: -33.333333% !important;
  }
  .xxl\:mr--2\/5 {
    margin-right: -40% !important;
  }
  .xxl\:mr--1\/2 {
    margin-right: -50% !important;
  }
  .xxl\:mr--1\/12 {
    margin-right: -8.333333% !important;
  }
  .xxl\:mr--1\/10 {
    margin-right: -10% !important;
  }
  .xxl\:mr--5\/12 {
    margin-right: -41.6666666% !important;
  }
  .xxl\:mr--7\/12 {
    margin-right: -58.333333% !important;
  }
  .xxl\:mr--3\/5 {
    margin-right: -60% !important;
  }
  .xxl\:mr--11\/12 {
    margin-right: -91.6666666% !important;
  }
  .xxl\:mr--2\/3 {
    margin-right: -66.666667% !important;
  }
  .xxl\:mr--3\/4 {
    margin-right: -75% !important;
  }
  .xxl\:mr--4\/5 {
    margin-right: -80% !important;
  }
  .xxl\:mr--5\/6 {
    margin-right: -83.3333333% !important;
  }
  .xxl\:mr--30 {
    margin-right: -28rem !important;
  }
  .xxl\:mr--24 {
    margin-right: -22rem !important;
  }
  .xxl\:mr--18 {
    margin-right: -16rem !important;
  }
  .xxl\:mr--15 {
    margin-right: -13rem !important;
  }
  .xxl\:mr--14 {
    margin-right: -12rem !important;
  }
  .xxl\:mr--13 {
    margin-right: -11rem !important;
  }
  .xxl\:mr--12 {
    margin-right: -10rem !important;
  }
  .xxl\:mr--11 {
    margin-right: -9rem !important;
  }
  .xxl\:mr--10 {
    margin-right: -8rem !important;
  }
  .xxl\:mr--9 {
    margin-right: -7rem !important;
  }
  .xxl\:mr--8 {
    margin-right: -6rem !important;
  }
  .xxl\:mr--7 {
    margin-right: -5rem !important;
  }
  .xxl\:mr--6 {
    margin-right: -4rem !important;
  }
  .xxl\:mr--5 {
    margin-right: -3rem !important;
  }
  .xxl\:mr--4-5 {
    margin-right: -2.5rem !important;
  }
  .xxl\:mr--4 {
    margin-right: -2rem !important;
  }
  .xxl\:mr--3-5 {
    margin-right: -1.5rem !important;
  }
  .xxl\:mr--3 {
    margin-right: -1rem !important;
  }
  .xxl\:mr--2-5 {
    margin-right: -0.75rem !important;
  }
  .xxl\:mr--2 {
    margin-right: -0.5rem !important;
  }
  .xxl\:mr--1 {
    margin-right: -0.25rem !important;
  }
  .xxl\:mr--0-5 {
    margin-right: -0.125rem !important;
  }
  .xxl\:mr-0 {
    margin-right: 0 !important;
  }
  .xxl\:mr-0-25 {
    margin-right: 0.0625rem !important;
  }
  .xxl\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .xxl\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .xxl\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .xxl\:mr-2-5 {
    margin-right: 0.75rem !important;
  }
  .xxl\:mr-3 {
    margin-right: 1rem !important;
  }
  .xxl\:mr-3-5 {
    margin-right: 1.5rem !important;
  }
  .xxl\:mr-4 {
    margin-right: 2rem !important;
  }
  .xxl\:mr-4-5 {
    margin-right: 2.5rem !important;
  }
  .xxl\:mr-5 {
    margin-right: 3rem !important;
  }
  .xxl\:mr-6 {
    margin-right: 4rem !important;
  }
  .xxl\:mr-6-5 {
    margin-right: 4.5rem !important;
  }
  .xxl\:mr-7 {
    margin-right: 5rem !important;
  }
  .xxl\:mr-8 {
    margin-right: 6rem !important;
  }
  .xxl\:mr-9 {
    margin-right: 7rem !important;
  }
  .xxl\:mr-10 {
    margin-right: 8rem !important;
  }
  .xxl\:mr-11 {
    margin-right: 9rem !important;
  }
  .xxl\:mr-12 {
    margin-right: 10rem !important;
  }
  .xxl\:mr-13 {
    margin-right: 11rem !important;
  }
  .xxl\:mr-14 {
    margin-right: 12rem !important;
  }
  .xxl\:mr-15 {
    margin-right: 13rem !important;
  }
  .xxl\:mr-30 {
    margin-right: 28rem !important;
  }
  .xxl\:mr-1-em {
    margin-right: 0.25em !important;
  }
  .xxl\:mr-1-5-em {
    margin-right: 0.375em !important;
  }
  .xxl\:mr-2-em {
    margin-right: 0.5em !important;
  }
  .xxl\:mr-2-25-em {
    margin-right: 0.625em !important;
  }
  .xxl\:mr-2-5-em {
    margin-right: 0.75em !important;
  }
  .xxl\:mr-3-em {
    margin-right: 1em !important;
  }
  .xxl\:mr-4-em {
    margin-right: 2em !important;
  }
  .xxl\:mr-5-em {
    margin-right: 3em !important;
  }
  .xxl\:mr-6-em {
    margin-right: 4em !important;
  }
  .xxl\:mr-7-em {
    margin-right: 5em !important;
  }
  .xxl\:mr-8-em {
    margin-right: 6em !important;
  }
  .xxl\:mr-9-em {
    margin-right: 7em !important;
  }
  .xxl\:mr-1px {
    margin-right: 1px !important;
  }
  .xxl\:mr--1px {
    margin-right: -1px !important;
  }
  .xxl\:mr-1\/8 {
    margin-right: 12.5% !important;
  }
  .xxl\:mr-1\/6 {
    margin-right: 16.666666% !important;
  }
  .xxl\:mr-1\/5 {
    margin-right: 20% !important;
  }
  .xxl\:mr-1\/4 {
    margin-right: 25% !important;
  }
  .xxl\:mr-2\/7 {
    margin-right: 28.57142857% !important;
  }
  .xxl\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }
  .xxl\:mr-2\/5 {
    margin-right: 40% !important;
  }
  .xxl\:mr-1\/2 {
    margin-right: 50% !important;
  }
  .xxl\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }
  .xxl\:mr-1\/10 {
    margin-right: 10% !important;
  }
  .xxl\:mr-5\/12 {
    margin-right: 41.6666666% !important;
  }
  .xxl\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }
  .xxl\:mr-3\/5 {
    margin-right: 60% !important;
  }
  .xxl\:mr-11\/12 {
    margin-right: 91.6666666% !important;
  }
  .xxl\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }
  .xxl\:mr-3\/4 {
    margin-right: 75% !important;
  }
  .xxl\:mr-4\/5 {
    margin-right: 80% !important;
  }
  .xxl\:mr-5\/6 {
    margin-right: 83.3333333% !important;
  }
  .xxl\:mb--1\/6 {
    margin-bottom: -16.666666% !important;
  }
  .xxl\:mb--1\/5 {
    margin-bottom: -20% !important;
  }
  .xxl\:mb--1\/4 {
    margin-bottom: -25% !important;
  }
  .xxl\:mb--2\/7 {
    margin-bottom: -28.57142857% !important;
  }
  .xxl\:mb--1\/3 {
    margin-bottom: -33.333333% !important;
  }
  .xxl\:mb--2\/5 {
    margin-bottom: -40% !important;
  }
  .xxl\:mb--1\/2 {
    margin-bottom: -50% !important;
  }
  .xxl\:mb--1\/12 {
    margin-bottom: -8.333333% !important;
  }
  .xxl\:mb--1\/10 {
    margin-bottom: -10% !important;
  }
  .xxl\:mb--5\/12 {
    margin-bottom: -41.6666666% !important;
  }
  .xxl\:mb--7\/12 {
    margin-bottom: -58.333333% !important;
  }
  .xxl\:mb--3\/5 {
    margin-bottom: -60% !important;
  }
  .xxl\:mb--11\/12 {
    margin-bottom: -91.6666666% !important;
  }
  .xxl\:mb--2\/3 {
    margin-bottom: -66.666667% !important;
  }
  .xxl\:mb--3\/4 {
    margin-bottom: -75% !important;
  }
  .xxl\:mb--4\/5 {
    margin-bottom: -80% !important;
  }
  .xxl\:mb--5\/6 {
    margin-bottom: -83.3333333% !important;
  }
  .xxl\:mb--30 {
    margin-bottom: -28rem !important;
  }
  .xxl\:mb--24 {
    margin-bottom: -22rem !important;
  }
  .xxl\:mb--18 {
    margin-bottom: -16rem !important;
  }
  .xxl\:mb--15 {
    margin-bottom: -13rem !important;
  }
  .xxl\:mb--14 {
    margin-bottom: -12rem !important;
  }
  .xxl\:mb--13 {
    margin-bottom: -11rem !important;
  }
  .xxl\:mb--12 {
    margin-bottom: -10rem !important;
  }
  .xxl\:mb--11 {
    margin-bottom: -9rem !important;
  }
  .xxl\:mb--10 {
    margin-bottom: -8rem !important;
  }
  .xxl\:mb--9 {
    margin-bottom: -7rem !important;
  }
  .xxl\:mb--8 {
    margin-bottom: -6rem !important;
  }
  .xxl\:mb--7 {
    margin-bottom: -5rem !important;
  }
  .xxl\:mb--6 {
    margin-bottom: -4rem !important;
  }
  .xxl\:mb--5 {
    margin-bottom: -3rem !important;
  }
  .xxl\:mb--4-5 {
    margin-bottom: -2.5rem !important;
  }
  .xxl\:mb--4 {
    margin-bottom: -2rem !important;
  }
  .xxl\:mb--3-5 {
    margin-bottom: -1.5rem !important;
  }
  .xxl\:mb--3 {
    margin-bottom: -1rem !important;
  }
  .xxl\:mb--2-5 {
    margin-bottom: -0.75rem !important;
  }
  .xxl\:mb--2 {
    margin-bottom: -0.5rem !important;
  }
  .xxl\:mb--1 {
    margin-bottom: -0.25rem !important;
  }
  .xxl\:mb--0-5 {
    margin-bottom: -0.125rem !important;
  }
  .xxl\:mb-0 {
    margin-bottom: 0 !important;
  }
  .xxl\:mb-0-25 {
    margin-bottom: 0.0625rem !important;
  }
  .xxl\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .xxl\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .xxl\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .xxl\:mb-2-5 {
    margin-bottom: 0.75rem !important;
  }
  .xxl\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .xxl\:mb-3-5 {
    margin-bottom: 1.5rem !important;
  }
  .xxl\:mb-4 {
    margin-bottom: 2rem !important;
  }
  .xxl\:mb-4-5 {
    margin-bottom: 2.5rem !important;
  }
  .xxl\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .xxl\:mb-6 {
    margin-bottom: 4rem !important;
  }
  .xxl\:mb-6-5 {
    margin-bottom: 4.5rem !important;
  }
  .xxl\:mb-7 {
    margin-bottom: 5rem !important;
  }
  .xxl\:mb-8 {
    margin-bottom: 6rem !important;
  }
  .xxl\:mb-9 {
    margin-bottom: 7rem !important;
  }
  .xxl\:mb-10 {
    margin-bottom: 8rem !important;
  }
  .xxl\:mb-11 {
    margin-bottom: 9rem !important;
  }
  .xxl\:mb-12 {
    margin-bottom: 10rem !important;
  }
  .xxl\:mb-13 {
    margin-bottom: 11rem !important;
  }
  .xxl\:mb-14 {
    margin-bottom: 12rem !important;
  }
  .xxl\:mb-15 {
    margin-bottom: 13rem !important;
  }
  .xxl\:mb-30 {
    margin-bottom: 28rem !important;
  }
  .xxl\:mb-1-em {
    margin-bottom: 0.25em !important;
  }
  .xxl\:mb-1-5-em {
    margin-bottom: 0.375em !important;
  }
  .xxl\:mb-2-em {
    margin-bottom: 0.5em !important;
  }
  .xxl\:mb-2-25-em {
    margin-bottom: 0.625em !important;
  }
  .xxl\:mb-2-5-em {
    margin-bottom: 0.75em !important;
  }
  .xxl\:mb-3-em {
    margin-bottom: 1em !important;
  }
  .xxl\:mb-4-em {
    margin-bottom: 2em !important;
  }
  .xxl\:mb-5-em {
    margin-bottom: 3em !important;
  }
  .xxl\:mb-6-em {
    margin-bottom: 4em !important;
  }
  .xxl\:mb-7-em {
    margin-bottom: 5em !important;
  }
  .xxl\:mb-8-em {
    margin-bottom: 6em !important;
  }
  .xxl\:mb-9-em {
    margin-bottom: 7em !important;
  }
  .xxl\:mb-1px {
    margin-bottom: 1px !important;
  }
  .xxl\:mb--1px {
    margin-bottom: -1px !important;
  }
  .xxl\:mb-1\/8 {
    margin-bottom: 12.5% !important;
  }
  .xxl\:mb-1\/6 {
    margin-bottom: 16.666666% !important;
  }
  .xxl\:mb-1\/5 {
    margin-bottom: 20% !important;
  }
  .xxl\:mb-1\/4 {
    margin-bottom: 25% !important;
  }
  .xxl\:mb-2\/7 {
    margin-bottom: 28.57142857% !important;
  }
  .xxl\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }
  .xxl\:mb-2\/5 {
    margin-bottom: 40% !important;
  }
  .xxl\:mb-1\/2 {
    margin-bottom: 50% !important;
  }
  .xxl\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }
  .xxl\:mb-1\/10 {
    margin-bottom: 10% !important;
  }
  .xxl\:mb-5\/12 {
    margin-bottom: 41.6666666% !important;
  }
  .xxl\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }
  .xxl\:mb-3\/5 {
    margin-bottom: 60% !important;
  }
  .xxl\:mb-11\/12 {
    margin-bottom: 91.6666666% !important;
  }
  .xxl\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }
  .xxl\:mb-3\/4 {
    margin-bottom: 75% !important;
  }
  .xxl\:mb-4\/5 {
    margin-bottom: 80% !important;
  }
  .xxl\:mb-5\/6 {
    margin-bottom: 83.3333333% !important;
  }
  .xxl\:ml--1\/6 {
    margin-left: -16.666666% !important;
  }
  .xxl\:ml--1\/5 {
    margin-left: -20% !important;
  }
  .xxl\:ml--1\/4 {
    margin-left: -25% !important;
  }
  .xxl\:ml--2\/7 {
    margin-left: -28.57142857% !important;
  }
  .xxl\:ml--1\/3 {
    margin-left: -33.333333% !important;
  }
  .xxl\:ml--2\/5 {
    margin-left: -40% !important;
  }
  .xxl\:ml--1\/2 {
    margin-left: -50% !important;
  }
  .xxl\:ml--1\/12 {
    margin-left: -8.333333% !important;
  }
  .xxl\:ml--1\/10 {
    margin-left: -10% !important;
  }
  .xxl\:ml--5\/12 {
    margin-left: -41.6666666% !important;
  }
  .xxl\:ml--7\/12 {
    margin-left: -58.333333% !important;
  }
  .xxl\:ml--3\/5 {
    margin-left: -60% !important;
  }
  .xxl\:ml--11\/12 {
    margin-left: -91.6666666% !important;
  }
  .xxl\:ml--2\/3 {
    margin-left: -66.666667% !important;
  }
  .xxl\:ml--3\/4 {
    margin-left: -75% !important;
  }
  .xxl\:ml--4\/5 {
    margin-left: -80% !important;
  }
  .xxl\:ml--5\/6 {
    margin-left: -83.3333333% !important;
  }
  .xxl\:ml--30 {
    margin-left: -28rem !important;
  }
  .xxl\:ml--24 {
    margin-left: -22rem !important;
  }
  .xxl\:ml--18 {
    margin-left: -16rem !important;
  }
  .xxl\:ml--15 {
    margin-left: -13rem !important;
  }
  .xxl\:ml--14 {
    margin-left: -12rem !important;
  }
  .xxl\:ml--13 {
    margin-left: -11rem !important;
  }
  .xxl\:ml--12 {
    margin-left: -10rem !important;
  }
  .xxl\:ml--11 {
    margin-left: -9rem !important;
  }
  .xxl\:ml--10 {
    margin-left: -8rem !important;
  }
  .xxl\:ml--9 {
    margin-left: -7rem !important;
  }
  .xxl\:ml--8 {
    margin-left: -6rem !important;
  }
  .xxl\:ml--7 {
    margin-left: -5rem !important;
  }
  .xxl\:ml--6 {
    margin-left: -4rem !important;
  }
  .xxl\:ml--5 {
    margin-left: -3rem !important;
  }
  .xxl\:ml--4-5 {
    margin-left: -2.5rem !important;
  }
  .xxl\:ml--4 {
    margin-left: -2rem !important;
  }
  .xxl\:ml--3-5 {
    margin-left: -1.5rem !important;
  }
  .xxl\:ml--3 {
    margin-left: -1rem !important;
  }
  .xxl\:ml--2-5 {
    margin-left: -0.75rem !important;
  }
  .xxl\:ml--2 {
    margin-left: -0.5rem !important;
  }
  .xxl\:ml--1 {
    margin-left: -0.25rem !important;
  }
  .xxl\:ml--0-5 {
    margin-left: -0.125rem !important;
  }
  .xxl\:ml-0 {
    margin-left: 0 !important;
  }
  .xxl\:ml-0-25 {
    margin-left: 0.0625rem !important;
  }
  .xxl\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .xxl\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .xxl\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .xxl\:ml-2-5 {
    margin-left: 0.75rem !important;
  }
  .xxl\:ml-3 {
    margin-left: 1rem !important;
  }
  .xxl\:ml-3-5 {
    margin-left: 1.5rem !important;
  }
  .xxl\:ml-4 {
    margin-left: 2rem !important;
  }
  .xxl\:ml-4-5 {
    margin-left: 2.5rem !important;
  }
  .xxl\:ml-5 {
    margin-left: 3rem !important;
  }
  .xxl\:ml-6 {
    margin-left: 4rem !important;
  }
  .xxl\:ml-6-5 {
    margin-left: 4.5rem !important;
  }
  .xxl\:ml-7 {
    margin-left: 5rem !important;
  }
  .xxl\:ml-8 {
    margin-left: 6rem !important;
  }
  .xxl\:ml-9 {
    margin-left: 7rem !important;
  }
  .xxl\:ml-10 {
    margin-left: 8rem !important;
  }
  .xxl\:ml-11 {
    margin-left: 9rem !important;
  }
  .xxl\:ml-12 {
    margin-left: 10rem !important;
  }
  .xxl\:ml-13 {
    margin-left: 11rem !important;
  }
  .xxl\:ml-14 {
    margin-left: 12rem !important;
  }
  .xxl\:ml-15 {
    margin-left: 13rem !important;
  }
  .xxl\:ml-30 {
    margin-left: 28rem !important;
  }
  .xxl\:ml-1-em {
    margin-left: 0.25em !important;
  }
  .xxl\:ml-1-5-em {
    margin-left: 0.375em !important;
  }
  .xxl\:ml-2-em {
    margin-left: 0.5em !important;
  }
  .xxl\:ml-2-25-em {
    margin-left: 0.625em !important;
  }
  .xxl\:ml-2-5-em {
    margin-left: 0.75em !important;
  }
  .xxl\:ml-3-em {
    margin-left: 1em !important;
  }
  .xxl\:ml-4-em {
    margin-left: 2em !important;
  }
  .xxl\:ml-5-em {
    margin-left: 3em !important;
  }
  .xxl\:ml-6-em {
    margin-left: 4em !important;
  }
  .xxl\:ml-7-em {
    margin-left: 5em !important;
  }
  .xxl\:ml-8-em {
    margin-left: 6em !important;
  }
  .xxl\:ml-9-em {
    margin-left: 7em !important;
  }
  .xxl\:ml-1px {
    margin-left: 1px !important;
  }
  .xxl\:ml--1px {
    margin-left: -1px !important;
  }
  .xxl\:ml-1\/8 {
    margin-left: 12.5% !important;
  }
  .xxl\:ml-1\/6 {
    margin-left: 16.666666% !important;
  }
  .xxl\:ml-1\/5 {
    margin-left: 20% !important;
  }
  .xxl\:ml-1\/4 {
    margin-left: 25% !important;
  }
  .xxl\:ml-2\/7 {
    margin-left: 28.57142857% !important;
  }
  .xxl\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }
  .xxl\:ml-2\/5 {
    margin-left: 40% !important;
  }
  .xxl\:ml-1\/2 {
    margin-left: 50% !important;
  }
  .xxl\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }
  .xxl\:ml-1\/10 {
    margin-left: 10% !important;
  }
  .xxl\:ml-5\/12 {
    margin-left: 41.6666666% !important;
  }
  .xxl\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }
  .xxl\:ml-3\/5 {
    margin-left: 60% !important;
  }
  .xxl\:ml-11\/12 {
    margin-left: 91.6666666% !important;
  }
  .xxl\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }
  .xxl\:ml-3\/4 {
    margin-left: 75% !important;
  }
  .xxl\:ml-4\/5 {
    margin-left: 80% !important;
  }
  .xxl\:ml-5\/6 {
    margin-left: 83.3333333% !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:m--1\/6 {
    margin: -16.666666% !important;
  }
  .max\:m--1\/5 {
    margin: -20% !important;
  }
  .max\:m--1\/4 {
    margin: -25% !important;
  }
  .max\:m--2\/7 {
    margin: -28.57142857% !important;
  }
  .max\:m--1\/3 {
    margin: -33.333333% !important;
  }
  .max\:m--2\/5 {
    margin: -40% !important;
  }
  .max\:m--1\/2 {
    margin: -50% !important;
  }
  .max\:m--1\/12 {
    margin: -8.333333% !important;
  }
  .max\:m--1\/10 {
    margin: -10% !important;
  }
  .max\:m--5\/12 {
    margin: -41.6666666% !important;
  }
  .max\:m--7\/12 {
    margin: -58.333333% !important;
  }
  .max\:m--3\/5 {
    margin: -60% !important;
  }
  .max\:m--11\/12 {
    margin: -91.6666666% !important;
  }
  .max\:m--2\/3 {
    margin: -66.666667% !important;
  }
  .max\:m--3\/4 {
    margin: -75% !important;
  }
  .max\:m--4\/5 {
    margin: -80% !important;
  }
  .max\:m--5\/6 {
    margin: -83.3333333% !important;
  }
  .max\:m--30 {
    margin: -28rem !important;
  }
  .max\:m--24 {
    margin: -22rem !important;
  }
  .max\:m--18 {
    margin: -16rem !important;
  }
  .max\:m--15 {
    margin: -13rem !important;
  }
  .max\:m--14 {
    margin: -12rem !important;
  }
  .max\:m--13 {
    margin: -11rem !important;
  }
  .max\:m--12 {
    margin: -10rem !important;
  }
  .max\:m--11 {
    margin: -9rem !important;
  }
  .max\:m--10 {
    margin: -8rem !important;
  }
  .max\:m--9 {
    margin: -7rem !important;
  }
  .max\:m--8 {
    margin: -6rem !important;
  }
  .max\:m--7 {
    margin: -5rem !important;
  }
  .max\:m--6 {
    margin: -4rem !important;
  }
  .max\:m--5 {
    margin: -3rem !important;
  }
  .max\:m--4-5 {
    margin: -2.5rem !important;
  }
  .max\:m--4 {
    margin: -2rem !important;
  }
  .max\:m--3-5 {
    margin: -1.5rem !important;
  }
  .max\:m--3 {
    margin: -1rem !important;
  }
  .max\:m--2-5 {
    margin: -0.75rem !important;
  }
  .max\:m--2 {
    margin: -0.5rem !important;
  }
  .max\:m--1 {
    margin: -0.25rem !important;
  }
  .max\:m--0-5 {
    margin: -0.125rem !important;
  }
  .max\:m-0 {
    margin: 0 !important;
  }
  .max\:m-0-25 {
    margin: 0.0625rem !important;
  }
  .max\:m-0-5 {
    margin: 0.125rem !important;
  }
  .max\:m-1 {
    margin: 0.25rem !important;
  }
  .max\:m-2 {
    margin: 0.5rem !important;
  }
  .max\:m-2-5 {
    margin: 0.75rem !important;
  }
  .max\:m-3 {
    margin: 1rem !important;
  }
  .max\:m-3-5 {
    margin: 1.5rem !important;
  }
  .max\:m-4 {
    margin: 2rem !important;
  }
  .max\:m-4-5 {
    margin: 2.5rem !important;
  }
  .max\:m-5 {
    margin: 3rem !important;
  }
  .max\:m-6 {
    margin: 4rem !important;
  }
  .max\:m-6-5 {
    margin: 4.5rem !important;
  }
  .max\:m-7 {
    margin: 5rem !important;
  }
  .max\:m-8 {
    margin: 6rem !important;
  }
  .max\:m-9 {
    margin: 7rem !important;
  }
  .max\:m-10 {
    margin: 8rem !important;
  }
  .max\:m-11 {
    margin: 9rem !important;
  }
  .max\:m-12 {
    margin: 10rem !important;
  }
  .max\:m-13 {
    margin: 11rem !important;
  }
  .max\:m-14 {
    margin: 12rem !important;
  }
  .max\:m-15 {
    margin: 13rem !important;
  }
  .max\:m-30 {
    margin: 28rem !important;
  }
  .max\:m-1-em {
    margin: 0.25em !important;
  }
  .max\:m-1-5-em {
    margin: 0.375em !important;
  }
  .max\:m-2-em {
    margin: 0.5em !important;
  }
  .max\:m-2-25-em {
    margin: 0.625em !important;
  }
  .max\:m-2-5-em {
    margin: 0.75em !important;
  }
  .max\:m-3-em {
    margin: 1em !important;
  }
  .max\:m-4-em {
    margin: 2em !important;
  }
  .max\:m-5-em {
    margin: 3em !important;
  }
  .max\:m-6-em {
    margin: 4em !important;
  }
  .max\:m-7-em {
    margin: 5em !important;
  }
  .max\:m-8-em {
    margin: 6em !important;
  }
  .max\:m-9-em {
    margin: 7em !important;
  }
  .max\:m-1px {
    margin: 1px !important;
  }
  .max\:m--1px {
    margin: -1px !important;
  }
  .max\:m-1\/8 {
    margin: 12.5% !important;
  }
  .max\:m-1\/6 {
    margin: 16.666666% !important;
  }
  .max\:m-1\/5 {
    margin: 20% !important;
  }
  .max\:m-1\/4 {
    margin: 25% !important;
  }
  .max\:m-2\/7 {
    margin: 28.57142857% !important;
  }
  .max\:m-1\/3 {
    margin: 33.333333% !important;
  }
  .max\:m-2\/5 {
    margin: 40% !important;
  }
  .max\:m-1\/2 {
    margin: 50% !important;
  }
  .max\:m-1\/12 {
    margin: 8.333333% !important;
  }
  .max\:m-1\/10 {
    margin: 10% !important;
  }
  .max\:m-5\/12 {
    margin: 41.6666666% !important;
  }
  .max\:m-7\/12 {
    margin: 58.333333% !important;
  }
  .max\:m-3\/5 {
    margin: 60% !important;
  }
  .max\:m-11\/12 {
    margin: 91.6666666% !important;
  }
  .max\:m-2\/3 {
    margin: 66.666667% !important;
  }
  .max\:m-3\/4 {
    margin: 75% !important;
  }
  .max\:m-4\/5 {
    margin: 80% !important;
  }
  .max\:m-5\/6 {
    margin: 83.3333333% !important;
  }
  .max\:mx--1\/6 {
    margin-left: -16.666666% !important;
    margin-right: -16.666666% !important;
  }
  .max\:mx--1\/5 {
    margin-left: -20% !important;
    margin-right: -20% !important;
  }
  .max\:mx--1\/4 {
    margin-left: -25% !important;
    margin-right: -25% !important;
  }
  .max\:mx--2\/7 {
    margin-left: -28.57142857% !important;
    margin-right: -28.57142857% !important;
  }
  .max\:mx--1\/3 {
    margin-left: -33.333333% !important;
    margin-right: -33.333333% !important;
  }
  .max\:mx--2\/5 {
    margin-left: -40% !important;
    margin-right: -40% !important;
  }
  .max\:mx--1\/2 {
    margin-left: -50% !important;
    margin-right: -50% !important;
  }
  .max\:mx--1\/12 {
    margin-left: -8.333333% !important;
    margin-right: -8.333333% !important;
  }
  .max\:mx--1\/10 {
    margin-left: -10% !important;
    margin-right: -10% !important;
  }
  .max\:mx--5\/12 {
    margin-left: -41.6666666% !important;
    margin-right: -41.6666666% !important;
  }
  .max\:mx--7\/12 {
    margin-left: -58.333333% !important;
    margin-right: -58.333333% !important;
  }
  .max\:mx--3\/5 {
    margin-left: -60% !important;
    margin-right: -60% !important;
  }
  .max\:mx--11\/12 {
    margin-left: -91.6666666% !important;
    margin-right: -91.6666666% !important;
  }
  .max\:mx--2\/3 {
    margin-left: -66.666667% !important;
    margin-right: -66.666667% !important;
  }
  .max\:mx--3\/4 {
    margin-left: -75% !important;
    margin-right: -75% !important;
  }
  .max\:mx--4\/5 {
    margin-left: -80% !important;
    margin-right: -80% !important;
  }
  .max\:mx--5\/6 {
    margin-left: -83.3333333% !important;
    margin-right: -83.3333333% !important;
  }
  .max\:mx--30 {
    margin-left: -28rem !important;
    margin-right: -28rem !important;
  }
  .max\:mx--24 {
    margin-left: -22rem !important;
    margin-right: -22rem !important;
  }
  .max\:mx--18 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }
  .max\:mx--15 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }
  .max\:mx--14 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }
  .max\:mx--13 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }
  .max\:mx--12 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }
  .max\:mx--11 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }
  .max\:mx--10 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }
  .max\:mx--9 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }
  .max\:mx--8 {
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }
  .max\:mx--7 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }
  .max\:mx--6 {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }
  .max\:mx--5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }
  .max\:mx--4-5 {
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }
  .max\:mx--4 {
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }
  .max\:mx--3-5 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }
  .max\:mx--3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  .max\:mx--2-5 {
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }
  .max\:mx--2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .max\:mx--1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }
  .max\:mx--0-5 {
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }
  .max\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .max\:mx-0-25 {
    margin-left: 0.0625rem !important;
    margin-right: 0.0625rem !important;
  }
  .max\:mx-0-5 {
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }
  .max\:mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .max\:mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .max\:mx-2-5 {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }
  .max\:mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .max\:mx-3-5 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .max\:mx-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  .max\:mx-4-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
  .max\:mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .max\:mx-6 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
  .max\:mx-6-5 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
  .max\:mx-7 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
  .max\:mx-8 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
  .max\:mx-9 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
  .max\:mx-10 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
  .max\:mx-11 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
  .max\:mx-12 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
  .max\:mx-13 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }
  .max\:mx-14 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }
  .max\:mx-15 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }
  .max\:mx-30 {
    margin-left: 28rem !important;
    margin-right: 28rem !important;
  }
  .max\:mx-1-em {
    margin-left: 0.25em !important;
    margin-right: 0.25em !important;
  }
  .max\:mx-1-5-em {
    margin-left: 0.375em !important;
    margin-right: 0.375em !important;
  }
  .max\:mx-2-em {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .max\:mx-2-25-em {
    margin-left: 0.625em !important;
    margin-right: 0.625em !important;
  }
  .max\:mx-2-5-em {
    margin-left: 0.75em !important;
    margin-right: 0.75em !important;
  }
  .max\:mx-3-em {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .max\:mx-4-em {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .max\:mx-5-em {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .max\:mx-6-em {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .max\:mx-7-em {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .max\:mx-8-em {
    margin-left: 6em !important;
    margin-right: 6em !important;
  }
  .max\:mx-9-em {
    margin-left: 7em !important;
    margin-right: 7em !important;
  }
  .max\:mx-1px {
    margin-left: 1px !important;
    margin-right: 1px !important;
  }
  .max\:mx--1px {
    margin-left: -1px !important;
    margin-right: -1px !important;
  }
  .max\:mx-1\/8 {
    margin-left: 12.5% !important;
    margin-right: 12.5% !important;
  }
  .max\:mx-1\/6 {
    margin-left: 16.666666% !important;
    margin-right: 16.666666% !important;
  }
  .max\:mx-1\/5 {
    margin-left: 20% !important;
    margin-right: 20% !important;
  }
  .max\:mx-1\/4 {
    margin-left: 25% !important;
    margin-right: 25% !important;
  }
  .max\:mx-2\/7 {
    margin-left: 28.57142857% !important;
    margin-right: 28.57142857% !important;
  }
  .max\:mx-1\/3 {
    margin-left: 33.333333% !important;
    margin-right: 33.333333% !important;
  }
  .max\:mx-2\/5 {
    margin-left: 40% !important;
    margin-right: 40% !important;
  }
  .max\:mx-1\/2 {
    margin-left: 50% !important;
    margin-right: 50% !important;
  }
  .max\:mx-1\/12 {
    margin-left: 8.333333% !important;
    margin-right: 8.333333% !important;
  }
  .max\:mx-1\/10 {
    margin-left: 10% !important;
    margin-right: 10% !important;
  }
  .max\:mx-5\/12 {
    margin-left: 41.6666666% !important;
    margin-right: 41.6666666% !important;
  }
  .max\:mx-7\/12 {
    margin-left: 58.333333% !important;
    margin-right: 58.333333% !important;
  }
  .max\:mx-3\/5 {
    margin-left: 60% !important;
    margin-right: 60% !important;
  }
  .max\:mx-11\/12 {
    margin-left: 91.6666666% !important;
    margin-right: 91.6666666% !important;
  }
  .max\:mx-2\/3 {
    margin-left: 66.666667% !important;
    margin-right: 66.666667% !important;
  }
  .max\:mx-3\/4 {
    margin-left: 75% !important;
    margin-right: 75% !important;
  }
  .max\:mx-4\/5 {
    margin-left: 80% !important;
    margin-right: 80% !important;
  }
  .max\:mx-5\/6 {
    margin-left: 83.3333333% !important;
    margin-right: 83.3333333% !important;
  }
  .max\:my--1\/6 {
    margin-top: -16.666666% !important;
    margin-bottom: -16.666666% !important;
  }
  .max\:my--1\/5 {
    margin-top: -20% !important;
    margin-bottom: -20% !important;
  }
  .max\:my--1\/4 {
    margin-top: -25% !important;
    margin-bottom: -25% !important;
  }
  .max\:my--2\/7 {
    margin-top: -28.57142857% !important;
    margin-bottom: -28.57142857% !important;
  }
  .max\:my--1\/3 {
    margin-top: -33.333333% !important;
    margin-bottom: -33.333333% !important;
  }
  .max\:my--2\/5 {
    margin-top: -40% !important;
    margin-bottom: -40% !important;
  }
  .max\:my--1\/2 {
    margin-top: -50% !important;
    margin-bottom: -50% !important;
  }
  .max\:my--1\/12 {
    margin-top: -8.333333% !important;
    margin-bottom: -8.333333% !important;
  }
  .max\:my--1\/10 {
    margin-top: -10% !important;
    margin-bottom: -10% !important;
  }
  .max\:my--5\/12 {
    margin-top: -41.6666666% !important;
    margin-bottom: -41.6666666% !important;
  }
  .max\:my--7\/12 {
    margin-top: -58.333333% !important;
    margin-bottom: -58.333333% !important;
  }
  .max\:my--3\/5 {
    margin-top: -60% !important;
    margin-bottom: -60% !important;
  }
  .max\:my--11\/12 {
    margin-top: -91.6666666% !important;
    margin-bottom: -91.6666666% !important;
  }
  .max\:my--2\/3 {
    margin-top: -66.666667% !important;
    margin-bottom: -66.666667% !important;
  }
  .max\:my--3\/4 {
    margin-top: -75% !important;
    margin-bottom: -75% !important;
  }
  .max\:my--4\/5 {
    margin-top: -80% !important;
    margin-bottom: -80% !important;
  }
  .max\:my--5\/6 {
    margin-top: -83.3333333% !important;
    margin-bottom: -83.3333333% !important;
  }
  .max\:my--30 {
    margin-top: -28rem !important;
    margin-bottom: -28rem !important;
  }
  .max\:my--24 {
    margin-top: -22rem !important;
    margin-bottom: -22rem !important;
  }
  .max\:my--18 {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }
  .max\:my--15 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .max\:my--14 {
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }
  .max\:my--13 {
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }
  .max\:my--12 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .max\:my--11 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .max\:my--10 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .max\:my--9 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .max\:my--8 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .max\:my--7 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .max\:my--6 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .max\:my--5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .max\:my--4-5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .max\:my--4 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .max\:my--3-5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .max\:my--3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .max\:my--2-5 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }
  .max\:my--2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .max\:my--1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .max\:my--0-5 {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }
  .max\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .max\:my-0-25 {
    margin-top: 0.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }
  .max\:my-0-5 {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }
  .max\:my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .max\:my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .max\:my-2-5 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .max\:my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .max\:my-3-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .max\:my-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .max\:my-4-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .max\:my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .max\:my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .max\:my-6-5 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .max\:my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .max\:my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .max\:my-9 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .max\:my-10 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .max\:my-11 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .max\:my-12 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .max\:my-13 {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .max\:my-14 {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .max\:my-15 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .max\:my-30 {
    margin-top: 28rem !important;
    margin-bottom: 28rem !important;
  }
  .max\:my-1-em {
    margin-top: 0.25em !important;
    margin-bottom: 0.25em !important;
  }
  .max\:my-1-5-em {
    margin-top: 0.375em !important;
    margin-bottom: 0.375em !important;
  }
  .max\:my-2-em {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .max\:my-2-25-em {
    margin-top: 0.625em !important;
    margin-bottom: 0.625em !important;
  }
  .max\:my-2-5-em {
    margin-top: 0.75em !important;
    margin-bottom: 0.75em !important;
  }
  .max\:my-3-em {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .max\:my-4-em {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .max\:my-5-em {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .max\:my-6-em {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .max\:my-7-em {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .max\:my-8-em {
    margin-top: 6em !important;
    margin-bottom: 6em !important;
  }
  .max\:my-9-em {
    margin-top: 7em !important;
    margin-bottom: 7em !important;
  }
  .max\:my-1px {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }
  .max\:my--1px {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }
  .max\:my-1\/8 {
    margin-top: 12.5% !important;
    margin-bottom: 12.5% !important;
  }
  .max\:my-1\/6 {
    margin-top: 16.666666% !important;
    margin-bottom: 16.666666% !important;
  }
  .max\:my-1\/5 {
    margin-top: 20% !important;
    margin-bottom: 20% !important;
  }
  .max\:my-1\/4 {
    margin-top: 25% !important;
    margin-bottom: 25% !important;
  }
  .max\:my-2\/7 {
    margin-top: 28.57142857% !important;
    margin-bottom: 28.57142857% !important;
  }
  .max\:my-1\/3 {
    margin-top: 33.333333% !important;
    margin-bottom: 33.333333% !important;
  }
  .max\:my-2\/5 {
    margin-top: 40% !important;
    margin-bottom: 40% !important;
  }
  .max\:my-1\/2 {
    margin-top: 50% !important;
    margin-bottom: 50% !important;
  }
  .max\:my-1\/12 {
    margin-top: 8.333333% !important;
    margin-bottom: 8.333333% !important;
  }
  .max\:my-1\/10 {
    margin-top: 10% !important;
    margin-bottom: 10% !important;
  }
  .max\:my-5\/12 {
    margin-top: 41.6666666% !important;
    margin-bottom: 41.6666666% !important;
  }
  .max\:my-7\/12 {
    margin-top: 58.333333% !important;
    margin-bottom: 58.333333% !important;
  }
  .max\:my-3\/5 {
    margin-top: 60% !important;
    margin-bottom: 60% !important;
  }
  .max\:my-11\/12 {
    margin-top: 91.6666666% !important;
    margin-bottom: 91.6666666% !important;
  }
  .max\:my-2\/3 {
    margin-top: 66.666667% !important;
    margin-bottom: 66.666667% !important;
  }
  .max\:my-3\/4 {
    margin-top: 75% !important;
    margin-bottom: 75% !important;
  }
  .max\:my-4\/5 {
    margin-top: 80% !important;
    margin-bottom: 80% !important;
  }
  .max\:my-5\/6 {
    margin-top: 83.3333333% !important;
    margin-bottom: 83.3333333% !important;
  }
  .max\:mt--1\/6 {
    margin-top: -16.666666% !important;
  }
  .max\:mt--1\/5 {
    margin-top: -20% !important;
  }
  .max\:mt--1\/4 {
    margin-top: -25% !important;
  }
  .max\:mt--2\/7 {
    margin-top: -28.57142857% !important;
  }
  .max\:mt--1\/3 {
    margin-top: -33.333333% !important;
  }
  .max\:mt--2\/5 {
    margin-top: -40% !important;
  }
  .max\:mt--1\/2 {
    margin-top: -50% !important;
  }
  .max\:mt--1\/12 {
    margin-top: -8.333333% !important;
  }
  .max\:mt--1\/10 {
    margin-top: -10% !important;
  }
  .max\:mt--5\/12 {
    margin-top: -41.6666666% !important;
  }
  .max\:mt--7\/12 {
    margin-top: -58.333333% !important;
  }
  .max\:mt--3\/5 {
    margin-top: -60% !important;
  }
  .max\:mt--11\/12 {
    margin-top: -91.6666666% !important;
  }
  .max\:mt--2\/3 {
    margin-top: -66.666667% !important;
  }
  .max\:mt--3\/4 {
    margin-top: -75% !important;
  }
  .max\:mt--4\/5 {
    margin-top: -80% !important;
  }
  .max\:mt--5\/6 {
    margin-top: -83.3333333% !important;
  }
  .max\:mt--30 {
    margin-top: -28rem !important;
  }
  .max\:mt--24 {
    margin-top: -22rem !important;
  }
  .max\:mt--18 {
    margin-top: -16rem !important;
  }
  .max\:mt--15 {
    margin-top: -13rem !important;
  }
  .max\:mt--14 {
    margin-top: -12rem !important;
  }
  .max\:mt--13 {
    margin-top: -11rem !important;
  }
  .max\:mt--12 {
    margin-top: -10rem !important;
  }
  .max\:mt--11 {
    margin-top: -9rem !important;
  }
  .max\:mt--10 {
    margin-top: -8rem !important;
  }
  .max\:mt--9 {
    margin-top: -7rem !important;
  }
  .max\:mt--8 {
    margin-top: -6rem !important;
  }
  .max\:mt--7 {
    margin-top: -5rem !important;
  }
  .max\:mt--6 {
    margin-top: -4rem !important;
  }
  .max\:mt--5 {
    margin-top: -3rem !important;
  }
  .max\:mt--4-5 {
    margin-top: -2.5rem !important;
  }
  .max\:mt--4 {
    margin-top: -2rem !important;
  }
  .max\:mt--3-5 {
    margin-top: -1.5rem !important;
  }
  .max\:mt--3 {
    margin-top: -1rem !important;
  }
  .max\:mt--2-5 {
    margin-top: -0.75rem !important;
  }
  .max\:mt--2 {
    margin-top: -0.5rem !important;
  }
  .max\:mt--1 {
    margin-top: -0.25rem !important;
  }
  .max\:mt--0-5 {
    margin-top: -0.125rem !important;
  }
  .max\:mt-0 {
    margin-top: 0 !important;
  }
  .max\:mt-0-25 {
    margin-top: 0.0625rem !important;
  }
  .max\:mt-0-5 {
    margin-top: 0.125rem !important;
  }
  .max\:mt-1 {
    margin-top: 0.25rem !important;
  }
  .max\:mt-2 {
    margin-top: 0.5rem !important;
  }
  .max\:mt-2-5 {
    margin-top: 0.75rem !important;
  }
  .max\:mt-3 {
    margin-top: 1rem !important;
  }
  .max\:mt-3-5 {
    margin-top: 1.5rem !important;
  }
  .max\:mt-4 {
    margin-top: 2rem !important;
  }
  .max\:mt-4-5 {
    margin-top: 2.5rem !important;
  }
  .max\:mt-5 {
    margin-top: 3rem !important;
  }
  .max\:mt-6 {
    margin-top: 4rem !important;
  }
  .max\:mt-6-5 {
    margin-top: 4.5rem !important;
  }
  .max\:mt-7 {
    margin-top: 5rem !important;
  }
  .max\:mt-8 {
    margin-top: 6rem !important;
  }
  .max\:mt-9 {
    margin-top: 7rem !important;
  }
  .max\:mt-10 {
    margin-top: 8rem !important;
  }
  .max\:mt-11 {
    margin-top: 9rem !important;
  }
  .max\:mt-12 {
    margin-top: 10rem !important;
  }
  .max\:mt-13 {
    margin-top: 11rem !important;
  }
  .max\:mt-14 {
    margin-top: 12rem !important;
  }
  .max\:mt-15 {
    margin-top: 13rem !important;
  }
  .max\:mt-30 {
    margin-top: 28rem !important;
  }
  .max\:mt-1-em {
    margin-top: 0.25em !important;
  }
  .max\:mt-1-5-em {
    margin-top: 0.375em !important;
  }
  .max\:mt-2-em {
    margin-top: 0.5em !important;
  }
  .max\:mt-2-25-em {
    margin-top: 0.625em !important;
  }
  .max\:mt-2-5-em {
    margin-top: 0.75em !important;
  }
  .max\:mt-3-em {
    margin-top: 1em !important;
  }
  .max\:mt-4-em {
    margin-top: 2em !important;
  }
  .max\:mt-5-em {
    margin-top: 3em !important;
  }
  .max\:mt-6-em {
    margin-top: 4em !important;
  }
  .max\:mt-7-em {
    margin-top: 5em !important;
  }
  .max\:mt-8-em {
    margin-top: 6em !important;
  }
  .max\:mt-9-em {
    margin-top: 7em !important;
  }
  .max\:mt-1px {
    margin-top: 1px !important;
  }
  .max\:mt--1px {
    margin-top: -1px !important;
  }
  .max\:mt-1\/8 {
    margin-top: 12.5% !important;
  }
  .max\:mt-1\/6 {
    margin-top: 16.666666% !important;
  }
  .max\:mt-1\/5 {
    margin-top: 20% !important;
  }
  .max\:mt-1\/4 {
    margin-top: 25% !important;
  }
  .max\:mt-2\/7 {
    margin-top: 28.57142857% !important;
  }
  .max\:mt-1\/3 {
    margin-top: 33.333333% !important;
  }
  .max\:mt-2\/5 {
    margin-top: 40% !important;
  }
  .max\:mt-1\/2 {
    margin-top: 50% !important;
  }
  .max\:mt-1\/12 {
    margin-top: 8.333333% !important;
  }
  .max\:mt-1\/10 {
    margin-top: 10% !important;
  }
  .max\:mt-5\/12 {
    margin-top: 41.6666666% !important;
  }
  .max\:mt-7\/12 {
    margin-top: 58.333333% !important;
  }
  .max\:mt-3\/5 {
    margin-top: 60% !important;
  }
  .max\:mt-11\/12 {
    margin-top: 91.6666666% !important;
  }
  .max\:mt-2\/3 {
    margin-top: 66.666667% !important;
  }
  .max\:mt-3\/4 {
    margin-top: 75% !important;
  }
  .max\:mt-4\/5 {
    margin-top: 80% !important;
  }
  .max\:mt-5\/6 {
    margin-top: 83.3333333% !important;
  }
  .max\:mr--1\/6 {
    margin-right: -16.666666% !important;
  }
  .max\:mr--1\/5 {
    margin-right: -20% !important;
  }
  .max\:mr--1\/4 {
    margin-right: -25% !important;
  }
  .max\:mr--2\/7 {
    margin-right: -28.57142857% !important;
  }
  .max\:mr--1\/3 {
    margin-right: -33.333333% !important;
  }
  .max\:mr--2\/5 {
    margin-right: -40% !important;
  }
  .max\:mr--1\/2 {
    margin-right: -50% !important;
  }
  .max\:mr--1\/12 {
    margin-right: -8.333333% !important;
  }
  .max\:mr--1\/10 {
    margin-right: -10% !important;
  }
  .max\:mr--5\/12 {
    margin-right: -41.6666666% !important;
  }
  .max\:mr--7\/12 {
    margin-right: -58.333333% !important;
  }
  .max\:mr--3\/5 {
    margin-right: -60% !important;
  }
  .max\:mr--11\/12 {
    margin-right: -91.6666666% !important;
  }
  .max\:mr--2\/3 {
    margin-right: -66.666667% !important;
  }
  .max\:mr--3\/4 {
    margin-right: -75% !important;
  }
  .max\:mr--4\/5 {
    margin-right: -80% !important;
  }
  .max\:mr--5\/6 {
    margin-right: -83.3333333% !important;
  }
  .max\:mr--30 {
    margin-right: -28rem !important;
  }
  .max\:mr--24 {
    margin-right: -22rem !important;
  }
  .max\:mr--18 {
    margin-right: -16rem !important;
  }
  .max\:mr--15 {
    margin-right: -13rem !important;
  }
  .max\:mr--14 {
    margin-right: -12rem !important;
  }
  .max\:mr--13 {
    margin-right: -11rem !important;
  }
  .max\:mr--12 {
    margin-right: -10rem !important;
  }
  .max\:mr--11 {
    margin-right: -9rem !important;
  }
  .max\:mr--10 {
    margin-right: -8rem !important;
  }
  .max\:mr--9 {
    margin-right: -7rem !important;
  }
  .max\:mr--8 {
    margin-right: -6rem !important;
  }
  .max\:mr--7 {
    margin-right: -5rem !important;
  }
  .max\:mr--6 {
    margin-right: -4rem !important;
  }
  .max\:mr--5 {
    margin-right: -3rem !important;
  }
  .max\:mr--4-5 {
    margin-right: -2.5rem !important;
  }
  .max\:mr--4 {
    margin-right: -2rem !important;
  }
  .max\:mr--3-5 {
    margin-right: -1.5rem !important;
  }
  .max\:mr--3 {
    margin-right: -1rem !important;
  }
  .max\:mr--2-5 {
    margin-right: -0.75rem !important;
  }
  .max\:mr--2 {
    margin-right: -0.5rem !important;
  }
  .max\:mr--1 {
    margin-right: -0.25rem !important;
  }
  .max\:mr--0-5 {
    margin-right: -0.125rem !important;
  }
  .max\:mr-0 {
    margin-right: 0 !important;
  }
  .max\:mr-0-25 {
    margin-right: 0.0625rem !important;
  }
  .max\:mr-0-5 {
    margin-right: 0.125rem !important;
  }
  .max\:mr-1 {
    margin-right: 0.25rem !important;
  }
  .max\:mr-2 {
    margin-right: 0.5rem !important;
  }
  .max\:mr-2-5 {
    margin-right: 0.75rem !important;
  }
  .max\:mr-3 {
    margin-right: 1rem !important;
  }
  .max\:mr-3-5 {
    margin-right: 1.5rem !important;
  }
  .max\:mr-4 {
    margin-right: 2rem !important;
  }
  .max\:mr-4-5 {
    margin-right: 2.5rem !important;
  }
  .max\:mr-5 {
    margin-right: 3rem !important;
  }
  .max\:mr-6 {
    margin-right: 4rem !important;
  }
  .max\:mr-6-5 {
    margin-right: 4.5rem !important;
  }
  .max\:mr-7 {
    margin-right: 5rem !important;
  }
  .max\:mr-8 {
    margin-right: 6rem !important;
  }
  .max\:mr-9 {
    margin-right: 7rem !important;
  }
  .max\:mr-10 {
    margin-right: 8rem !important;
  }
  .max\:mr-11 {
    margin-right: 9rem !important;
  }
  .max\:mr-12 {
    margin-right: 10rem !important;
  }
  .max\:mr-13 {
    margin-right: 11rem !important;
  }
  .max\:mr-14 {
    margin-right: 12rem !important;
  }
  .max\:mr-15 {
    margin-right: 13rem !important;
  }
  .max\:mr-30 {
    margin-right: 28rem !important;
  }
  .max\:mr-1-em {
    margin-right: 0.25em !important;
  }
  .max\:mr-1-5-em {
    margin-right: 0.375em !important;
  }
  .max\:mr-2-em {
    margin-right: 0.5em !important;
  }
  .max\:mr-2-25-em {
    margin-right: 0.625em !important;
  }
  .max\:mr-2-5-em {
    margin-right: 0.75em !important;
  }
  .max\:mr-3-em {
    margin-right: 1em !important;
  }
  .max\:mr-4-em {
    margin-right: 2em !important;
  }
  .max\:mr-5-em {
    margin-right: 3em !important;
  }
  .max\:mr-6-em {
    margin-right: 4em !important;
  }
  .max\:mr-7-em {
    margin-right: 5em !important;
  }
  .max\:mr-8-em {
    margin-right: 6em !important;
  }
  .max\:mr-9-em {
    margin-right: 7em !important;
  }
  .max\:mr-1px {
    margin-right: 1px !important;
  }
  .max\:mr--1px {
    margin-right: -1px !important;
  }
  .max\:mr-1\/8 {
    margin-right: 12.5% !important;
  }
  .max\:mr-1\/6 {
    margin-right: 16.666666% !important;
  }
  .max\:mr-1\/5 {
    margin-right: 20% !important;
  }
  .max\:mr-1\/4 {
    margin-right: 25% !important;
  }
  .max\:mr-2\/7 {
    margin-right: 28.57142857% !important;
  }
  .max\:mr-1\/3 {
    margin-right: 33.333333% !important;
  }
  .max\:mr-2\/5 {
    margin-right: 40% !important;
  }
  .max\:mr-1\/2 {
    margin-right: 50% !important;
  }
  .max\:mr-1\/12 {
    margin-right: 8.333333% !important;
  }
  .max\:mr-1\/10 {
    margin-right: 10% !important;
  }
  .max\:mr-5\/12 {
    margin-right: 41.6666666% !important;
  }
  .max\:mr-7\/12 {
    margin-right: 58.333333% !important;
  }
  .max\:mr-3\/5 {
    margin-right: 60% !important;
  }
  .max\:mr-11\/12 {
    margin-right: 91.6666666% !important;
  }
  .max\:mr-2\/3 {
    margin-right: 66.666667% !important;
  }
  .max\:mr-3\/4 {
    margin-right: 75% !important;
  }
  .max\:mr-4\/5 {
    margin-right: 80% !important;
  }
  .max\:mr-5\/6 {
    margin-right: 83.3333333% !important;
  }
  .max\:mb--1\/6 {
    margin-bottom: -16.666666% !important;
  }
  .max\:mb--1\/5 {
    margin-bottom: -20% !important;
  }
  .max\:mb--1\/4 {
    margin-bottom: -25% !important;
  }
  .max\:mb--2\/7 {
    margin-bottom: -28.57142857% !important;
  }
  .max\:mb--1\/3 {
    margin-bottom: -33.333333% !important;
  }
  .max\:mb--2\/5 {
    margin-bottom: -40% !important;
  }
  .max\:mb--1\/2 {
    margin-bottom: -50% !important;
  }
  .max\:mb--1\/12 {
    margin-bottom: -8.333333% !important;
  }
  .max\:mb--1\/10 {
    margin-bottom: -10% !important;
  }
  .max\:mb--5\/12 {
    margin-bottom: -41.6666666% !important;
  }
  .max\:mb--7\/12 {
    margin-bottom: -58.333333% !important;
  }
  .max\:mb--3\/5 {
    margin-bottom: -60% !important;
  }
  .max\:mb--11\/12 {
    margin-bottom: -91.6666666% !important;
  }
  .max\:mb--2\/3 {
    margin-bottom: -66.666667% !important;
  }
  .max\:mb--3\/4 {
    margin-bottom: -75% !important;
  }
  .max\:mb--4\/5 {
    margin-bottom: -80% !important;
  }
  .max\:mb--5\/6 {
    margin-bottom: -83.3333333% !important;
  }
  .max\:mb--30 {
    margin-bottom: -28rem !important;
  }
  .max\:mb--24 {
    margin-bottom: -22rem !important;
  }
  .max\:mb--18 {
    margin-bottom: -16rem !important;
  }
  .max\:mb--15 {
    margin-bottom: -13rem !important;
  }
  .max\:mb--14 {
    margin-bottom: -12rem !important;
  }
  .max\:mb--13 {
    margin-bottom: -11rem !important;
  }
  .max\:mb--12 {
    margin-bottom: -10rem !important;
  }
  .max\:mb--11 {
    margin-bottom: -9rem !important;
  }
  .max\:mb--10 {
    margin-bottom: -8rem !important;
  }
  .max\:mb--9 {
    margin-bottom: -7rem !important;
  }
  .max\:mb--8 {
    margin-bottom: -6rem !important;
  }
  .max\:mb--7 {
    margin-bottom: -5rem !important;
  }
  .max\:mb--6 {
    margin-bottom: -4rem !important;
  }
  .max\:mb--5 {
    margin-bottom: -3rem !important;
  }
  .max\:mb--4-5 {
    margin-bottom: -2.5rem !important;
  }
  .max\:mb--4 {
    margin-bottom: -2rem !important;
  }
  .max\:mb--3-5 {
    margin-bottom: -1.5rem !important;
  }
  .max\:mb--3 {
    margin-bottom: -1rem !important;
  }
  .max\:mb--2-5 {
    margin-bottom: -0.75rem !important;
  }
  .max\:mb--2 {
    margin-bottom: -0.5rem !important;
  }
  .max\:mb--1 {
    margin-bottom: -0.25rem !important;
  }
  .max\:mb--0-5 {
    margin-bottom: -0.125rem !important;
  }
  .max\:mb-0 {
    margin-bottom: 0 !important;
  }
  .max\:mb-0-25 {
    margin-bottom: 0.0625rem !important;
  }
  .max\:mb-0-5 {
    margin-bottom: 0.125rem !important;
  }
  .max\:mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .max\:mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .max\:mb-2-5 {
    margin-bottom: 0.75rem !important;
  }
  .max\:mb-3 {
    margin-bottom: 1rem !important;
  }
  .max\:mb-3-5 {
    margin-bottom: 1.5rem !important;
  }
  .max\:mb-4 {
    margin-bottom: 2rem !important;
  }
  .max\:mb-4-5 {
    margin-bottom: 2.5rem !important;
  }
  .max\:mb-5 {
    margin-bottom: 3rem !important;
  }
  .max\:mb-6 {
    margin-bottom: 4rem !important;
  }
  .max\:mb-6-5 {
    margin-bottom: 4.5rem !important;
  }
  .max\:mb-7 {
    margin-bottom: 5rem !important;
  }
  .max\:mb-8 {
    margin-bottom: 6rem !important;
  }
  .max\:mb-9 {
    margin-bottom: 7rem !important;
  }
  .max\:mb-10 {
    margin-bottom: 8rem !important;
  }
  .max\:mb-11 {
    margin-bottom: 9rem !important;
  }
  .max\:mb-12 {
    margin-bottom: 10rem !important;
  }
  .max\:mb-13 {
    margin-bottom: 11rem !important;
  }
  .max\:mb-14 {
    margin-bottom: 12rem !important;
  }
  .max\:mb-15 {
    margin-bottom: 13rem !important;
  }
  .max\:mb-30 {
    margin-bottom: 28rem !important;
  }
  .max\:mb-1-em {
    margin-bottom: 0.25em !important;
  }
  .max\:mb-1-5-em {
    margin-bottom: 0.375em !important;
  }
  .max\:mb-2-em {
    margin-bottom: 0.5em !important;
  }
  .max\:mb-2-25-em {
    margin-bottom: 0.625em !important;
  }
  .max\:mb-2-5-em {
    margin-bottom: 0.75em !important;
  }
  .max\:mb-3-em {
    margin-bottom: 1em !important;
  }
  .max\:mb-4-em {
    margin-bottom: 2em !important;
  }
  .max\:mb-5-em {
    margin-bottom: 3em !important;
  }
  .max\:mb-6-em {
    margin-bottom: 4em !important;
  }
  .max\:mb-7-em {
    margin-bottom: 5em !important;
  }
  .max\:mb-8-em {
    margin-bottom: 6em !important;
  }
  .max\:mb-9-em {
    margin-bottom: 7em !important;
  }
  .max\:mb-1px {
    margin-bottom: 1px !important;
  }
  .max\:mb--1px {
    margin-bottom: -1px !important;
  }
  .max\:mb-1\/8 {
    margin-bottom: 12.5% !important;
  }
  .max\:mb-1\/6 {
    margin-bottom: 16.666666% !important;
  }
  .max\:mb-1\/5 {
    margin-bottom: 20% !important;
  }
  .max\:mb-1\/4 {
    margin-bottom: 25% !important;
  }
  .max\:mb-2\/7 {
    margin-bottom: 28.57142857% !important;
  }
  .max\:mb-1\/3 {
    margin-bottom: 33.333333% !important;
  }
  .max\:mb-2\/5 {
    margin-bottom: 40% !important;
  }
  .max\:mb-1\/2 {
    margin-bottom: 50% !important;
  }
  .max\:mb-1\/12 {
    margin-bottom: 8.333333% !important;
  }
  .max\:mb-1\/10 {
    margin-bottom: 10% !important;
  }
  .max\:mb-5\/12 {
    margin-bottom: 41.6666666% !important;
  }
  .max\:mb-7\/12 {
    margin-bottom: 58.333333% !important;
  }
  .max\:mb-3\/5 {
    margin-bottom: 60% !important;
  }
  .max\:mb-11\/12 {
    margin-bottom: 91.6666666% !important;
  }
  .max\:mb-2\/3 {
    margin-bottom: 66.666667% !important;
  }
  .max\:mb-3\/4 {
    margin-bottom: 75% !important;
  }
  .max\:mb-4\/5 {
    margin-bottom: 80% !important;
  }
  .max\:mb-5\/6 {
    margin-bottom: 83.3333333% !important;
  }
  .max\:ml--1\/6 {
    margin-left: -16.666666% !important;
  }
  .max\:ml--1\/5 {
    margin-left: -20% !important;
  }
  .max\:ml--1\/4 {
    margin-left: -25% !important;
  }
  .max\:ml--2\/7 {
    margin-left: -28.57142857% !important;
  }
  .max\:ml--1\/3 {
    margin-left: -33.333333% !important;
  }
  .max\:ml--2\/5 {
    margin-left: -40% !important;
  }
  .max\:ml--1\/2 {
    margin-left: -50% !important;
  }
  .max\:ml--1\/12 {
    margin-left: -8.333333% !important;
  }
  .max\:ml--1\/10 {
    margin-left: -10% !important;
  }
  .max\:ml--5\/12 {
    margin-left: -41.6666666% !important;
  }
  .max\:ml--7\/12 {
    margin-left: -58.333333% !important;
  }
  .max\:ml--3\/5 {
    margin-left: -60% !important;
  }
  .max\:ml--11\/12 {
    margin-left: -91.6666666% !important;
  }
  .max\:ml--2\/3 {
    margin-left: -66.666667% !important;
  }
  .max\:ml--3\/4 {
    margin-left: -75% !important;
  }
  .max\:ml--4\/5 {
    margin-left: -80% !important;
  }
  .max\:ml--5\/6 {
    margin-left: -83.3333333% !important;
  }
  .max\:ml--30 {
    margin-left: -28rem !important;
  }
  .max\:ml--24 {
    margin-left: -22rem !important;
  }
  .max\:ml--18 {
    margin-left: -16rem !important;
  }
  .max\:ml--15 {
    margin-left: -13rem !important;
  }
  .max\:ml--14 {
    margin-left: -12rem !important;
  }
  .max\:ml--13 {
    margin-left: -11rem !important;
  }
  .max\:ml--12 {
    margin-left: -10rem !important;
  }
  .max\:ml--11 {
    margin-left: -9rem !important;
  }
  .max\:ml--10 {
    margin-left: -8rem !important;
  }
  .max\:ml--9 {
    margin-left: -7rem !important;
  }
  .max\:ml--8 {
    margin-left: -6rem !important;
  }
  .max\:ml--7 {
    margin-left: -5rem !important;
  }
  .max\:ml--6 {
    margin-left: -4rem !important;
  }
  .max\:ml--5 {
    margin-left: -3rem !important;
  }
  .max\:ml--4-5 {
    margin-left: -2.5rem !important;
  }
  .max\:ml--4 {
    margin-left: -2rem !important;
  }
  .max\:ml--3-5 {
    margin-left: -1.5rem !important;
  }
  .max\:ml--3 {
    margin-left: -1rem !important;
  }
  .max\:ml--2-5 {
    margin-left: -0.75rem !important;
  }
  .max\:ml--2 {
    margin-left: -0.5rem !important;
  }
  .max\:ml--1 {
    margin-left: -0.25rem !important;
  }
  .max\:ml--0-5 {
    margin-left: -0.125rem !important;
  }
  .max\:ml-0 {
    margin-left: 0 !important;
  }
  .max\:ml-0-25 {
    margin-left: 0.0625rem !important;
  }
  .max\:ml-0-5 {
    margin-left: 0.125rem !important;
  }
  .max\:ml-1 {
    margin-left: 0.25rem !important;
  }
  .max\:ml-2 {
    margin-left: 0.5rem !important;
  }
  .max\:ml-2-5 {
    margin-left: 0.75rem !important;
  }
  .max\:ml-3 {
    margin-left: 1rem !important;
  }
  .max\:ml-3-5 {
    margin-left: 1.5rem !important;
  }
  .max\:ml-4 {
    margin-left: 2rem !important;
  }
  .max\:ml-4-5 {
    margin-left: 2.5rem !important;
  }
  .max\:ml-5 {
    margin-left: 3rem !important;
  }
  .max\:ml-6 {
    margin-left: 4rem !important;
  }
  .max\:ml-6-5 {
    margin-left: 4.5rem !important;
  }
  .max\:ml-7 {
    margin-left: 5rem !important;
  }
  .max\:ml-8 {
    margin-left: 6rem !important;
  }
  .max\:ml-9 {
    margin-left: 7rem !important;
  }
  .max\:ml-10 {
    margin-left: 8rem !important;
  }
  .max\:ml-11 {
    margin-left: 9rem !important;
  }
  .max\:ml-12 {
    margin-left: 10rem !important;
  }
  .max\:ml-13 {
    margin-left: 11rem !important;
  }
  .max\:ml-14 {
    margin-left: 12rem !important;
  }
  .max\:ml-15 {
    margin-left: 13rem !important;
  }
  .max\:ml-30 {
    margin-left: 28rem !important;
  }
  .max\:ml-1-em {
    margin-left: 0.25em !important;
  }
  .max\:ml-1-5-em {
    margin-left: 0.375em !important;
  }
  .max\:ml-2-em {
    margin-left: 0.5em !important;
  }
  .max\:ml-2-25-em {
    margin-left: 0.625em !important;
  }
  .max\:ml-2-5-em {
    margin-left: 0.75em !important;
  }
  .max\:ml-3-em {
    margin-left: 1em !important;
  }
  .max\:ml-4-em {
    margin-left: 2em !important;
  }
  .max\:ml-5-em {
    margin-left: 3em !important;
  }
  .max\:ml-6-em {
    margin-left: 4em !important;
  }
  .max\:ml-7-em {
    margin-left: 5em !important;
  }
  .max\:ml-8-em {
    margin-left: 6em !important;
  }
  .max\:ml-9-em {
    margin-left: 7em !important;
  }
  .max\:ml-1px {
    margin-left: 1px !important;
  }
  .max\:ml--1px {
    margin-left: -1px !important;
  }
  .max\:ml-1\/8 {
    margin-left: 12.5% !important;
  }
  .max\:ml-1\/6 {
    margin-left: 16.666666% !important;
  }
  .max\:ml-1\/5 {
    margin-left: 20% !important;
  }
  .max\:ml-1\/4 {
    margin-left: 25% !important;
  }
  .max\:ml-2\/7 {
    margin-left: 28.57142857% !important;
  }
  .max\:ml-1\/3 {
    margin-left: 33.333333% !important;
  }
  .max\:ml-2\/5 {
    margin-left: 40% !important;
  }
  .max\:ml-1\/2 {
    margin-left: 50% !important;
  }
  .max\:ml-1\/12 {
    margin-left: 8.333333% !important;
  }
  .max\:ml-1\/10 {
    margin-left: 10% !important;
  }
  .max\:ml-5\/12 {
    margin-left: 41.6666666% !important;
  }
  .max\:ml-7\/12 {
    margin-left: 58.333333% !important;
  }
  .max\:ml-3\/5 {
    margin-left: 60% !important;
  }
  .max\:ml-11\/12 {
    margin-left: 91.6666666% !important;
  }
  .max\:ml-2\/3 {
    margin-left: 66.666667% !important;
  }
  .max\:ml-3\/4 {
    margin-left: 75% !important;
  }
  .max\:ml-4\/5 {
    margin-left: 80% !important;
  }
  .max\:ml-5\/6 {
    margin-left: 83.3333333% !important;
  }
}
/* After columns, as setting padding is more important than default column padding */
/* BORDERS */
.border-none {
  border: none !important;
}
.border-1px, .border-2px, .border-1, .border-1-5, .border-2, .border-3, .border-y-1px, .border-y-1, .border-y-1-5, .border-y-2, .border-y-3, .border-t-1px, .border-t-1, .border-t-1-5, .border-t-2, .border-t-3, .border-x-1px, .border-x-2px, .border-x-1, .border-x-1-5, .border-x-2, .border-x-3, .border-r-1px, .border-r-2px, .border-r-1, .border-r-1-5, .border-r-2, .border-r-3, .border-b-1px, .border-b-1, .border-b-1-5, .border-b-2, .border-b-3, .border-l-1px, .border-l-2px, .border-l-1, .border-l-1-5, .border-l-2, .border-l-3 {
  border-style: solid;
  border-width: 0;
}

.hover\:border-none:hover {
  border: none !important;
}

.border-y-none, .border-t-none {
  border-top-width: 0 !important;
}

.border-1px, .border-y-1px, .border-t-1px, .border-y-1, .border-t-1, .border-y-1-5, .border-t-1-5, .border-y-2, .border-t-2, .border-y-3, .border-t-3 {
  border-top-style: solid !important;
}

.border-1px, .border-y-1px, .border-b-1px, .border-y-1, .border-b-1, .border-y-1-5, .border-b-1-5, .border-y-2, .border-b-2, .border-y-3, .border-b-3 {
  border-bottom-style: solid !important;
}

.border-1px, .border-x-1px, .border-l-1px, .border-x-1, .border-l-1, .border-x-1-5, .border-l-1-5, .border-x-2, .border-l-2, .border-x-3, .border-l-3 {
  border-left-style: solid !important;
}

.border-1px, .border-x-1px, .border-r-1px, .border-x-1, .border-r-1, .border-x-1-5, .border-r-1-5, .border-x-2, .border-r-2, .border-x-3, .border-r-3 {
  border-right-style: solid !important;
}

.border-1px, .border-y-1px, .border-t-1px {
  border-top-width: 1px !important;
}

.border-2px, .border-y-2px, .border-t-2px {
  border-top-width: 2px !important;
}

.border-1, .border-y-1, .border-t-1 {
  border-top-width: 0.25rem !important;
}

.border-1-5, .border-y-1-5, .border-t-1-5 {
  border-top-width: 0.375rem !important;
}

.border-2, .border-y-2, .border-t-2 {
  border-top-width: 0.5rem !important;
}

.border-3, .border-y-3, .border-t-3 {
  border-top-width: 1rem !important;
}

.border-y-none, .border-b-none {
  border-bottom-width: 0 !important;
}

.border-1px, .border-y-1px, .border-b-1px {
  border-bottom-width: 1px !important;
}

.border-2px, .border-y-2px, .border-b-2px {
  border-bottom-width: 2px !important;
}

.border-1, .border-y-1, .border-b-1 {
  border-bottom-width: 0.25rem !important;
}

.border-1-5, .border-y-1-5, .border-b-1-5 {
  border-bottom-width: 0.375rem !important;
}

.border-2, .border-y-2, .border-b-2 {
  border-bottom-width: 0.5rem !important;
}

.border-3, .border-y-3, .border-b-3 {
  border-bottom-width: 1rem !important;
}

.border-x-none, .border-r-none {
  border-right-width: 0 !important;
}

.border-1px, .border-x-1px, .border-r-1px {
  border-right-width: 1px !important;
}

.border-2px, .border-x-2px, .border-r-2px {
  border-right-width: 2px !important;
}

.border-1, .border-x-1, .border-r-1 {
  border-right-width: 0.25rem !important;
}

.border-1-5, .border-x-1-5, .border-r-1-5 {
  border-right-width: 0.375rem !important;
}

.border-2, .border-x-2, .border-r-2 {
  border-right-width: 0.5rem !important;
}

.border-3, .border-x-3, .border-r-3 {
  border-right-width: 1rem !important;
}

.border-x-none, .border-l-none {
  border-left-width: 0 !important;
}

.border-1px, .border-x-1px, .border-l-1px {
  border-left-width: 1px !important;
}

.border-2px, .border-x-2px, .border-l-2px {
  border-left-width: 2px !important;
}

.border-1, .border-x-1, .border-l-1 {
  border-left-width: 0.25rem !important;
}

.border-1-5, .border-x-1-5, .border-l-1-5 {
  border-left-width: 0.375rem !important;
}

.border-2, .border-x-2, .border-l-2 {
  border-left-width: 0.5rem !important;
}

.border-3, .border-x-3, .border-l-3 {
  border-left-width: 1rem !important;
}

@media screen and (min-width: 360px) {
  .xs\:border-y-none, .xs\:border-t-none {
    border-top-width: 0 !important;
  }
  .xs\:border-1px, .xs\:border-y-1px, .xs\:border-t-1px, .xs\:border-y-1, .xs\:border-t-1, .xs\:border-y-1-5, .xs\:border-t-1-5, .xs\:border-y-2, .xs\:border-t-2, .xs\:border-y-3, .xs\:border-t-3 {
    border-top-style: solid !important;
  }
  .xs\:border-1px, .xs\:border-y-1px, .xs\:border-b-1px, .xs\:border-y-1, .xs\:border-b-1, .xs\:border-y-1-5, .xs\:border-b-1-5, .xs\:border-y-2, .xs\:border-b-2, .xs\:border-y-3, .xs\:border-b-3 {
    border-bottom-style: solid !important;
  }
  .xs\:border-1px, .xs\:border-x-1px, .xs\:border-l-1px, .xs\:border-x-1, .xs\:border-l-1, .xs\:border-x-1-5, .xs\:border-l-1-5, .xs\:border-x-2, .xs\:border-l-2, .xs\:border-x-3, .xs\:border-l-3 {
    border-left-style: solid !important;
  }
  .xs\:border-1px, .xs\:border-x-1px, .xs\:border-r-1px, .xs\:border-x-1, .xs\:border-r-1, .xs\:border-x-1-5, .xs\:border-r-1-5, .xs\:border-x-2, .xs\:border-r-2, .xs\:border-x-3, .xs\:border-r-3 {
    border-right-style: solid !important;
  }
  .xs\:border-1px, .xs\:border-y-1px, .xs\:border-t-1px {
    border-top-width: 1px !important;
  }
  .xs\:border-2px, .xs\:border-y-2px, .xs\:border-t-2px {
    border-top-width: 2px !important;
  }
  .xs\:border-1, .xs\:border-y-1, .xs\:border-t-1 {
    border-top-width: 0.25rem !important;
  }
  .xs\:border-1-5, .xs\:border-y-1-5, .xs\:border-t-1-5 {
    border-top-width: 0.375rem !important;
  }
  .xs\:border-2, .xs\:border-y-2, .xs\:border-t-2 {
    border-top-width: 0.5rem !important;
  }
  .xs\:border-3, .xs\:border-y-3, .xs\:border-t-3 {
    border-top-width: 1rem !important;
  }
  .xs\:border-y-none, .xs\:border-b-none {
    border-bottom-width: 0 !important;
  }
  .xs\:border-1px, .xs\:border-y-1px, .xs\:border-b-1px {
    border-bottom-width: 1px !important;
  }
  .xs\:border-2px, .xs\:border-y-2px, .xs\:border-b-2px {
    border-bottom-width: 2px !important;
  }
  .xs\:border-1, .xs\:border-y-1, .xs\:border-b-1 {
    border-bottom-width: 0.25rem !important;
  }
  .xs\:border-1-5, .xs\:border-y-1-5, .xs\:border-b-1-5 {
    border-bottom-width: 0.375rem !important;
  }
  .xs\:border-2, .xs\:border-y-2, .xs\:border-b-2 {
    border-bottom-width: 0.5rem !important;
  }
  .xs\:border-3, .xs\:border-y-3, .xs\:border-b-3 {
    border-bottom-width: 1rem !important;
  }
  .xs\:border-x-none, .xs\:border-r-none {
    border-right-width: 0 !important;
  }
  .xs\:border-1px, .xs\:border-x-1px, .xs\:border-r-1px {
    border-right-width: 1px !important;
  }
  .xs\:border-2px, .xs\:border-x-2px, .xs\:border-r-2px {
    border-right-width: 2px !important;
  }
  .xs\:border-1, .xs\:border-x-1, .xs\:border-r-1 {
    border-right-width: 0.25rem !important;
  }
  .xs\:border-1-5, .xs\:border-x-1-5, .xs\:border-r-1-5 {
    border-right-width: 0.375rem !important;
  }
  .xs\:border-2, .xs\:border-x-2, .xs\:border-r-2 {
    border-right-width: 0.5rem !important;
  }
  .xs\:border-3, .xs\:border-x-3, .xs\:border-r-3 {
    border-right-width: 1rem !important;
  }
  .xs\:border-x-none, .xs\:border-l-none {
    border-left-width: 0 !important;
  }
  .xs\:border-1px, .xs\:border-x-1px, .xs\:border-l-1px {
    border-left-width: 1px !important;
  }
  .xs\:border-2px, .xs\:border-x-2px, .xs\:border-l-2px {
    border-left-width: 2px !important;
  }
  .xs\:border-1, .xs\:border-x-1, .xs\:border-l-1 {
    border-left-width: 0.25rem !important;
  }
  .xs\:border-1-5, .xs\:border-x-1-5, .xs\:border-l-1-5 {
    border-left-width: 0.375rem !important;
  }
  .xs\:border-2, .xs\:border-x-2, .xs\:border-l-2 {
    border-left-width: 0.5rem !important;
  }
  .xs\:border-3, .xs\:border-x-3, .xs\:border-l-3 {
    border-left-width: 1rem !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:border-y-none, .sm\:border-t-none {
    border-top-width: 0 !important;
  }
  .sm\:border-1px, .sm\:border-y-1px, .sm\:border-t-1px, .sm\:border-y-1, .sm\:border-t-1, .sm\:border-y-1-5, .sm\:border-t-1-5, .sm\:border-y-2, .sm\:border-t-2, .sm\:border-y-3, .sm\:border-t-3 {
    border-top-style: solid !important;
  }
  .sm\:border-1px, .sm\:border-y-1px, .sm\:border-b-1px, .sm\:border-y-1, .sm\:border-b-1, .sm\:border-y-1-5, .sm\:border-b-1-5, .sm\:border-y-2, .sm\:border-b-2, .sm\:border-y-3, .sm\:border-b-3 {
    border-bottom-style: solid !important;
  }
  .sm\:border-1px, .sm\:border-x-1px, .sm\:border-l-1px, .sm\:border-x-1, .sm\:border-l-1, .sm\:border-x-1-5, .sm\:border-l-1-5, .sm\:border-x-2, .sm\:border-l-2, .sm\:border-x-3, .sm\:border-l-3 {
    border-left-style: solid !important;
  }
  .sm\:border-1px, .sm\:border-x-1px, .sm\:border-r-1px, .sm\:border-x-1, .sm\:border-r-1, .sm\:border-x-1-5, .sm\:border-r-1-5, .sm\:border-x-2, .sm\:border-r-2, .sm\:border-x-3, .sm\:border-r-3 {
    border-right-style: solid !important;
  }
  .sm\:border-1px, .sm\:border-y-1px, .sm\:border-t-1px {
    border-top-width: 1px !important;
  }
  .sm\:border-2px, .sm\:border-y-2px, .sm\:border-t-2px {
    border-top-width: 2px !important;
  }
  .sm\:border-1, .sm\:border-y-1, .sm\:border-t-1 {
    border-top-width: 0.25rem !important;
  }
  .sm\:border-1-5, .sm\:border-y-1-5, .sm\:border-t-1-5 {
    border-top-width: 0.375rem !important;
  }
  .sm\:border-2, .sm\:border-y-2, .sm\:border-t-2 {
    border-top-width: 0.5rem !important;
  }
  .sm\:border-3, .sm\:border-y-3, .sm\:border-t-3 {
    border-top-width: 1rem !important;
  }
  .sm\:border-y-none, .sm\:border-b-none {
    border-bottom-width: 0 !important;
  }
  .sm\:border-1px, .sm\:border-y-1px, .sm\:border-b-1px {
    border-bottom-width: 1px !important;
  }
  .sm\:border-2px, .sm\:border-y-2px, .sm\:border-b-2px {
    border-bottom-width: 2px !important;
  }
  .sm\:border-1, .sm\:border-y-1, .sm\:border-b-1 {
    border-bottom-width: 0.25rem !important;
  }
  .sm\:border-1-5, .sm\:border-y-1-5, .sm\:border-b-1-5 {
    border-bottom-width: 0.375rem !important;
  }
  .sm\:border-2, .sm\:border-y-2, .sm\:border-b-2 {
    border-bottom-width: 0.5rem !important;
  }
  .sm\:border-3, .sm\:border-y-3, .sm\:border-b-3 {
    border-bottom-width: 1rem !important;
  }
  .sm\:border-x-none, .sm\:border-r-none {
    border-right-width: 0 !important;
  }
  .sm\:border-1px, .sm\:border-x-1px, .sm\:border-r-1px {
    border-right-width: 1px !important;
  }
  .sm\:border-2px, .sm\:border-x-2px, .sm\:border-r-2px {
    border-right-width: 2px !important;
  }
  .sm\:border-1, .sm\:border-x-1, .sm\:border-r-1 {
    border-right-width: 0.25rem !important;
  }
  .sm\:border-1-5, .sm\:border-x-1-5, .sm\:border-r-1-5 {
    border-right-width: 0.375rem !important;
  }
  .sm\:border-2, .sm\:border-x-2, .sm\:border-r-2 {
    border-right-width: 0.5rem !important;
  }
  .sm\:border-3, .sm\:border-x-3, .sm\:border-r-3 {
    border-right-width: 1rem !important;
  }
  .sm\:border-x-none, .sm\:border-l-none {
    border-left-width: 0 !important;
  }
  .sm\:border-1px, .sm\:border-x-1px, .sm\:border-l-1px {
    border-left-width: 1px !important;
  }
  .sm\:border-2px, .sm\:border-x-2px, .sm\:border-l-2px {
    border-left-width: 2px !important;
  }
  .sm\:border-1, .sm\:border-x-1, .sm\:border-l-1 {
    border-left-width: 0.25rem !important;
  }
  .sm\:border-1-5, .sm\:border-x-1-5, .sm\:border-l-1-5 {
    border-left-width: 0.375rem !important;
  }
  .sm\:border-2, .sm\:border-x-2, .sm\:border-l-2 {
    border-left-width: 0.5rem !important;
  }
  .sm\:border-3, .sm\:border-x-3, .sm\:border-l-3 {
    border-left-width: 1rem !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:border-y-none, .md\:border-t-none {
    border-top-width: 0 !important;
  }
  .md\:border-1px, .md\:border-y-1px, .md\:border-t-1px, .md\:border-y-1, .md\:border-t-1, .md\:border-y-1-5, .md\:border-t-1-5, .md\:border-y-2, .md\:border-t-2, .md\:border-y-3, .md\:border-t-3 {
    border-top-style: solid !important;
  }
  .md\:border-1px, .md\:border-y-1px, .md\:border-b-1px, .md\:border-y-1, .md\:border-b-1, .md\:border-y-1-5, .md\:border-b-1-5, .md\:border-y-2, .md\:border-b-2, .md\:border-y-3, .md\:border-b-3 {
    border-bottom-style: solid !important;
  }
  .md\:border-1px, .md\:border-x-1px, .md\:border-l-1px, .md\:border-x-1, .md\:border-l-1, .md\:border-x-1-5, .md\:border-l-1-5, .md\:border-x-2, .md\:border-l-2, .md\:border-x-3, .md\:border-l-3 {
    border-left-style: solid !important;
  }
  .md\:border-1px, .md\:border-x-1px, .md\:border-r-1px, .md\:border-x-1, .md\:border-r-1, .md\:border-x-1-5, .md\:border-r-1-5, .md\:border-x-2, .md\:border-r-2, .md\:border-x-3, .md\:border-r-3 {
    border-right-style: solid !important;
  }
  .md\:border-1px, .md\:border-y-1px, .md\:border-t-1px {
    border-top-width: 1px !important;
  }
  .md\:border-2px, .md\:border-y-2px, .md\:border-t-2px {
    border-top-width: 2px !important;
  }
  .md\:border-1, .md\:border-y-1, .md\:border-t-1 {
    border-top-width: 0.25rem !important;
  }
  .md\:border-1-5, .md\:border-y-1-5, .md\:border-t-1-5 {
    border-top-width: 0.375rem !important;
  }
  .md\:border-2, .md\:border-y-2, .md\:border-t-2 {
    border-top-width: 0.5rem !important;
  }
  .md\:border-3, .md\:border-y-3, .md\:border-t-3 {
    border-top-width: 1rem !important;
  }
  .md\:border-y-none, .md\:border-b-none {
    border-bottom-width: 0 !important;
  }
  .md\:border-1px, .md\:border-y-1px, .md\:border-b-1px {
    border-bottom-width: 1px !important;
  }
  .md\:border-2px, .md\:border-y-2px, .md\:border-b-2px {
    border-bottom-width: 2px !important;
  }
  .md\:border-1, .md\:border-y-1, .md\:border-b-1 {
    border-bottom-width: 0.25rem !important;
  }
  .md\:border-1-5, .md\:border-y-1-5, .md\:border-b-1-5 {
    border-bottom-width: 0.375rem !important;
  }
  .md\:border-2, .md\:border-y-2, .md\:border-b-2 {
    border-bottom-width: 0.5rem !important;
  }
  .md\:border-3, .md\:border-y-3, .md\:border-b-3 {
    border-bottom-width: 1rem !important;
  }
  .md\:border-x-none, .md\:border-r-none {
    border-right-width: 0 !important;
  }
  .md\:border-1px, .md\:border-x-1px, .md\:border-r-1px {
    border-right-width: 1px !important;
  }
  .md\:border-2px, .md\:border-x-2px, .md\:border-r-2px {
    border-right-width: 2px !important;
  }
  .md\:border-1, .md\:border-x-1, .md\:border-r-1 {
    border-right-width: 0.25rem !important;
  }
  .md\:border-1-5, .md\:border-x-1-5, .md\:border-r-1-5 {
    border-right-width: 0.375rem !important;
  }
  .md\:border-2, .md\:border-x-2, .md\:border-r-2 {
    border-right-width: 0.5rem !important;
  }
  .md\:border-3, .md\:border-x-3, .md\:border-r-3 {
    border-right-width: 1rem !important;
  }
  .md\:border-x-none, .md\:border-l-none {
    border-left-width: 0 !important;
  }
  .md\:border-1px, .md\:border-x-1px, .md\:border-l-1px {
    border-left-width: 1px !important;
  }
  .md\:border-2px, .md\:border-x-2px, .md\:border-l-2px {
    border-left-width: 2px !important;
  }
  .md\:border-1, .md\:border-x-1, .md\:border-l-1 {
    border-left-width: 0.25rem !important;
  }
  .md\:border-1-5, .md\:border-x-1-5, .md\:border-l-1-5 {
    border-left-width: 0.375rem !important;
  }
  .md\:border-2, .md\:border-x-2, .md\:border-l-2 {
    border-left-width: 0.5rem !important;
  }
  .md\:border-3, .md\:border-x-3, .md\:border-l-3 {
    border-left-width: 1rem !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:border-y-none, .lg\:border-t-none {
    border-top-width: 0 !important;
  }
  .lg\:border-1px, .lg\:border-y-1px, .lg\:border-t-1px, .lg\:border-y-1, .lg\:border-t-1, .lg\:border-y-1-5, .lg\:border-t-1-5, .lg\:border-y-2, .lg\:border-t-2, .lg\:border-y-3, .lg\:border-t-3 {
    border-top-style: solid !important;
  }
  .lg\:border-1px, .lg\:border-y-1px, .lg\:border-b-1px, .lg\:border-y-1, .lg\:border-b-1, .lg\:border-y-1-5, .lg\:border-b-1-5, .lg\:border-y-2, .lg\:border-b-2, .lg\:border-y-3, .lg\:border-b-3 {
    border-bottom-style: solid !important;
  }
  .lg\:border-1px, .lg\:border-x-1px, .lg\:border-l-1px, .lg\:border-x-1, .lg\:border-l-1, .lg\:border-x-1-5, .lg\:border-l-1-5, .lg\:border-x-2, .lg\:border-l-2, .lg\:border-x-3, .lg\:border-l-3 {
    border-left-style: solid !important;
  }
  .lg\:border-1px, .lg\:border-x-1px, .lg\:border-r-1px, .lg\:border-x-1, .lg\:border-r-1, .lg\:border-x-1-5, .lg\:border-r-1-5, .lg\:border-x-2, .lg\:border-r-2, .lg\:border-x-3, .lg\:border-r-3 {
    border-right-style: solid !important;
  }
  .lg\:border-1px, .lg\:border-y-1px, .lg\:border-t-1px {
    border-top-width: 1px !important;
  }
  .lg\:border-2px, .lg\:border-y-2px, .lg\:border-t-2px {
    border-top-width: 2px !important;
  }
  .lg\:border-1, .lg\:border-y-1, .lg\:border-t-1 {
    border-top-width: 0.25rem !important;
  }
  .lg\:border-1-5, .lg\:border-y-1-5, .lg\:border-t-1-5 {
    border-top-width: 0.375rem !important;
  }
  .lg\:border-2, .lg\:border-y-2, .lg\:border-t-2 {
    border-top-width: 0.5rem !important;
  }
  .lg\:border-3, .lg\:border-y-3, .lg\:border-t-3 {
    border-top-width: 1rem !important;
  }
  .lg\:border-y-none, .lg\:border-b-none {
    border-bottom-width: 0 !important;
  }
  .lg\:border-1px, .lg\:border-y-1px, .lg\:border-b-1px {
    border-bottom-width: 1px !important;
  }
  .lg\:border-2px, .lg\:border-y-2px, .lg\:border-b-2px {
    border-bottom-width: 2px !important;
  }
  .lg\:border-1, .lg\:border-y-1, .lg\:border-b-1 {
    border-bottom-width: 0.25rem !important;
  }
  .lg\:border-1-5, .lg\:border-y-1-5, .lg\:border-b-1-5 {
    border-bottom-width: 0.375rem !important;
  }
  .lg\:border-2, .lg\:border-y-2, .lg\:border-b-2 {
    border-bottom-width: 0.5rem !important;
  }
  .lg\:border-3, .lg\:border-y-3, .lg\:border-b-3 {
    border-bottom-width: 1rem !important;
  }
  .lg\:border-x-none, .lg\:border-r-none {
    border-right-width: 0 !important;
  }
  .lg\:border-1px, .lg\:border-x-1px, .lg\:border-r-1px {
    border-right-width: 1px !important;
  }
  .lg\:border-2px, .lg\:border-x-2px, .lg\:border-r-2px {
    border-right-width: 2px !important;
  }
  .lg\:border-1, .lg\:border-x-1, .lg\:border-r-1 {
    border-right-width: 0.25rem !important;
  }
  .lg\:border-1-5, .lg\:border-x-1-5, .lg\:border-r-1-5 {
    border-right-width: 0.375rem !important;
  }
  .lg\:border-2, .lg\:border-x-2, .lg\:border-r-2 {
    border-right-width: 0.5rem !important;
  }
  .lg\:border-3, .lg\:border-x-3, .lg\:border-r-3 {
    border-right-width: 1rem !important;
  }
  .lg\:border-x-none, .lg\:border-l-none {
    border-left-width: 0 !important;
  }
  .lg\:border-1px, .lg\:border-x-1px, .lg\:border-l-1px {
    border-left-width: 1px !important;
  }
  .lg\:border-2px, .lg\:border-x-2px, .lg\:border-l-2px {
    border-left-width: 2px !important;
  }
  .lg\:border-1, .lg\:border-x-1, .lg\:border-l-1 {
    border-left-width: 0.25rem !important;
  }
  .lg\:border-1-5, .lg\:border-x-1-5, .lg\:border-l-1-5 {
    border-left-width: 0.375rem !important;
  }
  .lg\:border-2, .lg\:border-x-2, .lg\:border-l-2 {
    border-left-width: 0.5rem !important;
  }
  .lg\:border-3, .lg\:border-x-3, .lg\:border-l-3 {
    border-left-width: 1rem !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:border-y-none, .xl\:border-t-none {
    border-top-width: 0 !important;
  }
  .xl\:border-1px, .xl\:border-y-1px, .xl\:border-t-1px, .xl\:border-y-1, .xl\:border-t-1, .xl\:border-y-1-5, .xl\:border-t-1-5, .xl\:border-y-2, .xl\:border-t-2, .xl\:border-y-3, .xl\:border-t-3 {
    border-top-style: solid !important;
  }
  .xl\:border-1px, .xl\:border-y-1px, .xl\:border-b-1px, .xl\:border-y-1, .xl\:border-b-1, .xl\:border-y-1-5, .xl\:border-b-1-5, .xl\:border-y-2, .xl\:border-b-2, .xl\:border-y-3, .xl\:border-b-3 {
    border-bottom-style: solid !important;
  }
  .xl\:border-1px, .xl\:border-x-1px, .xl\:border-l-1px, .xl\:border-x-1, .xl\:border-l-1, .xl\:border-x-1-5, .xl\:border-l-1-5, .xl\:border-x-2, .xl\:border-l-2, .xl\:border-x-3, .xl\:border-l-3 {
    border-left-style: solid !important;
  }
  .xl\:border-1px, .xl\:border-x-1px, .xl\:border-r-1px, .xl\:border-x-1, .xl\:border-r-1, .xl\:border-x-1-5, .xl\:border-r-1-5, .xl\:border-x-2, .xl\:border-r-2, .xl\:border-x-3, .xl\:border-r-3 {
    border-right-style: solid !important;
  }
  .xl\:border-1px, .xl\:border-y-1px, .xl\:border-t-1px {
    border-top-width: 1px !important;
  }
  .xl\:border-2px, .xl\:border-y-2px, .xl\:border-t-2px {
    border-top-width: 2px !important;
  }
  .xl\:border-1, .xl\:border-y-1, .xl\:border-t-1 {
    border-top-width: 0.25rem !important;
  }
  .xl\:border-1-5, .xl\:border-y-1-5, .xl\:border-t-1-5 {
    border-top-width: 0.375rem !important;
  }
  .xl\:border-2, .xl\:border-y-2, .xl\:border-t-2 {
    border-top-width: 0.5rem !important;
  }
  .xl\:border-3, .xl\:border-y-3, .xl\:border-t-3 {
    border-top-width: 1rem !important;
  }
  .xl\:border-y-none, .xl\:border-b-none {
    border-bottom-width: 0 !important;
  }
  .xl\:border-1px, .xl\:border-y-1px, .xl\:border-b-1px {
    border-bottom-width: 1px !important;
  }
  .xl\:border-2px, .xl\:border-y-2px, .xl\:border-b-2px {
    border-bottom-width: 2px !important;
  }
  .xl\:border-1, .xl\:border-y-1, .xl\:border-b-1 {
    border-bottom-width: 0.25rem !important;
  }
  .xl\:border-1-5, .xl\:border-y-1-5, .xl\:border-b-1-5 {
    border-bottom-width: 0.375rem !important;
  }
  .xl\:border-2, .xl\:border-y-2, .xl\:border-b-2 {
    border-bottom-width: 0.5rem !important;
  }
  .xl\:border-3, .xl\:border-y-3, .xl\:border-b-3 {
    border-bottom-width: 1rem !important;
  }
  .xl\:border-x-none, .xl\:border-r-none {
    border-right-width: 0 !important;
  }
  .xl\:border-1px, .xl\:border-x-1px, .xl\:border-r-1px {
    border-right-width: 1px !important;
  }
  .xl\:border-2px, .xl\:border-x-2px, .xl\:border-r-2px {
    border-right-width: 2px !important;
  }
  .xl\:border-1, .xl\:border-x-1, .xl\:border-r-1 {
    border-right-width: 0.25rem !important;
  }
  .xl\:border-1-5, .xl\:border-x-1-5, .xl\:border-r-1-5 {
    border-right-width: 0.375rem !important;
  }
  .xl\:border-2, .xl\:border-x-2, .xl\:border-r-2 {
    border-right-width: 0.5rem !important;
  }
  .xl\:border-3, .xl\:border-x-3, .xl\:border-r-3 {
    border-right-width: 1rem !important;
  }
  .xl\:border-x-none, .xl\:border-l-none {
    border-left-width: 0 !important;
  }
  .xl\:border-1px, .xl\:border-x-1px, .xl\:border-l-1px {
    border-left-width: 1px !important;
  }
  .xl\:border-2px, .xl\:border-x-2px, .xl\:border-l-2px {
    border-left-width: 2px !important;
  }
  .xl\:border-1, .xl\:border-x-1, .xl\:border-l-1 {
    border-left-width: 0.25rem !important;
  }
  .xl\:border-1-5, .xl\:border-x-1-5, .xl\:border-l-1-5 {
    border-left-width: 0.375rem !important;
  }
  .xl\:border-2, .xl\:border-x-2, .xl\:border-l-2 {
    border-left-width: 0.5rem !important;
  }
  .xl\:border-3, .xl\:border-x-3, .xl\:border-l-3 {
    border-left-width: 1rem !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:border-y-none, .xxl\:border-t-none {
    border-top-width: 0 !important;
  }
  .xxl\:border-1px, .xxl\:border-y-1px, .xxl\:border-t-1px, .xxl\:border-y-1, .xxl\:border-t-1, .xxl\:border-y-1-5, .xxl\:border-t-1-5, .xxl\:border-y-2, .xxl\:border-t-2, .xxl\:border-y-3, .xxl\:border-t-3 {
    border-top-style: solid !important;
  }
  .xxl\:border-1px, .xxl\:border-y-1px, .xxl\:border-b-1px, .xxl\:border-y-1, .xxl\:border-b-1, .xxl\:border-y-1-5, .xxl\:border-b-1-5, .xxl\:border-y-2, .xxl\:border-b-2, .xxl\:border-y-3, .xxl\:border-b-3 {
    border-bottom-style: solid !important;
  }
  .xxl\:border-1px, .xxl\:border-x-1px, .xxl\:border-l-1px, .xxl\:border-x-1, .xxl\:border-l-1, .xxl\:border-x-1-5, .xxl\:border-l-1-5, .xxl\:border-x-2, .xxl\:border-l-2, .xxl\:border-x-3, .xxl\:border-l-3 {
    border-left-style: solid !important;
  }
  .xxl\:border-1px, .xxl\:border-x-1px, .xxl\:border-r-1px, .xxl\:border-x-1, .xxl\:border-r-1, .xxl\:border-x-1-5, .xxl\:border-r-1-5, .xxl\:border-x-2, .xxl\:border-r-2, .xxl\:border-x-3, .xxl\:border-r-3 {
    border-right-style: solid !important;
  }
  .xxl\:border-1px, .xxl\:border-y-1px, .xxl\:border-t-1px {
    border-top-width: 1px !important;
  }
  .xxl\:border-2px, .xxl\:border-y-2px, .xxl\:border-t-2px {
    border-top-width: 2px !important;
  }
  .xxl\:border-1, .xxl\:border-y-1, .xxl\:border-t-1 {
    border-top-width: 0.25rem !important;
  }
  .xxl\:border-1-5, .xxl\:border-y-1-5, .xxl\:border-t-1-5 {
    border-top-width: 0.375rem !important;
  }
  .xxl\:border-2, .xxl\:border-y-2, .xxl\:border-t-2 {
    border-top-width: 0.5rem !important;
  }
  .xxl\:border-3, .xxl\:border-y-3, .xxl\:border-t-3 {
    border-top-width: 1rem !important;
  }
  .xxl\:border-y-none, .xxl\:border-b-none {
    border-bottom-width: 0 !important;
  }
  .xxl\:border-1px, .xxl\:border-y-1px, .xxl\:border-b-1px {
    border-bottom-width: 1px !important;
  }
  .xxl\:border-2px, .xxl\:border-y-2px, .xxl\:border-b-2px {
    border-bottom-width: 2px !important;
  }
  .xxl\:border-1, .xxl\:border-y-1, .xxl\:border-b-1 {
    border-bottom-width: 0.25rem !important;
  }
  .xxl\:border-1-5, .xxl\:border-y-1-5, .xxl\:border-b-1-5 {
    border-bottom-width: 0.375rem !important;
  }
  .xxl\:border-2, .xxl\:border-y-2, .xxl\:border-b-2 {
    border-bottom-width: 0.5rem !important;
  }
  .xxl\:border-3, .xxl\:border-y-3, .xxl\:border-b-3 {
    border-bottom-width: 1rem !important;
  }
  .xxl\:border-x-none, .xxl\:border-r-none {
    border-right-width: 0 !important;
  }
  .xxl\:border-1px, .xxl\:border-x-1px, .xxl\:border-r-1px {
    border-right-width: 1px !important;
  }
  .xxl\:border-2px, .xxl\:border-x-2px, .xxl\:border-r-2px {
    border-right-width: 2px !important;
  }
  .xxl\:border-1, .xxl\:border-x-1, .xxl\:border-r-1 {
    border-right-width: 0.25rem !important;
  }
  .xxl\:border-1-5, .xxl\:border-x-1-5, .xxl\:border-r-1-5 {
    border-right-width: 0.375rem !important;
  }
  .xxl\:border-2, .xxl\:border-x-2, .xxl\:border-r-2 {
    border-right-width: 0.5rem !important;
  }
  .xxl\:border-3, .xxl\:border-x-3, .xxl\:border-r-3 {
    border-right-width: 1rem !important;
  }
  .xxl\:border-x-none, .xxl\:border-l-none {
    border-left-width: 0 !important;
  }
  .xxl\:border-1px, .xxl\:border-x-1px, .xxl\:border-l-1px {
    border-left-width: 1px !important;
  }
  .xxl\:border-2px, .xxl\:border-x-2px, .xxl\:border-l-2px {
    border-left-width: 2px !important;
  }
  .xxl\:border-1, .xxl\:border-x-1, .xxl\:border-l-1 {
    border-left-width: 0.25rem !important;
  }
  .xxl\:border-1-5, .xxl\:border-x-1-5, .xxl\:border-l-1-5 {
    border-left-width: 0.375rem !important;
  }
  .xxl\:border-2, .xxl\:border-x-2, .xxl\:border-l-2 {
    border-left-width: 0.5rem !important;
  }
  .xxl\:border-3, .xxl\:border-x-3, .xxl\:border-l-3 {
    border-left-width: 1rem !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:border-y-none, .max\:border-t-none {
    border-top-width: 0 !important;
  }
  .max\:border-1px, .max\:border-y-1px, .max\:border-t-1px, .max\:border-y-1, .max\:border-t-1, .max\:border-y-1-5, .max\:border-t-1-5, .max\:border-y-2, .max\:border-t-2, .max\:border-y-3, .max\:border-t-3 {
    border-top-style: solid !important;
  }
  .max\:border-1px, .max\:border-y-1px, .max\:border-b-1px, .max\:border-y-1, .max\:border-b-1, .max\:border-y-1-5, .max\:border-b-1-5, .max\:border-y-2, .max\:border-b-2, .max\:border-y-3, .max\:border-b-3 {
    border-bottom-style: solid !important;
  }
  .max\:border-1px, .max\:border-x-1px, .max\:border-l-1px, .max\:border-x-1, .max\:border-l-1, .max\:border-x-1-5, .max\:border-l-1-5, .max\:border-x-2, .max\:border-l-2, .max\:border-x-3, .max\:border-l-3 {
    border-left-style: solid !important;
  }
  .max\:border-1px, .max\:border-x-1px, .max\:border-r-1px, .max\:border-x-1, .max\:border-r-1, .max\:border-x-1-5, .max\:border-r-1-5, .max\:border-x-2, .max\:border-r-2, .max\:border-x-3, .max\:border-r-3 {
    border-right-style: solid !important;
  }
  .max\:border-1px, .max\:border-y-1px, .max\:border-t-1px {
    border-top-width: 1px !important;
  }
  .max\:border-2px, .max\:border-y-2px, .max\:border-t-2px {
    border-top-width: 2px !important;
  }
  .max\:border-1, .max\:border-y-1, .max\:border-t-1 {
    border-top-width: 0.25rem !important;
  }
  .max\:border-1-5, .max\:border-y-1-5, .max\:border-t-1-5 {
    border-top-width: 0.375rem !important;
  }
  .max\:border-2, .max\:border-y-2, .max\:border-t-2 {
    border-top-width: 0.5rem !important;
  }
  .max\:border-3, .max\:border-y-3, .max\:border-t-3 {
    border-top-width: 1rem !important;
  }
  .max\:border-y-none, .max\:border-b-none {
    border-bottom-width: 0 !important;
  }
  .max\:border-1px, .max\:border-y-1px, .max\:border-b-1px {
    border-bottom-width: 1px !important;
  }
  .max\:border-2px, .max\:border-y-2px, .max\:border-b-2px {
    border-bottom-width: 2px !important;
  }
  .max\:border-1, .max\:border-y-1, .max\:border-b-1 {
    border-bottom-width: 0.25rem !important;
  }
  .max\:border-1-5, .max\:border-y-1-5, .max\:border-b-1-5 {
    border-bottom-width: 0.375rem !important;
  }
  .max\:border-2, .max\:border-y-2, .max\:border-b-2 {
    border-bottom-width: 0.5rem !important;
  }
  .max\:border-3, .max\:border-y-3, .max\:border-b-3 {
    border-bottom-width: 1rem !important;
  }
  .max\:border-x-none, .max\:border-r-none {
    border-right-width: 0 !important;
  }
  .max\:border-1px, .max\:border-x-1px, .max\:border-r-1px {
    border-right-width: 1px !important;
  }
  .max\:border-2px, .max\:border-x-2px, .max\:border-r-2px {
    border-right-width: 2px !important;
  }
  .max\:border-1, .max\:border-x-1, .max\:border-r-1 {
    border-right-width: 0.25rem !important;
  }
  .max\:border-1-5, .max\:border-x-1-5, .max\:border-r-1-5 {
    border-right-width: 0.375rem !important;
  }
  .max\:border-2, .max\:border-x-2, .max\:border-r-2 {
    border-right-width: 0.5rem !important;
  }
  .max\:border-3, .max\:border-x-3, .max\:border-r-3 {
    border-right-width: 1rem !important;
  }
  .max\:border-x-none, .max\:border-l-none {
    border-left-width: 0 !important;
  }
  .max\:border-1px, .max\:border-x-1px, .max\:border-l-1px {
    border-left-width: 1px !important;
  }
  .max\:border-2px, .max\:border-x-2px, .max\:border-l-2px {
    border-left-width: 2px !important;
  }
  .max\:border-1, .max\:border-x-1, .max\:border-l-1 {
    border-left-width: 0.25rem !important;
  }
  .max\:border-1-5, .max\:border-x-1-5, .max\:border-l-1-5 {
    border-left-width: 0.375rem !important;
  }
  .max\:border-2, .max\:border-x-2, .max\:border-l-2 {
    border-left-width: 0.5rem !important;
  }
  .max\:border-3, .max\:border-x-3, .max\:border-l-3 {
    border-left-width: 1rem !important;
  }
}
/* ROUNDED */
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-none {
  border-radius: 0 !important;
}
.rounded-sm {
  border-radius: 0.125rem !important;
}
.rounded-lg {
  border-radius: 0.25rem !important;
}
.rounded-full {
  border-radius: 9999px !important;
}
.rounded-1 {
  border-radius: 0.25rem !important;
}
.rounded-2 {
  border-radius: 0.5rem !important;
}
.rounded-3 {
  border-radius: 1rem !important;
}
.rounded-4 {
  border-radius: 2rem !important;
}
.rounded-5 {
  border-radius: 3rem !important;
}
.rounded-b-none, .rounded-l-none, .rounded-bl-none {
  border-bottom-left-radius: 0 !important;
}
.rounded-t-none, .rounded-l-none, .rounded-tl-none {
  border-top-left-radius: 0 !important;
}
.rounded-r-none, .rounded-b-none, .rounded-br-none {
  border-bottom-right-radius: 0 !important;
}
.rounded-t-none, .rounded-r-none, .rounded-tr-none {
  border-top-right-radius: 0 !important;
}

/* Before colors, as border-none resets the border-color */
/* COLOR THEMES */
body,
.theme-standard {
  --txt-clear: #fff;
  --txt-lightest: #f3f3f3;
  --txt-lighter: #ddd;
  --txt-light: #bbb;
  --txt-normal: #8e8e8e;
  --txt-dark: #646464;
  --txt-darker: #444;
  --txt-darkest: #222;
  --txt-opaque: #000;
  --bg-clear: #fff;
  --bg-lightest: #f3f3f3;
  --bg-lighter: #ddd;
  --bg-light: #bbb;
  --bg-normal: #8e8e8e;
  --bg-dark: #646464;
  --bg-darker: #444;
  --bg-darkest: #222;
  --bg-opaque: #000;
  --border-clear: #fff;
  --border-lightest: #f3f3f3;
  --border-lighter: #ddd;
  --border-light: #bbb;
  --border-normal: #8e8e8e;
  --border-dark: #646464;
  --border-darker: #444;
  --border-darkest: #222;
  --border-opaque: #000;
  --txt-default: #444;
  --txt-highlight: #f12b3b;
  --txt-link: #008fce;
  --txt-link--hover: #008fce;
  --bg-default: #fff;
  --bg-highlight: #f12b3b;
  --bg-link--hover: #008fce;
}

.theme-grey {
  --txt-clear: #fff;
  --txt-lightest: #f3f3f3;
  --txt-lighter: #ddd;
  --txt-light: #bbb;
  --txt-normal: #8e8e8e;
  --txt-dark: #646464;
  --txt-darker: #444;
  --txt-darkest: #222;
  --txt-opaque: #000;
  --bg-clear: #fff;
  --bg-lightest: #f3f3f3;
  --bg-lighter: #ddd;
  --bg-light: #bbb;
  --bg-normal: #8e8e8e;
  --bg-dark: #646464;
  --bg-darker: #444;
  --bg-darkest: #222;
  --bg-opaque: #000;
  --border-clear: #fff;
  --border-lightest: #f3f3f3;
  --border-lighter: #ddd;
  --border-light: #bbb;
  --border-normal: #8e8e8e;
  --border-dark: #646464;
  --border-darker: #444;
  --border-darkest: #222;
  --border-opaque: #000;
  --txt-default: #444;
  --txt-highlight: #ddd;
  --txt-link: #008fce;
  --txt-link--hover: #008fce;
  --bg-default: #fff;
  --bg-highlight: #ddd;
  --bg-link--hover: #008fce;
}

.theme-green {
  --txt-clear: #fff;
  --txt-lightest: #c9e4bc;
  --txt-lighter: #66a54a;
  --txt-light: #456f32;
  --txt-normal: #8e8e8e;
  --txt-dark: #646464;
  --txt-darker: #444;
  --txt-darkest: #222;
  --txt-opaque: #000;
  --bg-clear: #fff;
  --bg-lightest: #eff6ec;
  --bg-lighter: #c9e4bc;
  --bg-light: #77b65b;
  --bg-normal: #66a54a;
  --bg-dark: #456f32;
  --bg-darker: #2f4f21;
  --bg-darkest: #091b00;
  --bg-opaque: #000;
  --border-clear: #fff;
  --border-lightest: #eff6ec;
  --border-lighter: #c9e4bc;
  --border-light: #77b65b;
  --border-normal: #66a54a;
  --border-dark: #456f32;
  --border-darker: #2f4f21;
  --border-darkest: #091b00;
  --border-opaque: #000;
  --txt-default: #444;
  --txt-highlight: #f12b3b;
  --txt-link: #008fce;
  --txt-link--hover: #008fce;
  --bg-default: #c9e4bc;
  --bg-highlight: #f12b3b;
  --bg-link--hover: #008fce;
}

.theme-yellow {
  --txt-clear: #fff;
  --txt-lightest: #f8ecc5;
  --txt-lighter: #b5862a;
  --txt-light: #483206;
  --txt-normal: #8e8e8e;
  --txt-dark: #646464;
  --txt-darker: #444;
  --txt-darkest: #222;
  --txt-opaque: #000;
  --bg-clear: #fff;
  --bg-lightest: #faf9e7;
  --bg-lighter: #f8ecc5;
  --bg-light: #f5cd78;
  --bg-normal: #f2b63f;
  --bg-dark: #b5862a;
  --bg-darker: #483206;
  --bg-darkest: #1b1200;
  --bg-opaque: #000;
  --border-clear: #fff;
  --border-lightest: #faf9e7;
  --border-lighter: #f8ecc5;
  --border-light: #f5cd78;
  --border-normal: #f2b63f;
  --border-dark: #b5862a;
  --border-darker: #483206;
  --border-darkest: #1b1200;
  --border-opaque: #000;
  --txt-default: #444;
  --txt-highlight: #f2b63f;
  --txt-link: #008fce;
  --txt-link--hover: #008fce;
  --bg-default: #faf9e7;
  --bg-highlight: #f2b63f;
  --bg-link--hover: #008fce;
}

.theme-blue {
  --txt-clear: #fff;
  --txt-lightest: #c4e5f4;
  --txt-lighter: #008fce;
  --txt-light: #0273aa;
  --txt-normal: #8e8e8e;
  --txt-dark: #646464;
  --txt-darker: #444;
  --txt-darkest: #222;
  --txt-opaque: #000;
  --bg-clear: #fff;
  --bg-lightest: #f1f7fa;
  --bg-lighter: #c4e5f4;
  --bg-light: #4ba6ce;
  --bg-normal: #008fce;
  --bg-dark: #0273aa;
  --bg-darker: #063b63;
  --bg-darkest: #081d3d;
  --bg-opaque: #000;
  --border-clear: #fff;
  --border-lightest: #f1f7fa;
  --border-lighter: #c4e5f4;
  --border-light: #4ba6ce;
  --border-normal: #008fce;
  --border-dark: #0273aa;
  --border-darker: #063b63;
  --border-darkest: #081d3d;
  --border-opaque: #000;
  --txt-default: #444;
  --txt-highlight: #f12b3b;
  --txt-link: #008fce;
  --txt-link--hover: #008fce;
  --bg-default: #c4e5f4;
  --bg-highlight: #f12b3b;
  --bg-link--hover: #008fce;
}

.theme-green {
  --txt-clear: #fff;
  --txt-lightest: #c9e4bc;
  --txt-lighter: #66a54a;
  --txt-light: #456f32;
  --txt-normal: #8e8e8e;
  --txt-dark: #646464;
  --txt-darker: #444;
  --txt-darkest: #222;
  --txt-opaque: #000;
  --bg-clear: #fff;
  --bg-lightest: #eff6ec;
  --bg-lighter: #c9e4bc;
  --bg-light: #77b65b;
  --bg-normal: #66a54a;
  --bg-dark: #456f32;
  --bg-darker: #2f4f21;
  --bg-darkest: #091b00;
  --bg-opaque: #000;
  --border-clear: #fff;
  --border-lightest: #eff6ec;
  --border-lighter: #c9e4bc;
  --border-light: #77b65b;
  --border-normal: #66a54a;
  --border-dark: #456f32;
  --border-darker: #2f4f21;
  --border-darkest: #091b00;
  --border-opaque: #000;
  --txt-default: #444;
  --txt-highlight: #f12b3b;
  --txt-link: #008fce;
  --txt-link--hover: #008fce;
  --bg-default: #c9e4bc;
  --bg-highlight: #f12b3b;
  --bg-link--hover: #008fce;
}

.theme-red {
  --txt-clear: #fff;
  --txt-lightest: #fcd3d6;
  --txt-lighter: #f12b3b;
  --txt-light: #d2212f;
  --txt-normal: #8e8e8e;
  --txt-dark: #646464;
  --txt-darker: #444;
  --txt-darkest: #222;
  --txt-opaque: #000;
  --bg-clear: #fff;
  --bg-lightest: #f5f0f0;
  --bg-lighter: #fcd3d6;
  --bg-light: #ef525f;
  --bg-normal: #f12b3b;
  --bg-dark: #d2212f;
  --bg-darker: #88161f;
  --bg-darkest: #2f080b;
  --bg-opaque: #000;
  --border-clear: #fff;
  --border-lightest: #f5f0f0;
  --border-lighter: #fcd3d6;
  --border-light: #ef525f;
  --border-normal: #f12b3b;
  --border-dark: #d2212f;
  --border-darker: #88161f;
  --border-darkest: #2f080b;
  --border-opaque: #000;
  --txt-default: #444;
  --txt-highlight: #f12b3b;
  --txt-link: #008fce;
  --txt-link--hover: #008fce;
  --bg-default: #fcd3d6;
  --bg-highlight: #f12b3b;
  --bg-link--hover: #008fce;
}

.theme-turquiose {
  --txt-clear: #fff;
  --txt-lightest: #d2e7e4;
  --txt-lighter: #86c6bb;
  --txt-light: #66988f;
  --txt-normal: #8e8e8e;
  --txt-dark: #646464;
  --txt-darker: #444;
  --txt-darkest: #222;
  --txt-opaque: #000;
  --bg-clear: #fff;
  --bg-lightest: #eff4f3;
  --bg-lighter: #d2e7e4;
  --bg-light: #a0d1c9;
  --bg-normal: #86c6bb;
  --bg-dark: #66988f;
  --bg-darker: #3a5c56;
  --bg-darkest: #1c302d;
  --bg-opaque: #000;
  --border-clear: #fff;
  --border-lightest: #eff4f3;
  --border-lighter: #c4e5f4;
  --border-light: #a0d1c9;
  --border-normal: #86c6bb;
  --border-dark: #66988f;
  --border-darker: #3a5c56;
  --border-darkest: #081d3d;
  --border-opaque: #000;
  --txt-default: #444;
  --txt-highlight: #f12b3b;
  --txt-link: #008fce;
  --txt-link--hover: #008fce;
  --bg-default: #eff4f3;
  --bg-highlight: #f12b3b;
  --bg-link--hover: #008fce;
}

.theme-turquoise,
.theme-yellow,
.theme-green,
.theme-blue,
.theme-grey {
  color: #222;
  color: var(--txt-default);
  background-color: #f3f3f3;
  background-color: var(--bg-default);
  border-color: #fff;
  border-color: var(--border-clear);
  fill: #f3f3f3;
  fill: var(--bg-default);
}

/* FORCED COLORS */
body > * {
  color: #646464;
}

h1, h2, h3, h4 {
  color: #222;
}

/* NAMED COLORS */
.txt-neon {
  display: inline-block;
  z-index: 0;
  color: #f9cee1;
  text-shadow: 1px 2px 6px #ff006c;
}
.txt-neon:after, .txt-neon:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0.15em;
  bottom: 0.15em;
  right: 0.15em;
  border-radius: 0.6em;
  background-color: #ff006c;
  opacity: 0.15;
  box-shadow: 0 0 0.15em 0.15em #ff006c;
}
.txt-neon:before {
  top: 0.5em;
  left: 0.5em;
  bottom: 0.5em;
  right: 0.5em;
  opacity: 0.15;
  box-shadow: 0 0 0.2em 0.2em #ff006c;
}

.txt-neon--blue {
  color: #a3cdff;
  text-shadow: 1px 2px 6px #0677ff;
}
.txt-neon--blue:after, .txt-neon--blue:before {
  background-color: #0677ff;
  box-shadow: 0 0 0.15em 0.15em #0677ff;
}
.txt-neon--blue:before {
  box-shadow: 0 0 0.2em 0.2em #0677ff;
}

.txt-neon--orange {
  color: #ffdea9;
  text-shadow: 1px 2px 6px #ffa006;
}
.txt-neon--orange:after, .txt-neon--orange:before {
  background-color: rgba(237, 146, 0, 0.6666666667);
  box-shadow: 0 0 0.15em 0.15em rgba(237, 146, 0, 0.6666666667);
}
.txt-neon--orange:before {
  box-shadow: 0 0 0.2em 0.2em rgba(237, 146, 0, 0.6666666667);
}

.txt-neon--turquoise {
  color: #b1fffe;
  text-shadow: 1px 2px 6px #06c8ff;
}
.txt-neon--turquoise:after, .txt-neon--turquoise:before {
  background-color: rgba(6, 200, 255, 0.3333333333);
  box-shadow: 0 0 0.15em 0.15em rgba(6, 200, 255, 0.3333333333);
}
.txt-neon--turquoise:before {
  box-shadow: 0 0 0.2em 0.2em rgba(6, 200, 255, 0.3333333333);
}

/*

( 'a ', '-bg' ): 'background-color',
( '', 'hover\\:', ':hover'): '',
( '', 'before\\:', ':before' ): 'color',
( 'a ', 'before:\\', '-bg:before' ): 'background-color',
( 'a:hover ', 'hover\\:', '' ): 'color',
( 'a:hover ', 'hover\\:', 'bg-', '' ): 'background-color',
( 'a:hover ', 'hover\\:', '', '\\:after:after' ): 'color'

			// .test-bg, .sm\:test-bg { background-color: blue; }
// a .test-bg, a .sm\:test-bg { background-color: blue; }
// .before\:test:before, .sm\:before\:test:before { color: blue; }
// a .before\:test-bg\:before, a .sm\:before\:test-bg:before { background-color: blue; }
// a:hover .hover\:test, a:hover .sm\:hover\:test { color: blue; }
// a:hover .hover\:bg-test, a:hover .sm\:hover\:bg-test { background-color: blue; }
// a:hover .hover\:test\:after:after, a:hover .sm\:hover\:test\:after:after { background-color: blue; }

*/
.txt-red {
  color: #f12b3b !important;
}

.txt-dark-red {
  color: #d2212f !important;
}

.txt-dark-blue {
  color: #0273aa !important;
}

.txt-darker-blue {
  color: #063b63 !important;
}

.txt-blue {
  color: #008fce !important;
}

.txt-light-blue {
  color: #4ba6ce !important;
}

.txt-lighter-blue {
  color: #c4e5f4 !important;
}

.txt-lightest-blue {
  color: #f1f7fa !important;
}

.txt-turquoise {
  color: #86c6bb !important;
}

.txt-light-turquoise {
  color: #a0d1c9 !important;
}

.txt-lightest-turquoise {
  color: #eff4f3 !important;
}

.txt-darker-green {
  color: #2f4f21 !important;
}

.txt-dark-green {
  color: #456f32 !important;
}

.txt-green {
  color: #66a54a !important;
}

.txt-light-green {
  color: #77b65b !important;
}

.txt-lighter-green {
  color: #c9e4bc !important;
}

.txt-lightest-green {
  color: #eff6ec !important;
}

.txt-darker-yellow {
  color: #483206 !important;
}

.txt-dark-yellow {
  color: #b5862a !important;
}

.txt-yellow {
  color: #f2b63f !important;
}

.txt-light-yellow {
  color: #f5cd78 !important;
}

.txt-lighter-yellow {
  color: #f8ecc5 !important;
}

.txt-lightest-yellow {
  color: #faf9e7 !important;
}

.txt-beige {
  color: #dbd3c9 !important;
}

.txt-white {
  color: #fff !important;
}

.txt-white-opacity-02 {
  color: rgba(255, 255, 255, 0.2) !important;
}

.txt-white-opacity-03 {
  color: rgba(255, 255, 255, 0.3) !important;
}

.txt-white-opacity-05 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.txt-white-opacity-07 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.txt-lightest-grey {
  color: #f3f3f3 !important;
}

.txt-lighter-grey {
  color: #ddd !important;
}

.txt-light-grey {
  color: #bbb !important;
}

.txt-grey {
  color: #8e8e8e !important;
}

.txt-dark-grey {
  color: #646464 !important;
}

.txt-darker-grey {
  color: #444 !important;
}

.txt-darkest-grey {
  color: #222 !important;
}

.txt-black {
  color: #000 !important;
}

.txt-black-opacity-07 {
  color: rgba(0, 0, 0, 0.7) !important;
}

.txt-default {
  color: #222 !important;
}

.txt-headline {
  color: #222 !important;
}

.txt-link {
  color: #008fce !important;
  color: var(--txt-link) !important;
}

.txt-link--hover {
  color: #008fce !important;
  color: var(--txt-link--hover) !important;
}

.txt-transparent {
  color: transparent !important;
}

.txt-clear {
  color: #fff !important;
  color: var(--txt-clear) !important;
}

.txt-lightest {
  color: #f3f3f3 !important;
  color: var(--txt-lightest) !important;
}

.txt-lighter {
  color: #ddd !important;
  color: var(--txt-lighter) !important;
}

.txt-light {
  color: #bbb !important;
  color: var(--txt-light) !important;
}

.txt-normal {
  color: #8e8e8e !important;
  color: var(--txt-normal) !important;
}

.txt-dark {
  color: #646464 !important;
  color: var(--txt-dark) !important;
}

.txt-darker {
  color: #444 !important;
  color: var(--txt-darker) !important;
}

.txt-darkest {
  color: #222 !important;
  color: var(--txt-darkest) !important;
}

.txt-opaque {
  color: #000 !important;
  color: var(--txt-opaque) !important;
}

a:hover .hover\:txt-red {
  color: #f12b3b !important;
}

a:hover .hover\:txt-dark-red {
  color: #d2212f !important;
}

a:hover .hover\:txt-dark-blue {
  color: #0273aa !important;
}

a:hover .hover\:txt-darker-blue {
  color: #063b63 !important;
}

a:hover .hover\:txt-blue {
  color: #008fce !important;
}

a:hover .hover\:txt-light-blue {
  color: #4ba6ce !important;
}

a:hover .hover\:txt-lighter-blue {
  color: #c4e5f4 !important;
}

a:hover .hover\:txt-lightest-blue {
  color: #f1f7fa !important;
}

a:hover .hover\:txt-turquoise {
  color: #86c6bb !important;
}

a:hover .hover\:txt-light-turquoise {
  color: #a0d1c9 !important;
}

a:hover .hover\:txt-lightest-turquoise {
  color: #eff4f3 !important;
}

a:hover .hover\:txt-darker-green {
  color: #2f4f21 !important;
}

a:hover .hover\:txt-dark-green {
  color: #456f32 !important;
}

a:hover .hover\:txt-green {
  color: #66a54a !important;
}

a:hover .hover\:txt-light-green {
  color: #77b65b !important;
}

a:hover .hover\:txt-lighter-green {
  color: #c9e4bc !important;
}

a:hover .hover\:txt-lightest-green {
  color: #eff6ec !important;
}

a:hover .hover\:txt-darker-yellow {
  color: #483206 !important;
}

a:hover .hover\:txt-dark-yellow {
  color: #b5862a !important;
}

a:hover .hover\:txt-yellow {
  color: #f2b63f !important;
}

a:hover .hover\:txt-light-yellow {
  color: #f5cd78 !important;
}

a:hover .hover\:txt-lighter-yellow {
  color: #f8ecc5 !important;
}

a:hover .hover\:txt-lightest-yellow {
  color: #faf9e7 !important;
}

a:hover .hover\:txt-beige {
  color: #dbd3c9 !important;
}

a:hover .hover\:txt-white {
  color: #fff !important;
}

a:hover .hover\:txt-white-opacity-02 {
  color: rgba(255, 255, 255, 0.2) !important;
}

a:hover .hover\:txt-white-opacity-03 {
  color: rgba(255, 255, 255, 0.3) !important;
}

a:hover .hover\:txt-white-opacity-05 {
  color: rgba(255, 255, 255, 0.5) !important;
}

a:hover .hover\:txt-white-opacity-07 {
  color: rgba(255, 255, 255, 0.7) !important;
}

a:hover .hover\:txt-lightest-grey {
  color: #f3f3f3 !important;
}

a:hover .hover\:txt-lighter-grey {
  color: #ddd !important;
}

a:hover .hover\:txt-light-grey {
  color: #bbb !important;
}

a:hover .hover\:txt-grey {
  color: #8e8e8e !important;
}

a:hover .hover\:txt-dark-grey {
  color: #646464 !important;
}

a:hover .hover\:txt-darker-grey {
  color: #444 !important;
}

a:hover .hover\:txt-darkest-grey {
  color: #222 !important;
}

a:hover .hover\:txt-black {
  color: #000 !important;
}

a:hover .hover\:txt-black-opacity-07 {
  color: rgba(0, 0, 0, 0.7) !important;
}

a:hover .hover\:txt-default {
  color: #222 !important;
}

a:hover .hover\:txt-headline {
  color: #222 !important;
}

a:hover .hover\:txt-link {
  color: #008fce !important;
  color: var(--txt-link) !important;
}

a:hover .hover\:txt-link--hover {
  color: #008fce !important;
  color: var(--txt-link--hover) !important;
}

a:hover .hover\:txt-transparent {
  color: transparent !important;
}

a:hover .hover\:txt-clear {
  color: #fff !important;
  color: var(--txt-clear) !important;
}

a:hover .hover\:txt-lightest {
  color: #f3f3f3 !important;
  color: var(--txt-lightest) !important;
}

a:hover .hover\:txt-lighter {
  color: #ddd !important;
  color: var(--txt-lighter) !important;
}

a:hover .hover\:txt-light {
  color: #bbb !important;
  color: var(--txt-light) !important;
}

a:hover .hover\:txt-normal {
  color: #8e8e8e !important;
  color: var(--txt-normal) !important;
}

a:hover .hover\:txt-dark {
  color: #646464 !important;
  color: var(--txt-dark) !important;
}

a:hover .hover\:txt-darker {
  color: #444 !important;
  color: var(--txt-darker) !important;
}

a:hover .hover\:txt-darkest {
  color: #222 !important;
  color: var(--txt-darkest) !important;
}

a:hover .hover\:txt-opaque {
  color: #000 !important;
  color: var(--txt-opaque) !important;
}

button:hover .hover\:txt-red {
  color: #f12b3b !important;
}

button:hover .hover\:txt-dark-red {
  color: #d2212f !important;
}

button:hover .hover\:txt-dark-blue {
  color: #0273aa !important;
}

button:hover .hover\:txt-darker-blue {
  color: #063b63 !important;
}

button:hover .hover\:txt-blue {
  color: #008fce !important;
}

button:hover .hover\:txt-light-blue {
  color: #4ba6ce !important;
}

button:hover .hover\:txt-lighter-blue {
  color: #c4e5f4 !important;
}

button:hover .hover\:txt-lightest-blue {
  color: #f1f7fa !important;
}

button:hover .hover\:txt-turquoise {
  color: #86c6bb !important;
}

button:hover .hover\:txt-light-turquoise {
  color: #a0d1c9 !important;
}

button:hover .hover\:txt-lightest-turquoise {
  color: #eff4f3 !important;
}

button:hover .hover\:txt-darker-green {
  color: #2f4f21 !important;
}

button:hover .hover\:txt-dark-green {
  color: #456f32 !important;
}

button:hover .hover\:txt-green {
  color: #66a54a !important;
}

button:hover .hover\:txt-light-green {
  color: #77b65b !important;
}

button:hover .hover\:txt-lighter-green {
  color: #c9e4bc !important;
}

button:hover .hover\:txt-lightest-green {
  color: #eff6ec !important;
}

button:hover .hover\:txt-darker-yellow {
  color: #483206 !important;
}

button:hover .hover\:txt-dark-yellow {
  color: #b5862a !important;
}

button:hover .hover\:txt-yellow {
  color: #f2b63f !important;
}

button:hover .hover\:txt-light-yellow {
  color: #f5cd78 !important;
}

button:hover .hover\:txt-lighter-yellow {
  color: #f8ecc5 !important;
}

button:hover .hover\:txt-lightest-yellow {
  color: #faf9e7 !important;
}

button:hover .hover\:txt-beige {
  color: #dbd3c9 !important;
}

button:hover .hover\:txt-white {
  color: #fff !important;
}

button:hover .hover\:txt-white-opacity-02 {
  color: rgba(255, 255, 255, 0.2) !important;
}

button:hover .hover\:txt-white-opacity-03 {
  color: rgba(255, 255, 255, 0.3) !important;
}

button:hover .hover\:txt-white-opacity-05 {
  color: rgba(255, 255, 255, 0.5) !important;
}

button:hover .hover\:txt-white-opacity-07 {
  color: rgba(255, 255, 255, 0.7) !important;
}

button:hover .hover\:txt-lightest-grey {
  color: #f3f3f3 !important;
}

button:hover .hover\:txt-lighter-grey {
  color: #ddd !important;
}

button:hover .hover\:txt-light-grey {
  color: #bbb !important;
}

button:hover .hover\:txt-grey {
  color: #8e8e8e !important;
}

button:hover .hover\:txt-dark-grey {
  color: #646464 !important;
}

button:hover .hover\:txt-darker-grey {
  color: #444 !important;
}

button:hover .hover\:txt-darkest-grey {
  color: #222 !important;
}

button:hover .hover\:txt-black {
  color: #000 !important;
}

button:hover .hover\:txt-black-opacity-07 {
  color: rgba(0, 0, 0, 0.7) !important;
}

button:hover .hover\:txt-default {
  color: #222 !important;
}

button:hover .hover\:txt-headline {
  color: #222 !important;
}

button:hover .hover\:txt-link {
  color: #008fce !important;
  color: var(--txt-link) !important;
}

button:hover .hover\:txt-link--hover {
  color: #008fce !important;
  color: var(--txt-link--hover) !important;
}

button:hover .hover\:txt-transparent {
  color: transparent !important;
}

button:hover .hover\:txt-clear {
  color: #fff !important;
  color: var(--txt-clear) !important;
}

button:hover .hover\:txt-lightest {
  color: #f3f3f3 !important;
  color: var(--txt-lightest) !important;
}

button:hover .hover\:txt-lighter {
  color: #ddd !important;
  color: var(--txt-lighter) !important;
}

button:hover .hover\:txt-light {
  color: #bbb !important;
  color: var(--txt-light) !important;
}

button:hover .hover\:txt-normal {
  color: #8e8e8e !important;
  color: var(--txt-normal) !important;
}

button:hover .hover\:txt-dark {
  color: #646464 !important;
  color: var(--txt-dark) !important;
}

button:hover .hover\:txt-darker {
  color: #444 !important;
  color: var(--txt-darker) !important;
}

button:hover .hover\:txt-darkest {
  color: #222 !important;
  color: var(--txt-darkest) !important;
}

button:hover .hover\:txt-opaque {
  color: #000 !important;
  color: var(--txt-opaque) !important;
}

.btn:hover .hover\:txt-red {
  color: #f12b3b !important;
}

.btn:hover .hover\:txt-dark-red {
  color: #d2212f !important;
}

.btn:hover .hover\:txt-dark-blue {
  color: #0273aa !important;
}

.btn:hover .hover\:txt-darker-blue {
  color: #063b63 !important;
}

.btn:hover .hover\:txt-blue {
  color: #008fce !important;
}

.btn:hover .hover\:txt-light-blue {
  color: #4ba6ce !important;
}

.btn:hover .hover\:txt-lighter-blue {
  color: #c4e5f4 !important;
}

.btn:hover .hover\:txt-lightest-blue {
  color: #f1f7fa !important;
}

.btn:hover .hover\:txt-turquoise {
  color: #86c6bb !important;
}

.btn:hover .hover\:txt-light-turquoise {
  color: #a0d1c9 !important;
}

.btn:hover .hover\:txt-lightest-turquoise {
  color: #eff4f3 !important;
}

.btn:hover .hover\:txt-darker-green {
  color: #2f4f21 !important;
}

.btn:hover .hover\:txt-dark-green {
  color: #456f32 !important;
}

.btn:hover .hover\:txt-green {
  color: #66a54a !important;
}

.btn:hover .hover\:txt-light-green {
  color: #77b65b !important;
}

.btn:hover .hover\:txt-lighter-green {
  color: #c9e4bc !important;
}

.btn:hover .hover\:txt-lightest-green {
  color: #eff6ec !important;
}

.btn:hover .hover\:txt-darker-yellow {
  color: #483206 !important;
}

.btn:hover .hover\:txt-dark-yellow {
  color: #b5862a !important;
}

.btn:hover .hover\:txt-yellow {
  color: #f2b63f !important;
}

.btn:hover .hover\:txt-light-yellow {
  color: #f5cd78 !important;
}

.btn:hover .hover\:txt-lighter-yellow {
  color: #f8ecc5 !important;
}

.btn:hover .hover\:txt-lightest-yellow {
  color: #faf9e7 !important;
}

.btn:hover .hover\:txt-beige {
  color: #dbd3c9 !important;
}

.btn:hover .hover\:txt-white {
  color: #fff !important;
}

.btn:hover .hover\:txt-white-opacity-02 {
  color: rgba(255, 255, 255, 0.2) !important;
}

.btn:hover .hover\:txt-white-opacity-03 {
  color: rgba(255, 255, 255, 0.3) !important;
}

.btn:hover .hover\:txt-white-opacity-05 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.btn:hover .hover\:txt-white-opacity-07 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.btn:hover .hover\:txt-lightest-grey {
  color: #f3f3f3 !important;
}

.btn:hover .hover\:txt-lighter-grey {
  color: #ddd !important;
}

.btn:hover .hover\:txt-light-grey {
  color: #bbb !important;
}

.btn:hover .hover\:txt-grey {
  color: #8e8e8e !important;
}

.btn:hover .hover\:txt-dark-grey {
  color: #646464 !important;
}

.btn:hover .hover\:txt-darker-grey {
  color: #444 !important;
}

.btn:hover .hover\:txt-darkest-grey {
  color: #222 !important;
}

.btn:hover .hover\:txt-black {
  color: #000 !important;
}

.btn:hover .hover\:txt-black-opacity-07 {
  color: rgba(0, 0, 0, 0.7) !important;
}

.btn:hover .hover\:txt-default {
  color: #222 !important;
}

.btn:hover .hover\:txt-headline {
  color: #222 !important;
}

.btn:hover .hover\:txt-link {
  color: #008fce !important;
  color: var(--txt-link) !important;
}

.btn:hover .hover\:txt-link--hover {
  color: #008fce !important;
  color: var(--txt-link--hover) !important;
}

.btn:hover .hover\:txt-transparent {
  color: transparent !important;
}

.btn:hover .hover\:txt-clear {
  color: #fff !important;
  color: var(--txt-clear) !important;
}

.btn:hover .hover\:txt-lightest {
  color: #f3f3f3 !important;
  color: var(--txt-lightest) !important;
}

.btn:hover .hover\:txt-lighter {
  color: #ddd !important;
  color: var(--txt-lighter) !important;
}

.btn:hover .hover\:txt-light {
  color: #bbb !important;
  color: var(--txt-light) !important;
}

.btn:hover .hover\:txt-normal {
  color: #8e8e8e !important;
  color: var(--txt-normal) !important;
}

.btn:hover .hover\:txt-dark {
  color: #646464 !important;
  color: var(--txt-dark) !important;
}

.btn:hover .hover\:txt-darker {
  color: #444 !important;
  color: var(--txt-darker) !important;
}

.btn:hover .hover\:txt-darkest {
  color: #222 !important;
  color: var(--txt-darkest) !important;
}

.btn:hover .hover\:txt-opaque {
  color: #000 !important;
  color: var(--txt-opaque) !important;
}

input:hover .hover\:txt-red {
  color: #f12b3b !important;
}

input:hover .hover\:txt-dark-red {
  color: #d2212f !important;
}

input:hover .hover\:txt-dark-blue {
  color: #0273aa !important;
}

input:hover .hover\:txt-darker-blue {
  color: #063b63 !important;
}

input:hover .hover\:txt-blue {
  color: #008fce !important;
}

input:hover .hover\:txt-light-blue {
  color: #4ba6ce !important;
}

input:hover .hover\:txt-lighter-blue {
  color: #c4e5f4 !important;
}

input:hover .hover\:txt-lightest-blue {
  color: #f1f7fa !important;
}

input:hover .hover\:txt-turquoise {
  color: #86c6bb !important;
}

input:hover .hover\:txt-light-turquoise {
  color: #a0d1c9 !important;
}

input:hover .hover\:txt-lightest-turquoise {
  color: #eff4f3 !important;
}

input:hover .hover\:txt-darker-green {
  color: #2f4f21 !important;
}

input:hover .hover\:txt-dark-green {
  color: #456f32 !important;
}

input:hover .hover\:txt-green {
  color: #66a54a !important;
}

input:hover .hover\:txt-light-green {
  color: #77b65b !important;
}

input:hover .hover\:txt-lighter-green {
  color: #c9e4bc !important;
}

input:hover .hover\:txt-lightest-green {
  color: #eff6ec !important;
}

input:hover .hover\:txt-darker-yellow {
  color: #483206 !important;
}

input:hover .hover\:txt-dark-yellow {
  color: #b5862a !important;
}

input:hover .hover\:txt-yellow {
  color: #f2b63f !important;
}

input:hover .hover\:txt-light-yellow {
  color: #f5cd78 !important;
}

input:hover .hover\:txt-lighter-yellow {
  color: #f8ecc5 !important;
}

input:hover .hover\:txt-lightest-yellow {
  color: #faf9e7 !important;
}

input:hover .hover\:txt-beige {
  color: #dbd3c9 !important;
}

input:hover .hover\:txt-white {
  color: #fff !important;
}

input:hover .hover\:txt-white-opacity-02 {
  color: rgba(255, 255, 255, 0.2) !important;
}

input:hover .hover\:txt-white-opacity-03 {
  color: rgba(255, 255, 255, 0.3) !important;
}

input:hover .hover\:txt-white-opacity-05 {
  color: rgba(255, 255, 255, 0.5) !important;
}

input:hover .hover\:txt-white-opacity-07 {
  color: rgba(255, 255, 255, 0.7) !important;
}

input:hover .hover\:txt-lightest-grey {
  color: #f3f3f3 !important;
}

input:hover .hover\:txt-lighter-grey {
  color: #ddd !important;
}

input:hover .hover\:txt-light-grey {
  color: #bbb !important;
}

input:hover .hover\:txt-grey {
  color: #8e8e8e !important;
}

input:hover .hover\:txt-dark-grey {
  color: #646464 !important;
}

input:hover .hover\:txt-darker-grey {
  color: #444 !important;
}

input:hover .hover\:txt-darkest-grey {
  color: #222 !important;
}

input:hover .hover\:txt-black {
  color: #000 !important;
}

input:hover .hover\:txt-black-opacity-07 {
  color: rgba(0, 0, 0, 0.7) !important;
}

input:hover .hover\:txt-default {
  color: #222 !important;
}

input:hover .hover\:txt-headline {
  color: #222 !important;
}

input:hover .hover\:txt-link {
  color: #008fce !important;
  color: var(--txt-link) !important;
}

input:hover .hover\:txt-link--hover {
  color: #008fce !important;
  color: var(--txt-link--hover) !important;
}

input:hover .hover\:txt-transparent {
  color: transparent !important;
}

input:hover .hover\:txt-clear {
  color: #fff !important;
  color: var(--txt-clear) !important;
}

input:hover .hover\:txt-lightest {
  color: #f3f3f3 !important;
  color: var(--txt-lightest) !important;
}

input:hover .hover\:txt-lighter {
  color: #ddd !important;
  color: var(--txt-lighter) !important;
}

input:hover .hover\:txt-light {
  color: #bbb !important;
  color: var(--txt-light) !important;
}

input:hover .hover\:txt-normal {
  color: #8e8e8e !important;
  color: var(--txt-normal) !important;
}

input:hover .hover\:txt-dark {
  color: #646464 !important;
  color: var(--txt-dark) !important;
}

input:hover .hover\:txt-darker {
  color: #444 !important;
  color: var(--txt-darker) !important;
}

input:hover .hover\:txt-darkest {
  color: #222 !important;
  color: var(--txt-darkest) !important;
}

input:hover .hover\:txt-opaque {
  color: #000 !important;
  color: var(--txt-opaque) !important;
}

.hover\:txt-red:hover {
  color: #f12b3b !important;
}

.hover\:txt-dark-red:hover {
  color: #d2212f !important;
}

.hover\:txt-dark-blue:hover {
  color: #0273aa !important;
}

.hover\:txt-darker-blue:hover {
  color: #063b63 !important;
}

.hover\:txt-blue:hover {
  color: #008fce !important;
}

.hover\:txt-light-blue:hover {
  color: #4ba6ce !important;
}

.hover\:txt-lighter-blue:hover {
  color: #c4e5f4 !important;
}

.hover\:txt-lightest-blue:hover {
  color: #f1f7fa !important;
}

.hover\:txt-turquoise:hover {
  color: #86c6bb !important;
}

.hover\:txt-light-turquoise:hover {
  color: #a0d1c9 !important;
}

.hover\:txt-lightest-turquoise:hover {
  color: #eff4f3 !important;
}

.hover\:txt-darker-green:hover {
  color: #2f4f21 !important;
}

.hover\:txt-dark-green:hover {
  color: #456f32 !important;
}

.hover\:txt-green:hover {
  color: #66a54a !important;
}

.hover\:txt-light-green:hover {
  color: #77b65b !important;
}

.hover\:txt-lighter-green:hover {
  color: #c9e4bc !important;
}

.hover\:txt-lightest-green:hover {
  color: #eff6ec !important;
}

.hover\:txt-darker-yellow:hover {
  color: #483206 !important;
}

.hover\:txt-dark-yellow:hover {
  color: #b5862a !important;
}

.hover\:txt-yellow:hover {
  color: #f2b63f !important;
}

.hover\:txt-light-yellow:hover {
  color: #f5cd78 !important;
}

.hover\:txt-lighter-yellow:hover {
  color: #f8ecc5 !important;
}

.hover\:txt-lightest-yellow:hover {
  color: #faf9e7 !important;
}

.hover\:txt-beige:hover {
  color: #dbd3c9 !important;
}

.hover\:txt-white:hover {
  color: #fff !important;
}

.hover\:txt-white-opacity-02:hover {
  color: rgba(255, 255, 255, 0.2) !important;
}

.hover\:txt-white-opacity-03:hover {
  color: rgba(255, 255, 255, 0.3) !important;
}

.hover\:txt-white-opacity-05:hover {
  color: rgba(255, 255, 255, 0.5) !important;
}

.hover\:txt-white-opacity-07:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

.hover\:txt-lightest-grey:hover {
  color: #f3f3f3 !important;
}

.hover\:txt-lighter-grey:hover {
  color: #ddd !important;
}

.hover\:txt-light-grey:hover {
  color: #bbb !important;
}

.hover\:txt-grey:hover {
  color: #8e8e8e !important;
}

.hover\:txt-dark-grey:hover {
  color: #646464 !important;
}

.hover\:txt-darker-grey:hover {
  color: #444 !important;
}

.hover\:txt-darkest-grey:hover {
  color: #222 !important;
}

.hover\:txt-black:hover {
  color: #000 !important;
}

.hover\:txt-black-opacity-07:hover {
  color: rgba(0, 0, 0, 0.7) !important;
}

.hover\:txt-default:hover {
  color: #222 !important;
}

.hover\:txt-headline:hover {
  color: #222 !important;
}

.hover\:txt-link:hover {
  color: #008fce !important;
  color: var(--txt-link) !important;
}

.hover\:txt-link--hover:hover {
  color: #008fce !important;
  color: var(--txt-link--hover) !important;
}

.hover\:txt-transparent:hover {
  color: transparent !important;
}

.hover\:txt-clear:hover {
  color: #fff !important;
  color: var(--txt-clear) !important;
}

.hover\:txt-lightest:hover {
  color: #f3f3f3 !important;
  color: var(--txt-lightest) !important;
}

.hover\:txt-lighter:hover {
  color: #ddd !important;
  color: var(--txt-lighter) !important;
}

.hover\:txt-light:hover {
  color: #bbb !important;
  color: var(--txt-light) !important;
}

.hover\:txt-normal:hover {
  color: #8e8e8e !important;
  color: var(--txt-normal) !important;
}

.hover\:txt-dark:hover {
  color: #646464 !important;
  color: var(--txt-dark) !important;
}

.hover\:txt-darker:hover {
  color: #444 !important;
  color: var(--txt-darker) !important;
}

.hover\:txt-darkest:hover {
  color: #222 !important;
  color: var(--txt-darkest) !important;
}

.hover\:txt-opaque:hover {
  color: #000 !important;
  color: var(--txt-opaque) !important;
}

.txt-red\:hover:hover {
  color: #f12b3b !important;
}

.txt-dark-red\:hover:hover {
  color: #d2212f !important;
}

.txt-dark-blue\:hover:hover {
  color: #0273aa !important;
}

.txt-darker-blue\:hover:hover {
  color: #063b63 !important;
}

.txt-blue\:hover:hover {
  color: #008fce !important;
}

.txt-light-blue\:hover:hover {
  color: #4ba6ce !important;
}

.txt-lighter-blue\:hover:hover {
  color: #c4e5f4 !important;
}

.txt-lightest-blue\:hover:hover {
  color: #f1f7fa !important;
}

.txt-turquoise\:hover:hover {
  color: #86c6bb !important;
}

.txt-light-turquoise\:hover:hover {
  color: #a0d1c9 !important;
}

.txt-lightest-turquoise\:hover:hover {
  color: #eff4f3 !important;
}

.txt-darker-green\:hover:hover {
  color: #2f4f21 !important;
}

.txt-dark-green\:hover:hover {
  color: #456f32 !important;
}

.txt-green\:hover:hover {
  color: #66a54a !important;
}

.txt-light-green\:hover:hover {
  color: #77b65b !important;
}

.txt-lighter-green\:hover:hover {
  color: #c9e4bc !important;
}

.txt-lightest-green\:hover:hover {
  color: #eff6ec !important;
}

.txt-darker-yellow\:hover:hover {
  color: #483206 !important;
}

.txt-dark-yellow\:hover:hover {
  color: #b5862a !important;
}

.txt-yellow\:hover:hover {
  color: #f2b63f !important;
}

.txt-light-yellow\:hover:hover {
  color: #f5cd78 !important;
}

.txt-lighter-yellow\:hover:hover {
  color: #f8ecc5 !important;
}

.txt-lightest-yellow\:hover:hover {
  color: #faf9e7 !important;
}

.txt-beige\:hover:hover {
  color: #dbd3c9 !important;
}

.txt-white\:hover:hover {
  color: #fff !important;
}

.txt-white-opacity-02\:hover:hover {
  color: rgba(255, 255, 255, 0.2) !important;
}

.txt-white-opacity-03\:hover:hover {
  color: rgba(255, 255, 255, 0.3) !important;
}

.txt-white-opacity-05\:hover:hover {
  color: rgba(255, 255, 255, 0.5) !important;
}

.txt-white-opacity-07\:hover:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

.txt-lightest-grey\:hover:hover {
  color: #f3f3f3 !important;
}

.txt-lighter-grey\:hover:hover {
  color: #ddd !important;
}

.txt-light-grey\:hover:hover {
  color: #bbb !important;
}

.txt-grey\:hover:hover {
  color: #8e8e8e !important;
}

.txt-dark-grey\:hover:hover {
  color: #646464 !important;
}

.txt-darker-grey\:hover:hover {
  color: #444 !important;
}

.txt-darkest-grey\:hover:hover {
  color: #222 !important;
}

.txt-black\:hover:hover {
  color: #000 !important;
}

.txt-black-opacity-07\:hover:hover {
  color: rgba(0, 0, 0, 0.7) !important;
}

.txt-default\:hover:hover {
  color: #222 !important;
}

.txt-headline\:hover:hover {
  color: #222 !important;
}

.txt-link\:hover:hover {
  color: #008fce !important;
  color: var(--txt-link) !important;
}

.txt-link--hover\:hover:hover {
  color: #008fce !important;
  color: var(--txt-link--hover) !important;
}

.txt-transparent\:hover:hover {
  color: transparent !important;
}

.txt-clear\:hover:hover {
  color: #fff !important;
  color: var(--txt-clear) !important;
}

.txt-lightest\:hover:hover {
  color: #f3f3f3 !important;
  color: var(--txt-lightest) !important;
}

.txt-lighter\:hover:hover {
  color: #ddd !important;
  color: var(--txt-lighter) !important;
}

.txt-light\:hover:hover {
  color: #bbb !important;
  color: var(--txt-light) !important;
}

.txt-normal\:hover:hover {
  color: #8e8e8e !important;
  color: var(--txt-normal) !important;
}

.txt-dark\:hover:hover {
  color: #646464 !important;
  color: var(--txt-dark) !important;
}

.txt-darker\:hover:hover {
  color: #444 !important;
  color: var(--txt-darker) !important;
}

.txt-darkest\:hover:hover {
  color: #222 !important;
  color: var(--txt-darkest) !important;
}

.txt-opaque\:hover:hover {
  color: #000 !important;
  color: var(--txt-opaque) !important;
}

.txt-red\:before:before {
  color: #f12b3b !important;
}

.txt-dark-red\:before:before {
  color: #d2212f !important;
}

.txt-dark-blue\:before:before {
  color: #0273aa !important;
}

.txt-darker-blue\:before:before {
  color: #063b63 !important;
}

.txt-blue\:before:before {
  color: #008fce !important;
}

.txt-light-blue\:before:before {
  color: #4ba6ce !important;
}

.txt-lighter-blue\:before:before {
  color: #c4e5f4 !important;
}

.txt-lightest-blue\:before:before {
  color: #f1f7fa !important;
}

.txt-turquoise\:before:before {
  color: #86c6bb !important;
}

.txt-light-turquoise\:before:before {
  color: #a0d1c9 !important;
}

.txt-lightest-turquoise\:before:before {
  color: #eff4f3 !important;
}

.txt-darker-green\:before:before {
  color: #2f4f21 !important;
}

.txt-dark-green\:before:before {
  color: #456f32 !important;
}

.txt-green\:before:before {
  color: #66a54a !important;
}

.txt-light-green\:before:before {
  color: #77b65b !important;
}

.txt-lighter-green\:before:before {
  color: #c9e4bc !important;
}

.txt-lightest-green\:before:before {
  color: #eff6ec !important;
}

.txt-darker-yellow\:before:before {
  color: #483206 !important;
}

.txt-dark-yellow\:before:before {
  color: #b5862a !important;
}

.txt-yellow\:before:before {
  color: #f2b63f !important;
}

.txt-light-yellow\:before:before {
  color: #f5cd78 !important;
}

.txt-lighter-yellow\:before:before {
  color: #f8ecc5 !important;
}

.txt-lightest-yellow\:before:before {
  color: #faf9e7 !important;
}

.txt-beige\:before:before {
  color: #dbd3c9 !important;
}

.txt-white\:before:before {
  color: #fff !important;
}

.txt-white-opacity-02\:before:before {
  color: rgba(255, 255, 255, 0.2) !important;
}

.txt-white-opacity-03\:before:before {
  color: rgba(255, 255, 255, 0.3) !important;
}

.txt-white-opacity-05\:before:before {
  color: rgba(255, 255, 255, 0.5) !important;
}

.txt-white-opacity-07\:before:before {
  color: rgba(255, 255, 255, 0.7) !important;
}

.txt-lightest-grey\:before:before {
  color: #f3f3f3 !important;
}

.txt-lighter-grey\:before:before {
  color: #ddd !important;
}

.txt-light-grey\:before:before {
  color: #bbb !important;
}

.txt-grey\:before:before {
  color: #8e8e8e !important;
}

.txt-dark-grey\:before:before {
  color: #646464 !important;
}

.txt-darker-grey\:before:before {
  color: #444 !important;
}

.txt-darkest-grey\:before:before {
  color: #222 !important;
}

.txt-black\:before:before {
  color: #000 !important;
}

.txt-black-opacity-07\:before:before {
  color: rgba(0, 0, 0, 0.7) !important;
}

.txt-default\:before:before {
  color: #222 !important;
}

.txt-headline\:before:before {
  color: #222 !important;
}

.txt-link\:before:before {
  color: #008fce !important;
  color: var(--txt-link) !important;
}

.txt-link--hover\:before:before {
  color: #008fce !important;
  color: var(--txt-link--hover) !important;
}

.txt-transparent\:before:before {
  color: transparent !important;
}

.txt-clear\:before:before {
  color: #fff !important;
  color: var(--txt-clear) !important;
}

.txt-lightest\:before:before {
  color: #f3f3f3 !important;
  color: var(--txt-lightest) !important;
}

.txt-lighter\:before:before {
  color: #ddd !important;
  color: var(--txt-lighter) !important;
}

.txt-light\:before:before {
  color: #bbb !important;
  color: var(--txt-light) !important;
}

.txt-normal\:before:before {
  color: #8e8e8e !important;
  color: var(--txt-normal) !important;
}

.txt-dark\:before:before {
  color: #646464 !important;
  color: var(--txt-dark) !important;
}

.txt-darker\:before:before {
  color: #444 !important;
  color: var(--txt-darker) !important;
}

.txt-darkest\:before:before {
  color: #222 !important;
  color: var(--txt-darkest) !important;
}

.txt-opaque\:before:before {
  color: #000 !important;
  color: var(--txt-opaque) !important;
}

.txt-red\:after:after {
  color: #f12b3b !important;
}

.txt-dark-red\:after:after {
  color: #d2212f !important;
}

.txt-dark-blue\:after:after {
  color: #0273aa !important;
}

.txt-darker-blue\:after:after {
  color: #063b63 !important;
}

.txt-blue\:after:after {
  color: #008fce !important;
}

.txt-light-blue\:after:after {
  color: #4ba6ce !important;
}

.txt-lighter-blue\:after:after {
  color: #c4e5f4 !important;
}

.txt-lightest-blue\:after:after {
  color: #f1f7fa !important;
}

.txt-turquoise\:after:after {
  color: #86c6bb !important;
}

.txt-light-turquoise\:after:after {
  color: #a0d1c9 !important;
}

.txt-lightest-turquoise\:after:after {
  color: #eff4f3 !important;
}

.txt-darker-green\:after:after {
  color: #2f4f21 !important;
}

.txt-dark-green\:after:after {
  color: #456f32 !important;
}

.txt-green\:after:after {
  color: #66a54a !important;
}

.txt-light-green\:after:after {
  color: #77b65b !important;
}

.txt-lighter-green\:after:after {
  color: #c9e4bc !important;
}

.txt-lightest-green\:after:after {
  color: #eff6ec !important;
}

.txt-darker-yellow\:after:after {
  color: #483206 !important;
}

.txt-dark-yellow\:after:after {
  color: #b5862a !important;
}

.txt-yellow\:after:after {
  color: #f2b63f !important;
}

.txt-light-yellow\:after:after {
  color: #f5cd78 !important;
}

.txt-lighter-yellow\:after:after {
  color: #f8ecc5 !important;
}

.txt-lightest-yellow\:after:after {
  color: #faf9e7 !important;
}

.txt-beige\:after:after {
  color: #dbd3c9 !important;
}

.txt-white\:after:after {
  color: #fff !important;
}

.txt-white-opacity-02\:after:after {
  color: rgba(255, 255, 255, 0.2) !important;
}

.txt-white-opacity-03\:after:after {
  color: rgba(255, 255, 255, 0.3) !important;
}

.txt-white-opacity-05\:after:after {
  color: rgba(255, 255, 255, 0.5) !important;
}

.txt-white-opacity-07\:after:after {
  color: rgba(255, 255, 255, 0.7) !important;
}

.txt-lightest-grey\:after:after {
  color: #f3f3f3 !important;
}

.txt-lighter-grey\:after:after {
  color: #ddd !important;
}

.txt-light-grey\:after:after {
  color: #bbb !important;
}

.txt-grey\:after:after {
  color: #8e8e8e !important;
}

.txt-dark-grey\:after:after {
  color: #646464 !important;
}

.txt-darker-grey\:after:after {
  color: #444 !important;
}

.txt-darkest-grey\:after:after {
  color: #222 !important;
}

.txt-black\:after:after {
  color: #000 !important;
}

.txt-black-opacity-07\:after:after {
  color: rgba(0, 0, 0, 0.7) !important;
}

.txt-default\:after:after {
  color: #222 !important;
}

.txt-headline\:after:after {
  color: #222 !important;
}

.txt-link\:after:after {
  color: #008fce !important;
  color: var(--txt-link) !important;
}

.txt-link--hover\:after:after {
  color: #008fce !important;
  color: var(--txt-link--hover) !important;
}

.txt-transparent\:after:after {
  color: transparent !important;
}

.txt-clear\:after:after {
  color: #fff !important;
  color: var(--txt-clear) !important;
}

.txt-lightest\:after:after {
  color: #f3f3f3 !important;
  color: var(--txt-lightest) !important;
}

.txt-lighter\:after:after {
  color: #ddd !important;
  color: var(--txt-lighter) !important;
}

.txt-light\:after:after {
  color: #bbb !important;
  color: var(--txt-light) !important;
}

.txt-normal\:after:after {
  color: #8e8e8e !important;
  color: var(--txt-normal) !important;
}

.txt-dark\:after:after {
  color: #646464 !important;
  color: var(--txt-dark) !important;
}

.txt-darker\:after:after {
  color: #444 !important;
  color: var(--txt-darker) !important;
}

.txt-darkest\:after:after {
  color: #222 !important;
  color: var(--txt-darkest) !important;
}

.txt-opaque\:after:after {
  color: #000 !important;
  color: var(--txt-opaque) !important;
}

@media screen and (min-width: 360px) {
  .xs\:txt-red {
    color: #f12b3b !important;
  }
  .xs\:txt-dark-red {
    color: #d2212f !important;
  }
  .xs\:txt-dark-blue {
    color: #0273aa !important;
  }
  .xs\:txt-darker-blue {
    color: #063b63 !important;
  }
  .xs\:txt-blue {
    color: #008fce !important;
  }
  .xs\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .xs\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .xs\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .xs\:txt-turquoise {
    color: #86c6bb !important;
  }
  .xs\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .xs\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .xs\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .xs\:txt-dark-green {
    color: #456f32 !important;
  }
  .xs\:txt-green {
    color: #66a54a !important;
  }
  .xs\:txt-light-green {
    color: #77b65b !important;
  }
  .xs\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .xs\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .xs\:txt-darker-yellow {
    color: #483206 !important;
  }
  .xs\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .xs\:txt-yellow {
    color: #f2b63f !important;
  }
  .xs\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .xs\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .xs\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .xs\:txt-beige {
    color: #dbd3c9 !important;
  }
  .xs\:txt-white {
    color: #fff !important;
  }
  .xs\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .xs\:txt-lighter-grey {
    color: #ddd !important;
  }
  .xs\:txt-light-grey {
    color: #bbb !important;
  }
  .xs\:txt-grey {
    color: #8e8e8e !important;
  }
  .xs\:txt-dark-grey {
    color: #646464 !important;
  }
  .xs\:txt-darker-grey {
    color: #444 !important;
  }
  .xs\:txt-darkest-grey {
    color: #222 !important;
  }
  .xs\:txt-black {
    color: #000 !important;
  }
  .xs\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:txt-default {
    color: #222 !important;
  }
  .xs\:txt-headline {
    color: #222 !important;
  }
  .xs\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xs\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xs\:txt-transparent {
    color: transparent !important;
  }
  .xs\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xs\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xs\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xs\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xs\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xs\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xs\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xs\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xs\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  a:hover .xs\:hover\:txt-red {
    color: #f12b3b !important;
  }
  a:hover .xs\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  a:hover .xs\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  a:hover .xs\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  a:hover .xs\:hover\:txt-blue {
    color: #008fce !important;
  }
  a:hover .xs\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  a:hover .xs\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  a:hover .xs\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  a:hover .xs\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  a:hover .xs\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  a:hover .xs\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  a:hover .xs\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  a:hover .xs\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  a:hover .xs\:hover\:txt-green {
    color: #66a54a !important;
  }
  a:hover .xs\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  a:hover .xs\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  a:hover .xs\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  a:hover .xs\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  a:hover .xs\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  a:hover .xs\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  a:hover .xs\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  a:hover .xs\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  a:hover .xs\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  a:hover .xs\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  a:hover .xs\:hover\:txt-white {
    color: #fff !important;
  }
  a:hover .xs\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .xs\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .xs\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .xs\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .xs\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  a:hover .xs\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  a:hover .xs\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  a:hover .xs\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  a:hover .xs\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  a:hover .xs\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  a:hover .xs\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  a:hover .xs\:hover\:txt-black {
    color: #000 !important;
  }
  a:hover .xs\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .xs\:hover\:txt-default {
    color: #222 !important;
  }
  a:hover .xs\:hover\:txt-headline {
    color: #222 !important;
  }
  a:hover .xs\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  a:hover .xs\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  a:hover .xs\:hover\:txt-transparent {
    color: transparent !important;
  }
  a:hover .xs\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  a:hover .xs\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  a:hover .xs\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  a:hover .xs\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  a:hover .xs\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  a:hover .xs\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  a:hover .xs\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  a:hover .xs\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  a:hover .xs\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  button:hover .xs\:hover\:txt-red {
    color: #f12b3b !important;
  }
  button:hover .xs\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  button:hover .xs\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  button:hover .xs\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  button:hover .xs\:hover\:txt-blue {
    color: #008fce !important;
  }
  button:hover .xs\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  button:hover .xs\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  button:hover .xs\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  button:hover .xs\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  button:hover .xs\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  button:hover .xs\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  button:hover .xs\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  button:hover .xs\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  button:hover .xs\:hover\:txt-green {
    color: #66a54a !important;
  }
  button:hover .xs\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  button:hover .xs\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  button:hover .xs\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  button:hover .xs\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  button:hover .xs\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  button:hover .xs\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  button:hover .xs\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  button:hover .xs\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  button:hover .xs\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  button:hover .xs\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  button:hover .xs\:hover\:txt-white {
    color: #fff !important;
  }
  button:hover .xs\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .xs\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .xs\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .xs\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .xs\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  button:hover .xs\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  button:hover .xs\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  button:hover .xs\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  button:hover .xs\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  button:hover .xs\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  button:hover .xs\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  button:hover .xs\:hover\:txt-black {
    color: #000 !important;
  }
  button:hover .xs\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .xs\:hover\:txt-default {
    color: #222 !important;
  }
  button:hover .xs\:hover\:txt-headline {
    color: #222 !important;
  }
  button:hover .xs\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  button:hover .xs\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  button:hover .xs\:hover\:txt-transparent {
    color: transparent !important;
  }
  button:hover .xs\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  button:hover .xs\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  button:hover .xs\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  button:hover .xs\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  button:hover .xs\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  button:hover .xs\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  button:hover .xs\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  button:hover .xs\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  button:hover .xs\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .btn:hover .xs\:hover\:txt-red {
    color: #f12b3b !important;
  }
  .btn:hover .xs\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  .btn:hover .xs\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  .btn:hover .xs\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  .btn:hover .xs\:hover\:txt-blue {
    color: #008fce !important;
  }
  .btn:hover .xs\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .btn:hover .xs\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .btn:hover .xs\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .btn:hover .xs\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  .btn:hover .xs\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .btn:hover .xs\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .btn:hover .xs\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .btn:hover .xs\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  .btn:hover .xs\:hover\:txt-green {
    color: #66a54a !important;
  }
  .btn:hover .xs\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  .btn:hover .xs\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .btn:hover .xs\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .btn:hover .xs\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  .btn:hover .xs\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .btn:hover .xs\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  .btn:hover .xs\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .btn:hover .xs\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .btn:hover .xs\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .btn:hover .xs\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  .btn:hover .xs\:hover\:txt-white {
    color: #fff !important;
  }
  .btn:hover .xs\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .xs\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .xs\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .xs\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .xs\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .btn:hover .xs\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  .btn:hover .xs\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  .btn:hover .xs\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  .btn:hover .xs\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  .btn:hover .xs\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  .btn:hover .xs\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  .btn:hover .xs\:hover\:txt-black {
    color: #000 !important;
  }
  .btn:hover .xs\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .xs\:hover\:txt-default {
    color: #222 !important;
  }
  .btn:hover .xs\:hover\:txt-headline {
    color: #222 !important;
  }
  .btn:hover .xs\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .btn:hover .xs\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .btn:hover .xs\:hover\:txt-transparent {
    color: transparent !important;
  }
  .btn:hover .xs\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .btn:hover .xs\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .btn:hover .xs\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .btn:hover .xs\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .btn:hover .xs\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .btn:hover .xs\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .btn:hover .xs\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .btn:hover .xs\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .btn:hover .xs\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  input:hover .xs\:hover\:txt-red {
    color: #f12b3b !important;
  }
  input:hover .xs\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  input:hover .xs\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  input:hover .xs\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  input:hover .xs\:hover\:txt-blue {
    color: #008fce !important;
  }
  input:hover .xs\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  input:hover .xs\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  input:hover .xs\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  input:hover .xs\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  input:hover .xs\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  input:hover .xs\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  input:hover .xs\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  input:hover .xs\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  input:hover .xs\:hover\:txt-green {
    color: #66a54a !important;
  }
  input:hover .xs\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  input:hover .xs\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  input:hover .xs\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  input:hover .xs\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  input:hover .xs\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  input:hover .xs\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  input:hover .xs\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  input:hover .xs\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  input:hover .xs\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  input:hover .xs\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  input:hover .xs\:hover\:txt-white {
    color: #fff !important;
  }
  input:hover .xs\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .xs\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .xs\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .xs\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .xs\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  input:hover .xs\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  input:hover .xs\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  input:hover .xs\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  input:hover .xs\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  input:hover .xs\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  input:hover .xs\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  input:hover .xs\:hover\:txt-black {
    color: #000 !important;
  }
  input:hover .xs\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .xs\:hover\:txt-default {
    color: #222 !important;
  }
  input:hover .xs\:hover\:txt-headline {
    color: #222 !important;
  }
  input:hover .xs\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  input:hover .xs\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  input:hover .xs\:hover\:txt-transparent {
    color: transparent !important;
  }
  input:hover .xs\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  input:hover .xs\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  input:hover .xs\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  input:hover .xs\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  input:hover .xs\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  input:hover .xs\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  input:hover .xs\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  input:hover .xs\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  input:hover .xs\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xs\:hover\:txt-red:hover {
    color: #f12b3b !important;
  }
  .xs\:hover\:txt-dark-red:hover {
    color: #d2212f !important;
  }
  .xs\:hover\:txt-dark-blue:hover {
    color: #0273aa !important;
  }
  .xs\:hover\:txt-darker-blue:hover {
    color: #063b63 !important;
  }
  .xs\:hover\:txt-blue:hover {
    color: #008fce !important;
  }
  .xs\:hover\:txt-light-blue:hover {
    color: #4ba6ce !important;
  }
  .xs\:hover\:txt-lighter-blue:hover {
    color: #c4e5f4 !important;
  }
  .xs\:hover\:txt-lightest-blue:hover {
    color: #f1f7fa !important;
  }
  .xs\:hover\:txt-turquoise:hover {
    color: #86c6bb !important;
  }
  .xs\:hover\:txt-light-turquoise:hover {
    color: #a0d1c9 !important;
  }
  .xs\:hover\:txt-lightest-turquoise:hover {
    color: #eff4f3 !important;
  }
  .xs\:hover\:txt-darker-green:hover {
    color: #2f4f21 !important;
  }
  .xs\:hover\:txt-dark-green:hover {
    color: #456f32 !important;
  }
  .xs\:hover\:txt-green:hover {
    color: #66a54a !important;
  }
  .xs\:hover\:txt-light-green:hover {
    color: #77b65b !important;
  }
  .xs\:hover\:txt-lighter-green:hover {
    color: #c9e4bc !important;
  }
  .xs\:hover\:txt-lightest-green:hover {
    color: #eff6ec !important;
  }
  .xs\:hover\:txt-darker-yellow:hover {
    color: #483206 !important;
  }
  .xs\:hover\:txt-dark-yellow:hover {
    color: #b5862a !important;
  }
  .xs\:hover\:txt-yellow:hover {
    color: #f2b63f !important;
  }
  .xs\:hover\:txt-light-yellow:hover {
    color: #f5cd78 !important;
  }
  .xs\:hover\:txt-lighter-yellow:hover {
    color: #f8ecc5 !important;
  }
  .xs\:hover\:txt-lightest-yellow:hover {
    color: #faf9e7 !important;
  }
  .xs\:hover\:txt-beige:hover {
    color: #dbd3c9 !important;
  }
  .xs\:hover\:txt-white:hover {
    color: #fff !important;
  }
  .xs\:hover\:txt-white-opacity-02:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:hover\:txt-white-opacity-03:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:hover\:txt-white-opacity-05:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:hover\:txt-white-opacity-07:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:hover\:txt-lightest-grey:hover {
    color: #f3f3f3 !important;
  }
  .xs\:hover\:txt-lighter-grey:hover {
    color: #ddd !important;
  }
  .xs\:hover\:txt-light-grey:hover {
    color: #bbb !important;
  }
  .xs\:hover\:txt-grey:hover {
    color: #8e8e8e !important;
  }
  .xs\:hover\:txt-dark-grey:hover {
    color: #646464 !important;
  }
  .xs\:hover\:txt-darker-grey:hover {
    color: #444 !important;
  }
  .xs\:hover\:txt-darkest-grey:hover {
    color: #222 !important;
  }
  .xs\:hover\:txt-black:hover {
    color: #000 !important;
  }
  .xs\:hover\:txt-black-opacity-07:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:hover\:txt-default:hover {
    color: #222 !important;
  }
  .xs\:hover\:txt-headline:hover {
    color: #222 !important;
  }
  .xs\:hover\:txt-link:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xs\:hover\:txt-link--hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xs\:hover\:txt-transparent:hover {
    color: transparent !important;
  }
  .xs\:hover\:txt-clear:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xs\:hover\:txt-lightest:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xs\:hover\:txt-lighter:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xs\:hover\:txt-light:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xs\:hover\:txt-normal:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xs\:hover\:txt-dark:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xs\:hover\:txt-darker:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xs\:hover\:txt-darkest:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xs\:hover\:txt-opaque:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xs\:txt-red\:hover:hover {
    color: #f12b3b !important;
  }
  .xs\:txt-dark-red\:hover:hover {
    color: #d2212f !important;
  }
  .xs\:txt-dark-blue\:hover:hover {
    color: #0273aa !important;
  }
  .xs\:txt-darker-blue\:hover:hover {
    color: #063b63 !important;
  }
  .xs\:txt-blue\:hover:hover {
    color: #008fce !important;
  }
  .xs\:txt-light-blue\:hover:hover {
    color: #4ba6ce !important;
  }
  .xs\:txt-lighter-blue\:hover:hover {
    color: #c4e5f4 !important;
  }
  .xs\:txt-lightest-blue\:hover:hover {
    color: #f1f7fa !important;
  }
  .xs\:txt-turquoise\:hover:hover {
    color: #86c6bb !important;
  }
  .xs\:txt-light-turquoise\:hover:hover {
    color: #a0d1c9 !important;
  }
  .xs\:txt-lightest-turquoise\:hover:hover {
    color: #eff4f3 !important;
  }
  .xs\:txt-darker-green\:hover:hover {
    color: #2f4f21 !important;
  }
  .xs\:txt-dark-green\:hover:hover {
    color: #456f32 !important;
  }
  .xs\:txt-green\:hover:hover {
    color: #66a54a !important;
  }
  .xs\:txt-light-green\:hover:hover {
    color: #77b65b !important;
  }
  .xs\:txt-lighter-green\:hover:hover {
    color: #c9e4bc !important;
  }
  .xs\:txt-lightest-green\:hover:hover {
    color: #eff6ec !important;
  }
  .xs\:txt-darker-yellow\:hover:hover {
    color: #483206 !important;
  }
  .xs\:txt-dark-yellow\:hover:hover {
    color: #b5862a !important;
  }
  .xs\:txt-yellow\:hover:hover {
    color: #f2b63f !important;
  }
  .xs\:txt-light-yellow\:hover:hover {
    color: #f5cd78 !important;
  }
  .xs\:txt-lighter-yellow\:hover:hover {
    color: #f8ecc5 !important;
  }
  .xs\:txt-lightest-yellow\:hover:hover {
    color: #faf9e7 !important;
  }
  .xs\:txt-beige\:hover:hover {
    color: #dbd3c9 !important;
  }
  .xs\:txt-white\:hover:hover {
    color: #fff !important;
  }
  .xs\:txt-white-opacity-02\:hover:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:txt-white-opacity-03\:hover:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:txt-white-opacity-05\:hover:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:txt-white-opacity-07\:hover:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:txt-lightest-grey\:hover:hover {
    color: #f3f3f3 !important;
  }
  .xs\:txt-lighter-grey\:hover:hover {
    color: #ddd !important;
  }
  .xs\:txt-light-grey\:hover:hover {
    color: #bbb !important;
  }
  .xs\:txt-grey\:hover:hover {
    color: #8e8e8e !important;
  }
  .xs\:txt-dark-grey\:hover:hover {
    color: #646464 !important;
  }
  .xs\:txt-darker-grey\:hover:hover {
    color: #444 !important;
  }
  .xs\:txt-darkest-grey\:hover:hover {
    color: #222 !important;
  }
  .xs\:txt-black\:hover:hover {
    color: #000 !important;
  }
  .xs\:txt-black-opacity-07\:hover:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:txt-default\:hover:hover {
    color: #222 !important;
  }
  .xs\:txt-headline\:hover:hover {
    color: #222 !important;
  }
  .xs\:txt-link\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xs\:txt-link--hover\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xs\:txt-transparent\:hover:hover {
    color: transparent !important;
  }
  .xs\:txt-clear\:hover:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xs\:txt-lightest\:hover:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xs\:txt-lighter\:hover:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xs\:txt-light\:hover:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xs\:txt-normal\:hover:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xs\:txt-dark\:hover:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xs\:txt-darker\:hover:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xs\:txt-darkest\:hover:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xs\:txt-opaque\:hover:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xs\:txt-red\:before:before {
    color: #f12b3b !important;
  }
  .xs\:txt-dark-red\:before:before {
    color: #d2212f !important;
  }
  .xs\:txt-dark-blue\:before:before {
    color: #0273aa !important;
  }
  .xs\:txt-darker-blue\:before:before {
    color: #063b63 !important;
  }
  .xs\:txt-blue\:before:before {
    color: #008fce !important;
  }
  .xs\:txt-light-blue\:before:before {
    color: #4ba6ce !important;
  }
  .xs\:txt-lighter-blue\:before:before {
    color: #c4e5f4 !important;
  }
  .xs\:txt-lightest-blue\:before:before {
    color: #f1f7fa !important;
  }
  .xs\:txt-turquoise\:before:before {
    color: #86c6bb !important;
  }
  .xs\:txt-light-turquoise\:before:before {
    color: #a0d1c9 !important;
  }
  .xs\:txt-lightest-turquoise\:before:before {
    color: #eff4f3 !important;
  }
  .xs\:txt-darker-green\:before:before {
    color: #2f4f21 !important;
  }
  .xs\:txt-dark-green\:before:before {
    color: #456f32 !important;
  }
  .xs\:txt-green\:before:before {
    color: #66a54a !important;
  }
  .xs\:txt-light-green\:before:before {
    color: #77b65b !important;
  }
  .xs\:txt-lighter-green\:before:before {
    color: #c9e4bc !important;
  }
  .xs\:txt-lightest-green\:before:before {
    color: #eff6ec !important;
  }
  .xs\:txt-darker-yellow\:before:before {
    color: #483206 !important;
  }
  .xs\:txt-dark-yellow\:before:before {
    color: #b5862a !important;
  }
  .xs\:txt-yellow\:before:before {
    color: #f2b63f !important;
  }
  .xs\:txt-light-yellow\:before:before {
    color: #f5cd78 !important;
  }
  .xs\:txt-lighter-yellow\:before:before {
    color: #f8ecc5 !important;
  }
  .xs\:txt-lightest-yellow\:before:before {
    color: #faf9e7 !important;
  }
  .xs\:txt-beige\:before:before {
    color: #dbd3c9 !important;
  }
  .xs\:txt-white\:before:before {
    color: #fff !important;
  }
  .xs\:txt-white-opacity-02\:before:before {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:txt-white-opacity-03\:before:before {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:txt-white-opacity-05\:before:before {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:txt-white-opacity-07\:before:before {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:txt-lightest-grey\:before:before {
    color: #f3f3f3 !important;
  }
  .xs\:txt-lighter-grey\:before:before {
    color: #ddd !important;
  }
  .xs\:txt-light-grey\:before:before {
    color: #bbb !important;
  }
  .xs\:txt-grey\:before:before {
    color: #8e8e8e !important;
  }
  .xs\:txt-dark-grey\:before:before {
    color: #646464 !important;
  }
  .xs\:txt-darker-grey\:before:before {
    color: #444 !important;
  }
  .xs\:txt-darkest-grey\:before:before {
    color: #222 !important;
  }
  .xs\:txt-black\:before:before {
    color: #000 !important;
  }
  .xs\:txt-black-opacity-07\:before:before {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:txt-default\:before:before {
    color: #222 !important;
  }
  .xs\:txt-headline\:before:before {
    color: #222 !important;
  }
  .xs\:txt-link\:before:before {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xs\:txt-link--hover\:before:before {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xs\:txt-transparent\:before:before {
    color: transparent !important;
  }
  .xs\:txt-clear\:before:before {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xs\:txt-lightest\:before:before {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xs\:txt-lighter\:before:before {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xs\:txt-light\:before:before {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xs\:txt-normal\:before:before {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xs\:txt-dark\:before:before {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xs\:txt-darker\:before:before {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xs\:txt-darkest\:before:before {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xs\:txt-opaque\:before:before {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xs\:txt-red\:after:after {
    color: #f12b3b !important;
  }
  .xs\:txt-dark-red\:after:after {
    color: #d2212f !important;
  }
  .xs\:txt-dark-blue\:after:after {
    color: #0273aa !important;
  }
  .xs\:txt-darker-blue\:after:after {
    color: #063b63 !important;
  }
  .xs\:txt-blue\:after:after {
    color: #008fce !important;
  }
  .xs\:txt-light-blue\:after:after {
    color: #4ba6ce !important;
  }
  .xs\:txt-lighter-blue\:after:after {
    color: #c4e5f4 !important;
  }
  .xs\:txt-lightest-blue\:after:after {
    color: #f1f7fa !important;
  }
  .xs\:txt-turquoise\:after:after {
    color: #86c6bb !important;
  }
  .xs\:txt-light-turquoise\:after:after {
    color: #a0d1c9 !important;
  }
  .xs\:txt-lightest-turquoise\:after:after {
    color: #eff4f3 !important;
  }
  .xs\:txt-darker-green\:after:after {
    color: #2f4f21 !important;
  }
  .xs\:txt-dark-green\:after:after {
    color: #456f32 !important;
  }
  .xs\:txt-green\:after:after {
    color: #66a54a !important;
  }
  .xs\:txt-light-green\:after:after {
    color: #77b65b !important;
  }
  .xs\:txt-lighter-green\:after:after {
    color: #c9e4bc !important;
  }
  .xs\:txt-lightest-green\:after:after {
    color: #eff6ec !important;
  }
  .xs\:txt-darker-yellow\:after:after {
    color: #483206 !important;
  }
  .xs\:txt-dark-yellow\:after:after {
    color: #b5862a !important;
  }
  .xs\:txt-yellow\:after:after {
    color: #f2b63f !important;
  }
  .xs\:txt-light-yellow\:after:after {
    color: #f5cd78 !important;
  }
  .xs\:txt-lighter-yellow\:after:after {
    color: #f8ecc5 !important;
  }
  .xs\:txt-lightest-yellow\:after:after {
    color: #faf9e7 !important;
  }
  .xs\:txt-beige\:after:after {
    color: #dbd3c9 !important;
  }
  .xs\:txt-white\:after:after {
    color: #fff !important;
  }
  .xs\:txt-white-opacity-02\:after:after {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:txt-white-opacity-03\:after:after {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:txt-white-opacity-05\:after:after {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:txt-white-opacity-07\:after:after {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:txt-lightest-grey\:after:after {
    color: #f3f3f3 !important;
  }
  .xs\:txt-lighter-grey\:after:after {
    color: #ddd !important;
  }
  .xs\:txt-light-grey\:after:after {
    color: #bbb !important;
  }
  .xs\:txt-grey\:after:after {
    color: #8e8e8e !important;
  }
  .xs\:txt-dark-grey\:after:after {
    color: #646464 !important;
  }
  .xs\:txt-darker-grey\:after:after {
    color: #444 !important;
  }
  .xs\:txt-darkest-grey\:after:after {
    color: #222 !important;
  }
  .xs\:txt-black\:after:after {
    color: #000 !important;
  }
  .xs\:txt-black-opacity-07\:after:after {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:txt-default\:after:after {
    color: #222 !important;
  }
  .xs\:txt-headline\:after:after {
    color: #222 !important;
  }
  .xs\:txt-link\:after:after {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xs\:txt-link--hover\:after:after {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xs\:txt-transparent\:after:after {
    color: transparent !important;
  }
  .xs\:txt-clear\:after:after {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xs\:txt-lightest\:after:after {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xs\:txt-lighter\:after:after {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xs\:txt-light\:after:after {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xs\:txt-normal\:after:after {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xs\:txt-dark\:after:after {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xs\:txt-darker\:after:after {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xs\:txt-darkest\:after:after {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xs\:txt-opaque\:after:after {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:txt-red {
    color: #f12b3b !important;
  }
  .sm\:txt-dark-red {
    color: #d2212f !important;
  }
  .sm\:txt-dark-blue {
    color: #0273aa !important;
  }
  .sm\:txt-darker-blue {
    color: #063b63 !important;
  }
  .sm\:txt-blue {
    color: #008fce !important;
  }
  .sm\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .sm\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .sm\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .sm\:txt-turquoise {
    color: #86c6bb !important;
  }
  .sm\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .sm\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .sm\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .sm\:txt-dark-green {
    color: #456f32 !important;
  }
  .sm\:txt-green {
    color: #66a54a !important;
  }
  .sm\:txt-light-green {
    color: #77b65b !important;
  }
  .sm\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .sm\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .sm\:txt-darker-yellow {
    color: #483206 !important;
  }
  .sm\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .sm\:txt-yellow {
    color: #f2b63f !important;
  }
  .sm\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .sm\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .sm\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .sm\:txt-beige {
    color: #dbd3c9 !important;
  }
  .sm\:txt-white {
    color: #fff !important;
  }
  .sm\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .sm\:txt-lighter-grey {
    color: #ddd !important;
  }
  .sm\:txt-light-grey {
    color: #bbb !important;
  }
  .sm\:txt-grey {
    color: #8e8e8e !important;
  }
  .sm\:txt-dark-grey {
    color: #646464 !important;
  }
  .sm\:txt-darker-grey {
    color: #444 !important;
  }
  .sm\:txt-darkest-grey {
    color: #222 !important;
  }
  .sm\:txt-black {
    color: #000 !important;
  }
  .sm\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:txt-default {
    color: #222 !important;
  }
  .sm\:txt-headline {
    color: #222 !important;
  }
  .sm\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .sm\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .sm\:txt-transparent {
    color: transparent !important;
  }
  .sm\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .sm\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .sm\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .sm\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .sm\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .sm\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .sm\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .sm\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .sm\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  a:hover .sm\:hover\:txt-red {
    color: #f12b3b !important;
  }
  a:hover .sm\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  a:hover .sm\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  a:hover .sm\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  a:hover .sm\:hover\:txt-blue {
    color: #008fce !important;
  }
  a:hover .sm\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  a:hover .sm\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  a:hover .sm\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  a:hover .sm\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  a:hover .sm\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  a:hover .sm\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  a:hover .sm\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  a:hover .sm\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  a:hover .sm\:hover\:txt-green {
    color: #66a54a !important;
  }
  a:hover .sm\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  a:hover .sm\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  a:hover .sm\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  a:hover .sm\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  a:hover .sm\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  a:hover .sm\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  a:hover .sm\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  a:hover .sm\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  a:hover .sm\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  a:hover .sm\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  a:hover .sm\:hover\:txt-white {
    color: #fff !important;
  }
  a:hover .sm\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .sm\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .sm\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .sm\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .sm\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  a:hover .sm\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  a:hover .sm\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  a:hover .sm\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  a:hover .sm\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  a:hover .sm\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  a:hover .sm\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  a:hover .sm\:hover\:txt-black {
    color: #000 !important;
  }
  a:hover .sm\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .sm\:hover\:txt-default {
    color: #222 !important;
  }
  a:hover .sm\:hover\:txt-headline {
    color: #222 !important;
  }
  a:hover .sm\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  a:hover .sm\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  a:hover .sm\:hover\:txt-transparent {
    color: transparent !important;
  }
  a:hover .sm\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  a:hover .sm\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  a:hover .sm\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  a:hover .sm\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  a:hover .sm\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  a:hover .sm\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  a:hover .sm\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  a:hover .sm\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  a:hover .sm\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  button:hover .sm\:hover\:txt-red {
    color: #f12b3b !important;
  }
  button:hover .sm\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  button:hover .sm\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  button:hover .sm\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  button:hover .sm\:hover\:txt-blue {
    color: #008fce !important;
  }
  button:hover .sm\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  button:hover .sm\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  button:hover .sm\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  button:hover .sm\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  button:hover .sm\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  button:hover .sm\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  button:hover .sm\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  button:hover .sm\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  button:hover .sm\:hover\:txt-green {
    color: #66a54a !important;
  }
  button:hover .sm\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  button:hover .sm\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  button:hover .sm\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  button:hover .sm\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  button:hover .sm\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  button:hover .sm\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  button:hover .sm\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  button:hover .sm\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  button:hover .sm\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  button:hover .sm\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  button:hover .sm\:hover\:txt-white {
    color: #fff !important;
  }
  button:hover .sm\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .sm\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .sm\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .sm\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .sm\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  button:hover .sm\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  button:hover .sm\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  button:hover .sm\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  button:hover .sm\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  button:hover .sm\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  button:hover .sm\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  button:hover .sm\:hover\:txt-black {
    color: #000 !important;
  }
  button:hover .sm\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .sm\:hover\:txt-default {
    color: #222 !important;
  }
  button:hover .sm\:hover\:txt-headline {
    color: #222 !important;
  }
  button:hover .sm\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  button:hover .sm\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  button:hover .sm\:hover\:txt-transparent {
    color: transparent !important;
  }
  button:hover .sm\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  button:hover .sm\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  button:hover .sm\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  button:hover .sm\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  button:hover .sm\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  button:hover .sm\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  button:hover .sm\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  button:hover .sm\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  button:hover .sm\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .btn:hover .sm\:hover\:txt-red {
    color: #f12b3b !important;
  }
  .btn:hover .sm\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  .btn:hover .sm\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  .btn:hover .sm\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  .btn:hover .sm\:hover\:txt-blue {
    color: #008fce !important;
  }
  .btn:hover .sm\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .btn:hover .sm\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .btn:hover .sm\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .btn:hover .sm\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  .btn:hover .sm\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .btn:hover .sm\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .btn:hover .sm\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .btn:hover .sm\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  .btn:hover .sm\:hover\:txt-green {
    color: #66a54a !important;
  }
  .btn:hover .sm\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  .btn:hover .sm\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .btn:hover .sm\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .btn:hover .sm\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  .btn:hover .sm\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .btn:hover .sm\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  .btn:hover .sm\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .btn:hover .sm\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .btn:hover .sm\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .btn:hover .sm\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  .btn:hover .sm\:hover\:txt-white {
    color: #fff !important;
  }
  .btn:hover .sm\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .sm\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .sm\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .sm\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .sm\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .btn:hover .sm\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  .btn:hover .sm\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  .btn:hover .sm\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  .btn:hover .sm\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  .btn:hover .sm\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  .btn:hover .sm\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  .btn:hover .sm\:hover\:txt-black {
    color: #000 !important;
  }
  .btn:hover .sm\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .sm\:hover\:txt-default {
    color: #222 !important;
  }
  .btn:hover .sm\:hover\:txt-headline {
    color: #222 !important;
  }
  .btn:hover .sm\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .btn:hover .sm\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .btn:hover .sm\:hover\:txt-transparent {
    color: transparent !important;
  }
  .btn:hover .sm\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .btn:hover .sm\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .btn:hover .sm\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .btn:hover .sm\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .btn:hover .sm\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .btn:hover .sm\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .btn:hover .sm\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .btn:hover .sm\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .btn:hover .sm\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  input:hover .sm\:hover\:txt-red {
    color: #f12b3b !important;
  }
  input:hover .sm\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  input:hover .sm\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  input:hover .sm\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  input:hover .sm\:hover\:txt-blue {
    color: #008fce !important;
  }
  input:hover .sm\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  input:hover .sm\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  input:hover .sm\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  input:hover .sm\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  input:hover .sm\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  input:hover .sm\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  input:hover .sm\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  input:hover .sm\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  input:hover .sm\:hover\:txt-green {
    color: #66a54a !important;
  }
  input:hover .sm\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  input:hover .sm\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  input:hover .sm\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  input:hover .sm\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  input:hover .sm\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  input:hover .sm\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  input:hover .sm\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  input:hover .sm\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  input:hover .sm\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  input:hover .sm\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  input:hover .sm\:hover\:txt-white {
    color: #fff !important;
  }
  input:hover .sm\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .sm\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .sm\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .sm\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .sm\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  input:hover .sm\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  input:hover .sm\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  input:hover .sm\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  input:hover .sm\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  input:hover .sm\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  input:hover .sm\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  input:hover .sm\:hover\:txt-black {
    color: #000 !important;
  }
  input:hover .sm\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .sm\:hover\:txt-default {
    color: #222 !important;
  }
  input:hover .sm\:hover\:txt-headline {
    color: #222 !important;
  }
  input:hover .sm\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  input:hover .sm\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  input:hover .sm\:hover\:txt-transparent {
    color: transparent !important;
  }
  input:hover .sm\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  input:hover .sm\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  input:hover .sm\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  input:hover .sm\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  input:hover .sm\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  input:hover .sm\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  input:hover .sm\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  input:hover .sm\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  input:hover .sm\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .sm\:hover\:txt-red:hover {
    color: #f12b3b !important;
  }
  .sm\:hover\:txt-dark-red:hover {
    color: #d2212f !important;
  }
  .sm\:hover\:txt-dark-blue:hover {
    color: #0273aa !important;
  }
  .sm\:hover\:txt-darker-blue:hover {
    color: #063b63 !important;
  }
  .sm\:hover\:txt-blue:hover {
    color: #008fce !important;
  }
  .sm\:hover\:txt-light-blue:hover {
    color: #4ba6ce !important;
  }
  .sm\:hover\:txt-lighter-blue:hover {
    color: #c4e5f4 !important;
  }
  .sm\:hover\:txt-lightest-blue:hover {
    color: #f1f7fa !important;
  }
  .sm\:hover\:txt-turquoise:hover {
    color: #86c6bb !important;
  }
  .sm\:hover\:txt-light-turquoise:hover {
    color: #a0d1c9 !important;
  }
  .sm\:hover\:txt-lightest-turquoise:hover {
    color: #eff4f3 !important;
  }
  .sm\:hover\:txt-darker-green:hover {
    color: #2f4f21 !important;
  }
  .sm\:hover\:txt-dark-green:hover {
    color: #456f32 !important;
  }
  .sm\:hover\:txt-green:hover {
    color: #66a54a !important;
  }
  .sm\:hover\:txt-light-green:hover {
    color: #77b65b !important;
  }
  .sm\:hover\:txt-lighter-green:hover {
    color: #c9e4bc !important;
  }
  .sm\:hover\:txt-lightest-green:hover {
    color: #eff6ec !important;
  }
  .sm\:hover\:txt-darker-yellow:hover {
    color: #483206 !important;
  }
  .sm\:hover\:txt-dark-yellow:hover {
    color: #b5862a !important;
  }
  .sm\:hover\:txt-yellow:hover {
    color: #f2b63f !important;
  }
  .sm\:hover\:txt-light-yellow:hover {
    color: #f5cd78 !important;
  }
  .sm\:hover\:txt-lighter-yellow:hover {
    color: #f8ecc5 !important;
  }
  .sm\:hover\:txt-lightest-yellow:hover {
    color: #faf9e7 !important;
  }
  .sm\:hover\:txt-beige:hover {
    color: #dbd3c9 !important;
  }
  .sm\:hover\:txt-white:hover {
    color: #fff !important;
  }
  .sm\:hover\:txt-white-opacity-02:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:hover\:txt-white-opacity-03:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:hover\:txt-white-opacity-05:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:hover\:txt-white-opacity-07:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:hover\:txt-lightest-grey:hover {
    color: #f3f3f3 !important;
  }
  .sm\:hover\:txt-lighter-grey:hover {
    color: #ddd !important;
  }
  .sm\:hover\:txt-light-grey:hover {
    color: #bbb !important;
  }
  .sm\:hover\:txt-grey:hover {
    color: #8e8e8e !important;
  }
  .sm\:hover\:txt-dark-grey:hover {
    color: #646464 !important;
  }
  .sm\:hover\:txt-darker-grey:hover {
    color: #444 !important;
  }
  .sm\:hover\:txt-darkest-grey:hover {
    color: #222 !important;
  }
  .sm\:hover\:txt-black:hover {
    color: #000 !important;
  }
  .sm\:hover\:txt-black-opacity-07:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:hover\:txt-default:hover {
    color: #222 !important;
  }
  .sm\:hover\:txt-headline:hover {
    color: #222 !important;
  }
  .sm\:hover\:txt-link:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .sm\:hover\:txt-link--hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .sm\:hover\:txt-transparent:hover {
    color: transparent !important;
  }
  .sm\:hover\:txt-clear:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .sm\:hover\:txt-lightest:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .sm\:hover\:txt-lighter:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .sm\:hover\:txt-light:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .sm\:hover\:txt-normal:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .sm\:hover\:txt-dark:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .sm\:hover\:txt-darker:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .sm\:hover\:txt-darkest:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .sm\:hover\:txt-opaque:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .sm\:txt-red\:hover:hover {
    color: #f12b3b !important;
  }
  .sm\:txt-dark-red\:hover:hover {
    color: #d2212f !important;
  }
  .sm\:txt-dark-blue\:hover:hover {
    color: #0273aa !important;
  }
  .sm\:txt-darker-blue\:hover:hover {
    color: #063b63 !important;
  }
  .sm\:txt-blue\:hover:hover {
    color: #008fce !important;
  }
  .sm\:txt-light-blue\:hover:hover {
    color: #4ba6ce !important;
  }
  .sm\:txt-lighter-blue\:hover:hover {
    color: #c4e5f4 !important;
  }
  .sm\:txt-lightest-blue\:hover:hover {
    color: #f1f7fa !important;
  }
  .sm\:txt-turquoise\:hover:hover {
    color: #86c6bb !important;
  }
  .sm\:txt-light-turquoise\:hover:hover {
    color: #a0d1c9 !important;
  }
  .sm\:txt-lightest-turquoise\:hover:hover {
    color: #eff4f3 !important;
  }
  .sm\:txt-darker-green\:hover:hover {
    color: #2f4f21 !important;
  }
  .sm\:txt-dark-green\:hover:hover {
    color: #456f32 !important;
  }
  .sm\:txt-green\:hover:hover {
    color: #66a54a !important;
  }
  .sm\:txt-light-green\:hover:hover {
    color: #77b65b !important;
  }
  .sm\:txt-lighter-green\:hover:hover {
    color: #c9e4bc !important;
  }
  .sm\:txt-lightest-green\:hover:hover {
    color: #eff6ec !important;
  }
  .sm\:txt-darker-yellow\:hover:hover {
    color: #483206 !important;
  }
  .sm\:txt-dark-yellow\:hover:hover {
    color: #b5862a !important;
  }
  .sm\:txt-yellow\:hover:hover {
    color: #f2b63f !important;
  }
  .sm\:txt-light-yellow\:hover:hover {
    color: #f5cd78 !important;
  }
  .sm\:txt-lighter-yellow\:hover:hover {
    color: #f8ecc5 !important;
  }
  .sm\:txt-lightest-yellow\:hover:hover {
    color: #faf9e7 !important;
  }
  .sm\:txt-beige\:hover:hover {
    color: #dbd3c9 !important;
  }
  .sm\:txt-white\:hover:hover {
    color: #fff !important;
  }
  .sm\:txt-white-opacity-02\:hover:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:txt-white-opacity-03\:hover:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:txt-white-opacity-05\:hover:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:txt-white-opacity-07\:hover:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:txt-lightest-grey\:hover:hover {
    color: #f3f3f3 !important;
  }
  .sm\:txt-lighter-grey\:hover:hover {
    color: #ddd !important;
  }
  .sm\:txt-light-grey\:hover:hover {
    color: #bbb !important;
  }
  .sm\:txt-grey\:hover:hover {
    color: #8e8e8e !important;
  }
  .sm\:txt-dark-grey\:hover:hover {
    color: #646464 !important;
  }
  .sm\:txt-darker-grey\:hover:hover {
    color: #444 !important;
  }
  .sm\:txt-darkest-grey\:hover:hover {
    color: #222 !important;
  }
  .sm\:txt-black\:hover:hover {
    color: #000 !important;
  }
  .sm\:txt-black-opacity-07\:hover:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:txt-default\:hover:hover {
    color: #222 !important;
  }
  .sm\:txt-headline\:hover:hover {
    color: #222 !important;
  }
  .sm\:txt-link\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .sm\:txt-link--hover\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .sm\:txt-transparent\:hover:hover {
    color: transparent !important;
  }
  .sm\:txt-clear\:hover:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .sm\:txt-lightest\:hover:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .sm\:txt-lighter\:hover:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .sm\:txt-light\:hover:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .sm\:txt-normal\:hover:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .sm\:txt-dark\:hover:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .sm\:txt-darker\:hover:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .sm\:txt-darkest\:hover:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .sm\:txt-opaque\:hover:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .sm\:txt-red\:before:before {
    color: #f12b3b !important;
  }
  .sm\:txt-dark-red\:before:before {
    color: #d2212f !important;
  }
  .sm\:txt-dark-blue\:before:before {
    color: #0273aa !important;
  }
  .sm\:txt-darker-blue\:before:before {
    color: #063b63 !important;
  }
  .sm\:txt-blue\:before:before {
    color: #008fce !important;
  }
  .sm\:txt-light-blue\:before:before {
    color: #4ba6ce !important;
  }
  .sm\:txt-lighter-blue\:before:before {
    color: #c4e5f4 !important;
  }
  .sm\:txt-lightest-blue\:before:before {
    color: #f1f7fa !important;
  }
  .sm\:txt-turquoise\:before:before {
    color: #86c6bb !important;
  }
  .sm\:txt-light-turquoise\:before:before {
    color: #a0d1c9 !important;
  }
  .sm\:txt-lightest-turquoise\:before:before {
    color: #eff4f3 !important;
  }
  .sm\:txt-darker-green\:before:before {
    color: #2f4f21 !important;
  }
  .sm\:txt-dark-green\:before:before {
    color: #456f32 !important;
  }
  .sm\:txt-green\:before:before {
    color: #66a54a !important;
  }
  .sm\:txt-light-green\:before:before {
    color: #77b65b !important;
  }
  .sm\:txt-lighter-green\:before:before {
    color: #c9e4bc !important;
  }
  .sm\:txt-lightest-green\:before:before {
    color: #eff6ec !important;
  }
  .sm\:txt-darker-yellow\:before:before {
    color: #483206 !important;
  }
  .sm\:txt-dark-yellow\:before:before {
    color: #b5862a !important;
  }
  .sm\:txt-yellow\:before:before {
    color: #f2b63f !important;
  }
  .sm\:txt-light-yellow\:before:before {
    color: #f5cd78 !important;
  }
  .sm\:txt-lighter-yellow\:before:before {
    color: #f8ecc5 !important;
  }
  .sm\:txt-lightest-yellow\:before:before {
    color: #faf9e7 !important;
  }
  .sm\:txt-beige\:before:before {
    color: #dbd3c9 !important;
  }
  .sm\:txt-white\:before:before {
    color: #fff !important;
  }
  .sm\:txt-white-opacity-02\:before:before {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:txt-white-opacity-03\:before:before {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:txt-white-opacity-05\:before:before {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:txt-white-opacity-07\:before:before {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:txt-lightest-grey\:before:before {
    color: #f3f3f3 !important;
  }
  .sm\:txt-lighter-grey\:before:before {
    color: #ddd !important;
  }
  .sm\:txt-light-grey\:before:before {
    color: #bbb !important;
  }
  .sm\:txt-grey\:before:before {
    color: #8e8e8e !important;
  }
  .sm\:txt-dark-grey\:before:before {
    color: #646464 !important;
  }
  .sm\:txt-darker-grey\:before:before {
    color: #444 !important;
  }
  .sm\:txt-darkest-grey\:before:before {
    color: #222 !important;
  }
  .sm\:txt-black\:before:before {
    color: #000 !important;
  }
  .sm\:txt-black-opacity-07\:before:before {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:txt-default\:before:before {
    color: #222 !important;
  }
  .sm\:txt-headline\:before:before {
    color: #222 !important;
  }
  .sm\:txt-link\:before:before {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .sm\:txt-link--hover\:before:before {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .sm\:txt-transparent\:before:before {
    color: transparent !important;
  }
  .sm\:txt-clear\:before:before {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .sm\:txt-lightest\:before:before {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .sm\:txt-lighter\:before:before {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .sm\:txt-light\:before:before {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .sm\:txt-normal\:before:before {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .sm\:txt-dark\:before:before {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .sm\:txt-darker\:before:before {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .sm\:txt-darkest\:before:before {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .sm\:txt-opaque\:before:before {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .sm\:txt-red\:after:after {
    color: #f12b3b !important;
  }
  .sm\:txt-dark-red\:after:after {
    color: #d2212f !important;
  }
  .sm\:txt-dark-blue\:after:after {
    color: #0273aa !important;
  }
  .sm\:txt-darker-blue\:after:after {
    color: #063b63 !important;
  }
  .sm\:txt-blue\:after:after {
    color: #008fce !important;
  }
  .sm\:txt-light-blue\:after:after {
    color: #4ba6ce !important;
  }
  .sm\:txt-lighter-blue\:after:after {
    color: #c4e5f4 !important;
  }
  .sm\:txt-lightest-blue\:after:after {
    color: #f1f7fa !important;
  }
  .sm\:txt-turquoise\:after:after {
    color: #86c6bb !important;
  }
  .sm\:txt-light-turquoise\:after:after {
    color: #a0d1c9 !important;
  }
  .sm\:txt-lightest-turquoise\:after:after {
    color: #eff4f3 !important;
  }
  .sm\:txt-darker-green\:after:after {
    color: #2f4f21 !important;
  }
  .sm\:txt-dark-green\:after:after {
    color: #456f32 !important;
  }
  .sm\:txt-green\:after:after {
    color: #66a54a !important;
  }
  .sm\:txt-light-green\:after:after {
    color: #77b65b !important;
  }
  .sm\:txt-lighter-green\:after:after {
    color: #c9e4bc !important;
  }
  .sm\:txt-lightest-green\:after:after {
    color: #eff6ec !important;
  }
  .sm\:txt-darker-yellow\:after:after {
    color: #483206 !important;
  }
  .sm\:txt-dark-yellow\:after:after {
    color: #b5862a !important;
  }
  .sm\:txt-yellow\:after:after {
    color: #f2b63f !important;
  }
  .sm\:txt-light-yellow\:after:after {
    color: #f5cd78 !important;
  }
  .sm\:txt-lighter-yellow\:after:after {
    color: #f8ecc5 !important;
  }
  .sm\:txt-lightest-yellow\:after:after {
    color: #faf9e7 !important;
  }
  .sm\:txt-beige\:after:after {
    color: #dbd3c9 !important;
  }
  .sm\:txt-white\:after:after {
    color: #fff !important;
  }
  .sm\:txt-white-opacity-02\:after:after {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:txt-white-opacity-03\:after:after {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:txt-white-opacity-05\:after:after {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:txt-white-opacity-07\:after:after {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:txt-lightest-grey\:after:after {
    color: #f3f3f3 !important;
  }
  .sm\:txt-lighter-grey\:after:after {
    color: #ddd !important;
  }
  .sm\:txt-light-grey\:after:after {
    color: #bbb !important;
  }
  .sm\:txt-grey\:after:after {
    color: #8e8e8e !important;
  }
  .sm\:txt-dark-grey\:after:after {
    color: #646464 !important;
  }
  .sm\:txt-darker-grey\:after:after {
    color: #444 !important;
  }
  .sm\:txt-darkest-grey\:after:after {
    color: #222 !important;
  }
  .sm\:txt-black\:after:after {
    color: #000 !important;
  }
  .sm\:txt-black-opacity-07\:after:after {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:txt-default\:after:after {
    color: #222 !important;
  }
  .sm\:txt-headline\:after:after {
    color: #222 !important;
  }
  .sm\:txt-link\:after:after {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .sm\:txt-link--hover\:after:after {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .sm\:txt-transparent\:after:after {
    color: transparent !important;
  }
  .sm\:txt-clear\:after:after {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .sm\:txt-lightest\:after:after {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .sm\:txt-lighter\:after:after {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .sm\:txt-light\:after:after {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .sm\:txt-normal\:after:after {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .sm\:txt-dark\:after:after {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .sm\:txt-darker\:after:after {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .sm\:txt-darkest\:after:after {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .sm\:txt-opaque\:after:after {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:txt-red {
    color: #f12b3b !important;
  }
  .md\:txt-dark-red {
    color: #d2212f !important;
  }
  .md\:txt-dark-blue {
    color: #0273aa !important;
  }
  .md\:txt-darker-blue {
    color: #063b63 !important;
  }
  .md\:txt-blue {
    color: #008fce !important;
  }
  .md\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .md\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .md\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .md\:txt-turquoise {
    color: #86c6bb !important;
  }
  .md\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .md\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .md\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .md\:txt-dark-green {
    color: #456f32 !important;
  }
  .md\:txt-green {
    color: #66a54a !important;
  }
  .md\:txt-light-green {
    color: #77b65b !important;
  }
  .md\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .md\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .md\:txt-darker-yellow {
    color: #483206 !important;
  }
  .md\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .md\:txt-yellow {
    color: #f2b63f !important;
  }
  .md\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .md\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .md\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .md\:txt-beige {
    color: #dbd3c9 !important;
  }
  .md\:txt-white {
    color: #fff !important;
  }
  .md\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .md\:txt-lighter-grey {
    color: #ddd !important;
  }
  .md\:txt-light-grey {
    color: #bbb !important;
  }
  .md\:txt-grey {
    color: #8e8e8e !important;
  }
  .md\:txt-dark-grey {
    color: #646464 !important;
  }
  .md\:txt-darker-grey {
    color: #444 !important;
  }
  .md\:txt-darkest-grey {
    color: #222 !important;
  }
  .md\:txt-black {
    color: #000 !important;
  }
  .md\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:txt-default {
    color: #222 !important;
  }
  .md\:txt-headline {
    color: #222 !important;
  }
  .md\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .md\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .md\:txt-transparent {
    color: transparent !important;
  }
  .md\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .md\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .md\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .md\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .md\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .md\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .md\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .md\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .md\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  a:hover .md\:hover\:txt-red {
    color: #f12b3b !important;
  }
  a:hover .md\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  a:hover .md\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  a:hover .md\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  a:hover .md\:hover\:txt-blue {
    color: #008fce !important;
  }
  a:hover .md\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  a:hover .md\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  a:hover .md\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  a:hover .md\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  a:hover .md\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  a:hover .md\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  a:hover .md\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  a:hover .md\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  a:hover .md\:hover\:txt-green {
    color: #66a54a !important;
  }
  a:hover .md\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  a:hover .md\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  a:hover .md\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  a:hover .md\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  a:hover .md\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  a:hover .md\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  a:hover .md\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  a:hover .md\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  a:hover .md\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  a:hover .md\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  a:hover .md\:hover\:txt-white {
    color: #fff !important;
  }
  a:hover .md\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .md\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .md\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .md\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .md\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  a:hover .md\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  a:hover .md\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  a:hover .md\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  a:hover .md\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  a:hover .md\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  a:hover .md\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  a:hover .md\:hover\:txt-black {
    color: #000 !important;
  }
  a:hover .md\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .md\:hover\:txt-default {
    color: #222 !important;
  }
  a:hover .md\:hover\:txt-headline {
    color: #222 !important;
  }
  a:hover .md\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  a:hover .md\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  a:hover .md\:hover\:txt-transparent {
    color: transparent !important;
  }
  a:hover .md\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  a:hover .md\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  a:hover .md\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  a:hover .md\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  a:hover .md\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  a:hover .md\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  a:hover .md\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  a:hover .md\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  a:hover .md\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  button:hover .md\:hover\:txt-red {
    color: #f12b3b !important;
  }
  button:hover .md\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  button:hover .md\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  button:hover .md\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  button:hover .md\:hover\:txt-blue {
    color: #008fce !important;
  }
  button:hover .md\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  button:hover .md\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  button:hover .md\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  button:hover .md\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  button:hover .md\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  button:hover .md\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  button:hover .md\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  button:hover .md\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  button:hover .md\:hover\:txt-green {
    color: #66a54a !important;
  }
  button:hover .md\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  button:hover .md\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  button:hover .md\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  button:hover .md\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  button:hover .md\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  button:hover .md\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  button:hover .md\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  button:hover .md\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  button:hover .md\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  button:hover .md\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  button:hover .md\:hover\:txt-white {
    color: #fff !important;
  }
  button:hover .md\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .md\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .md\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .md\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .md\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  button:hover .md\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  button:hover .md\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  button:hover .md\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  button:hover .md\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  button:hover .md\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  button:hover .md\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  button:hover .md\:hover\:txt-black {
    color: #000 !important;
  }
  button:hover .md\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .md\:hover\:txt-default {
    color: #222 !important;
  }
  button:hover .md\:hover\:txt-headline {
    color: #222 !important;
  }
  button:hover .md\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  button:hover .md\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  button:hover .md\:hover\:txt-transparent {
    color: transparent !important;
  }
  button:hover .md\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  button:hover .md\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  button:hover .md\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  button:hover .md\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  button:hover .md\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  button:hover .md\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  button:hover .md\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  button:hover .md\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  button:hover .md\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .btn:hover .md\:hover\:txt-red {
    color: #f12b3b !important;
  }
  .btn:hover .md\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  .btn:hover .md\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  .btn:hover .md\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  .btn:hover .md\:hover\:txt-blue {
    color: #008fce !important;
  }
  .btn:hover .md\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .btn:hover .md\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .btn:hover .md\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .btn:hover .md\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  .btn:hover .md\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .btn:hover .md\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .btn:hover .md\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .btn:hover .md\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  .btn:hover .md\:hover\:txt-green {
    color: #66a54a !important;
  }
  .btn:hover .md\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  .btn:hover .md\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .btn:hover .md\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .btn:hover .md\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  .btn:hover .md\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .btn:hover .md\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  .btn:hover .md\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .btn:hover .md\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .btn:hover .md\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .btn:hover .md\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  .btn:hover .md\:hover\:txt-white {
    color: #fff !important;
  }
  .btn:hover .md\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .md\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .md\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .md\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .md\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .btn:hover .md\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  .btn:hover .md\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  .btn:hover .md\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  .btn:hover .md\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  .btn:hover .md\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  .btn:hover .md\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  .btn:hover .md\:hover\:txt-black {
    color: #000 !important;
  }
  .btn:hover .md\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .md\:hover\:txt-default {
    color: #222 !important;
  }
  .btn:hover .md\:hover\:txt-headline {
    color: #222 !important;
  }
  .btn:hover .md\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .btn:hover .md\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .btn:hover .md\:hover\:txt-transparent {
    color: transparent !important;
  }
  .btn:hover .md\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .btn:hover .md\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .btn:hover .md\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .btn:hover .md\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .btn:hover .md\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .btn:hover .md\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .btn:hover .md\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .btn:hover .md\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .btn:hover .md\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  input:hover .md\:hover\:txt-red {
    color: #f12b3b !important;
  }
  input:hover .md\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  input:hover .md\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  input:hover .md\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  input:hover .md\:hover\:txt-blue {
    color: #008fce !important;
  }
  input:hover .md\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  input:hover .md\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  input:hover .md\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  input:hover .md\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  input:hover .md\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  input:hover .md\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  input:hover .md\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  input:hover .md\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  input:hover .md\:hover\:txt-green {
    color: #66a54a !important;
  }
  input:hover .md\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  input:hover .md\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  input:hover .md\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  input:hover .md\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  input:hover .md\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  input:hover .md\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  input:hover .md\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  input:hover .md\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  input:hover .md\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  input:hover .md\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  input:hover .md\:hover\:txt-white {
    color: #fff !important;
  }
  input:hover .md\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .md\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .md\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .md\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .md\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  input:hover .md\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  input:hover .md\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  input:hover .md\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  input:hover .md\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  input:hover .md\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  input:hover .md\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  input:hover .md\:hover\:txt-black {
    color: #000 !important;
  }
  input:hover .md\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .md\:hover\:txt-default {
    color: #222 !important;
  }
  input:hover .md\:hover\:txt-headline {
    color: #222 !important;
  }
  input:hover .md\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  input:hover .md\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  input:hover .md\:hover\:txt-transparent {
    color: transparent !important;
  }
  input:hover .md\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  input:hover .md\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  input:hover .md\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  input:hover .md\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  input:hover .md\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  input:hover .md\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  input:hover .md\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  input:hover .md\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  input:hover .md\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .md\:hover\:txt-red:hover {
    color: #f12b3b !important;
  }
  .md\:hover\:txt-dark-red:hover {
    color: #d2212f !important;
  }
  .md\:hover\:txt-dark-blue:hover {
    color: #0273aa !important;
  }
  .md\:hover\:txt-darker-blue:hover {
    color: #063b63 !important;
  }
  .md\:hover\:txt-blue:hover {
    color: #008fce !important;
  }
  .md\:hover\:txt-light-blue:hover {
    color: #4ba6ce !important;
  }
  .md\:hover\:txt-lighter-blue:hover {
    color: #c4e5f4 !important;
  }
  .md\:hover\:txt-lightest-blue:hover {
    color: #f1f7fa !important;
  }
  .md\:hover\:txt-turquoise:hover {
    color: #86c6bb !important;
  }
  .md\:hover\:txt-light-turquoise:hover {
    color: #a0d1c9 !important;
  }
  .md\:hover\:txt-lightest-turquoise:hover {
    color: #eff4f3 !important;
  }
  .md\:hover\:txt-darker-green:hover {
    color: #2f4f21 !important;
  }
  .md\:hover\:txt-dark-green:hover {
    color: #456f32 !important;
  }
  .md\:hover\:txt-green:hover {
    color: #66a54a !important;
  }
  .md\:hover\:txt-light-green:hover {
    color: #77b65b !important;
  }
  .md\:hover\:txt-lighter-green:hover {
    color: #c9e4bc !important;
  }
  .md\:hover\:txt-lightest-green:hover {
    color: #eff6ec !important;
  }
  .md\:hover\:txt-darker-yellow:hover {
    color: #483206 !important;
  }
  .md\:hover\:txt-dark-yellow:hover {
    color: #b5862a !important;
  }
  .md\:hover\:txt-yellow:hover {
    color: #f2b63f !important;
  }
  .md\:hover\:txt-light-yellow:hover {
    color: #f5cd78 !important;
  }
  .md\:hover\:txt-lighter-yellow:hover {
    color: #f8ecc5 !important;
  }
  .md\:hover\:txt-lightest-yellow:hover {
    color: #faf9e7 !important;
  }
  .md\:hover\:txt-beige:hover {
    color: #dbd3c9 !important;
  }
  .md\:hover\:txt-white:hover {
    color: #fff !important;
  }
  .md\:hover\:txt-white-opacity-02:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:hover\:txt-white-opacity-03:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:hover\:txt-white-opacity-05:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:hover\:txt-white-opacity-07:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:hover\:txt-lightest-grey:hover {
    color: #f3f3f3 !important;
  }
  .md\:hover\:txt-lighter-grey:hover {
    color: #ddd !important;
  }
  .md\:hover\:txt-light-grey:hover {
    color: #bbb !important;
  }
  .md\:hover\:txt-grey:hover {
    color: #8e8e8e !important;
  }
  .md\:hover\:txt-dark-grey:hover {
    color: #646464 !important;
  }
  .md\:hover\:txt-darker-grey:hover {
    color: #444 !important;
  }
  .md\:hover\:txt-darkest-grey:hover {
    color: #222 !important;
  }
  .md\:hover\:txt-black:hover {
    color: #000 !important;
  }
  .md\:hover\:txt-black-opacity-07:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:hover\:txt-default:hover {
    color: #222 !important;
  }
  .md\:hover\:txt-headline:hover {
    color: #222 !important;
  }
  .md\:hover\:txt-link:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .md\:hover\:txt-link--hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .md\:hover\:txt-transparent:hover {
    color: transparent !important;
  }
  .md\:hover\:txt-clear:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .md\:hover\:txt-lightest:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .md\:hover\:txt-lighter:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .md\:hover\:txt-light:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .md\:hover\:txt-normal:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .md\:hover\:txt-dark:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .md\:hover\:txt-darker:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .md\:hover\:txt-darkest:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .md\:hover\:txt-opaque:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .md\:txt-red\:hover:hover {
    color: #f12b3b !important;
  }
  .md\:txt-dark-red\:hover:hover {
    color: #d2212f !important;
  }
  .md\:txt-dark-blue\:hover:hover {
    color: #0273aa !important;
  }
  .md\:txt-darker-blue\:hover:hover {
    color: #063b63 !important;
  }
  .md\:txt-blue\:hover:hover {
    color: #008fce !important;
  }
  .md\:txt-light-blue\:hover:hover {
    color: #4ba6ce !important;
  }
  .md\:txt-lighter-blue\:hover:hover {
    color: #c4e5f4 !important;
  }
  .md\:txt-lightest-blue\:hover:hover {
    color: #f1f7fa !important;
  }
  .md\:txt-turquoise\:hover:hover {
    color: #86c6bb !important;
  }
  .md\:txt-light-turquoise\:hover:hover {
    color: #a0d1c9 !important;
  }
  .md\:txt-lightest-turquoise\:hover:hover {
    color: #eff4f3 !important;
  }
  .md\:txt-darker-green\:hover:hover {
    color: #2f4f21 !important;
  }
  .md\:txt-dark-green\:hover:hover {
    color: #456f32 !important;
  }
  .md\:txt-green\:hover:hover {
    color: #66a54a !important;
  }
  .md\:txt-light-green\:hover:hover {
    color: #77b65b !important;
  }
  .md\:txt-lighter-green\:hover:hover {
    color: #c9e4bc !important;
  }
  .md\:txt-lightest-green\:hover:hover {
    color: #eff6ec !important;
  }
  .md\:txt-darker-yellow\:hover:hover {
    color: #483206 !important;
  }
  .md\:txt-dark-yellow\:hover:hover {
    color: #b5862a !important;
  }
  .md\:txt-yellow\:hover:hover {
    color: #f2b63f !important;
  }
  .md\:txt-light-yellow\:hover:hover {
    color: #f5cd78 !important;
  }
  .md\:txt-lighter-yellow\:hover:hover {
    color: #f8ecc5 !important;
  }
  .md\:txt-lightest-yellow\:hover:hover {
    color: #faf9e7 !important;
  }
  .md\:txt-beige\:hover:hover {
    color: #dbd3c9 !important;
  }
  .md\:txt-white\:hover:hover {
    color: #fff !important;
  }
  .md\:txt-white-opacity-02\:hover:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:txt-white-opacity-03\:hover:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:txt-white-opacity-05\:hover:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:txt-white-opacity-07\:hover:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:txt-lightest-grey\:hover:hover {
    color: #f3f3f3 !important;
  }
  .md\:txt-lighter-grey\:hover:hover {
    color: #ddd !important;
  }
  .md\:txt-light-grey\:hover:hover {
    color: #bbb !important;
  }
  .md\:txt-grey\:hover:hover {
    color: #8e8e8e !important;
  }
  .md\:txt-dark-grey\:hover:hover {
    color: #646464 !important;
  }
  .md\:txt-darker-grey\:hover:hover {
    color: #444 !important;
  }
  .md\:txt-darkest-grey\:hover:hover {
    color: #222 !important;
  }
  .md\:txt-black\:hover:hover {
    color: #000 !important;
  }
  .md\:txt-black-opacity-07\:hover:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:txt-default\:hover:hover {
    color: #222 !important;
  }
  .md\:txt-headline\:hover:hover {
    color: #222 !important;
  }
  .md\:txt-link\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .md\:txt-link--hover\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .md\:txt-transparent\:hover:hover {
    color: transparent !important;
  }
  .md\:txt-clear\:hover:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .md\:txt-lightest\:hover:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .md\:txt-lighter\:hover:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .md\:txt-light\:hover:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .md\:txt-normal\:hover:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .md\:txt-dark\:hover:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .md\:txt-darker\:hover:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .md\:txt-darkest\:hover:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .md\:txt-opaque\:hover:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .md\:txt-red\:before:before {
    color: #f12b3b !important;
  }
  .md\:txt-dark-red\:before:before {
    color: #d2212f !important;
  }
  .md\:txt-dark-blue\:before:before {
    color: #0273aa !important;
  }
  .md\:txt-darker-blue\:before:before {
    color: #063b63 !important;
  }
  .md\:txt-blue\:before:before {
    color: #008fce !important;
  }
  .md\:txt-light-blue\:before:before {
    color: #4ba6ce !important;
  }
  .md\:txt-lighter-blue\:before:before {
    color: #c4e5f4 !important;
  }
  .md\:txt-lightest-blue\:before:before {
    color: #f1f7fa !important;
  }
  .md\:txt-turquoise\:before:before {
    color: #86c6bb !important;
  }
  .md\:txt-light-turquoise\:before:before {
    color: #a0d1c9 !important;
  }
  .md\:txt-lightest-turquoise\:before:before {
    color: #eff4f3 !important;
  }
  .md\:txt-darker-green\:before:before {
    color: #2f4f21 !important;
  }
  .md\:txt-dark-green\:before:before {
    color: #456f32 !important;
  }
  .md\:txt-green\:before:before {
    color: #66a54a !important;
  }
  .md\:txt-light-green\:before:before {
    color: #77b65b !important;
  }
  .md\:txt-lighter-green\:before:before {
    color: #c9e4bc !important;
  }
  .md\:txt-lightest-green\:before:before {
    color: #eff6ec !important;
  }
  .md\:txt-darker-yellow\:before:before {
    color: #483206 !important;
  }
  .md\:txt-dark-yellow\:before:before {
    color: #b5862a !important;
  }
  .md\:txt-yellow\:before:before {
    color: #f2b63f !important;
  }
  .md\:txt-light-yellow\:before:before {
    color: #f5cd78 !important;
  }
  .md\:txt-lighter-yellow\:before:before {
    color: #f8ecc5 !important;
  }
  .md\:txt-lightest-yellow\:before:before {
    color: #faf9e7 !important;
  }
  .md\:txt-beige\:before:before {
    color: #dbd3c9 !important;
  }
  .md\:txt-white\:before:before {
    color: #fff !important;
  }
  .md\:txt-white-opacity-02\:before:before {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:txt-white-opacity-03\:before:before {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:txt-white-opacity-05\:before:before {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:txt-white-opacity-07\:before:before {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:txt-lightest-grey\:before:before {
    color: #f3f3f3 !important;
  }
  .md\:txt-lighter-grey\:before:before {
    color: #ddd !important;
  }
  .md\:txt-light-grey\:before:before {
    color: #bbb !important;
  }
  .md\:txt-grey\:before:before {
    color: #8e8e8e !important;
  }
  .md\:txt-dark-grey\:before:before {
    color: #646464 !important;
  }
  .md\:txt-darker-grey\:before:before {
    color: #444 !important;
  }
  .md\:txt-darkest-grey\:before:before {
    color: #222 !important;
  }
  .md\:txt-black\:before:before {
    color: #000 !important;
  }
  .md\:txt-black-opacity-07\:before:before {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:txt-default\:before:before {
    color: #222 !important;
  }
  .md\:txt-headline\:before:before {
    color: #222 !important;
  }
  .md\:txt-link\:before:before {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .md\:txt-link--hover\:before:before {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .md\:txt-transparent\:before:before {
    color: transparent !important;
  }
  .md\:txt-clear\:before:before {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .md\:txt-lightest\:before:before {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .md\:txt-lighter\:before:before {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .md\:txt-light\:before:before {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .md\:txt-normal\:before:before {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .md\:txt-dark\:before:before {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .md\:txt-darker\:before:before {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .md\:txt-darkest\:before:before {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .md\:txt-opaque\:before:before {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .md\:txt-red\:after:after {
    color: #f12b3b !important;
  }
  .md\:txt-dark-red\:after:after {
    color: #d2212f !important;
  }
  .md\:txt-dark-blue\:after:after {
    color: #0273aa !important;
  }
  .md\:txt-darker-blue\:after:after {
    color: #063b63 !important;
  }
  .md\:txt-blue\:after:after {
    color: #008fce !important;
  }
  .md\:txt-light-blue\:after:after {
    color: #4ba6ce !important;
  }
  .md\:txt-lighter-blue\:after:after {
    color: #c4e5f4 !important;
  }
  .md\:txt-lightest-blue\:after:after {
    color: #f1f7fa !important;
  }
  .md\:txt-turquoise\:after:after {
    color: #86c6bb !important;
  }
  .md\:txt-light-turquoise\:after:after {
    color: #a0d1c9 !important;
  }
  .md\:txt-lightest-turquoise\:after:after {
    color: #eff4f3 !important;
  }
  .md\:txt-darker-green\:after:after {
    color: #2f4f21 !important;
  }
  .md\:txt-dark-green\:after:after {
    color: #456f32 !important;
  }
  .md\:txt-green\:after:after {
    color: #66a54a !important;
  }
  .md\:txt-light-green\:after:after {
    color: #77b65b !important;
  }
  .md\:txt-lighter-green\:after:after {
    color: #c9e4bc !important;
  }
  .md\:txt-lightest-green\:after:after {
    color: #eff6ec !important;
  }
  .md\:txt-darker-yellow\:after:after {
    color: #483206 !important;
  }
  .md\:txt-dark-yellow\:after:after {
    color: #b5862a !important;
  }
  .md\:txt-yellow\:after:after {
    color: #f2b63f !important;
  }
  .md\:txt-light-yellow\:after:after {
    color: #f5cd78 !important;
  }
  .md\:txt-lighter-yellow\:after:after {
    color: #f8ecc5 !important;
  }
  .md\:txt-lightest-yellow\:after:after {
    color: #faf9e7 !important;
  }
  .md\:txt-beige\:after:after {
    color: #dbd3c9 !important;
  }
  .md\:txt-white\:after:after {
    color: #fff !important;
  }
  .md\:txt-white-opacity-02\:after:after {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:txt-white-opacity-03\:after:after {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:txt-white-opacity-05\:after:after {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:txt-white-opacity-07\:after:after {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:txt-lightest-grey\:after:after {
    color: #f3f3f3 !important;
  }
  .md\:txt-lighter-grey\:after:after {
    color: #ddd !important;
  }
  .md\:txt-light-grey\:after:after {
    color: #bbb !important;
  }
  .md\:txt-grey\:after:after {
    color: #8e8e8e !important;
  }
  .md\:txt-dark-grey\:after:after {
    color: #646464 !important;
  }
  .md\:txt-darker-grey\:after:after {
    color: #444 !important;
  }
  .md\:txt-darkest-grey\:after:after {
    color: #222 !important;
  }
  .md\:txt-black\:after:after {
    color: #000 !important;
  }
  .md\:txt-black-opacity-07\:after:after {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:txt-default\:after:after {
    color: #222 !important;
  }
  .md\:txt-headline\:after:after {
    color: #222 !important;
  }
  .md\:txt-link\:after:after {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .md\:txt-link--hover\:after:after {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .md\:txt-transparent\:after:after {
    color: transparent !important;
  }
  .md\:txt-clear\:after:after {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .md\:txt-lightest\:after:after {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .md\:txt-lighter\:after:after {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .md\:txt-light\:after:after {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .md\:txt-normal\:after:after {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .md\:txt-dark\:after:after {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .md\:txt-darker\:after:after {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .md\:txt-darkest\:after:after {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .md\:txt-opaque\:after:after {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:txt-red {
    color: #f12b3b !important;
  }
  .lg\:txt-dark-red {
    color: #d2212f !important;
  }
  .lg\:txt-dark-blue {
    color: #0273aa !important;
  }
  .lg\:txt-darker-blue {
    color: #063b63 !important;
  }
  .lg\:txt-blue {
    color: #008fce !important;
  }
  .lg\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .lg\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .lg\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .lg\:txt-turquoise {
    color: #86c6bb !important;
  }
  .lg\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .lg\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .lg\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .lg\:txt-dark-green {
    color: #456f32 !important;
  }
  .lg\:txt-green {
    color: #66a54a !important;
  }
  .lg\:txt-light-green {
    color: #77b65b !important;
  }
  .lg\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .lg\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .lg\:txt-darker-yellow {
    color: #483206 !important;
  }
  .lg\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .lg\:txt-yellow {
    color: #f2b63f !important;
  }
  .lg\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .lg\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .lg\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .lg\:txt-beige {
    color: #dbd3c9 !important;
  }
  .lg\:txt-white {
    color: #fff !important;
  }
  .lg\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .lg\:txt-lighter-grey {
    color: #ddd !important;
  }
  .lg\:txt-light-grey {
    color: #bbb !important;
  }
  .lg\:txt-grey {
    color: #8e8e8e !important;
  }
  .lg\:txt-dark-grey {
    color: #646464 !important;
  }
  .lg\:txt-darker-grey {
    color: #444 !important;
  }
  .lg\:txt-darkest-grey {
    color: #222 !important;
  }
  .lg\:txt-black {
    color: #000 !important;
  }
  .lg\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:txt-default {
    color: #222 !important;
  }
  .lg\:txt-headline {
    color: #222 !important;
  }
  .lg\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .lg\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .lg\:txt-transparent {
    color: transparent !important;
  }
  .lg\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .lg\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .lg\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .lg\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .lg\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .lg\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .lg\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .lg\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .lg\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  a:hover .lg\:hover\:txt-red {
    color: #f12b3b !important;
  }
  a:hover .lg\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  a:hover .lg\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  a:hover .lg\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  a:hover .lg\:hover\:txt-blue {
    color: #008fce !important;
  }
  a:hover .lg\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  a:hover .lg\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  a:hover .lg\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  a:hover .lg\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  a:hover .lg\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  a:hover .lg\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  a:hover .lg\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  a:hover .lg\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  a:hover .lg\:hover\:txt-green {
    color: #66a54a !important;
  }
  a:hover .lg\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  a:hover .lg\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  a:hover .lg\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  a:hover .lg\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  a:hover .lg\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  a:hover .lg\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  a:hover .lg\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  a:hover .lg\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  a:hover .lg\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  a:hover .lg\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  a:hover .lg\:hover\:txt-white {
    color: #fff !important;
  }
  a:hover .lg\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .lg\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .lg\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .lg\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .lg\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  a:hover .lg\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  a:hover .lg\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  a:hover .lg\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  a:hover .lg\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  a:hover .lg\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  a:hover .lg\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  a:hover .lg\:hover\:txt-black {
    color: #000 !important;
  }
  a:hover .lg\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .lg\:hover\:txt-default {
    color: #222 !important;
  }
  a:hover .lg\:hover\:txt-headline {
    color: #222 !important;
  }
  a:hover .lg\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  a:hover .lg\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  a:hover .lg\:hover\:txt-transparent {
    color: transparent !important;
  }
  a:hover .lg\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  a:hover .lg\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  a:hover .lg\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  a:hover .lg\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  a:hover .lg\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  a:hover .lg\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  a:hover .lg\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  a:hover .lg\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  a:hover .lg\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  button:hover .lg\:hover\:txt-red {
    color: #f12b3b !important;
  }
  button:hover .lg\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  button:hover .lg\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  button:hover .lg\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  button:hover .lg\:hover\:txt-blue {
    color: #008fce !important;
  }
  button:hover .lg\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  button:hover .lg\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  button:hover .lg\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  button:hover .lg\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  button:hover .lg\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  button:hover .lg\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  button:hover .lg\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  button:hover .lg\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  button:hover .lg\:hover\:txt-green {
    color: #66a54a !important;
  }
  button:hover .lg\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  button:hover .lg\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  button:hover .lg\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  button:hover .lg\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  button:hover .lg\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  button:hover .lg\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  button:hover .lg\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  button:hover .lg\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  button:hover .lg\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  button:hover .lg\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  button:hover .lg\:hover\:txt-white {
    color: #fff !important;
  }
  button:hover .lg\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .lg\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .lg\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .lg\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .lg\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  button:hover .lg\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  button:hover .lg\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  button:hover .lg\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  button:hover .lg\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  button:hover .lg\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  button:hover .lg\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  button:hover .lg\:hover\:txt-black {
    color: #000 !important;
  }
  button:hover .lg\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .lg\:hover\:txt-default {
    color: #222 !important;
  }
  button:hover .lg\:hover\:txt-headline {
    color: #222 !important;
  }
  button:hover .lg\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  button:hover .lg\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  button:hover .lg\:hover\:txt-transparent {
    color: transparent !important;
  }
  button:hover .lg\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  button:hover .lg\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  button:hover .lg\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  button:hover .lg\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  button:hover .lg\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  button:hover .lg\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  button:hover .lg\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  button:hover .lg\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  button:hover .lg\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .btn:hover .lg\:hover\:txt-red {
    color: #f12b3b !important;
  }
  .btn:hover .lg\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  .btn:hover .lg\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  .btn:hover .lg\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  .btn:hover .lg\:hover\:txt-blue {
    color: #008fce !important;
  }
  .btn:hover .lg\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .btn:hover .lg\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .btn:hover .lg\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .btn:hover .lg\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  .btn:hover .lg\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .btn:hover .lg\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .btn:hover .lg\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .btn:hover .lg\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  .btn:hover .lg\:hover\:txt-green {
    color: #66a54a !important;
  }
  .btn:hover .lg\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  .btn:hover .lg\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .btn:hover .lg\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .btn:hover .lg\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  .btn:hover .lg\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .btn:hover .lg\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  .btn:hover .lg\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .btn:hover .lg\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .btn:hover .lg\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .btn:hover .lg\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  .btn:hover .lg\:hover\:txt-white {
    color: #fff !important;
  }
  .btn:hover .lg\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .lg\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .lg\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .lg\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .lg\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .btn:hover .lg\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  .btn:hover .lg\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  .btn:hover .lg\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  .btn:hover .lg\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  .btn:hover .lg\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  .btn:hover .lg\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  .btn:hover .lg\:hover\:txt-black {
    color: #000 !important;
  }
  .btn:hover .lg\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .lg\:hover\:txt-default {
    color: #222 !important;
  }
  .btn:hover .lg\:hover\:txt-headline {
    color: #222 !important;
  }
  .btn:hover .lg\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .btn:hover .lg\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .btn:hover .lg\:hover\:txt-transparent {
    color: transparent !important;
  }
  .btn:hover .lg\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .btn:hover .lg\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .btn:hover .lg\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .btn:hover .lg\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .btn:hover .lg\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .btn:hover .lg\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .btn:hover .lg\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .btn:hover .lg\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .btn:hover .lg\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  input:hover .lg\:hover\:txt-red {
    color: #f12b3b !important;
  }
  input:hover .lg\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  input:hover .lg\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  input:hover .lg\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  input:hover .lg\:hover\:txt-blue {
    color: #008fce !important;
  }
  input:hover .lg\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  input:hover .lg\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  input:hover .lg\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  input:hover .lg\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  input:hover .lg\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  input:hover .lg\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  input:hover .lg\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  input:hover .lg\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  input:hover .lg\:hover\:txt-green {
    color: #66a54a !important;
  }
  input:hover .lg\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  input:hover .lg\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  input:hover .lg\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  input:hover .lg\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  input:hover .lg\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  input:hover .lg\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  input:hover .lg\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  input:hover .lg\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  input:hover .lg\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  input:hover .lg\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  input:hover .lg\:hover\:txt-white {
    color: #fff !important;
  }
  input:hover .lg\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .lg\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .lg\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .lg\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .lg\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  input:hover .lg\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  input:hover .lg\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  input:hover .lg\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  input:hover .lg\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  input:hover .lg\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  input:hover .lg\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  input:hover .lg\:hover\:txt-black {
    color: #000 !important;
  }
  input:hover .lg\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .lg\:hover\:txt-default {
    color: #222 !important;
  }
  input:hover .lg\:hover\:txt-headline {
    color: #222 !important;
  }
  input:hover .lg\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  input:hover .lg\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  input:hover .lg\:hover\:txt-transparent {
    color: transparent !important;
  }
  input:hover .lg\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  input:hover .lg\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  input:hover .lg\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  input:hover .lg\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  input:hover .lg\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  input:hover .lg\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  input:hover .lg\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  input:hover .lg\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  input:hover .lg\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .lg\:hover\:txt-red:hover {
    color: #f12b3b !important;
  }
  .lg\:hover\:txt-dark-red:hover {
    color: #d2212f !important;
  }
  .lg\:hover\:txt-dark-blue:hover {
    color: #0273aa !important;
  }
  .lg\:hover\:txt-darker-blue:hover {
    color: #063b63 !important;
  }
  .lg\:hover\:txt-blue:hover {
    color: #008fce !important;
  }
  .lg\:hover\:txt-light-blue:hover {
    color: #4ba6ce !important;
  }
  .lg\:hover\:txt-lighter-blue:hover {
    color: #c4e5f4 !important;
  }
  .lg\:hover\:txt-lightest-blue:hover {
    color: #f1f7fa !important;
  }
  .lg\:hover\:txt-turquoise:hover {
    color: #86c6bb !important;
  }
  .lg\:hover\:txt-light-turquoise:hover {
    color: #a0d1c9 !important;
  }
  .lg\:hover\:txt-lightest-turquoise:hover {
    color: #eff4f3 !important;
  }
  .lg\:hover\:txt-darker-green:hover {
    color: #2f4f21 !important;
  }
  .lg\:hover\:txt-dark-green:hover {
    color: #456f32 !important;
  }
  .lg\:hover\:txt-green:hover {
    color: #66a54a !important;
  }
  .lg\:hover\:txt-light-green:hover {
    color: #77b65b !important;
  }
  .lg\:hover\:txt-lighter-green:hover {
    color: #c9e4bc !important;
  }
  .lg\:hover\:txt-lightest-green:hover {
    color: #eff6ec !important;
  }
  .lg\:hover\:txt-darker-yellow:hover {
    color: #483206 !important;
  }
  .lg\:hover\:txt-dark-yellow:hover {
    color: #b5862a !important;
  }
  .lg\:hover\:txt-yellow:hover {
    color: #f2b63f !important;
  }
  .lg\:hover\:txt-light-yellow:hover {
    color: #f5cd78 !important;
  }
  .lg\:hover\:txt-lighter-yellow:hover {
    color: #f8ecc5 !important;
  }
  .lg\:hover\:txt-lightest-yellow:hover {
    color: #faf9e7 !important;
  }
  .lg\:hover\:txt-beige:hover {
    color: #dbd3c9 !important;
  }
  .lg\:hover\:txt-white:hover {
    color: #fff !important;
  }
  .lg\:hover\:txt-white-opacity-02:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:hover\:txt-white-opacity-03:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:hover\:txt-white-opacity-05:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:hover\:txt-white-opacity-07:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:hover\:txt-lightest-grey:hover {
    color: #f3f3f3 !important;
  }
  .lg\:hover\:txt-lighter-grey:hover {
    color: #ddd !important;
  }
  .lg\:hover\:txt-light-grey:hover {
    color: #bbb !important;
  }
  .lg\:hover\:txt-grey:hover {
    color: #8e8e8e !important;
  }
  .lg\:hover\:txt-dark-grey:hover {
    color: #646464 !important;
  }
  .lg\:hover\:txt-darker-grey:hover {
    color: #444 !important;
  }
  .lg\:hover\:txt-darkest-grey:hover {
    color: #222 !important;
  }
  .lg\:hover\:txt-black:hover {
    color: #000 !important;
  }
  .lg\:hover\:txt-black-opacity-07:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:hover\:txt-default:hover {
    color: #222 !important;
  }
  .lg\:hover\:txt-headline:hover {
    color: #222 !important;
  }
  .lg\:hover\:txt-link:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .lg\:hover\:txt-link--hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .lg\:hover\:txt-transparent:hover {
    color: transparent !important;
  }
  .lg\:hover\:txt-clear:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .lg\:hover\:txt-lightest:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .lg\:hover\:txt-lighter:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .lg\:hover\:txt-light:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .lg\:hover\:txt-normal:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .lg\:hover\:txt-dark:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .lg\:hover\:txt-darker:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .lg\:hover\:txt-darkest:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .lg\:hover\:txt-opaque:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .lg\:txt-red\:hover:hover {
    color: #f12b3b !important;
  }
  .lg\:txt-dark-red\:hover:hover {
    color: #d2212f !important;
  }
  .lg\:txt-dark-blue\:hover:hover {
    color: #0273aa !important;
  }
  .lg\:txt-darker-blue\:hover:hover {
    color: #063b63 !important;
  }
  .lg\:txt-blue\:hover:hover {
    color: #008fce !important;
  }
  .lg\:txt-light-blue\:hover:hover {
    color: #4ba6ce !important;
  }
  .lg\:txt-lighter-blue\:hover:hover {
    color: #c4e5f4 !important;
  }
  .lg\:txt-lightest-blue\:hover:hover {
    color: #f1f7fa !important;
  }
  .lg\:txt-turquoise\:hover:hover {
    color: #86c6bb !important;
  }
  .lg\:txt-light-turquoise\:hover:hover {
    color: #a0d1c9 !important;
  }
  .lg\:txt-lightest-turquoise\:hover:hover {
    color: #eff4f3 !important;
  }
  .lg\:txt-darker-green\:hover:hover {
    color: #2f4f21 !important;
  }
  .lg\:txt-dark-green\:hover:hover {
    color: #456f32 !important;
  }
  .lg\:txt-green\:hover:hover {
    color: #66a54a !important;
  }
  .lg\:txt-light-green\:hover:hover {
    color: #77b65b !important;
  }
  .lg\:txt-lighter-green\:hover:hover {
    color: #c9e4bc !important;
  }
  .lg\:txt-lightest-green\:hover:hover {
    color: #eff6ec !important;
  }
  .lg\:txt-darker-yellow\:hover:hover {
    color: #483206 !important;
  }
  .lg\:txt-dark-yellow\:hover:hover {
    color: #b5862a !important;
  }
  .lg\:txt-yellow\:hover:hover {
    color: #f2b63f !important;
  }
  .lg\:txt-light-yellow\:hover:hover {
    color: #f5cd78 !important;
  }
  .lg\:txt-lighter-yellow\:hover:hover {
    color: #f8ecc5 !important;
  }
  .lg\:txt-lightest-yellow\:hover:hover {
    color: #faf9e7 !important;
  }
  .lg\:txt-beige\:hover:hover {
    color: #dbd3c9 !important;
  }
  .lg\:txt-white\:hover:hover {
    color: #fff !important;
  }
  .lg\:txt-white-opacity-02\:hover:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:txt-white-opacity-03\:hover:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:txt-white-opacity-05\:hover:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:txt-white-opacity-07\:hover:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:txt-lightest-grey\:hover:hover {
    color: #f3f3f3 !important;
  }
  .lg\:txt-lighter-grey\:hover:hover {
    color: #ddd !important;
  }
  .lg\:txt-light-grey\:hover:hover {
    color: #bbb !important;
  }
  .lg\:txt-grey\:hover:hover {
    color: #8e8e8e !important;
  }
  .lg\:txt-dark-grey\:hover:hover {
    color: #646464 !important;
  }
  .lg\:txt-darker-grey\:hover:hover {
    color: #444 !important;
  }
  .lg\:txt-darkest-grey\:hover:hover {
    color: #222 !important;
  }
  .lg\:txt-black\:hover:hover {
    color: #000 !important;
  }
  .lg\:txt-black-opacity-07\:hover:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:txt-default\:hover:hover {
    color: #222 !important;
  }
  .lg\:txt-headline\:hover:hover {
    color: #222 !important;
  }
  .lg\:txt-link\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .lg\:txt-link--hover\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .lg\:txt-transparent\:hover:hover {
    color: transparent !important;
  }
  .lg\:txt-clear\:hover:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .lg\:txt-lightest\:hover:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .lg\:txt-lighter\:hover:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .lg\:txt-light\:hover:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .lg\:txt-normal\:hover:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .lg\:txt-dark\:hover:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .lg\:txt-darker\:hover:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .lg\:txt-darkest\:hover:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .lg\:txt-opaque\:hover:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .lg\:txt-red\:before:before {
    color: #f12b3b !important;
  }
  .lg\:txt-dark-red\:before:before {
    color: #d2212f !important;
  }
  .lg\:txt-dark-blue\:before:before {
    color: #0273aa !important;
  }
  .lg\:txt-darker-blue\:before:before {
    color: #063b63 !important;
  }
  .lg\:txt-blue\:before:before {
    color: #008fce !important;
  }
  .lg\:txt-light-blue\:before:before {
    color: #4ba6ce !important;
  }
  .lg\:txt-lighter-blue\:before:before {
    color: #c4e5f4 !important;
  }
  .lg\:txt-lightest-blue\:before:before {
    color: #f1f7fa !important;
  }
  .lg\:txt-turquoise\:before:before {
    color: #86c6bb !important;
  }
  .lg\:txt-light-turquoise\:before:before {
    color: #a0d1c9 !important;
  }
  .lg\:txt-lightest-turquoise\:before:before {
    color: #eff4f3 !important;
  }
  .lg\:txt-darker-green\:before:before {
    color: #2f4f21 !important;
  }
  .lg\:txt-dark-green\:before:before {
    color: #456f32 !important;
  }
  .lg\:txt-green\:before:before {
    color: #66a54a !important;
  }
  .lg\:txt-light-green\:before:before {
    color: #77b65b !important;
  }
  .lg\:txt-lighter-green\:before:before {
    color: #c9e4bc !important;
  }
  .lg\:txt-lightest-green\:before:before {
    color: #eff6ec !important;
  }
  .lg\:txt-darker-yellow\:before:before {
    color: #483206 !important;
  }
  .lg\:txt-dark-yellow\:before:before {
    color: #b5862a !important;
  }
  .lg\:txt-yellow\:before:before {
    color: #f2b63f !important;
  }
  .lg\:txt-light-yellow\:before:before {
    color: #f5cd78 !important;
  }
  .lg\:txt-lighter-yellow\:before:before {
    color: #f8ecc5 !important;
  }
  .lg\:txt-lightest-yellow\:before:before {
    color: #faf9e7 !important;
  }
  .lg\:txt-beige\:before:before {
    color: #dbd3c9 !important;
  }
  .lg\:txt-white\:before:before {
    color: #fff !important;
  }
  .lg\:txt-white-opacity-02\:before:before {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:txt-white-opacity-03\:before:before {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:txt-white-opacity-05\:before:before {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:txt-white-opacity-07\:before:before {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:txt-lightest-grey\:before:before {
    color: #f3f3f3 !important;
  }
  .lg\:txt-lighter-grey\:before:before {
    color: #ddd !important;
  }
  .lg\:txt-light-grey\:before:before {
    color: #bbb !important;
  }
  .lg\:txt-grey\:before:before {
    color: #8e8e8e !important;
  }
  .lg\:txt-dark-grey\:before:before {
    color: #646464 !important;
  }
  .lg\:txt-darker-grey\:before:before {
    color: #444 !important;
  }
  .lg\:txt-darkest-grey\:before:before {
    color: #222 !important;
  }
  .lg\:txt-black\:before:before {
    color: #000 !important;
  }
  .lg\:txt-black-opacity-07\:before:before {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:txt-default\:before:before {
    color: #222 !important;
  }
  .lg\:txt-headline\:before:before {
    color: #222 !important;
  }
  .lg\:txt-link\:before:before {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .lg\:txt-link--hover\:before:before {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .lg\:txt-transparent\:before:before {
    color: transparent !important;
  }
  .lg\:txt-clear\:before:before {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .lg\:txt-lightest\:before:before {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .lg\:txt-lighter\:before:before {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .lg\:txt-light\:before:before {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .lg\:txt-normal\:before:before {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .lg\:txt-dark\:before:before {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .lg\:txt-darker\:before:before {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .lg\:txt-darkest\:before:before {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .lg\:txt-opaque\:before:before {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .lg\:txt-red\:after:after {
    color: #f12b3b !important;
  }
  .lg\:txt-dark-red\:after:after {
    color: #d2212f !important;
  }
  .lg\:txt-dark-blue\:after:after {
    color: #0273aa !important;
  }
  .lg\:txt-darker-blue\:after:after {
    color: #063b63 !important;
  }
  .lg\:txt-blue\:after:after {
    color: #008fce !important;
  }
  .lg\:txt-light-blue\:after:after {
    color: #4ba6ce !important;
  }
  .lg\:txt-lighter-blue\:after:after {
    color: #c4e5f4 !important;
  }
  .lg\:txt-lightest-blue\:after:after {
    color: #f1f7fa !important;
  }
  .lg\:txt-turquoise\:after:after {
    color: #86c6bb !important;
  }
  .lg\:txt-light-turquoise\:after:after {
    color: #a0d1c9 !important;
  }
  .lg\:txt-lightest-turquoise\:after:after {
    color: #eff4f3 !important;
  }
  .lg\:txt-darker-green\:after:after {
    color: #2f4f21 !important;
  }
  .lg\:txt-dark-green\:after:after {
    color: #456f32 !important;
  }
  .lg\:txt-green\:after:after {
    color: #66a54a !important;
  }
  .lg\:txt-light-green\:after:after {
    color: #77b65b !important;
  }
  .lg\:txt-lighter-green\:after:after {
    color: #c9e4bc !important;
  }
  .lg\:txt-lightest-green\:after:after {
    color: #eff6ec !important;
  }
  .lg\:txt-darker-yellow\:after:after {
    color: #483206 !important;
  }
  .lg\:txt-dark-yellow\:after:after {
    color: #b5862a !important;
  }
  .lg\:txt-yellow\:after:after {
    color: #f2b63f !important;
  }
  .lg\:txt-light-yellow\:after:after {
    color: #f5cd78 !important;
  }
  .lg\:txt-lighter-yellow\:after:after {
    color: #f8ecc5 !important;
  }
  .lg\:txt-lightest-yellow\:after:after {
    color: #faf9e7 !important;
  }
  .lg\:txt-beige\:after:after {
    color: #dbd3c9 !important;
  }
  .lg\:txt-white\:after:after {
    color: #fff !important;
  }
  .lg\:txt-white-opacity-02\:after:after {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:txt-white-opacity-03\:after:after {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:txt-white-opacity-05\:after:after {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:txt-white-opacity-07\:after:after {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:txt-lightest-grey\:after:after {
    color: #f3f3f3 !important;
  }
  .lg\:txt-lighter-grey\:after:after {
    color: #ddd !important;
  }
  .lg\:txt-light-grey\:after:after {
    color: #bbb !important;
  }
  .lg\:txt-grey\:after:after {
    color: #8e8e8e !important;
  }
  .lg\:txt-dark-grey\:after:after {
    color: #646464 !important;
  }
  .lg\:txt-darker-grey\:after:after {
    color: #444 !important;
  }
  .lg\:txt-darkest-grey\:after:after {
    color: #222 !important;
  }
  .lg\:txt-black\:after:after {
    color: #000 !important;
  }
  .lg\:txt-black-opacity-07\:after:after {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:txt-default\:after:after {
    color: #222 !important;
  }
  .lg\:txt-headline\:after:after {
    color: #222 !important;
  }
  .lg\:txt-link\:after:after {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .lg\:txt-link--hover\:after:after {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .lg\:txt-transparent\:after:after {
    color: transparent !important;
  }
  .lg\:txt-clear\:after:after {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .lg\:txt-lightest\:after:after {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .lg\:txt-lighter\:after:after {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .lg\:txt-light\:after:after {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .lg\:txt-normal\:after:after {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .lg\:txt-dark\:after:after {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .lg\:txt-darker\:after:after {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .lg\:txt-darkest\:after:after {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .lg\:txt-opaque\:after:after {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:txt-red {
    color: #f12b3b !important;
  }
  .xl\:txt-dark-red {
    color: #d2212f !important;
  }
  .xl\:txt-dark-blue {
    color: #0273aa !important;
  }
  .xl\:txt-darker-blue {
    color: #063b63 !important;
  }
  .xl\:txt-blue {
    color: #008fce !important;
  }
  .xl\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .xl\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .xl\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .xl\:txt-turquoise {
    color: #86c6bb !important;
  }
  .xl\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .xl\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .xl\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .xl\:txt-dark-green {
    color: #456f32 !important;
  }
  .xl\:txt-green {
    color: #66a54a !important;
  }
  .xl\:txt-light-green {
    color: #77b65b !important;
  }
  .xl\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .xl\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .xl\:txt-darker-yellow {
    color: #483206 !important;
  }
  .xl\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .xl\:txt-yellow {
    color: #f2b63f !important;
  }
  .xl\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .xl\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .xl\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .xl\:txt-beige {
    color: #dbd3c9 !important;
  }
  .xl\:txt-white {
    color: #fff !important;
  }
  .xl\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .xl\:txt-lighter-grey {
    color: #ddd !important;
  }
  .xl\:txt-light-grey {
    color: #bbb !important;
  }
  .xl\:txt-grey {
    color: #8e8e8e !important;
  }
  .xl\:txt-dark-grey {
    color: #646464 !important;
  }
  .xl\:txt-darker-grey {
    color: #444 !important;
  }
  .xl\:txt-darkest-grey {
    color: #222 !important;
  }
  .xl\:txt-black {
    color: #000 !important;
  }
  .xl\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:txt-default {
    color: #222 !important;
  }
  .xl\:txt-headline {
    color: #222 !important;
  }
  .xl\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xl\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xl\:txt-transparent {
    color: transparent !important;
  }
  .xl\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xl\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xl\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xl\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xl\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xl\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xl\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xl\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xl\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  a:hover .xl\:hover\:txt-red {
    color: #f12b3b !important;
  }
  a:hover .xl\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  a:hover .xl\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  a:hover .xl\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  a:hover .xl\:hover\:txt-blue {
    color: #008fce !important;
  }
  a:hover .xl\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  a:hover .xl\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  a:hover .xl\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  a:hover .xl\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  a:hover .xl\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  a:hover .xl\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  a:hover .xl\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  a:hover .xl\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  a:hover .xl\:hover\:txt-green {
    color: #66a54a !important;
  }
  a:hover .xl\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  a:hover .xl\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  a:hover .xl\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  a:hover .xl\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  a:hover .xl\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  a:hover .xl\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  a:hover .xl\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  a:hover .xl\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  a:hover .xl\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  a:hover .xl\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  a:hover .xl\:hover\:txt-white {
    color: #fff !important;
  }
  a:hover .xl\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .xl\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .xl\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .xl\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .xl\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  a:hover .xl\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  a:hover .xl\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  a:hover .xl\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  a:hover .xl\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  a:hover .xl\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  a:hover .xl\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  a:hover .xl\:hover\:txt-black {
    color: #000 !important;
  }
  a:hover .xl\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .xl\:hover\:txt-default {
    color: #222 !important;
  }
  a:hover .xl\:hover\:txt-headline {
    color: #222 !important;
  }
  a:hover .xl\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  a:hover .xl\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  a:hover .xl\:hover\:txt-transparent {
    color: transparent !important;
  }
  a:hover .xl\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  a:hover .xl\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  a:hover .xl\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  a:hover .xl\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  a:hover .xl\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  a:hover .xl\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  a:hover .xl\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  a:hover .xl\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  a:hover .xl\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  button:hover .xl\:hover\:txt-red {
    color: #f12b3b !important;
  }
  button:hover .xl\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  button:hover .xl\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  button:hover .xl\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  button:hover .xl\:hover\:txt-blue {
    color: #008fce !important;
  }
  button:hover .xl\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  button:hover .xl\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  button:hover .xl\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  button:hover .xl\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  button:hover .xl\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  button:hover .xl\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  button:hover .xl\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  button:hover .xl\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  button:hover .xl\:hover\:txt-green {
    color: #66a54a !important;
  }
  button:hover .xl\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  button:hover .xl\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  button:hover .xl\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  button:hover .xl\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  button:hover .xl\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  button:hover .xl\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  button:hover .xl\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  button:hover .xl\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  button:hover .xl\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  button:hover .xl\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  button:hover .xl\:hover\:txt-white {
    color: #fff !important;
  }
  button:hover .xl\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .xl\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .xl\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .xl\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .xl\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  button:hover .xl\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  button:hover .xl\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  button:hover .xl\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  button:hover .xl\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  button:hover .xl\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  button:hover .xl\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  button:hover .xl\:hover\:txt-black {
    color: #000 !important;
  }
  button:hover .xl\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .xl\:hover\:txt-default {
    color: #222 !important;
  }
  button:hover .xl\:hover\:txt-headline {
    color: #222 !important;
  }
  button:hover .xl\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  button:hover .xl\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  button:hover .xl\:hover\:txt-transparent {
    color: transparent !important;
  }
  button:hover .xl\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  button:hover .xl\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  button:hover .xl\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  button:hover .xl\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  button:hover .xl\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  button:hover .xl\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  button:hover .xl\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  button:hover .xl\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  button:hover .xl\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .btn:hover .xl\:hover\:txt-red {
    color: #f12b3b !important;
  }
  .btn:hover .xl\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  .btn:hover .xl\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  .btn:hover .xl\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  .btn:hover .xl\:hover\:txt-blue {
    color: #008fce !important;
  }
  .btn:hover .xl\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .btn:hover .xl\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .btn:hover .xl\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .btn:hover .xl\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  .btn:hover .xl\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .btn:hover .xl\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .btn:hover .xl\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .btn:hover .xl\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  .btn:hover .xl\:hover\:txt-green {
    color: #66a54a !important;
  }
  .btn:hover .xl\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  .btn:hover .xl\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .btn:hover .xl\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .btn:hover .xl\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  .btn:hover .xl\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .btn:hover .xl\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  .btn:hover .xl\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .btn:hover .xl\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .btn:hover .xl\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .btn:hover .xl\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  .btn:hover .xl\:hover\:txt-white {
    color: #fff !important;
  }
  .btn:hover .xl\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .xl\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .xl\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .xl\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .xl\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .btn:hover .xl\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  .btn:hover .xl\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  .btn:hover .xl\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  .btn:hover .xl\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  .btn:hover .xl\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  .btn:hover .xl\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  .btn:hover .xl\:hover\:txt-black {
    color: #000 !important;
  }
  .btn:hover .xl\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .xl\:hover\:txt-default {
    color: #222 !important;
  }
  .btn:hover .xl\:hover\:txt-headline {
    color: #222 !important;
  }
  .btn:hover .xl\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .btn:hover .xl\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .btn:hover .xl\:hover\:txt-transparent {
    color: transparent !important;
  }
  .btn:hover .xl\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .btn:hover .xl\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .btn:hover .xl\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .btn:hover .xl\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .btn:hover .xl\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .btn:hover .xl\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .btn:hover .xl\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .btn:hover .xl\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .btn:hover .xl\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  input:hover .xl\:hover\:txt-red {
    color: #f12b3b !important;
  }
  input:hover .xl\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  input:hover .xl\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  input:hover .xl\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  input:hover .xl\:hover\:txt-blue {
    color: #008fce !important;
  }
  input:hover .xl\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  input:hover .xl\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  input:hover .xl\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  input:hover .xl\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  input:hover .xl\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  input:hover .xl\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  input:hover .xl\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  input:hover .xl\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  input:hover .xl\:hover\:txt-green {
    color: #66a54a !important;
  }
  input:hover .xl\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  input:hover .xl\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  input:hover .xl\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  input:hover .xl\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  input:hover .xl\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  input:hover .xl\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  input:hover .xl\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  input:hover .xl\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  input:hover .xl\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  input:hover .xl\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  input:hover .xl\:hover\:txt-white {
    color: #fff !important;
  }
  input:hover .xl\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .xl\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .xl\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .xl\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .xl\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  input:hover .xl\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  input:hover .xl\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  input:hover .xl\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  input:hover .xl\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  input:hover .xl\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  input:hover .xl\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  input:hover .xl\:hover\:txt-black {
    color: #000 !important;
  }
  input:hover .xl\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .xl\:hover\:txt-default {
    color: #222 !important;
  }
  input:hover .xl\:hover\:txt-headline {
    color: #222 !important;
  }
  input:hover .xl\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  input:hover .xl\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  input:hover .xl\:hover\:txt-transparent {
    color: transparent !important;
  }
  input:hover .xl\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  input:hover .xl\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  input:hover .xl\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  input:hover .xl\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  input:hover .xl\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  input:hover .xl\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  input:hover .xl\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  input:hover .xl\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  input:hover .xl\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xl\:hover\:txt-red:hover {
    color: #f12b3b !important;
  }
  .xl\:hover\:txt-dark-red:hover {
    color: #d2212f !important;
  }
  .xl\:hover\:txt-dark-blue:hover {
    color: #0273aa !important;
  }
  .xl\:hover\:txt-darker-blue:hover {
    color: #063b63 !important;
  }
  .xl\:hover\:txt-blue:hover {
    color: #008fce !important;
  }
  .xl\:hover\:txt-light-blue:hover {
    color: #4ba6ce !important;
  }
  .xl\:hover\:txt-lighter-blue:hover {
    color: #c4e5f4 !important;
  }
  .xl\:hover\:txt-lightest-blue:hover {
    color: #f1f7fa !important;
  }
  .xl\:hover\:txt-turquoise:hover {
    color: #86c6bb !important;
  }
  .xl\:hover\:txt-light-turquoise:hover {
    color: #a0d1c9 !important;
  }
  .xl\:hover\:txt-lightest-turquoise:hover {
    color: #eff4f3 !important;
  }
  .xl\:hover\:txt-darker-green:hover {
    color: #2f4f21 !important;
  }
  .xl\:hover\:txt-dark-green:hover {
    color: #456f32 !important;
  }
  .xl\:hover\:txt-green:hover {
    color: #66a54a !important;
  }
  .xl\:hover\:txt-light-green:hover {
    color: #77b65b !important;
  }
  .xl\:hover\:txt-lighter-green:hover {
    color: #c9e4bc !important;
  }
  .xl\:hover\:txt-lightest-green:hover {
    color: #eff6ec !important;
  }
  .xl\:hover\:txt-darker-yellow:hover {
    color: #483206 !important;
  }
  .xl\:hover\:txt-dark-yellow:hover {
    color: #b5862a !important;
  }
  .xl\:hover\:txt-yellow:hover {
    color: #f2b63f !important;
  }
  .xl\:hover\:txt-light-yellow:hover {
    color: #f5cd78 !important;
  }
  .xl\:hover\:txt-lighter-yellow:hover {
    color: #f8ecc5 !important;
  }
  .xl\:hover\:txt-lightest-yellow:hover {
    color: #faf9e7 !important;
  }
  .xl\:hover\:txt-beige:hover {
    color: #dbd3c9 !important;
  }
  .xl\:hover\:txt-white:hover {
    color: #fff !important;
  }
  .xl\:hover\:txt-white-opacity-02:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:hover\:txt-white-opacity-03:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:hover\:txt-white-opacity-05:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:hover\:txt-white-opacity-07:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:hover\:txt-lightest-grey:hover {
    color: #f3f3f3 !important;
  }
  .xl\:hover\:txt-lighter-grey:hover {
    color: #ddd !important;
  }
  .xl\:hover\:txt-light-grey:hover {
    color: #bbb !important;
  }
  .xl\:hover\:txt-grey:hover {
    color: #8e8e8e !important;
  }
  .xl\:hover\:txt-dark-grey:hover {
    color: #646464 !important;
  }
  .xl\:hover\:txt-darker-grey:hover {
    color: #444 !important;
  }
  .xl\:hover\:txt-darkest-grey:hover {
    color: #222 !important;
  }
  .xl\:hover\:txt-black:hover {
    color: #000 !important;
  }
  .xl\:hover\:txt-black-opacity-07:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:hover\:txt-default:hover {
    color: #222 !important;
  }
  .xl\:hover\:txt-headline:hover {
    color: #222 !important;
  }
  .xl\:hover\:txt-link:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xl\:hover\:txt-link--hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xl\:hover\:txt-transparent:hover {
    color: transparent !important;
  }
  .xl\:hover\:txt-clear:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xl\:hover\:txt-lightest:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xl\:hover\:txt-lighter:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xl\:hover\:txt-light:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xl\:hover\:txt-normal:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xl\:hover\:txt-dark:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xl\:hover\:txt-darker:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xl\:hover\:txt-darkest:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xl\:hover\:txt-opaque:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xl\:txt-red\:hover:hover {
    color: #f12b3b !important;
  }
  .xl\:txt-dark-red\:hover:hover {
    color: #d2212f !important;
  }
  .xl\:txt-dark-blue\:hover:hover {
    color: #0273aa !important;
  }
  .xl\:txt-darker-blue\:hover:hover {
    color: #063b63 !important;
  }
  .xl\:txt-blue\:hover:hover {
    color: #008fce !important;
  }
  .xl\:txt-light-blue\:hover:hover {
    color: #4ba6ce !important;
  }
  .xl\:txt-lighter-blue\:hover:hover {
    color: #c4e5f4 !important;
  }
  .xl\:txt-lightest-blue\:hover:hover {
    color: #f1f7fa !important;
  }
  .xl\:txt-turquoise\:hover:hover {
    color: #86c6bb !important;
  }
  .xl\:txt-light-turquoise\:hover:hover {
    color: #a0d1c9 !important;
  }
  .xl\:txt-lightest-turquoise\:hover:hover {
    color: #eff4f3 !important;
  }
  .xl\:txt-darker-green\:hover:hover {
    color: #2f4f21 !important;
  }
  .xl\:txt-dark-green\:hover:hover {
    color: #456f32 !important;
  }
  .xl\:txt-green\:hover:hover {
    color: #66a54a !important;
  }
  .xl\:txt-light-green\:hover:hover {
    color: #77b65b !important;
  }
  .xl\:txt-lighter-green\:hover:hover {
    color: #c9e4bc !important;
  }
  .xl\:txt-lightest-green\:hover:hover {
    color: #eff6ec !important;
  }
  .xl\:txt-darker-yellow\:hover:hover {
    color: #483206 !important;
  }
  .xl\:txt-dark-yellow\:hover:hover {
    color: #b5862a !important;
  }
  .xl\:txt-yellow\:hover:hover {
    color: #f2b63f !important;
  }
  .xl\:txt-light-yellow\:hover:hover {
    color: #f5cd78 !important;
  }
  .xl\:txt-lighter-yellow\:hover:hover {
    color: #f8ecc5 !important;
  }
  .xl\:txt-lightest-yellow\:hover:hover {
    color: #faf9e7 !important;
  }
  .xl\:txt-beige\:hover:hover {
    color: #dbd3c9 !important;
  }
  .xl\:txt-white\:hover:hover {
    color: #fff !important;
  }
  .xl\:txt-white-opacity-02\:hover:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:txt-white-opacity-03\:hover:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:txt-white-opacity-05\:hover:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:txt-white-opacity-07\:hover:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:txt-lightest-grey\:hover:hover {
    color: #f3f3f3 !important;
  }
  .xl\:txt-lighter-grey\:hover:hover {
    color: #ddd !important;
  }
  .xl\:txt-light-grey\:hover:hover {
    color: #bbb !important;
  }
  .xl\:txt-grey\:hover:hover {
    color: #8e8e8e !important;
  }
  .xl\:txt-dark-grey\:hover:hover {
    color: #646464 !important;
  }
  .xl\:txt-darker-grey\:hover:hover {
    color: #444 !important;
  }
  .xl\:txt-darkest-grey\:hover:hover {
    color: #222 !important;
  }
  .xl\:txt-black\:hover:hover {
    color: #000 !important;
  }
  .xl\:txt-black-opacity-07\:hover:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:txt-default\:hover:hover {
    color: #222 !important;
  }
  .xl\:txt-headline\:hover:hover {
    color: #222 !important;
  }
  .xl\:txt-link\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xl\:txt-link--hover\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xl\:txt-transparent\:hover:hover {
    color: transparent !important;
  }
  .xl\:txt-clear\:hover:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xl\:txt-lightest\:hover:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xl\:txt-lighter\:hover:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xl\:txt-light\:hover:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xl\:txt-normal\:hover:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xl\:txt-dark\:hover:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xl\:txt-darker\:hover:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xl\:txt-darkest\:hover:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xl\:txt-opaque\:hover:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xl\:txt-red\:before:before {
    color: #f12b3b !important;
  }
  .xl\:txt-dark-red\:before:before {
    color: #d2212f !important;
  }
  .xl\:txt-dark-blue\:before:before {
    color: #0273aa !important;
  }
  .xl\:txt-darker-blue\:before:before {
    color: #063b63 !important;
  }
  .xl\:txt-blue\:before:before {
    color: #008fce !important;
  }
  .xl\:txt-light-blue\:before:before {
    color: #4ba6ce !important;
  }
  .xl\:txt-lighter-blue\:before:before {
    color: #c4e5f4 !important;
  }
  .xl\:txt-lightest-blue\:before:before {
    color: #f1f7fa !important;
  }
  .xl\:txt-turquoise\:before:before {
    color: #86c6bb !important;
  }
  .xl\:txt-light-turquoise\:before:before {
    color: #a0d1c9 !important;
  }
  .xl\:txt-lightest-turquoise\:before:before {
    color: #eff4f3 !important;
  }
  .xl\:txt-darker-green\:before:before {
    color: #2f4f21 !important;
  }
  .xl\:txt-dark-green\:before:before {
    color: #456f32 !important;
  }
  .xl\:txt-green\:before:before {
    color: #66a54a !important;
  }
  .xl\:txt-light-green\:before:before {
    color: #77b65b !important;
  }
  .xl\:txt-lighter-green\:before:before {
    color: #c9e4bc !important;
  }
  .xl\:txt-lightest-green\:before:before {
    color: #eff6ec !important;
  }
  .xl\:txt-darker-yellow\:before:before {
    color: #483206 !important;
  }
  .xl\:txt-dark-yellow\:before:before {
    color: #b5862a !important;
  }
  .xl\:txt-yellow\:before:before {
    color: #f2b63f !important;
  }
  .xl\:txt-light-yellow\:before:before {
    color: #f5cd78 !important;
  }
  .xl\:txt-lighter-yellow\:before:before {
    color: #f8ecc5 !important;
  }
  .xl\:txt-lightest-yellow\:before:before {
    color: #faf9e7 !important;
  }
  .xl\:txt-beige\:before:before {
    color: #dbd3c9 !important;
  }
  .xl\:txt-white\:before:before {
    color: #fff !important;
  }
  .xl\:txt-white-opacity-02\:before:before {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:txt-white-opacity-03\:before:before {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:txt-white-opacity-05\:before:before {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:txt-white-opacity-07\:before:before {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:txt-lightest-grey\:before:before {
    color: #f3f3f3 !important;
  }
  .xl\:txt-lighter-grey\:before:before {
    color: #ddd !important;
  }
  .xl\:txt-light-grey\:before:before {
    color: #bbb !important;
  }
  .xl\:txt-grey\:before:before {
    color: #8e8e8e !important;
  }
  .xl\:txt-dark-grey\:before:before {
    color: #646464 !important;
  }
  .xl\:txt-darker-grey\:before:before {
    color: #444 !important;
  }
  .xl\:txt-darkest-grey\:before:before {
    color: #222 !important;
  }
  .xl\:txt-black\:before:before {
    color: #000 !important;
  }
  .xl\:txt-black-opacity-07\:before:before {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:txt-default\:before:before {
    color: #222 !important;
  }
  .xl\:txt-headline\:before:before {
    color: #222 !important;
  }
  .xl\:txt-link\:before:before {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xl\:txt-link--hover\:before:before {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xl\:txt-transparent\:before:before {
    color: transparent !important;
  }
  .xl\:txt-clear\:before:before {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xl\:txt-lightest\:before:before {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xl\:txt-lighter\:before:before {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xl\:txt-light\:before:before {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xl\:txt-normal\:before:before {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xl\:txt-dark\:before:before {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xl\:txt-darker\:before:before {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xl\:txt-darkest\:before:before {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xl\:txt-opaque\:before:before {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xl\:txt-red\:after:after {
    color: #f12b3b !important;
  }
  .xl\:txt-dark-red\:after:after {
    color: #d2212f !important;
  }
  .xl\:txt-dark-blue\:after:after {
    color: #0273aa !important;
  }
  .xl\:txt-darker-blue\:after:after {
    color: #063b63 !important;
  }
  .xl\:txt-blue\:after:after {
    color: #008fce !important;
  }
  .xl\:txt-light-blue\:after:after {
    color: #4ba6ce !important;
  }
  .xl\:txt-lighter-blue\:after:after {
    color: #c4e5f4 !important;
  }
  .xl\:txt-lightest-blue\:after:after {
    color: #f1f7fa !important;
  }
  .xl\:txt-turquoise\:after:after {
    color: #86c6bb !important;
  }
  .xl\:txt-light-turquoise\:after:after {
    color: #a0d1c9 !important;
  }
  .xl\:txt-lightest-turquoise\:after:after {
    color: #eff4f3 !important;
  }
  .xl\:txt-darker-green\:after:after {
    color: #2f4f21 !important;
  }
  .xl\:txt-dark-green\:after:after {
    color: #456f32 !important;
  }
  .xl\:txt-green\:after:after {
    color: #66a54a !important;
  }
  .xl\:txt-light-green\:after:after {
    color: #77b65b !important;
  }
  .xl\:txt-lighter-green\:after:after {
    color: #c9e4bc !important;
  }
  .xl\:txt-lightest-green\:after:after {
    color: #eff6ec !important;
  }
  .xl\:txt-darker-yellow\:after:after {
    color: #483206 !important;
  }
  .xl\:txt-dark-yellow\:after:after {
    color: #b5862a !important;
  }
  .xl\:txt-yellow\:after:after {
    color: #f2b63f !important;
  }
  .xl\:txt-light-yellow\:after:after {
    color: #f5cd78 !important;
  }
  .xl\:txt-lighter-yellow\:after:after {
    color: #f8ecc5 !important;
  }
  .xl\:txt-lightest-yellow\:after:after {
    color: #faf9e7 !important;
  }
  .xl\:txt-beige\:after:after {
    color: #dbd3c9 !important;
  }
  .xl\:txt-white\:after:after {
    color: #fff !important;
  }
  .xl\:txt-white-opacity-02\:after:after {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:txt-white-opacity-03\:after:after {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:txt-white-opacity-05\:after:after {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:txt-white-opacity-07\:after:after {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:txt-lightest-grey\:after:after {
    color: #f3f3f3 !important;
  }
  .xl\:txt-lighter-grey\:after:after {
    color: #ddd !important;
  }
  .xl\:txt-light-grey\:after:after {
    color: #bbb !important;
  }
  .xl\:txt-grey\:after:after {
    color: #8e8e8e !important;
  }
  .xl\:txt-dark-grey\:after:after {
    color: #646464 !important;
  }
  .xl\:txt-darker-grey\:after:after {
    color: #444 !important;
  }
  .xl\:txt-darkest-grey\:after:after {
    color: #222 !important;
  }
  .xl\:txt-black\:after:after {
    color: #000 !important;
  }
  .xl\:txt-black-opacity-07\:after:after {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:txt-default\:after:after {
    color: #222 !important;
  }
  .xl\:txt-headline\:after:after {
    color: #222 !important;
  }
  .xl\:txt-link\:after:after {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xl\:txt-link--hover\:after:after {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xl\:txt-transparent\:after:after {
    color: transparent !important;
  }
  .xl\:txt-clear\:after:after {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xl\:txt-lightest\:after:after {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xl\:txt-lighter\:after:after {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xl\:txt-light\:after:after {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xl\:txt-normal\:after:after {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xl\:txt-dark\:after:after {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xl\:txt-darker\:after:after {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xl\:txt-darkest\:after:after {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xl\:txt-opaque\:after:after {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:txt-red {
    color: #f12b3b !important;
  }
  .xxl\:txt-dark-red {
    color: #d2212f !important;
  }
  .xxl\:txt-dark-blue {
    color: #0273aa !important;
  }
  .xxl\:txt-darker-blue {
    color: #063b63 !important;
  }
  .xxl\:txt-blue {
    color: #008fce !important;
  }
  .xxl\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .xxl\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .xxl\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .xxl\:txt-turquoise {
    color: #86c6bb !important;
  }
  .xxl\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .xxl\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .xxl\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .xxl\:txt-dark-green {
    color: #456f32 !important;
  }
  .xxl\:txt-green {
    color: #66a54a !important;
  }
  .xxl\:txt-light-green {
    color: #77b65b !important;
  }
  .xxl\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .xxl\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .xxl\:txt-darker-yellow {
    color: #483206 !important;
  }
  .xxl\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .xxl\:txt-yellow {
    color: #f2b63f !important;
  }
  .xxl\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .xxl\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .xxl\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .xxl\:txt-beige {
    color: #dbd3c9 !important;
  }
  .xxl\:txt-white {
    color: #fff !important;
  }
  .xxl\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .xxl\:txt-lighter-grey {
    color: #ddd !important;
  }
  .xxl\:txt-light-grey {
    color: #bbb !important;
  }
  .xxl\:txt-grey {
    color: #8e8e8e !important;
  }
  .xxl\:txt-dark-grey {
    color: #646464 !important;
  }
  .xxl\:txt-darker-grey {
    color: #444 !important;
  }
  .xxl\:txt-darkest-grey {
    color: #222 !important;
  }
  .xxl\:txt-black {
    color: #000 !important;
  }
  .xxl\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:txt-default {
    color: #222 !important;
  }
  .xxl\:txt-headline {
    color: #222 !important;
  }
  .xxl\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xxl\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xxl\:txt-transparent {
    color: transparent !important;
  }
  .xxl\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xxl\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xxl\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xxl\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xxl\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xxl\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xxl\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xxl\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xxl\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  a:hover .xxl\:hover\:txt-red {
    color: #f12b3b !important;
  }
  a:hover .xxl\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  a:hover .xxl\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  a:hover .xxl\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  a:hover .xxl\:hover\:txt-blue {
    color: #008fce !important;
  }
  a:hover .xxl\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  a:hover .xxl\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  a:hover .xxl\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  a:hover .xxl\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  a:hover .xxl\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  a:hover .xxl\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  a:hover .xxl\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  a:hover .xxl\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  a:hover .xxl\:hover\:txt-green {
    color: #66a54a !important;
  }
  a:hover .xxl\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  a:hover .xxl\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  a:hover .xxl\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  a:hover .xxl\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  a:hover .xxl\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  a:hover .xxl\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  a:hover .xxl\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  a:hover .xxl\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  a:hover .xxl\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  a:hover .xxl\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  a:hover .xxl\:hover\:txt-white {
    color: #fff !important;
  }
  a:hover .xxl\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .xxl\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .xxl\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .xxl\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .xxl\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  a:hover .xxl\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  a:hover .xxl\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  a:hover .xxl\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  a:hover .xxl\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  a:hover .xxl\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  a:hover .xxl\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  a:hover .xxl\:hover\:txt-black {
    color: #000 !important;
  }
  a:hover .xxl\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .xxl\:hover\:txt-default {
    color: #222 !important;
  }
  a:hover .xxl\:hover\:txt-headline {
    color: #222 !important;
  }
  a:hover .xxl\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  a:hover .xxl\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  a:hover .xxl\:hover\:txt-transparent {
    color: transparent !important;
  }
  a:hover .xxl\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  a:hover .xxl\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  a:hover .xxl\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  a:hover .xxl\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  a:hover .xxl\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  a:hover .xxl\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  a:hover .xxl\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  a:hover .xxl\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  a:hover .xxl\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  button:hover .xxl\:hover\:txt-red {
    color: #f12b3b !important;
  }
  button:hover .xxl\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  button:hover .xxl\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  button:hover .xxl\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  button:hover .xxl\:hover\:txt-blue {
    color: #008fce !important;
  }
  button:hover .xxl\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  button:hover .xxl\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  button:hover .xxl\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  button:hover .xxl\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  button:hover .xxl\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  button:hover .xxl\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  button:hover .xxl\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  button:hover .xxl\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  button:hover .xxl\:hover\:txt-green {
    color: #66a54a !important;
  }
  button:hover .xxl\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  button:hover .xxl\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  button:hover .xxl\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  button:hover .xxl\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  button:hover .xxl\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  button:hover .xxl\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  button:hover .xxl\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  button:hover .xxl\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  button:hover .xxl\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  button:hover .xxl\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  button:hover .xxl\:hover\:txt-white {
    color: #fff !important;
  }
  button:hover .xxl\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .xxl\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .xxl\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .xxl\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .xxl\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  button:hover .xxl\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  button:hover .xxl\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  button:hover .xxl\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  button:hover .xxl\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  button:hover .xxl\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  button:hover .xxl\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  button:hover .xxl\:hover\:txt-black {
    color: #000 !important;
  }
  button:hover .xxl\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .xxl\:hover\:txt-default {
    color: #222 !important;
  }
  button:hover .xxl\:hover\:txt-headline {
    color: #222 !important;
  }
  button:hover .xxl\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  button:hover .xxl\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  button:hover .xxl\:hover\:txt-transparent {
    color: transparent !important;
  }
  button:hover .xxl\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  button:hover .xxl\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  button:hover .xxl\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  button:hover .xxl\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  button:hover .xxl\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  button:hover .xxl\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  button:hover .xxl\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  button:hover .xxl\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  button:hover .xxl\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .btn:hover .xxl\:hover\:txt-red {
    color: #f12b3b !important;
  }
  .btn:hover .xxl\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  .btn:hover .xxl\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  .btn:hover .xxl\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  .btn:hover .xxl\:hover\:txt-blue {
    color: #008fce !important;
  }
  .btn:hover .xxl\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .btn:hover .xxl\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .btn:hover .xxl\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .btn:hover .xxl\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  .btn:hover .xxl\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .btn:hover .xxl\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .btn:hover .xxl\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .btn:hover .xxl\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  .btn:hover .xxl\:hover\:txt-green {
    color: #66a54a !important;
  }
  .btn:hover .xxl\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  .btn:hover .xxl\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .btn:hover .xxl\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .btn:hover .xxl\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  .btn:hover .xxl\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .btn:hover .xxl\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  .btn:hover .xxl\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .btn:hover .xxl\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .btn:hover .xxl\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .btn:hover .xxl\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  .btn:hover .xxl\:hover\:txt-white {
    color: #fff !important;
  }
  .btn:hover .xxl\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .xxl\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .xxl\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .xxl\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .xxl\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .btn:hover .xxl\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  .btn:hover .xxl\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  .btn:hover .xxl\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  .btn:hover .xxl\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  .btn:hover .xxl\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  .btn:hover .xxl\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  .btn:hover .xxl\:hover\:txt-black {
    color: #000 !important;
  }
  .btn:hover .xxl\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .xxl\:hover\:txt-default {
    color: #222 !important;
  }
  .btn:hover .xxl\:hover\:txt-headline {
    color: #222 !important;
  }
  .btn:hover .xxl\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .btn:hover .xxl\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .btn:hover .xxl\:hover\:txt-transparent {
    color: transparent !important;
  }
  .btn:hover .xxl\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .btn:hover .xxl\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .btn:hover .xxl\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .btn:hover .xxl\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .btn:hover .xxl\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .btn:hover .xxl\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .btn:hover .xxl\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .btn:hover .xxl\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .btn:hover .xxl\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  input:hover .xxl\:hover\:txt-red {
    color: #f12b3b !important;
  }
  input:hover .xxl\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  input:hover .xxl\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  input:hover .xxl\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  input:hover .xxl\:hover\:txt-blue {
    color: #008fce !important;
  }
  input:hover .xxl\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  input:hover .xxl\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  input:hover .xxl\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  input:hover .xxl\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  input:hover .xxl\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  input:hover .xxl\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  input:hover .xxl\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  input:hover .xxl\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  input:hover .xxl\:hover\:txt-green {
    color: #66a54a !important;
  }
  input:hover .xxl\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  input:hover .xxl\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  input:hover .xxl\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  input:hover .xxl\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  input:hover .xxl\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  input:hover .xxl\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  input:hover .xxl\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  input:hover .xxl\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  input:hover .xxl\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  input:hover .xxl\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  input:hover .xxl\:hover\:txt-white {
    color: #fff !important;
  }
  input:hover .xxl\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .xxl\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .xxl\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .xxl\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .xxl\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  input:hover .xxl\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  input:hover .xxl\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  input:hover .xxl\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  input:hover .xxl\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  input:hover .xxl\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  input:hover .xxl\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  input:hover .xxl\:hover\:txt-black {
    color: #000 !important;
  }
  input:hover .xxl\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .xxl\:hover\:txt-default {
    color: #222 !important;
  }
  input:hover .xxl\:hover\:txt-headline {
    color: #222 !important;
  }
  input:hover .xxl\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  input:hover .xxl\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  input:hover .xxl\:hover\:txt-transparent {
    color: transparent !important;
  }
  input:hover .xxl\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  input:hover .xxl\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  input:hover .xxl\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  input:hover .xxl\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  input:hover .xxl\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  input:hover .xxl\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  input:hover .xxl\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  input:hover .xxl\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  input:hover .xxl\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xxl\:hover\:txt-red:hover {
    color: #f12b3b !important;
  }
  .xxl\:hover\:txt-dark-red:hover {
    color: #d2212f !important;
  }
  .xxl\:hover\:txt-dark-blue:hover {
    color: #0273aa !important;
  }
  .xxl\:hover\:txt-darker-blue:hover {
    color: #063b63 !important;
  }
  .xxl\:hover\:txt-blue:hover {
    color: #008fce !important;
  }
  .xxl\:hover\:txt-light-blue:hover {
    color: #4ba6ce !important;
  }
  .xxl\:hover\:txt-lighter-blue:hover {
    color: #c4e5f4 !important;
  }
  .xxl\:hover\:txt-lightest-blue:hover {
    color: #f1f7fa !important;
  }
  .xxl\:hover\:txt-turquoise:hover {
    color: #86c6bb !important;
  }
  .xxl\:hover\:txt-light-turquoise:hover {
    color: #a0d1c9 !important;
  }
  .xxl\:hover\:txt-lightest-turquoise:hover {
    color: #eff4f3 !important;
  }
  .xxl\:hover\:txt-darker-green:hover {
    color: #2f4f21 !important;
  }
  .xxl\:hover\:txt-dark-green:hover {
    color: #456f32 !important;
  }
  .xxl\:hover\:txt-green:hover {
    color: #66a54a !important;
  }
  .xxl\:hover\:txt-light-green:hover {
    color: #77b65b !important;
  }
  .xxl\:hover\:txt-lighter-green:hover {
    color: #c9e4bc !important;
  }
  .xxl\:hover\:txt-lightest-green:hover {
    color: #eff6ec !important;
  }
  .xxl\:hover\:txt-darker-yellow:hover {
    color: #483206 !important;
  }
  .xxl\:hover\:txt-dark-yellow:hover {
    color: #b5862a !important;
  }
  .xxl\:hover\:txt-yellow:hover {
    color: #f2b63f !important;
  }
  .xxl\:hover\:txt-light-yellow:hover {
    color: #f5cd78 !important;
  }
  .xxl\:hover\:txt-lighter-yellow:hover {
    color: #f8ecc5 !important;
  }
  .xxl\:hover\:txt-lightest-yellow:hover {
    color: #faf9e7 !important;
  }
  .xxl\:hover\:txt-beige:hover {
    color: #dbd3c9 !important;
  }
  .xxl\:hover\:txt-white:hover {
    color: #fff !important;
  }
  .xxl\:hover\:txt-white-opacity-02:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:hover\:txt-white-opacity-03:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:hover\:txt-white-opacity-05:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:hover\:txt-white-opacity-07:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:hover\:txt-lightest-grey:hover {
    color: #f3f3f3 !important;
  }
  .xxl\:hover\:txt-lighter-grey:hover {
    color: #ddd !important;
  }
  .xxl\:hover\:txt-light-grey:hover {
    color: #bbb !important;
  }
  .xxl\:hover\:txt-grey:hover {
    color: #8e8e8e !important;
  }
  .xxl\:hover\:txt-dark-grey:hover {
    color: #646464 !important;
  }
  .xxl\:hover\:txt-darker-grey:hover {
    color: #444 !important;
  }
  .xxl\:hover\:txt-darkest-grey:hover {
    color: #222 !important;
  }
  .xxl\:hover\:txt-black:hover {
    color: #000 !important;
  }
  .xxl\:hover\:txt-black-opacity-07:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:hover\:txt-default:hover {
    color: #222 !important;
  }
  .xxl\:hover\:txt-headline:hover {
    color: #222 !important;
  }
  .xxl\:hover\:txt-link:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xxl\:hover\:txt-link--hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xxl\:hover\:txt-transparent:hover {
    color: transparent !important;
  }
  .xxl\:hover\:txt-clear:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xxl\:hover\:txt-lightest:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xxl\:hover\:txt-lighter:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xxl\:hover\:txt-light:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xxl\:hover\:txt-normal:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xxl\:hover\:txt-dark:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xxl\:hover\:txt-darker:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xxl\:hover\:txt-darkest:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xxl\:hover\:txt-opaque:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xxl\:txt-red\:hover:hover {
    color: #f12b3b !important;
  }
  .xxl\:txt-dark-red\:hover:hover {
    color: #d2212f !important;
  }
  .xxl\:txt-dark-blue\:hover:hover {
    color: #0273aa !important;
  }
  .xxl\:txt-darker-blue\:hover:hover {
    color: #063b63 !important;
  }
  .xxl\:txt-blue\:hover:hover {
    color: #008fce !important;
  }
  .xxl\:txt-light-blue\:hover:hover {
    color: #4ba6ce !important;
  }
  .xxl\:txt-lighter-blue\:hover:hover {
    color: #c4e5f4 !important;
  }
  .xxl\:txt-lightest-blue\:hover:hover {
    color: #f1f7fa !important;
  }
  .xxl\:txt-turquoise\:hover:hover {
    color: #86c6bb !important;
  }
  .xxl\:txt-light-turquoise\:hover:hover {
    color: #a0d1c9 !important;
  }
  .xxl\:txt-lightest-turquoise\:hover:hover {
    color: #eff4f3 !important;
  }
  .xxl\:txt-darker-green\:hover:hover {
    color: #2f4f21 !important;
  }
  .xxl\:txt-dark-green\:hover:hover {
    color: #456f32 !important;
  }
  .xxl\:txt-green\:hover:hover {
    color: #66a54a !important;
  }
  .xxl\:txt-light-green\:hover:hover {
    color: #77b65b !important;
  }
  .xxl\:txt-lighter-green\:hover:hover {
    color: #c9e4bc !important;
  }
  .xxl\:txt-lightest-green\:hover:hover {
    color: #eff6ec !important;
  }
  .xxl\:txt-darker-yellow\:hover:hover {
    color: #483206 !important;
  }
  .xxl\:txt-dark-yellow\:hover:hover {
    color: #b5862a !important;
  }
  .xxl\:txt-yellow\:hover:hover {
    color: #f2b63f !important;
  }
  .xxl\:txt-light-yellow\:hover:hover {
    color: #f5cd78 !important;
  }
  .xxl\:txt-lighter-yellow\:hover:hover {
    color: #f8ecc5 !important;
  }
  .xxl\:txt-lightest-yellow\:hover:hover {
    color: #faf9e7 !important;
  }
  .xxl\:txt-beige\:hover:hover {
    color: #dbd3c9 !important;
  }
  .xxl\:txt-white\:hover:hover {
    color: #fff !important;
  }
  .xxl\:txt-white-opacity-02\:hover:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:txt-white-opacity-03\:hover:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:txt-white-opacity-05\:hover:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:txt-white-opacity-07\:hover:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:txt-lightest-grey\:hover:hover {
    color: #f3f3f3 !important;
  }
  .xxl\:txt-lighter-grey\:hover:hover {
    color: #ddd !important;
  }
  .xxl\:txt-light-grey\:hover:hover {
    color: #bbb !important;
  }
  .xxl\:txt-grey\:hover:hover {
    color: #8e8e8e !important;
  }
  .xxl\:txt-dark-grey\:hover:hover {
    color: #646464 !important;
  }
  .xxl\:txt-darker-grey\:hover:hover {
    color: #444 !important;
  }
  .xxl\:txt-darkest-grey\:hover:hover {
    color: #222 !important;
  }
  .xxl\:txt-black\:hover:hover {
    color: #000 !important;
  }
  .xxl\:txt-black-opacity-07\:hover:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:txt-default\:hover:hover {
    color: #222 !important;
  }
  .xxl\:txt-headline\:hover:hover {
    color: #222 !important;
  }
  .xxl\:txt-link\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xxl\:txt-link--hover\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xxl\:txt-transparent\:hover:hover {
    color: transparent !important;
  }
  .xxl\:txt-clear\:hover:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xxl\:txt-lightest\:hover:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xxl\:txt-lighter\:hover:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xxl\:txt-light\:hover:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xxl\:txt-normal\:hover:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xxl\:txt-dark\:hover:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xxl\:txt-darker\:hover:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xxl\:txt-darkest\:hover:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xxl\:txt-opaque\:hover:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xxl\:txt-red\:before:before {
    color: #f12b3b !important;
  }
  .xxl\:txt-dark-red\:before:before {
    color: #d2212f !important;
  }
  .xxl\:txt-dark-blue\:before:before {
    color: #0273aa !important;
  }
  .xxl\:txt-darker-blue\:before:before {
    color: #063b63 !important;
  }
  .xxl\:txt-blue\:before:before {
    color: #008fce !important;
  }
  .xxl\:txt-light-blue\:before:before {
    color: #4ba6ce !important;
  }
  .xxl\:txt-lighter-blue\:before:before {
    color: #c4e5f4 !important;
  }
  .xxl\:txt-lightest-blue\:before:before {
    color: #f1f7fa !important;
  }
  .xxl\:txt-turquoise\:before:before {
    color: #86c6bb !important;
  }
  .xxl\:txt-light-turquoise\:before:before {
    color: #a0d1c9 !important;
  }
  .xxl\:txt-lightest-turquoise\:before:before {
    color: #eff4f3 !important;
  }
  .xxl\:txt-darker-green\:before:before {
    color: #2f4f21 !important;
  }
  .xxl\:txt-dark-green\:before:before {
    color: #456f32 !important;
  }
  .xxl\:txt-green\:before:before {
    color: #66a54a !important;
  }
  .xxl\:txt-light-green\:before:before {
    color: #77b65b !important;
  }
  .xxl\:txt-lighter-green\:before:before {
    color: #c9e4bc !important;
  }
  .xxl\:txt-lightest-green\:before:before {
    color: #eff6ec !important;
  }
  .xxl\:txt-darker-yellow\:before:before {
    color: #483206 !important;
  }
  .xxl\:txt-dark-yellow\:before:before {
    color: #b5862a !important;
  }
  .xxl\:txt-yellow\:before:before {
    color: #f2b63f !important;
  }
  .xxl\:txt-light-yellow\:before:before {
    color: #f5cd78 !important;
  }
  .xxl\:txt-lighter-yellow\:before:before {
    color: #f8ecc5 !important;
  }
  .xxl\:txt-lightest-yellow\:before:before {
    color: #faf9e7 !important;
  }
  .xxl\:txt-beige\:before:before {
    color: #dbd3c9 !important;
  }
  .xxl\:txt-white\:before:before {
    color: #fff !important;
  }
  .xxl\:txt-white-opacity-02\:before:before {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:txt-white-opacity-03\:before:before {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:txt-white-opacity-05\:before:before {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:txt-white-opacity-07\:before:before {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:txt-lightest-grey\:before:before {
    color: #f3f3f3 !important;
  }
  .xxl\:txt-lighter-grey\:before:before {
    color: #ddd !important;
  }
  .xxl\:txt-light-grey\:before:before {
    color: #bbb !important;
  }
  .xxl\:txt-grey\:before:before {
    color: #8e8e8e !important;
  }
  .xxl\:txt-dark-grey\:before:before {
    color: #646464 !important;
  }
  .xxl\:txt-darker-grey\:before:before {
    color: #444 !important;
  }
  .xxl\:txt-darkest-grey\:before:before {
    color: #222 !important;
  }
  .xxl\:txt-black\:before:before {
    color: #000 !important;
  }
  .xxl\:txt-black-opacity-07\:before:before {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:txt-default\:before:before {
    color: #222 !important;
  }
  .xxl\:txt-headline\:before:before {
    color: #222 !important;
  }
  .xxl\:txt-link\:before:before {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xxl\:txt-link--hover\:before:before {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xxl\:txt-transparent\:before:before {
    color: transparent !important;
  }
  .xxl\:txt-clear\:before:before {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xxl\:txt-lightest\:before:before {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xxl\:txt-lighter\:before:before {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xxl\:txt-light\:before:before {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xxl\:txt-normal\:before:before {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xxl\:txt-dark\:before:before {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xxl\:txt-darker\:before:before {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xxl\:txt-darkest\:before:before {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xxl\:txt-opaque\:before:before {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .xxl\:txt-red\:after:after {
    color: #f12b3b !important;
  }
  .xxl\:txt-dark-red\:after:after {
    color: #d2212f !important;
  }
  .xxl\:txt-dark-blue\:after:after {
    color: #0273aa !important;
  }
  .xxl\:txt-darker-blue\:after:after {
    color: #063b63 !important;
  }
  .xxl\:txt-blue\:after:after {
    color: #008fce !important;
  }
  .xxl\:txt-light-blue\:after:after {
    color: #4ba6ce !important;
  }
  .xxl\:txt-lighter-blue\:after:after {
    color: #c4e5f4 !important;
  }
  .xxl\:txt-lightest-blue\:after:after {
    color: #f1f7fa !important;
  }
  .xxl\:txt-turquoise\:after:after {
    color: #86c6bb !important;
  }
  .xxl\:txt-light-turquoise\:after:after {
    color: #a0d1c9 !important;
  }
  .xxl\:txt-lightest-turquoise\:after:after {
    color: #eff4f3 !important;
  }
  .xxl\:txt-darker-green\:after:after {
    color: #2f4f21 !important;
  }
  .xxl\:txt-dark-green\:after:after {
    color: #456f32 !important;
  }
  .xxl\:txt-green\:after:after {
    color: #66a54a !important;
  }
  .xxl\:txt-light-green\:after:after {
    color: #77b65b !important;
  }
  .xxl\:txt-lighter-green\:after:after {
    color: #c9e4bc !important;
  }
  .xxl\:txt-lightest-green\:after:after {
    color: #eff6ec !important;
  }
  .xxl\:txt-darker-yellow\:after:after {
    color: #483206 !important;
  }
  .xxl\:txt-dark-yellow\:after:after {
    color: #b5862a !important;
  }
  .xxl\:txt-yellow\:after:after {
    color: #f2b63f !important;
  }
  .xxl\:txt-light-yellow\:after:after {
    color: #f5cd78 !important;
  }
  .xxl\:txt-lighter-yellow\:after:after {
    color: #f8ecc5 !important;
  }
  .xxl\:txt-lightest-yellow\:after:after {
    color: #faf9e7 !important;
  }
  .xxl\:txt-beige\:after:after {
    color: #dbd3c9 !important;
  }
  .xxl\:txt-white\:after:after {
    color: #fff !important;
  }
  .xxl\:txt-white-opacity-02\:after:after {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:txt-white-opacity-03\:after:after {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:txt-white-opacity-05\:after:after {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:txt-white-opacity-07\:after:after {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:txt-lightest-grey\:after:after {
    color: #f3f3f3 !important;
  }
  .xxl\:txt-lighter-grey\:after:after {
    color: #ddd !important;
  }
  .xxl\:txt-light-grey\:after:after {
    color: #bbb !important;
  }
  .xxl\:txt-grey\:after:after {
    color: #8e8e8e !important;
  }
  .xxl\:txt-dark-grey\:after:after {
    color: #646464 !important;
  }
  .xxl\:txt-darker-grey\:after:after {
    color: #444 !important;
  }
  .xxl\:txt-darkest-grey\:after:after {
    color: #222 !important;
  }
  .xxl\:txt-black\:after:after {
    color: #000 !important;
  }
  .xxl\:txt-black-opacity-07\:after:after {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:txt-default\:after:after {
    color: #222 !important;
  }
  .xxl\:txt-headline\:after:after {
    color: #222 !important;
  }
  .xxl\:txt-link\:after:after {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .xxl\:txt-link--hover\:after:after {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .xxl\:txt-transparent\:after:after {
    color: transparent !important;
  }
  .xxl\:txt-clear\:after:after {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .xxl\:txt-lightest\:after:after {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .xxl\:txt-lighter\:after:after {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .xxl\:txt-light\:after:after {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .xxl\:txt-normal\:after:after {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .xxl\:txt-dark\:after:after {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .xxl\:txt-darker\:after:after {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .xxl\:txt-darkest\:after:after {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .xxl\:txt-opaque\:after:after {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:txt-red {
    color: #f12b3b !important;
  }
  .max\:txt-dark-red {
    color: #d2212f !important;
  }
  .max\:txt-dark-blue {
    color: #0273aa !important;
  }
  .max\:txt-darker-blue {
    color: #063b63 !important;
  }
  .max\:txt-blue {
    color: #008fce !important;
  }
  .max\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .max\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .max\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .max\:txt-turquoise {
    color: #86c6bb !important;
  }
  .max\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .max\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .max\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .max\:txt-dark-green {
    color: #456f32 !important;
  }
  .max\:txt-green {
    color: #66a54a !important;
  }
  .max\:txt-light-green {
    color: #77b65b !important;
  }
  .max\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .max\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .max\:txt-darker-yellow {
    color: #483206 !important;
  }
  .max\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .max\:txt-yellow {
    color: #f2b63f !important;
  }
  .max\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .max\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .max\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .max\:txt-beige {
    color: #dbd3c9 !important;
  }
  .max\:txt-white {
    color: #fff !important;
  }
  .max\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .max\:txt-lighter-grey {
    color: #ddd !important;
  }
  .max\:txt-light-grey {
    color: #bbb !important;
  }
  .max\:txt-grey {
    color: #8e8e8e !important;
  }
  .max\:txt-dark-grey {
    color: #646464 !important;
  }
  .max\:txt-darker-grey {
    color: #444 !important;
  }
  .max\:txt-darkest-grey {
    color: #222 !important;
  }
  .max\:txt-black {
    color: #000 !important;
  }
  .max\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:txt-default {
    color: #222 !important;
  }
  .max\:txt-headline {
    color: #222 !important;
  }
  .max\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .max\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .max\:txt-transparent {
    color: transparent !important;
  }
  .max\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .max\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .max\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .max\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .max\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .max\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .max\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .max\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .max\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  a:hover .max\:hover\:txt-red {
    color: #f12b3b !important;
  }
  a:hover .max\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  a:hover .max\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  a:hover .max\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  a:hover .max\:hover\:txt-blue {
    color: #008fce !important;
  }
  a:hover .max\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  a:hover .max\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  a:hover .max\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  a:hover .max\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  a:hover .max\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  a:hover .max\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  a:hover .max\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  a:hover .max\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  a:hover .max\:hover\:txt-green {
    color: #66a54a !important;
  }
  a:hover .max\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  a:hover .max\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  a:hover .max\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  a:hover .max\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  a:hover .max\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  a:hover .max\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  a:hover .max\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  a:hover .max\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  a:hover .max\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  a:hover .max\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  a:hover .max\:hover\:txt-white {
    color: #fff !important;
  }
  a:hover .max\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .max\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .max\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .max\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .max\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  a:hover .max\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  a:hover .max\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  a:hover .max\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  a:hover .max\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  a:hover .max\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  a:hover .max\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  a:hover .max\:hover\:txt-black {
    color: #000 !important;
  }
  a:hover .max\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .max\:hover\:txt-default {
    color: #222 !important;
  }
  a:hover .max\:hover\:txt-headline {
    color: #222 !important;
  }
  a:hover .max\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  a:hover .max\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  a:hover .max\:hover\:txt-transparent {
    color: transparent !important;
  }
  a:hover .max\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  a:hover .max\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  a:hover .max\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  a:hover .max\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  a:hover .max\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  a:hover .max\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  a:hover .max\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  a:hover .max\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  a:hover .max\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  button:hover .max\:hover\:txt-red {
    color: #f12b3b !important;
  }
  button:hover .max\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  button:hover .max\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  button:hover .max\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  button:hover .max\:hover\:txt-blue {
    color: #008fce !important;
  }
  button:hover .max\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  button:hover .max\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  button:hover .max\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  button:hover .max\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  button:hover .max\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  button:hover .max\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  button:hover .max\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  button:hover .max\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  button:hover .max\:hover\:txt-green {
    color: #66a54a !important;
  }
  button:hover .max\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  button:hover .max\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  button:hover .max\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  button:hover .max\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  button:hover .max\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  button:hover .max\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  button:hover .max\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  button:hover .max\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  button:hover .max\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  button:hover .max\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  button:hover .max\:hover\:txt-white {
    color: #fff !important;
  }
  button:hover .max\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .max\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .max\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .max\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .max\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  button:hover .max\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  button:hover .max\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  button:hover .max\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  button:hover .max\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  button:hover .max\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  button:hover .max\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  button:hover .max\:hover\:txt-black {
    color: #000 !important;
  }
  button:hover .max\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .max\:hover\:txt-default {
    color: #222 !important;
  }
  button:hover .max\:hover\:txt-headline {
    color: #222 !important;
  }
  button:hover .max\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  button:hover .max\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  button:hover .max\:hover\:txt-transparent {
    color: transparent !important;
  }
  button:hover .max\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  button:hover .max\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  button:hover .max\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  button:hover .max\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  button:hover .max\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  button:hover .max\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  button:hover .max\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  button:hover .max\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  button:hover .max\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .btn:hover .max\:hover\:txt-red {
    color: #f12b3b !important;
  }
  .btn:hover .max\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  .btn:hover .max\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  .btn:hover .max\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  .btn:hover .max\:hover\:txt-blue {
    color: #008fce !important;
  }
  .btn:hover .max\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  .btn:hover .max\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  .btn:hover .max\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  .btn:hover .max\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  .btn:hover .max\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  .btn:hover .max\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  .btn:hover .max\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  .btn:hover .max\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  .btn:hover .max\:hover\:txt-green {
    color: #66a54a !important;
  }
  .btn:hover .max\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  .btn:hover .max\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  .btn:hover .max\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  .btn:hover .max\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  .btn:hover .max\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  .btn:hover .max\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  .btn:hover .max\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  .btn:hover .max\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  .btn:hover .max\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  .btn:hover .max\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  .btn:hover .max\:hover\:txt-white {
    color: #fff !important;
  }
  .btn:hover .max\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .max\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .max\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .max\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .max\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  .btn:hover .max\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  .btn:hover .max\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  .btn:hover .max\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  .btn:hover .max\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  .btn:hover .max\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  .btn:hover .max\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  .btn:hover .max\:hover\:txt-black {
    color: #000 !important;
  }
  .btn:hover .max\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .max\:hover\:txt-default {
    color: #222 !important;
  }
  .btn:hover .max\:hover\:txt-headline {
    color: #222 !important;
  }
  .btn:hover .max\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .btn:hover .max\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .btn:hover .max\:hover\:txt-transparent {
    color: transparent !important;
  }
  .btn:hover .max\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .btn:hover .max\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .btn:hover .max\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .btn:hover .max\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .btn:hover .max\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .btn:hover .max\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .btn:hover .max\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .btn:hover .max\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .btn:hover .max\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  input:hover .max\:hover\:txt-red {
    color: #f12b3b !important;
  }
  input:hover .max\:hover\:txt-dark-red {
    color: #d2212f !important;
  }
  input:hover .max\:hover\:txt-dark-blue {
    color: #0273aa !important;
  }
  input:hover .max\:hover\:txt-darker-blue {
    color: #063b63 !important;
  }
  input:hover .max\:hover\:txt-blue {
    color: #008fce !important;
  }
  input:hover .max\:hover\:txt-light-blue {
    color: #4ba6ce !important;
  }
  input:hover .max\:hover\:txt-lighter-blue {
    color: #c4e5f4 !important;
  }
  input:hover .max\:hover\:txt-lightest-blue {
    color: #f1f7fa !important;
  }
  input:hover .max\:hover\:txt-turquoise {
    color: #86c6bb !important;
  }
  input:hover .max\:hover\:txt-light-turquoise {
    color: #a0d1c9 !important;
  }
  input:hover .max\:hover\:txt-lightest-turquoise {
    color: #eff4f3 !important;
  }
  input:hover .max\:hover\:txt-darker-green {
    color: #2f4f21 !important;
  }
  input:hover .max\:hover\:txt-dark-green {
    color: #456f32 !important;
  }
  input:hover .max\:hover\:txt-green {
    color: #66a54a !important;
  }
  input:hover .max\:hover\:txt-light-green {
    color: #77b65b !important;
  }
  input:hover .max\:hover\:txt-lighter-green {
    color: #c9e4bc !important;
  }
  input:hover .max\:hover\:txt-lightest-green {
    color: #eff6ec !important;
  }
  input:hover .max\:hover\:txt-darker-yellow {
    color: #483206 !important;
  }
  input:hover .max\:hover\:txt-dark-yellow {
    color: #b5862a !important;
  }
  input:hover .max\:hover\:txt-yellow {
    color: #f2b63f !important;
  }
  input:hover .max\:hover\:txt-light-yellow {
    color: #f5cd78 !important;
  }
  input:hover .max\:hover\:txt-lighter-yellow {
    color: #f8ecc5 !important;
  }
  input:hover .max\:hover\:txt-lightest-yellow {
    color: #faf9e7 !important;
  }
  input:hover .max\:hover\:txt-beige {
    color: #dbd3c9 !important;
  }
  input:hover .max\:hover\:txt-white {
    color: #fff !important;
  }
  input:hover .max\:hover\:txt-white-opacity-02 {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .max\:hover\:txt-white-opacity-03 {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .max\:hover\:txt-white-opacity-05 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .max\:hover\:txt-white-opacity-07 {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .max\:hover\:txt-lightest-grey {
    color: #f3f3f3 !important;
  }
  input:hover .max\:hover\:txt-lighter-grey {
    color: #ddd !important;
  }
  input:hover .max\:hover\:txt-light-grey {
    color: #bbb !important;
  }
  input:hover .max\:hover\:txt-grey {
    color: #8e8e8e !important;
  }
  input:hover .max\:hover\:txt-dark-grey {
    color: #646464 !important;
  }
  input:hover .max\:hover\:txt-darker-grey {
    color: #444 !important;
  }
  input:hover .max\:hover\:txt-darkest-grey {
    color: #222 !important;
  }
  input:hover .max\:hover\:txt-black {
    color: #000 !important;
  }
  input:hover .max\:hover\:txt-black-opacity-07 {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .max\:hover\:txt-default {
    color: #222 !important;
  }
  input:hover .max\:hover\:txt-headline {
    color: #222 !important;
  }
  input:hover .max\:hover\:txt-link {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  input:hover .max\:hover\:txt-link--hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  input:hover .max\:hover\:txt-transparent {
    color: transparent !important;
  }
  input:hover .max\:hover\:txt-clear {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  input:hover .max\:hover\:txt-lightest {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  input:hover .max\:hover\:txt-lighter {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  input:hover .max\:hover\:txt-light {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  input:hover .max\:hover\:txt-normal {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  input:hover .max\:hover\:txt-dark {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  input:hover .max\:hover\:txt-darker {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  input:hover .max\:hover\:txt-darkest {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  input:hover .max\:hover\:txt-opaque {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .max\:hover\:txt-red:hover {
    color: #f12b3b !important;
  }
  .max\:hover\:txt-dark-red:hover {
    color: #d2212f !important;
  }
  .max\:hover\:txt-dark-blue:hover {
    color: #0273aa !important;
  }
  .max\:hover\:txt-darker-blue:hover {
    color: #063b63 !important;
  }
  .max\:hover\:txt-blue:hover {
    color: #008fce !important;
  }
  .max\:hover\:txt-light-blue:hover {
    color: #4ba6ce !important;
  }
  .max\:hover\:txt-lighter-blue:hover {
    color: #c4e5f4 !important;
  }
  .max\:hover\:txt-lightest-blue:hover {
    color: #f1f7fa !important;
  }
  .max\:hover\:txt-turquoise:hover {
    color: #86c6bb !important;
  }
  .max\:hover\:txt-light-turquoise:hover {
    color: #a0d1c9 !important;
  }
  .max\:hover\:txt-lightest-turquoise:hover {
    color: #eff4f3 !important;
  }
  .max\:hover\:txt-darker-green:hover {
    color: #2f4f21 !important;
  }
  .max\:hover\:txt-dark-green:hover {
    color: #456f32 !important;
  }
  .max\:hover\:txt-green:hover {
    color: #66a54a !important;
  }
  .max\:hover\:txt-light-green:hover {
    color: #77b65b !important;
  }
  .max\:hover\:txt-lighter-green:hover {
    color: #c9e4bc !important;
  }
  .max\:hover\:txt-lightest-green:hover {
    color: #eff6ec !important;
  }
  .max\:hover\:txt-darker-yellow:hover {
    color: #483206 !important;
  }
  .max\:hover\:txt-dark-yellow:hover {
    color: #b5862a !important;
  }
  .max\:hover\:txt-yellow:hover {
    color: #f2b63f !important;
  }
  .max\:hover\:txt-light-yellow:hover {
    color: #f5cd78 !important;
  }
  .max\:hover\:txt-lighter-yellow:hover {
    color: #f8ecc5 !important;
  }
  .max\:hover\:txt-lightest-yellow:hover {
    color: #faf9e7 !important;
  }
  .max\:hover\:txt-beige:hover {
    color: #dbd3c9 !important;
  }
  .max\:hover\:txt-white:hover {
    color: #fff !important;
  }
  .max\:hover\:txt-white-opacity-02:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:hover\:txt-white-opacity-03:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:hover\:txt-white-opacity-05:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:hover\:txt-white-opacity-07:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:hover\:txt-lightest-grey:hover {
    color: #f3f3f3 !important;
  }
  .max\:hover\:txt-lighter-grey:hover {
    color: #ddd !important;
  }
  .max\:hover\:txt-light-grey:hover {
    color: #bbb !important;
  }
  .max\:hover\:txt-grey:hover {
    color: #8e8e8e !important;
  }
  .max\:hover\:txt-dark-grey:hover {
    color: #646464 !important;
  }
  .max\:hover\:txt-darker-grey:hover {
    color: #444 !important;
  }
  .max\:hover\:txt-darkest-grey:hover {
    color: #222 !important;
  }
  .max\:hover\:txt-black:hover {
    color: #000 !important;
  }
  .max\:hover\:txt-black-opacity-07:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:hover\:txt-default:hover {
    color: #222 !important;
  }
  .max\:hover\:txt-headline:hover {
    color: #222 !important;
  }
  .max\:hover\:txt-link:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .max\:hover\:txt-link--hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .max\:hover\:txt-transparent:hover {
    color: transparent !important;
  }
  .max\:hover\:txt-clear:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .max\:hover\:txt-lightest:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .max\:hover\:txt-lighter:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .max\:hover\:txt-light:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .max\:hover\:txt-normal:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .max\:hover\:txt-dark:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .max\:hover\:txt-darker:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .max\:hover\:txt-darkest:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .max\:hover\:txt-opaque:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .max\:txt-red\:hover:hover {
    color: #f12b3b !important;
  }
  .max\:txt-dark-red\:hover:hover {
    color: #d2212f !important;
  }
  .max\:txt-dark-blue\:hover:hover {
    color: #0273aa !important;
  }
  .max\:txt-darker-blue\:hover:hover {
    color: #063b63 !important;
  }
  .max\:txt-blue\:hover:hover {
    color: #008fce !important;
  }
  .max\:txt-light-blue\:hover:hover {
    color: #4ba6ce !important;
  }
  .max\:txt-lighter-blue\:hover:hover {
    color: #c4e5f4 !important;
  }
  .max\:txt-lightest-blue\:hover:hover {
    color: #f1f7fa !important;
  }
  .max\:txt-turquoise\:hover:hover {
    color: #86c6bb !important;
  }
  .max\:txt-light-turquoise\:hover:hover {
    color: #a0d1c9 !important;
  }
  .max\:txt-lightest-turquoise\:hover:hover {
    color: #eff4f3 !important;
  }
  .max\:txt-darker-green\:hover:hover {
    color: #2f4f21 !important;
  }
  .max\:txt-dark-green\:hover:hover {
    color: #456f32 !important;
  }
  .max\:txt-green\:hover:hover {
    color: #66a54a !important;
  }
  .max\:txt-light-green\:hover:hover {
    color: #77b65b !important;
  }
  .max\:txt-lighter-green\:hover:hover {
    color: #c9e4bc !important;
  }
  .max\:txt-lightest-green\:hover:hover {
    color: #eff6ec !important;
  }
  .max\:txt-darker-yellow\:hover:hover {
    color: #483206 !important;
  }
  .max\:txt-dark-yellow\:hover:hover {
    color: #b5862a !important;
  }
  .max\:txt-yellow\:hover:hover {
    color: #f2b63f !important;
  }
  .max\:txt-light-yellow\:hover:hover {
    color: #f5cd78 !important;
  }
  .max\:txt-lighter-yellow\:hover:hover {
    color: #f8ecc5 !important;
  }
  .max\:txt-lightest-yellow\:hover:hover {
    color: #faf9e7 !important;
  }
  .max\:txt-beige\:hover:hover {
    color: #dbd3c9 !important;
  }
  .max\:txt-white\:hover:hover {
    color: #fff !important;
  }
  .max\:txt-white-opacity-02\:hover:hover {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:txt-white-opacity-03\:hover:hover {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:txt-white-opacity-05\:hover:hover {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:txt-white-opacity-07\:hover:hover {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:txt-lightest-grey\:hover:hover {
    color: #f3f3f3 !important;
  }
  .max\:txt-lighter-grey\:hover:hover {
    color: #ddd !important;
  }
  .max\:txt-light-grey\:hover:hover {
    color: #bbb !important;
  }
  .max\:txt-grey\:hover:hover {
    color: #8e8e8e !important;
  }
  .max\:txt-dark-grey\:hover:hover {
    color: #646464 !important;
  }
  .max\:txt-darker-grey\:hover:hover {
    color: #444 !important;
  }
  .max\:txt-darkest-grey\:hover:hover {
    color: #222 !important;
  }
  .max\:txt-black\:hover:hover {
    color: #000 !important;
  }
  .max\:txt-black-opacity-07\:hover:hover {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:txt-default\:hover:hover {
    color: #222 !important;
  }
  .max\:txt-headline\:hover:hover {
    color: #222 !important;
  }
  .max\:txt-link\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .max\:txt-link--hover\:hover:hover {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .max\:txt-transparent\:hover:hover {
    color: transparent !important;
  }
  .max\:txt-clear\:hover:hover {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .max\:txt-lightest\:hover:hover {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .max\:txt-lighter\:hover:hover {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .max\:txt-light\:hover:hover {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .max\:txt-normal\:hover:hover {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .max\:txt-dark\:hover:hover {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .max\:txt-darker\:hover:hover {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .max\:txt-darkest\:hover:hover {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .max\:txt-opaque\:hover:hover {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .max\:txt-red\:before:before {
    color: #f12b3b !important;
  }
  .max\:txt-dark-red\:before:before {
    color: #d2212f !important;
  }
  .max\:txt-dark-blue\:before:before {
    color: #0273aa !important;
  }
  .max\:txt-darker-blue\:before:before {
    color: #063b63 !important;
  }
  .max\:txt-blue\:before:before {
    color: #008fce !important;
  }
  .max\:txt-light-blue\:before:before {
    color: #4ba6ce !important;
  }
  .max\:txt-lighter-blue\:before:before {
    color: #c4e5f4 !important;
  }
  .max\:txt-lightest-blue\:before:before {
    color: #f1f7fa !important;
  }
  .max\:txt-turquoise\:before:before {
    color: #86c6bb !important;
  }
  .max\:txt-light-turquoise\:before:before {
    color: #a0d1c9 !important;
  }
  .max\:txt-lightest-turquoise\:before:before {
    color: #eff4f3 !important;
  }
  .max\:txt-darker-green\:before:before {
    color: #2f4f21 !important;
  }
  .max\:txt-dark-green\:before:before {
    color: #456f32 !important;
  }
  .max\:txt-green\:before:before {
    color: #66a54a !important;
  }
  .max\:txt-light-green\:before:before {
    color: #77b65b !important;
  }
  .max\:txt-lighter-green\:before:before {
    color: #c9e4bc !important;
  }
  .max\:txt-lightest-green\:before:before {
    color: #eff6ec !important;
  }
  .max\:txt-darker-yellow\:before:before {
    color: #483206 !important;
  }
  .max\:txt-dark-yellow\:before:before {
    color: #b5862a !important;
  }
  .max\:txt-yellow\:before:before {
    color: #f2b63f !important;
  }
  .max\:txt-light-yellow\:before:before {
    color: #f5cd78 !important;
  }
  .max\:txt-lighter-yellow\:before:before {
    color: #f8ecc5 !important;
  }
  .max\:txt-lightest-yellow\:before:before {
    color: #faf9e7 !important;
  }
  .max\:txt-beige\:before:before {
    color: #dbd3c9 !important;
  }
  .max\:txt-white\:before:before {
    color: #fff !important;
  }
  .max\:txt-white-opacity-02\:before:before {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:txt-white-opacity-03\:before:before {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:txt-white-opacity-05\:before:before {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:txt-white-opacity-07\:before:before {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:txt-lightest-grey\:before:before {
    color: #f3f3f3 !important;
  }
  .max\:txt-lighter-grey\:before:before {
    color: #ddd !important;
  }
  .max\:txt-light-grey\:before:before {
    color: #bbb !important;
  }
  .max\:txt-grey\:before:before {
    color: #8e8e8e !important;
  }
  .max\:txt-dark-grey\:before:before {
    color: #646464 !important;
  }
  .max\:txt-darker-grey\:before:before {
    color: #444 !important;
  }
  .max\:txt-darkest-grey\:before:before {
    color: #222 !important;
  }
  .max\:txt-black\:before:before {
    color: #000 !important;
  }
  .max\:txt-black-opacity-07\:before:before {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:txt-default\:before:before {
    color: #222 !important;
  }
  .max\:txt-headline\:before:before {
    color: #222 !important;
  }
  .max\:txt-link\:before:before {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .max\:txt-link--hover\:before:before {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .max\:txt-transparent\:before:before {
    color: transparent !important;
  }
  .max\:txt-clear\:before:before {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .max\:txt-lightest\:before:before {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .max\:txt-lighter\:before:before {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .max\:txt-light\:before:before {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .max\:txt-normal\:before:before {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .max\:txt-dark\:before:before {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .max\:txt-darker\:before:before {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .max\:txt-darkest\:before:before {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .max\:txt-opaque\:before:before {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
  .max\:txt-red\:after:after {
    color: #f12b3b !important;
  }
  .max\:txt-dark-red\:after:after {
    color: #d2212f !important;
  }
  .max\:txt-dark-blue\:after:after {
    color: #0273aa !important;
  }
  .max\:txt-darker-blue\:after:after {
    color: #063b63 !important;
  }
  .max\:txt-blue\:after:after {
    color: #008fce !important;
  }
  .max\:txt-light-blue\:after:after {
    color: #4ba6ce !important;
  }
  .max\:txt-lighter-blue\:after:after {
    color: #c4e5f4 !important;
  }
  .max\:txt-lightest-blue\:after:after {
    color: #f1f7fa !important;
  }
  .max\:txt-turquoise\:after:after {
    color: #86c6bb !important;
  }
  .max\:txt-light-turquoise\:after:after {
    color: #a0d1c9 !important;
  }
  .max\:txt-lightest-turquoise\:after:after {
    color: #eff4f3 !important;
  }
  .max\:txt-darker-green\:after:after {
    color: #2f4f21 !important;
  }
  .max\:txt-dark-green\:after:after {
    color: #456f32 !important;
  }
  .max\:txt-green\:after:after {
    color: #66a54a !important;
  }
  .max\:txt-light-green\:after:after {
    color: #77b65b !important;
  }
  .max\:txt-lighter-green\:after:after {
    color: #c9e4bc !important;
  }
  .max\:txt-lightest-green\:after:after {
    color: #eff6ec !important;
  }
  .max\:txt-darker-yellow\:after:after {
    color: #483206 !important;
  }
  .max\:txt-dark-yellow\:after:after {
    color: #b5862a !important;
  }
  .max\:txt-yellow\:after:after {
    color: #f2b63f !important;
  }
  .max\:txt-light-yellow\:after:after {
    color: #f5cd78 !important;
  }
  .max\:txt-lighter-yellow\:after:after {
    color: #f8ecc5 !important;
  }
  .max\:txt-lightest-yellow\:after:after {
    color: #faf9e7 !important;
  }
  .max\:txt-beige\:after:after {
    color: #dbd3c9 !important;
  }
  .max\:txt-white\:after:after {
    color: #fff !important;
  }
  .max\:txt-white-opacity-02\:after:after {
    color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:txt-white-opacity-03\:after:after {
    color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:txt-white-opacity-05\:after:after {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:txt-white-opacity-07\:after:after {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:txt-lightest-grey\:after:after {
    color: #f3f3f3 !important;
  }
  .max\:txt-lighter-grey\:after:after {
    color: #ddd !important;
  }
  .max\:txt-light-grey\:after:after {
    color: #bbb !important;
  }
  .max\:txt-grey\:after:after {
    color: #8e8e8e !important;
  }
  .max\:txt-dark-grey\:after:after {
    color: #646464 !important;
  }
  .max\:txt-darker-grey\:after:after {
    color: #444 !important;
  }
  .max\:txt-darkest-grey\:after:after {
    color: #222 !important;
  }
  .max\:txt-black\:after:after {
    color: #000 !important;
  }
  .max\:txt-black-opacity-07\:after:after {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:txt-default\:after:after {
    color: #222 !important;
  }
  .max\:txt-headline\:after:after {
    color: #222 !important;
  }
  .max\:txt-link\:after:after {
    color: #008fce !important;
    color: var(--txt-link) !important;
  }
  .max\:txt-link--hover\:after:after {
    color: #008fce !important;
    color: var(--txt-link--hover) !important;
  }
  .max\:txt-transparent\:after:after {
    color: transparent !important;
  }
  .max\:txt-clear\:after:after {
    color: #fff !important;
    color: var(--txt-clear) !important;
  }
  .max\:txt-lightest\:after:after {
    color: #f3f3f3 !important;
    color: var(--txt-lightest) !important;
  }
  .max\:txt-lighter\:after:after {
    color: #ddd !important;
    color: var(--txt-lighter) !important;
  }
  .max\:txt-light\:after:after {
    color: #bbb !important;
    color: var(--txt-light) !important;
  }
  .max\:txt-normal\:after:after {
    color: #8e8e8e !important;
    color: var(--txt-normal) !important;
  }
  .max\:txt-dark\:after:after {
    color: #646464 !important;
    color: var(--txt-dark) !important;
  }
  .max\:txt-darker\:after:after {
    color: #444 !important;
    color: var(--txt-darker) !important;
  }
  .max\:txt-darkest\:after:after {
    color: #222 !important;
    color: var(--txt-darkest) !important;
  }
  .max\:txt-opaque\:after:after {
    color: #000 !important;
    color: var(--txt-opaque) !important;
  }
}
.bg-red-90\% {
  background-color: #f12b3bE6 !important;
}

.bg-red-80\% {
  background-color: #f12b3bCD !important;
}

.bg-red-70\% {
  background-color: #f12b3bB3 !important;
}

.bg-red-60\% {
  background-color: #f12b3b99 !important;
}

.bg-red-50\% {
  background-color: #f12b3b80 !important;
}

.bg-red-40\% {
  background-color: #f12b3b66 !important;
}

.bg-red-30\% {
  background-color: #f12b3b4D !important;
}

.bg-red-20\% {
  background-color: #f12b3b33 !important;
}

.bg-red-10\% {
  background-color: #f12b3b1A !important;
}

.bg-red {
  background-color: #f12b3b !important;
}

.bg-dark-red {
  background-color: #d2212f !important;
}

.bg-dark-blue {
  background-color: #0273aa !important;
}

.bg-darker-blue {
  background-color: #063b63 !important;
}

.bg-blue {
  background-color: #008fce !important;
}

.bg-light-blue {
  background-color: #4ba6ce !important;
}

.bg-lighter-blue {
  background-color: #c4e5f4 !important;
}

.bg-lightest-blue {
  background-color: #f1f7fa !important;
}

.bg-turquoise {
  background-color: #86c6bb !important;
}

.bg-light-turquoise {
  background-color: #a0d1c9 !important;
}

.bg-lightest-turquoise {
  background-color: #eff4f3 !important;
}

.bg-darker-green {
  background-color: #2f4f21 !important;
}

.bg-dark-green {
  background-color: #456f32 !important;
}

.bg-green {
  background-color: #66a54a !important;
}

.bg-light-green {
  background-color: #77b65b !important;
}

.bg-lighter-green {
  background-color: #c9e4bc !important;
}

.bg-lightest-green {
  background-color: #eff6ec !important;
}

.bg-darker-yellow {
  background-color: #483206 !important;
}

.bg-dark-yellow {
  background-color: #b5862a !important;
}

.bg-yellow {
  background-color: #f2b63f !important;
}

.bg-light-yellow {
  background-color: #f5cd78 !important;
}

.bg-lighter-yellow {
  background-color: #f8ecc5 !important;
}

.bg-lightest-yellow {
  background-color: #faf9e7 !important;
}

.bg-beige {
  background-color: #dbd3c9 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-white-opacity-02 {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-opacity-03 {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.bg-white-opacity-05 {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-opacity-07 {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.bg-lightest-grey {
  background-color: #f3f3f3 !important;
}

.bg-lighter-grey {
  background-color: #ddd !important;
}

.bg-light-grey {
  background-color: #bbb !important;
}

.bg-grey {
  background-color: #8e8e8e !important;
}

.bg-dark-grey {
  background-color: #646464 !important;
}

.bg-darker-grey {
  background-color: #444 !important;
}

.bg-darkest-grey {
  background-color: #222 !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-black-opacity-07 {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-default {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

.bg-highlight {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

.bg-link--hover {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

.bg-clear {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

.bg-lightest {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

.bg-lighter {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

.bg-light {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

.bg-normal {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

.bg-dark {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

.bg-darker {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

.bg-darkest {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

.bg-opaque {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

a:hover .hover\:bg-red {
  background-color: #f12b3b !important;
}

a:hover .hover\:bg-dark-red {
  background-color: #d2212f !important;
}

a:hover .hover\:bg-dark-blue {
  background-color: #0273aa !important;
}

a:hover .hover\:bg-darker-blue {
  background-color: #063b63 !important;
}

a:hover .hover\:bg-blue {
  background-color: #008fce !important;
}

a:hover .hover\:bg-light-blue {
  background-color: #4ba6ce !important;
}

a:hover .hover\:bg-lighter-blue {
  background-color: #c4e5f4 !important;
}

a:hover .hover\:bg-lightest-blue {
  background-color: #f1f7fa !important;
}

a:hover .hover\:bg-turquoise {
  background-color: #86c6bb !important;
}

a:hover .hover\:bg-light-turquoise {
  background-color: #a0d1c9 !important;
}

a:hover .hover\:bg-lightest-turquoise {
  background-color: #eff4f3 !important;
}

a:hover .hover\:bg-darker-green {
  background-color: #2f4f21 !important;
}

a:hover .hover\:bg-dark-green {
  background-color: #456f32 !important;
}

a:hover .hover\:bg-green {
  background-color: #66a54a !important;
}

a:hover .hover\:bg-light-green {
  background-color: #77b65b !important;
}

a:hover .hover\:bg-lighter-green {
  background-color: #c9e4bc !important;
}

a:hover .hover\:bg-lightest-green {
  background-color: #eff6ec !important;
}

a:hover .hover\:bg-darker-yellow {
  background-color: #483206 !important;
}

a:hover .hover\:bg-dark-yellow {
  background-color: #b5862a !important;
}

a:hover .hover\:bg-yellow {
  background-color: #f2b63f !important;
}

a:hover .hover\:bg-light-yellow {
  background-color: #f5cd78 !important;
}

a:hover .hover\:bg-lighter-yellow {
  background-color: #f8ecc5 !important;
}

a:hover .hover\:bg-lightest-yellow {
  background-color: #faf9e7 !important;
}

a:hover .hover\:bg-beige {
  background-color: #dbd3c9 !important;
}

a:hover .hover\:bg-white {
  background-color: #fff !important;
}

a:hover .hover\:bg-white-opacity-02 {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

a:hover .hover\:bg-white-opacity-03 {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

a:hover .hover\:bg-white-opacity-05 {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

a:hover .hover\:bg-white-opacity-07 {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

a:hover .hover\:bg-lightest-grey {
  background-color: #f3f3f3 !important;
}

a:hover .hover\:bg-lighter-grey {
  background-color: #ddd !important;
}

a:hover .hover\:bg-light-grey {
  background-color: #bbb !important;
}

a:hover .hover\:bg-grey {
  background-color: #8e8e8e !important;
}

a:hover .hover\:bg-dark-grey {
  background-color: #646464 !important;
}

a:hover .hover\:bg-darker-grey {
  background-color: #444 !important;
}

a:hover .hover\:bg-darkest-grey {
  background-color: #222 !important;
}

a:hover .hover\:bg-black {
  background-color: #000 !important;
}

a:hover .hover\:bg-black-opacity-07 {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

a:hover .hover\:bg-transparent {
  background-color: transparent !important;
}

a:hover .hover\:bg-default {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

a:hover .hover\:bg-highlight {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

a:hover .hover\:bg-link--hover {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

a:hover .hover\:bg-clear {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

a:hover .hover\:bg-lightest {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

a:hover .hover\:bg-lighter {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

a:hover .hover\:bg-light {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

a:hover .hover\:bg-normal {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

a:hover .hover\:bg-dark {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

a:hover .hover\:bg-darker {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

a:hover .hover\:bg-darkest {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

a:hover .hover\:bg-opaque {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

button:hover .hover\:bg-red {
  background-color: #f12b3b !important;
}

button:hover .hover\:bg-dark-red {
  background-color: #d2212f !important;
}

button:hover .hover\:bg-dark-blue {
  background-color: #0273aa !important;
}

button:hover .hover\:bg-darker-blue {
  background-color: #063b63 !important;
}

button:hover .hover\:bg-blue {
  background-color: #008fce !important;
}

button:hover .hover\:bg-light-blue {
  background-color: #4ba6ce !important;
}

button:hover .hover\:bg-lighter-blue {
  background-color: #c4e5f4 !important;
}

button:hover .hover\:bg-lightest-blue {
  background-color: #f1f7fa !important;
}

button:hover .hover\:bg-turquoise {
  background-color: #86c6bb !important;
}

button:hover .hover\:bg-light-turquoise {
  background-color: #a0d1c9 !important;
}

button:hover .hover\:bg-lightest-turquoise {
  background-color: #eff4f3 !important;
}

button:hover .hover\:bg-darker-green {
  background-color: #2f4f21 !important;
}

button:hover .hover\:bg-dark-green {
  background-color: #456f32 !important;
}

button:hover .hover\:bg-green {
  background-color: #66a54a !important;
}

button:hover .hover\:bg-light-green {
  background-color: #77b65b !important;
}

button:hover .hover\:bg-lighter-green {
  background-color: #c9e4bc !important;
}

button:hover .hover\:bg-lightest-green {
  background-color: #eff6ec !important;
}

button:hover .hover\:bg-darker-yellow {
  background-color: #483206 !important;
}

button:hover .hover\:bg-dark-yellow {
  background-color: #b5862a !important;
}

button:hover .hover\:bg-yellow {
  background-color: #f2b63f !important;
}

button:hover .hover\:bg-light-yellow {
  background-color: #f5cd78 !important;
}

button:hover .hover\:bg-lighter-yellow {
  background-color: #f8ecc5 !important;
}

button:hover .hover\:bg-lightest-yellow {
  background-color: #faf9e7 !important;
}

button:hover .hover\:bg-beige {
  background-color: #dbd3c9 !important;
}

button:hover .hover\:bg-white {
  background-color: #fff !important;
}

button:hover .hover\:bg-white-opacity-02 {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

button:hover .hover\:bg-white-opacity-03 {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

button:hover .hover\:bg-white-opacity-05 {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

button:hover .hover\:bg-white-opacity-07 {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

button:hover .hover\:bg-lightest-grey {
  background-color: #f3f3f3 !important;
}

button:hover .hover\:bg-lighter-grey {
  background-color: #ddd !important;
}

button:hover .hover\:bg-light-grey {
  background-color: #bbb !important;
}

button:hover .hover\:bg-grey {
  background-color: #8e8e8e !important;
}

button:hover .hover\:bg-dark-grey {
  background-color: #646464 !important;
}

button:hover .hover\:bg-darker-grey {
  background-color: #444 !important;
}

button:hover .hover\:bg-darkest-grey {
  background-color: #222 !important;
}

button:hover .hover\:bg-black {
  background-color: #000 !important;
}

button:hover .hover\:bg-black-opacity-07 {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

button:hover .hover\:bg-transparent {
  background-color: transparent !important;
}

button:hover .hover\:bg-default {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

button:hover .hover\:bg-highlight {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

button:hover .hover\:bg-link--hover {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

button:hover .hover\:bg-clear {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

button:hover .hover\:bg-lightest {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

button:hover .hover\:bg-lighter {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

button:hover .hover\:bg-light {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

button:hover .hover\:bg-normal {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

button:hover .hover\:bg-dark {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

button:hover .hover\:bg-darker {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

button:hover .hover\:bg-darkest {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

button:hover .hover\:bg-opaque {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

.btn:hover .hover\:bg-red {
  background-color: #f12b3b !important;
}

.btn:hover .hover\:bg-dark-red {
  background-color: #d2212f !important;
}

.btn:hover .hover\:bg-dark-blue {
  background-color: #0273aa !important;
}

.btn:hover .hover\:bg-darker-blue {
  background-color: #063b63 !important;
}

.btn:hover .hover\:bg-blue {
  background-color: #008fce !important;
}

.btn:hover .hover\:bg-light-blue {
  background-color: #4ba6ce !important;
}

.btn:hover .hover\:bg-lighter-blue {
  background-color: #c4e5f4 !important;
}

.btn:hover .hover\:bg-lightest-blue {
  background-color: #f1f7fa !important;
}

.btn:hover .hover\:bg-turquoise {
  background-color: #86c6bb !important;
}

.btn:hover .hover\:bg-light-turquoise {
  background-color: #a0d1c9 !important;
}

.btn:hover .hover\:bg-lightest-turquoise {
  background-color: #eff4f3 !important;
}

.btn:hover .hover\:bg-darker-green {
  background-color: #2f4f21 !important;
}

.btn:hover .hover\:bg-dark-green {
  background-color: #456f32 !important;
}

.btn:hover .hover\:bg-green {
  background-color: #66a54a !important;
}

.btn:hover .hover\:bg-light-green {
  background-color: #77b65b !important;
}

.btn:hover .hover\:bg-lighter-green {
  background-color: #c9e4bc !important;
}

.btn:hover .hover\:bg-lightest-green {
  background-color: #eff6ec !important;
}

.btn:hover .hover\:bg-darker-yellow {
  background-color: #483206 !important;
}

.btn:hover .hover\:bg-dark-yellow {
  background-color: #b5862a !important;
}

.btn:hover .hover\:bg-yellow {
  background-color: #f2b63f !important;
}

.btn:hover .hover\:bg-light-yellow {
  background-color: #f5cd78 !important;
}

.btn:hover .hover\:bg-lighter-yellow {
  background-color: #f8ecc5 !important;
}

.btn:hover .hover\:bg-lightest-yellow {
  background-color: #faf9e7 !important;
}

.btn:hover .hover\:bg-beige {
  background-color: #dbd3c9 !important;
}

.btn:hover .hover\:bg-white {
  background-color: #fff !important;
}

.btn:hover .hover\:bg-white-opacity-02 {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.btn:hover .hover\:bg-white-opacity-03 {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.btn:hover .hover\:bg-white-opacity-05 {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.btn:hover .hover\:bg-white-opacity-07 {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.btn:hover .hover\:bg-lightest-grey {
  background-color: #f3f3f3 !important;
}

.btn:hover .hover\:bg-lighter-grey {
  background-color: #ddd !important;
}

.btn:hover .hover\:bg-light-grey {
  background-color: #bbb !important;
}

.btn:hover .hover\:bg-grey {
  background-color: #8e8e8e !important;
}

.btn:hover .hover\:bg-dark-grey {
  background-color: #646464 !important;
}

.btn:hover .hover\:bg-darker-grey {
  background-color: #444 !important;
}

.btn:hover .hover\:bg-darkest-grey {
  background-color: #222 !important;
}

.btn:hover .hover\:bg-black {
  background-color: #000 !important;
}

.btn:hover .hover\:bg-black-opacity-07 {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.btn:hover .hover\:bg-transparent {
  background-color: transparent !important;
}

.btn:hover .hover\:bg-default {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

.btn:hover .hover\:bg-highlight {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

.btn:hover .hover\:bg-link--hover {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

.btn:hover .hover\:bg-clear {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

.btn:hover .hover\:bg-lightest {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

.btn:hover .hover\:bg-lighter {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

.btn:hover .hover\:bg-light {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

.btn:hover .hover\:bg-normal {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

.btn:hover .hover\:bg-dark {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

.btn:hover .hover\:bg-darker {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

.btn:hover .hover\:bg-darkest {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

.btn:hover .hover\:bg-opaque {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

input:hover .hover\:bg-red {
  background-color: #f12b3b !important;
}

input:hover .hover\:bg-dark-red {
  background-color: #d2212f !important;
}

input:hover .hover\:bg-dark-blue {
  background-color: #0273aa !important;
}

input:hover .hover\:bg-darker-blue {
  background-color: #063b63 !important;
}

input:hover .hover\:bg-blue {
  background-color: #008fce !important;
}

input:hover .hover\:bg-light-blue {
  background-color: #4ba6ce !important;
}

input:hover .hover\:bg-lighter-blue {
  background-color: #c4e5f4 !important;
}

input:hover .hover\:bg-lightest-blue {
  background-color: #f1f7fa !important;
}

input:hover .hover\:bg-turquoise {
  background-color: #86c6bb !important;
}

input:hover .hover\:bg-light-turquoise {
  background-color: #a0d1c9 !important;
}

input:hover .hover\:bg-lightest-turquoise {
  background-color: #eff4f3 !important;
}

input:hover .hover\:bg-darker-green {
  background-color: #2f4f21 !important;
}

input:hover .hover\:bg-dark-green {
  background-color: #456f32 !important;
}

input:hover .hover\:bg-green {
  background-color: #66a54a !important;
}

input:hover .hover\:bg-light-green {
  background-color: #77b65b !important;
}

input:hover .hover\:bg-lighter-green {
  background-color: #c9e4bc !important;
}

input:hover .hover\:bg-lightest-green {
  background-color: #eff6ec !important;
}

input:hover .hover\:bg-darker-yellow {
  background-color: #483206 !important;
}

input:hover .hover\:bg-dark-yellow {
  background-color: #b5862a !important;
}

input:hover .hover\:bg-yellow {
  background-color: #f2b63f !important;
}

input:hover .hover\:bg-light-yellow {
  background-color: #f5cd78 !important;
}

input:hover .hover\:bg-lighter-yellow {
  background-color: #f8ecc5 !important;
}

input:hover .hover\:bg-lightest-yellow {
  background-color: #faf9e7 !important;
}

input:hover .hover\:bg-beige {
  background-color: #dbd3c9 !important;
}

input:hover .hover\:bg-white {
  background-color: #fff !important;
}

input:hover .hover\:bg-white-opacity-02 {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

input:hover .hover\:bg-white-opacity-03 {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

input:hover .hover\:bg-white-opacity-05 {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

input:hover .hover\:bg-white-opacity-07 {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

input:hover .hover\:bg-lightest-grey {
  background-color: #f3f3f3 !important;
}

input:hover .hover\:bg-lighter-grey {
  background-color: #ddd !important;
}

input:hover .hover\:bg-light-grey {
  background-color: #bbb !important;
}

input:hover .hover\:bg-grey {
  background-color: #8e8e8e !important;
}

input:hover .hover\:bg-dark-grey {
  background-color: #646464 !important;
}

input:hover .hover\:bg-darker-grey {
  background-color: #444 !important;
}

input:hover .hover\:bg-darkest-grey {
  background-color: #222 !important;
}

input:hover .hover\:bg-black {
  background-color: #000 !important;
}

input:hover .hover\:bg-black-opacity-07 {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

input:hover .hover\:bg-transparent {
  background-color: transparent !important;
}

input:hover .hover\:bg-default {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

input:hover .hover\:bg-highlight {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

input:hover .hover\:bg-link--hover {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

input:hover .hover\:bg-clear {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

input:hover .hover\:bg-lightest {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

input:hover .hover\:bg-lighter {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

input:hover .hover\:bg-light {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

input:hover .hover\:bg-normal {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

input:hover .hover\:bg-dark {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

input:hover .hover\:bg-darker {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

input:hover .hover\:bg-darkest {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

input:hover .hover\:bg-opaque {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

.bg-red\:hover:hover {
  background-color: #f12b3b !important;
}

.bg-dark-red\:hover:hover {
  background-color: #d2212f !important;
}

.bg-dark-blue\:hover:hover {
  background-color: #0273aa !important;
}

.bg-darker-blue\:hover:hover {
  background-color: #063b63 !important;
}

.bg-blue\:hover:hover {
  background-color: #008fce !important;
}

.bg-light-blue\:hover:hover {
  background-color: #4ba6ce !important;
}

.bg-lighter-blue\:hover:hover {
  background-color: #c4e5f4 !important;
}

.bg-lightest-blue\:hover:hover {
  background-color: #f1f7fa !important;
}

.bg-turquoise\:hover:hover {
  background-color: #86c6bb !important;
}

.bg-light-turquoise\:hover:hover {
  background-color: #a0d1c9 !important;
}

.bg-lightest-turquoise\:hover:hover {
  background-color: #eff4f3 !important;
}

.bg-darker-green\:hover:hover {
  background-color: #2f4f21 !important;
}

.bg-dark-green\:hover:hover {
  background-color: #456f32 !important;
}

.bg-green\:hover:hover {
  background-color: #66a54a !important;
}

.bg-light-green\:hover:hover {
  background-color: #77b65b !important;
}

.bg-lighter-green\:hover:hover {
  background-color: #c9e4bc !important;
}

.bg-lightest-green\:hover:hover {
  background-color: #eff6ec !important;
}

.bg-darker-yellow\:hover:hover {
  background-color: #483206 !important;
}

.bg-dark-yellow\:hover:hover {
  background-color: #b5862a !important;
}

.bg-yellow\:hover:hover {
  background-color: #f2b63f !important;
}

.bg-light-yellow\:hover:hover {
  background-color: #f5cd78 !important;
}

.bg-lighter-yellow\:hover:hover {
  background-color: #f8ecc5 !important;
}

.bg-lightest-yellow\:hover:hover {
  background-color: #faf9e7 !important;
}

.bg-beige\:hover:hover {
  background-color: #dbd3c9 !important;
}

.bg-white\:hover:hover {
  background-color: #fff !important;
}

.bg-white-opacity-02\:hover:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-opacity-03\:hover:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.bg-white-opacity-05\:hover:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-opacity-07\:hover:hover {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.bg-lightest-grey\:hover:hover {
  background-color: #f3f3f3 !important;
}

.bg-lighter-grey\:hover:hover {
  background-color: #ddd !important;
}

.bg-light-grey\:hover:hover {
  background-color: #bbb !important;
}

.bg-grey\:hover:hover {
  background-color: #8e8e8e !important;
}

.bg-dark-grey\:hover:hover {
  background-color: #646464 !important;
}

.bg-darker-grey\:hover:hover {
  background-color: #444 !important;
}

.bg-darkest-grey\:hover:hover {
  background-color: #222 !important;
}

.bg-black\:hover:hover {
  background-color: #000 !important;
}

.bg-black-opacity-07\:hover:hover {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.bg-transparent\:hover:hover {
  background-color: transparent !important;
}

.bg-default\:hover:hover {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

.bg-highlight\:hover:hover {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

.bg-link--hover\:hover:hover {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

.bg-clear\:hover:hover {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

.bg-lightest\:hover:hover {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

.bg-lighter\:hover:hover {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

.bg-light\:hover:hover {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

.bg-normal\:hover:hover {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

.bg-dark\:hover:hover {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

.bg-darker\:hover:hover {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

.bg-darkest\:hover:hover {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

.bg-opaque\:hover:hover {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

.bg-red\:hover\:before:hover:before {
  background-color: #f12b3b !important;
}

.bg-dark-red\:hover\:before:hover:before {
  background-color: #d2212f !important;
}

.bg-dark-blue\:hover\:before:hover:before {
  background-color: #0273aa !important;
}

.bg-darker-blue\:hover\:before:hover:before {
  background-color: #063b63 !important;
}

.bg-blue\:hover\:before:hover:before {
  background-color: #008fce !important;
}

.bg-light-blue\:hover\:before:hover:before {
  background-color: #4ba6ce !important;
}

.bg-lighter-blue\:hover\:before:hover:before {
  background-color: #c4e5f4 !important;
}

.bg-lightest-blue\:hover\:before:hover:before {
  background-color: #f1f7fa !important;
}

.bg-turquoise\:hover\:before:hover:before {
  background-color: #86c6bb !important;
}

.bg-light-turquoise\:hover\:before:hover:before {
  background-color: #a0d1c9 !important;
}

.bg-lightest-turquoise\:hover\:before:hover:before {
  background-color: #eff4f3 !important;
}

.bg-darker-green\:hover\:before:hover:before {
  background-color: #2f4f21 !important;
}

.bg-dark-green\:hover\:before:hover:before {
  background-color: #456f32 !important;
}

.bg-green\:hover\:before:hover:before {
  background-color: #66a54a !important;
}

.bg-light-green\:hover\:before:hover:before {
  background-color: #77b65b !important;
}

.bg-lighter-green\:hover\:before:hover:before {
  background-color: #c9e4bc !important;
}

.bg-lightest-green\:hover\:before:hover:before {
  background-color: #eff6ec !important;
}

.bg-darker-yellow\:hover\:before:hover:before {
  background-color: #483206 !important;
}

.bg-dark-yellow\:hover\:before:hover:before {
  background-color: #b5862a !important;
}

.bg-yellow\:hover\:before:hover:before {
  background-color: #f2b63f !important;
}

.bg-light-yellow\:hover\:before:hover:before {
  background-color: #f5cd78 !important;
}

.bg-lighter-yellow\:hover\:before:hover:before {
  background-color: #f8ecc5 !important;
}

.bg-lightest-yellow\:hover\:before:hover:before {
  background-color: #faf9e7 !important;
}

.bg-beige\:hover\:before:hover:before {
  background-color: #dbd3c9 !important;
}

.bg-white\:hover\:before:hover:before {
  background-color: #fff !important;
}

.bg-white-opacity-02\:hover\:before:hover:before {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-opacity-03\:hover\:before:hover:before {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.bg-white-opacity-05\:hover\:before:hover:before {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-opacity-07\:hover\:before:hover:before {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.bg-lightest-grey\:hover\:before:hover:before {
  background-color: #f3f3f3 !important;
}

.bg-lighter-grey\:hover\:before:hover:before {
  background-color: #ddd !important;
}

.bg-light-grey\:hover\:before:hover:before {
  background-color: #bbb !important;
}

.bg-grey\:hover\:before:hover:before {
  background-color: #8e8e8e !important;
}

.bg-dark-grey\:hover\:before:hover:before {
  background-color: #646464 !important;
}

.bg-darker-grey\:hover\:before:hover:before {
  background-color: #444 !important;
}

.bg-darkest-grey\:hover\:before:hover:before {
  background-color: #222 !important;
}

.bg-black\:hover\:before:hover:before {
  background-color: #000 !important;
}

.bg-black-opacity-07\:hover\:before:hover:before {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.bg-transparent\:hover\:before:hover:before {
  background-color: transparent !important;
}

.bg-default\:hover\:before:hover:before {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

.bg-highlight\:hover\:before:hover:before {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

.bg-link--hover\:hover\:before:hover:before {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

.bg-clear\:hover\:before:hover:before {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

.bg-lightest\:hover\:before:hover:before {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

.bg-lighter\:hover\:before:hover:before {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

.bg-light\:hover\:before:hover:before {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

.bg-normal\:hover\:before:hover:before {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

.bg-dark\:hover\:before:hover:before {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

.bg-darker\:hover\:before:hover:before {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

.bg-darkest\:hover\:before:hover:before {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

.bg-opaque\:hover\:before:hover:before {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

.bg-red\:hover\:after:hover:after {
  background-color: #f12b3b !important;
}

.bg-dark-red\:hover\:after:hover:after {
  background-color: #d2212f !important;
}

.bg-dark-blue\:hover\:after:hover:after {
  background-color: #0273aa !important;
}

.bg-darker-blue\:hover\:after:hover:after {
  background-color: #063b63 !important;
}

.bg-blue\:hover\:after:hover:after {
  background-color: #008fce !important;
}

.bg-light-blue\:hover\:after:hover:after {
  background-color: #4ba6ce !important;
}

.bg-lighter-blue\:hover\:after:hover:after {
  background-color: #c4e5f4 !important;
}

.bg-lightest-blue\:hover\:after:hover:after {
  background-color: #f1f7fa !important;
}

.bg-turquoise\:hover\:after:hover:after {
  background-color: #86c6bb !important;
}

.bg-light-turquoise\:hover\:after:hover:after {
  background-color: #a0d1c9 !important;
}

.bg-lightest-turquoise\:hover\:after:hover:after {
  background-color: #eff4f3 !important;
}

.bg-darker-green\:hover\:after:hover:after {
  background-color: #2f4f21 !important;
}

.bg-dark-green\:hover\:after:hover:after {
  background-color: #456f32 !important;
}

.bg-green\:hover\:after:hover:after {
  background-color: #66a54a !important;
}

.bg-light-green\:hover\:after:hover:after {
  background-color: #77b65b !important;
}

.bg-lighter-green\:hover\:after:hover:after {
  background-color: #c9e4bc !important;
}

.bg-lightest-green\:hover\:after:hover:after {
  background-color: #eff6ec !important;
}

.bg-darker-yellow\:hover\:after:hover:after {
  background-color: #483206 !important;
}

.bg-dark-yellow\:hover\:after:hover:after {
  background-color: #b5862a !important;
}

.bg-yellow\:hover\:after:hover:after {
  background-color: #f2b63f !important;
}

.bg-light-yellow\:hover\:after:hover:after {
  background-color: #f5cd78 !important;
}

.bg-lighter-yellow\:hover\:after:hover:after {
  background-color: #f8ecc5 !important;
}

.bg-lightest-yellow\:hover\:after:hover:after {
  background-color: #faf9e7 !important;
}

.bg-beige\:hover\:after:hover:after {
  background-color: #dbd3c9 !important;
}

.bg-white\:hover\:after:hover:after {
  background-color: #fff !important;
}

.bg-white-opacity-02\:hover\:after:hover:after {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-opacity-03\:hover\:after:hover:after {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.bg-white-opacity-05\:hover\:after:hover:after {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-opacity-07\:hover\:after:hover:after {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.bg-lightest-grey\:hover\:after:hover:after {
  background-color: #f3f3f3 !important;
}

.bg-lighter-grey\:hover\:after:hover:after {
  background-color: #ddd !important;
}

.bg-light-grey\:hover\:after:hover:after {
  background-color: #bbb !important;
}

.bg-grey\:hover\:after:hover:after {
  background-color: #8e8e8e !important;
}

.bg-dark-grey\:hover\:after:hover:after {
  background-color: #646464 !important;
}

.bg-darker-grey\:hover\:after:hover:after {
  background-color: #444 !important;
}

.bg-darkest-grey\:hover\:after:hover:after {
  background-color: #222 !important;
}

.bg-black\:hover\:after:hover:after {
  background-color: #000 !important;
}

.bg-black-opacity-07\:hover\:after:hover:after {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.bg-transparent\:hover\:after:hover:after {
  background-color: transparent !important;
}

.bg-default\:hover\:after:hover:after {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

.bg-highlight\:hover\:after:hover:after {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

.bg-link--hover\:hover\:after:hover:after {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

.bg-clear\:hover\:after:hover:after {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

.bg-lightest\:hover\:after:hover:after {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

.bg-lighter\:hover\:after:hover:after {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

.bg-light\:hover\:after:hover:after {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

.bg-normal\:hover\:after:hover:after {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

.bg-dark\:hover\:after:hover:after {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

.bg-darker\:hover\:after:hover:after {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

.bg-darkest\:hover\:after:hover:after {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

.bg-opaque\:hover\:after:hover:after {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

.bg-red\:before:before {
  background-color: #f12b3b !important;
}

.bg-dark-red\:before:before {
  background-color: #d2212f !important;
}

.bg-dark-blue\:before:before {
  background-color: #0273aa !important;
}

.bg-darker-blue\:before:before {
  background-color: #063b63 !important;
}

.bg-blue\:before:before {
  background-color: #008fce !important;
}

.bg-light-blue\:before:before {
  background-color: #4ba6ce !important;
}

.bg-lighter-blue\:before:before {
  background-color: #c4e5f4 !important;
}

.bg-lightest-blue\:before:before {
  background-color: #f1f7fa !important;
}

.bg-turquoise\:before:before {
  background-color: #86c6bb !important;
}

.bg-light-turquoise\:before:before {
  background-color: #a0d1c9 !important;
}

.bg-lightest-turquoise\:before:before {
  background-color: #eff4f3 !important;
}

.bg-darker-green\:before:before {
  background-color: #2f4f21 !important;
}

.bg-dark-green\:before:before {
  background-color: #456f32 !important;
}

.bg-green\:before:before {
  background-color: #66a54a !important;
}

.bg-light-green\:before:before {
  background-color: #77b65b !important;
}

.bg-lighter-green\:before:before {
  background-color: #c9e4bc !important;
}

.bg-lightest-green\:before:before {
  background-color: #eff6ec !important;
}

.bg-darker-yellow\:before:before {
  background-color: #483206 !important;
}

.bg-dark-yellow\:before:before {
  background-color: #b5862a !important;
}

.bg-yellow\:before:before {
  background-color: #f2b63f !important;
}

.bg-light-yellow\:before:before {
  background-color: #f5cd78 !important;
}

.bg-lighter-yellow\:before:before {
  background-color: #f8ecc5 !important;
}

.bg-lightest-yellow\:before:before {
  background-color: #faf9e7 !important;
}

.bg-beige\:before:before {
  background-color: #dbd3c9 !important;
}

.bg-white\:before:before {
  background-color: #fff !important;
}

.bg-white-opacity-02\:before:before {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-opacity-03\:before:before {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.bg-white-opacity-05\:before:before {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-opacity-07\:before:before {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.bg-lightest-grey\:before:before {
  background-color: #f3f3f3 !important;
}

.bg-lighter-grey\:before:before {
  background-color: #ddd !important;
}

.bg-light-grey\:before:before {
  background-color: #bbb !important;
}

.bg-grey\:before:before {
  background-color: #8e8e8e !important;
}

.bg-dark-grey\:before:before {
  background-color: #646464 !important;
}

.bg-darker-grey\:before:before {
  background-color: #444 !important;
}

.bg-darkest-grey\:before:before {
  background-color: #222 !important;
}

.bg-black\:before:before {
  background-color: #000 !important;
}

.bg-black-opacity-07\:before:before {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.bg-transparent\:before:before {
  background-color: transparent !important;
}

.bg-default\:before:before {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

.bg-highlight\:before:before {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

.bg-link--hover\:before:before {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

.bg-clear\:before:before {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

.bg-lightest\:before:before {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

.bg-lighter\:before:before {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

.bg-light\:before:before {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

.bg-normal\:before:before {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

.bg-dark\:before:before {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

.bg-darker\:before:before {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

.bg-darkest\:before:before {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

.bg-opaque\:before:before {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

.bg-red\:after:after {
  background-color: #f12b3b !important;
}

.bg-dark-red\:after:after {
  background-color: #d2212f !important;
}

.bg-dark-blue\:after:after {
  background-color: #0273aa !important;
}

.bg-darker-blue\:after:after {
  background-color: #063b63 !important;
}

.bg-blue\:after:after {
  background-color: #008fce !important;
}

.bg-light-blue\:after:after {
  background-color: #4ba6ce !important;
}

.bg-lighter-blue\:after:after {
  background-color: #c4e5f4 !important;
}

.bg-lightest-blue\:after:after {
  background-color: #f1f7fa !important;
}

.bg-turquoise\:after:after {
  background-color: #86c6bb !important;
}

.bg-light-turquoise\:after:after {
  background-color: #a0d1c9 !important;
}

.bg-lightest-turquoise\:after:after {
  background-color: #eff4f3 !important;
}

.bg-darker-green\:after:after {
  background-color: #2f4f21 !important;
}

.bg-dark-green\:after:after {
  background-color: #456f32 !important;
}

.bg-green\:after:after {
  background-color: #66a54a !important;
}

.bg-light-green\:after:after {
  background-color: #77b65b !important;
}

.bg-lighter-green\:after:after {
  background-color: #c9e4bc !important;
}

.bg-lightest-green\:after:after {
  background-color: #eff6ec !important;
}

.bg-darker-yellow\:after:after {
  background-color: #483206 !important;
}

.bg-dark-yellow\:after:after {
  background-color: #b5862a !important;
}

.bg-yellow\:after:after {
  background-color: #f2b63f !important;
}

.bg-light-yellow\:after:after {
  background-color: #f5cd78 !important;
}

.bg-lighter-yellow\:after:after {
  background-color: #f8ecc5 !important;
}

.bg-lightest-yellow\:after:after {
  background-color: #faf9e7 !important;
}

.bg-beige\:after:after {
  background-color: #dbd3c9 !important;
}

.bg-white\:after:after {
  background-color: #fff !important;
}

.bg-white-opacity-02\:after:after {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-opacity-03\:after:after {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.bg-white-opacity-05\:after:after {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-opacity-07\:after:after {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.bg-lightest-grey\:after:after {
  background-color: #f3f3f3 !important;
}

.bg-lighter-grey\:after:after {
  background-color: #ddd !important;
}

.bg-light-grey\:after:after {
  background-color: #bbb !important;
}

.bg-grey\:after:after {
  background-color: #8e8e8e !important;
}

.bg-dark-grey\:after:after {
  background-color: #646464 !important;
}

.bg-darker-grey\:after:after {
  background-color: #444 !important;
}

.bg-darkest-grey\:after:after {
  background-color: #222 !important;
}

.bg-black\:after:after {
  background-color: #000 !important;
}

.bg-black-opacity-07\:after:after {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.bg-transparent\:after:after {
  background-color: transparent !important;
}

.bg-default\:after:after {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

.bg-highlight\:after:after {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

.bg-link--hover\:after:after {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

.bg-clear\:after:after {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

.bg-lightest\:after:after {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

.bg-lighter\:after:after {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

.bg-light\:after:after {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

.bg-normal\:after:after {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

.bg-dark\:after:after {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

.bg-darker\:after:after {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

.bg-darkest\:after:after {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

.bg-opaque\:after:after {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

.bg-red\:iframe iframe {
  background-color: #f12b3b !important;
}

.bg-dark-red\:iframe iframe {
  background-color: #d2212f !important;
}

.bg-dark-blue\:iframe iframe {
  background-color: #0273aa !important;
}

.bg-darker-blue\:iframe iframe {
  background-color: #063b63 !important;
}

.bg-blue\:iframe iframe {
  background-color: #008fce !important;
}

.bg-light-blue\:iframe iframe {
  background-color: #4ba6ce !important;
}

.bg-lighter-blue\:iframe iframe {
  background-color: #c4e5f4 !important;
}

.bg-lightest-blue\:iframe iframe {
  background-color: #f1f7fa !important;
}

.bg-turquoise\:iframe iframe {
  background-color: #86c6bb !important;
}

.bg-light-turquoise\:iframe iframe {
  background-color: #a0d1c9 !important;
}

.bg-lightest-turquoise\:iframe iframe {
  background-color: #eff4f3 !important;
}

.bg-darker-green\:iframe iframe {
  background-color: #2f4f21 !important;
}

.bg-dark-green\:iframe iframe {
  background-color: #456f32 !important;
}

.bg-green\:iframe iframe {
  background-color: #66a54a !important;
}

.bg-light-green\:iframe iframe {
  background-color: #77b65b !important;
}

.bg-lighter-green\:iframe iframe {
  background-color: #c9e4bc !important;
}

.bg-lightest-green\:iframe iframe {
  background-color: #eff6ec !important;
}

.bg-darker-yellow\:iframe iframe {
  background-color: #483206 !important;
}

.bg-dark-yellow\:iframe iframe {
  background-color: #b5862a !important;
}

.bg-yellow\:iframe iframe {
  background-color: #f2b63f !important;
}

.bg-light-yellow\:iframe iframe {
  background-color: #f5cd78 !important;
}

.bg-lighter-yellow\:iframe iframe {
  background-color: #f8ecc5 !important;
}

.bg-lightest-yellow\:iframe iframe {
  background-color: #faf9e7 !important;
}

.bg-beige\:iframe iframe {
  background-color: #dbd3c9 !important;
}

.bg-white\:iframe iframe {
  background-color: #fff !important;
}

.bg-white-opacity-02\:iframe iframe {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-opacity-03\:iframe iframe {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.bg-white-opacity-05\:iframe iframe {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-opacity-07\:iframe iframe {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.bg-lightest-grey\:iframe iframe {
  background-color: #f3f3f3 !important;
}

.bg-lighter-grey\:iframe iframe {
  background-color: #ddd !important;
}

.bg-light-grey\:iframe iframe {
  background-color: #bbb !important;
}

.bg-grey\:iframe iframe {
  background-color: #8e8e8e !important;
}

.bg-dark-grey\:iframe iframe {
  background-color: #646464 !important;
}

.bg-darker-grey\:iframe iframe {
  background-color: #444 !important;
}

.bg-darkest-grey\:iframe iframe {
  background-color: #222 !important;
}

.bg-black\:iframe iframe {
  background-color: #000 !important;
}

.bg-black-opacity-07\:iframe iframe {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.bg-transparent\:iframe iframe {
  background-color: transparent !important;
}

.bg-default\:iframe iframe {
  background-color: #fff !important;
  background-color: var(--bg-default) !important;
  fill: var(--bg-default) !important;
}

.bg-highlight\:iframe iframe {
  background-color: #f12b3b !important;
  background-color: var(--bg-highlight) !important;
  fill: var(--bg-highlight) !important;
}

.bg-link--hover\:iframe iframe {
  background-color: #008fce !important;
  background-color: var(--bg-link--hover) !important;
  fill: var(--bg-link--hover) !important;
}

.bg-clear\:iframe iframe {
  background-color: #fff !important;
  background-color: var(--bg-clear) !important;
  fill: var(--bg-clear) !important;
}

.bg-lightest\:iframe iframe {
  background-color: #f3f3f3 !important;
  background-color: var(--bg-lightest) !important;
  fill: var(--bg-lightest) !important;
}

.bg-lighter\:iframe iframe {
  background-color: #ddd !important;
  background-color: var(--bg-lighter) !important;
  fill: var(--bg-lighter) !important;
}

.bg-light\:iframe iframe {
  background-color: #bbb !important;
  background-color: var(--bg-light) !important;
  fill: var(--bg-light) !important;
}

.bg-normal\:iframe iframe {
  background-color: #8e8e8e !important;
  background-color: var(--bg-normal) !important;
  fill: var(--bg-normal) !important;
}

.bg-dark\:iframe iframe {
  background-color: #646464 !important;
  background-color: var(--bg-dark) !important;
  fill: var(--bg-dark) !important;
}

.bg-darker\:iframe iframe {
  background-color: #444 !important;
  background-color: var(--bg-darker) !important;
  fill: var(--bg-darker) !important;
}

.bg-darkest\:iframe iframe {
  background-color: #222 !important;
  background-color: var(--bg-darkest) !important;
  fill: var(--bg-darkest) !important;
}

.bg-opaque\:iframe iframe {
  background-color: #000 !important;
  background-color: var(--bg-opaque) !important;
  fill: var(--bg-opaque) !important;
}

@media screen and (min-width: 360px) {
  .xs\:bg-red {
    background-color: #f12b3b !important;
  }
  .xs\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .xs\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .xs\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .xs\:bg-blue {
    background-color: #008fce !important;
  }
  .xs\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .xs\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .xs\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .xs\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .xs\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .xs\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .xs\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .xs\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .xs\:bg-green {
    background-color: #66a54a !important;
  }
  .xs\:bg-light-green {
    background-color: #77b65b !important;
  }
  .xs\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .xs\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .xs\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .xs\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .xs\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .xs\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .xs\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .xs\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .xs\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .xs\:bg-white {
    background-color: #fff !important;
  }
  .xs\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .xs\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .xs\:bg-light-grey {
    background-color: #bbb !important;
  }
  .xs\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .xs\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .xs\:bg-darker-grey {
    background-color: #444 !important;
  }
  .xs\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .xs\:bg-black {
    background-color: #000 !important;
  }
  .xs\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:bg-transparent {
    background-color: transparent !important;
  }
  .xs\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xs\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xs\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xs\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xs\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xs\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xs\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xs\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xs\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xs\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xs\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xs\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  a:hover .xs\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  a:hover .xs\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  a:hover .xs\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  a:hover .xs\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  a:hover .xs\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  a:hover .xs\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  a:hover .xs\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  a:hover .xs\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  a:hover .xs\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  a:hover .xs\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  a:hover .xs\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  a:hover .xs\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  a:hover .xs\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  a:hover .xs\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  a:hover .xs\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  a:hover .xs\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  a:hover .xs\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  a:hover .xs\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  a:hover .xs\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  a:hover .xs\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  a:hover .xs\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  a:hover .xs\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  a:hover .xs\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  a:hover .xs\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  a:hover .xs\:hover\:bg-white {
    background-color: #fff !important;
  }
  a:hover .xs\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .xs\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .xs\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .xs\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .xs\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  a:hover .xs\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  a:hover .xs\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  a:hover .xs\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  a:hover .xs\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  a:hover .xs\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  a:hover .xs\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  a:hover .xs\:hover\:bg-black {
    background-color: #000 !important;
  }
  a:hover .xs\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .xs\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  a:hover .xs\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  a:hover .xs\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  a:hover .xs\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  a:hover .xs\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  a:hover .xs\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  a:hover .xs\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  a:hover .xs\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  a:hover .xs\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  a:hover .xs\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  a:hover .xs\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  a:hover .xs\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  a:hover .xs\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  button:hover .xs\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  button:hover .xs\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  button:hover .xs\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  button:hover .xs\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  button:hover .xs\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  button:hover .xs\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  button:hover .xs\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  button:hover .xs\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  button:hover .xs\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  button:hover .xs\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  button:hover .xs\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  button:hover .xs\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  button:hover .xs\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  button:hover .xs\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  button:hover .xs\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  button:hover .xs\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  button:hover .xs\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  button:hover .xs\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  button:hover .xs\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  button:hover .xs\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  button:hover .xs\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  button:hover .xs\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  button:hover .xs\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  button:hover .xs\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  button:hover .xs\:hover\:bg-white {
    background-color: #fff !important;
  }
  button:hover .xs\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .xs\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .xs\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .xs\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .xs\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  button:hover .xs\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  button:hover .xs\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  button:hover .xs\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  button:hover .xs\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  button:hover .xs\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  button:hover .xs\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  button:hover .xs\:hover\:bg-black {
    background-color: #000 !important;
  }
  button:hover .xs\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .xs\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  button:hover .xs\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  button:hover .xs\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  button:hover .xs\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  button:hover .xs\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  button:hover .xs\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  button:hover .xs\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  button:hover .xs\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  button:hover .xs\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  button:hover .xs\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  button:hover .xs\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  button:hover .xs\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  button:hover .xs\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .btn:hover .xs\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  .btn:hover .xs\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .btn:hover .xs\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .btn:hover .xs\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .btn:hover .xs\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  .btn:hover .xs\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .btn:hover .xs\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .btn:hover .xs\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .btn:hover .xs\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .btn:hover .xs\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .btn:hover .xs\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .btn:hover .xs\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .btn:hover .xs\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .btn:hover .xs\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  .btn:hover .xs\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  .btn:hover .xs\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .btn:hover .xs\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .btn:hover .xs\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .btn:hover .xs\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .btn:hover .xs\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .btn:hover .xs\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .btn:hover .xs\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .btn:hover .xs\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .btn:hover .xs\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .btn:hover .xs\:hover\:bg-white {
    background-color: #fff !important;
  }
  .btn:hover .xs\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .xs\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .xs\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .xs\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .xs\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .btn:hover .xs\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .btn:hover .xs\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  .btn:hover .xs\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .btn:hover .xs\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .btn:hover .xs\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  .btn:hover .xs\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .btn:hover .xs\:hover\:bg-black {
    background-color: #000 !important;
  }
  .btn:hover .xs\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .xs\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  .btn:hover .xs\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .btn:hover .xs\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .btn:hover .xs\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .btn:hover .xs\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .btn:hover .xs\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .btn:hover .xs\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .btn:hover .xs\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .btn:hover .xs\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .btn:hover .xs\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .btn:hover .xs\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .btn:hover .xs\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .btn:hover .xs\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  input:hover .xs\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  input:hover .xs\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  input:hover .xs\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  input:hover .xs\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  input:hover .xs\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  input:hover .xs\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  input:hover .xs\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  input:hover .xs\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  input:hover .xs\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  input:hover .xs\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  input:hover .xs\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  input:hover .xs\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  input:hover .xs\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  input:hover .xs\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  input:hover .xs\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  input:hover .xs\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  input:hover .xs\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  input:hover .xs\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  input:hover .xs\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  input:hover .xs\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  input:hover .xs\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  input:hover .xs\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  input:hover .xs\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  input:hover .xs\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  input:hover .xs\:hover\:bg-white {
    background-color: #fff !important;
  }
  input:hover .xs\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .xs\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .xs\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .xs\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .xs\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  input:hover .xs\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  input:hover .xs\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  input:hover .xs\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  input:hover .xs\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  input:hover .xs\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  input:hover .xs\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  input:hover .xs\:hover\:bg-black {
    background-color: #000 !important;
  }
  input:hover .xs\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .xs\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  input:hover .xs\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  input:hover .xs\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  input:hover .xs\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  input:hover .xs\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  input:hover .xs\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  input:hover .xs\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  input:hover .xs\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  input:hover .xs\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  input:hover .xs\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  input:hover .xs\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  input:hover .xs\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  input:hover .xs\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xs\:bg-red\:hover:hover {
    background-color: #f12b3b !important;
  }
  .xs\:bg-dark-red\:hover:hover {
    background-color: #d2212f !important;
  }
  .xs\:bg-dark-blue\:hover:hover {
    background-color: #0273aa !important;
  }
  .xs\:bg-darker-blue\:hover:hover {
    background-color: #063b63 !important;
  }
  .xs\:bg-blue\:hover:hover {
    background-color: #008fce !important;
  }
  .xs\:bg-light-blue\:hover:hover {
    background-color: #4ba6ce !important;
  }
  .xs\:bg-lighter-blue\:hover:hover {
    background-color: #c4e5f4 !important;
  }
  .xs\:bg-lightest-blue\:hover:hover {
    background-color: #f1f7fa !important;
  }
  .xs\:bg-turquoise\:hover:hover {
    background-color: #86c6bb !important;
  }
  .xs\:bg-light-turquoise\:hover:hover {
    background-color: #a0d1c9 !important;
  }
  .xs\:bg-lightest-turquoise\:hover:hover {
    background-color: #eff4f3 !important;
  }
  .xs\:bg-darker-green\:hover:hover {
    background-color: #2f4f21 !important;
  }
  .xs\:bg-dark-green\:hover:hover {
    background-color: #456f32 !important;
  }
  .xs\:bg-green\:hover:hover {
    background-color: #66a54a !important;
  }
  .xs\:bg-light-green\:hover:hover {
    background-color: #77b65b !important;
  }
  .xs\:bg-lighter-green\:hover:hover {
    background-color: #c9e4bc !important;
  }
  .xs\:bg-lightest-green\:hover:hover {
    background-color: #eff6ec !important;
  }
  .xs\:bg-darker-yellow\:hover:hover {
    background-color: #483206 !important;
  }
  .xs\:bg-dark-yellow\:hover:hover {
    background-color: #b5862a !important;
  }
  .xs\:bg-yellow\:hover:hover {
    background-color: #f2b63f !important;
  }
  .xs\:bg-light-yellow\:hover:hover {
    background-color: #f5cd78 !important;
  }
  .xs\:bg-lighter-yellow\:hover:hover {
    background-color: #f8ecc5 !important;
  }
  .xs\:bg-lightest-yellow\:hover:hover {
    background-color: #faf9e7 !important;
  }
  .xs\:bg-beige\:hover:hover {
    background-color: #dbd3c9 !important;
  }
  .xs\:bg-white\:hover:hover {
    background-color: #fff !important;
  }
  .xs\:bg-white-opacity-02\:hover:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:bg-white-opacity-03\:hover:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:bg-white-opacity-05\:hover:hover {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:bg-white-opacity-07\:hover:hover {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:bg-lightest-grey\:hover:hover {
    background-color: #f3f3f3 !important;
  }
  .xs\:bg-lighter-grey\:hover:hover {
    background-color: #ddd !important;
  }
  .xs\:bg-light-grey\:hover:hover {
    background-color: #bbb !important;
  }
  .xs\:bg-grey\:hover:hover {
    background-color: #8e8e8e !important;
  }
  .xs\:bg-dark-grey\:hover:hover {
    background-color: #646464 !important;
  }
  .xs\:bg-darker-grey\:hover:hover {
    background-color: #444 !important;
  }
  .xs\:bg-darkest-grey\:hover:hover {
    background-color: #222 !important;
  }
  .xs\:bg-black\:hover:hover {
    background-color: #000 !important;
  }
  .xs\:bg-black-opacity-07\:hover:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:bg-transparent\:hover:hover {
    background-color: transparent !important;
  }
  .xs\:bg-default\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xs\:bg-highlight\:hover:hover {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xs\:bg-link--hover\:hover:hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xs\:bg-clear\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xs\:bg-lightest\:hover:hover {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xs\:bg-lighter\:hover:hover {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xs\:bg-light\:hover:hover {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xs\:bg-normal\:hover:hover {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xs\:bg-dark\:hover:hover {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xs\:bg-darker\:hover:hover {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xs\:bg-darkest\:hover:hover {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xs\:bg-opaque\:hover:hover {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xs\:bg-red\:hover\:before:hover:before {
    background-color: #f12b3b !important;
  }
  .xs\:bg-dark-red\:hover\:before:hover:before {
    background-color: #d2212f !important;
  }
  .xs\:bg-dark-blue\:hover\:before:hover:before {
    background-color: #0273aa !important;
  }
  .xs\:bg-darker-blue\:hover\:before:hover:before {
    background-color: #063b63 !important;
  }
  .xs\:bg-blue\:hover\:before:hover:before {
    background-color: #008fce !important;
  }
  .xs\:bg-light-blue\:hover\:before:hover:before {
    background-color: #4ba6ce !important;
  }
  .xs\:bg-lighter-blue\:hover\:before:hover:before {
    background-color: #c4e5f4 !important;
  }
  .xs\:bg-lightest-blue\:hover\:before:hover:before {
    background-color: #f1f7fa !important;
  }
  .xs\:bg-turquoise\:hover\:before:hover:before {
    background-color: #86c6bb !important;
  }
  .xs\:bg-light-turquoise\:hover\:before:hover:before {
    background-color: #a0d1c9 !important;
  }
  .xs\:bg-lightest-turquoise\:hover\:before:hover:before {
    background-color: #eff4f3 !important;
  }
  .xs\:bg-darker-green\:hover\:before:hover:before {
    background-color: #2f4f21 !important;
  }
  .xs\:bg-dark-green\:hover\:before:hover:before {
    background-color: #456f32 !important;
  }
  .xs\:bg-green\:hover\:before:hover:before {
    background-color: #66a54a !important;
  }
  .xs\:bg-light-green\:hover\:before:hover:before {
    background-color: #77b65b !important;
  }
  .xs\:bg-lighter-green\:hover\:before:hover:before {
    background-color: #c9e4bc !important;
  }
  .xs\:bg-lightest-green\:hover\:before:hover:before {
    background-color: #eff6ec !important;
  }
  .xs\:bg-darker-yellow\:hover\:before:hover:before {
    background-color: #483206 !important;
  }
  .xs\:bg-dark-yellow\:hover\:before:hover:before {
    background-color: #b5862a !important;
  }
  .xs\:bg-yellow\:hover\:before:hover:before {
    background-color: #f2b63f !important;
  }
  .xs\:bg-light-yellow\:hover\:before:hover:before {
    background-color: #f5cd78 !important;
  }
  .xs\:bg-lighter-yellow\:hover\:before:hover:before {
    background-color: #f8ecc5 !important;
  }
  .xs\:bg-lightest-yellow\:hover\:before:hover:before {
    background-color: #faf9e7 !important;
  }
  .xs\:bg-beige\:hover\:before:hover:before {
    background-color: #dbd3c9 !important;
  }
  .xs\:bg-white\:hover\:before:hover:before {
    background-color: #fff !important;
  }
  .xs\:bg-white-opacity-02\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:bg-white-opacity-03\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:bg-white-opacity-05\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:bg-white-opacity-07\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:bg-lightest-grey\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
  }
  .xs\:bg-lighter-grey\:hover\:before:hover:before {
    background-color: #ddd !important;
  }
  .xs\:bg-light-grey\:hover\:before:hover:before {
    background-color: #bbb !important;
  }
  .xs\:bg-grey\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
  }
  .xs\:bg-dark-grey\:hover\:before:hover:before {
    background-color: #646464 !important;
  }
  .xs\:bg-darker-grey\:hover\:before:hover:before {
    background-color: #444 !important;
  }
  .xs\:bg-darkest-grey\:hover\:before:hover:before {
    background-color: #222 !important;
  }
  .xs\:bg-black\:hover\:before:hover:before {
    background-color: #000 !important;
  }
  .xs\:bg-black-opacity-07\:hover\:before:hover:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:bg-transparent\:hover\:before:hover:before {
    background-color: transparent !important;
  }
  .xs\:bg-default\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xs\:bg-highlight\:hover\:before:hover:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xs\:bg-link--hover\:hover\:before:hover:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xs\:bg-clear\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xs\:bg-lightest\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xs\:bg-lighter\:hover\:before:hover:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xs\:bg-light\:hover\:before:hover:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xs\:bg-normal\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xs\:bg-dark\:hover\:before:hover:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xs\:bg-darker\:hover\:before:hover:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xs\:bg-darkest\:hover\:before:hover:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xs\:bg-opaque\:hover\:before:hover:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xs\:bg-red\:hover\:after:hover:after {
    background-color: #f12b3b !important;
  }
  .xs\:bg-dark-red\:hover\:after:hover:after {
    background-color: #d2212f !important;
  }
  .xs\:bg-dark-blue\:hover\:after:hover:after {
    background-color: #0273aa !important;
  }
  .xs\:bg-darker-blue\:hover\:after:hover:after {
    background-color: #063b63 !important;
  }
  .xs\:bg-blue\:hover\:after:hover:after {
    background-color: #008fce !important;
  }
  .xs\:bg-light-blue\:hover\:after:hover:after {
    background-color: #4ba6ce !important;
  }
  .xs\:bg-lighter-blue\:hover\:after:hover:after {
    background-color: #c4e5f4 !important;
  }
  .xs\:bg-lightest-blue\:hover\:after:hover:after {
    background-color: #f1f7fa !important;
  }
  .xs\:bg-turquoise\:hover\:after:hover:after {
    background-color: #86c6bb !important;
  }
  .xs\:bg-light-turquoise\:hover\:after:hover:after {
    background-color: #a0d1c9 !important;
  }
  .xs\:bg-lightest-turquoise\:hover\:after:hover:after {
    background-color: #eff4f3 !important;
  }
  .xs\:bg-darker-green\:hover\:after:hover:after {
    background-color: #2f4f21 !important;
  }
  .xs\:bg-dark-green\:hover\:after:hover:after {
    background-color: #456f32 !important;
  }
  .xs\:bg-green\:hover\:after:hover:after {
    background-color: #66a54a !important;
  }
  .xs\:bg-light-green\:hover\:after:hover:after {
    background-color: #77b65b !important;
  }
  .xs\:bg-lighter-green\:hover\:after:hover:after {
    background-color: #c9e4bc !important;
  }
  .xs\:bg-lightest-green\:hover\:after:hover:after {
    background-color: #eff6ec !important;
  }
  .xs\:bg-darker-yellow\:hover\:after:hover:after {
    background-color: #483206 !important;
  }
  .xs\:bg-dark-yellow\:hover\:after:hover:after {
    background-color: #b5862a !important;
  }
  .xs\:bg-yellow\:hover\:after:hover:after {
    background-color: #f2b63f !important;
  }
  .xs\:bg-light-yellow\:hover\:after:hover:after {
    background-color: #f5cd78 !important;
  }
  .xs\:bg-lighter-yellow\:hover\:after:hover:after {
    background-color: #f8ecc5 !important;
  }
  .xs\:bg-lightest-yellow\:hover\:after:hover:after {
    background-color: #faf9e7 !important;
  }
  .xs\:bg-beige\:hover\:after:hover:after {
    background-color: #dbd3c9 !important;
  }
  .xs\:bg-white\:hover\:after:hover:after {
    background-color: #fff !important;
  }
  .xs\:bg-white-opacity-02\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:bg-white-opacity-03\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:bg-white-opacity-05\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:bg-white-opacity-07\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:bg-lightest-grey\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
  }
  .xs\:bg-lighter-grey\:hover\:after:hover:after {
    background-color: #ddd !important;
  }
  .xs\:bg-light-grey\:hover\:after:hover:after {
    background-color: #bbb !important;
  }
  .xs\:bg-grey\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
  }
  .xs\:bg-dark-grey\:hover\:after:hover:after {
    background-color: #646464 !important;
  }
  .xs\:bg-darker-grey\:hover\:after:hover:after {
    background-color: #444 !important;
  }
  .xs\:bg-darkest-grey\:hover\:after:hover:after {
    background-color: #222 !important;
  }
  .xs\:bg-black\:hover\:after:hover:after {
    background-color: #000 !important;
  }
  .xs\:bg-black-opacity-07\:hover\:after:hover:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:bg-transparent\:hover\:after:hover:after {
    background-color: transparent !important;
  }
  .xs\:bg-default\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xs\:bg-highlight\:hover\:after:hover:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xs\:bg-link--hover\:hover\:after:hover:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xs\:bg-clear\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xs\:bg-lightest\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xs\:bg-lighter\:hover\:after:hover:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xs\:bg-light\:hover\:after:hover:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xs\:bg-normal\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xs\:bg-dark\:hover\:after:hover:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xs\:bg-darker\:hover\:after:hover:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xs\:bg-darkest\:hover\:after:hover:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xs\:bg-opaque\:hover\:after:hover:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xs\:bg-red\:before:before {
    background-color: #f12b3b !important;
  }
  .xs\:bg-dark-red\:before:before {
    background-color: #d2212f !important;
  }
  .xs\:bg-dark-blue\:before:before {
    background-color: #0273aa !important;
  }
  .xs\:bg-darker-blue\:before:before {
    background-color: #063b63 !important;
  }
  .xs\:bg-blue\:before:before {
    background-color: #008fce !important;
  }
  .xs\:bg-light-blue\:before:before {
    background-color: #4ba6ce !important;
  }
  .xs\:bg-lighter-blue\:before:before {
    background-color: #c4e5f4 !important;
  }
  .xs\:bg-lightest-blue\:before:before {
    background-color: #f1f7fa !important;
  }
  .xs\:bg-turquoise\:before:before {
    background-color: #86c6bb !important;
  }
  .xs\:bg-light-turquoise\:before:before {
    background-color: #a0d1c9 !important;
  }
  .xs\:bg-lightest-turquoise\:before:before {
    background-color: #eff4f3 !important;
  }
  .xs\:bg-darker-green\:before:before {
    background-color: #2f4f21 !important;
  }
  .xs\:bg-dark-green\:before:before {
    background-color: #456f32 !important;
  }
  .xs\:bg-green\:before:before {
    background-color: #66a54a !important;
  }
  .xs\:bg-light-green\:before:before {
    background-color: #77b65b !important;
  }
  .xs\:bg-lighter-green\:before:before {
    background-color: #c9e4bc !important;
  }
  .xs\:bg-lightest-green\:before:before {
    background-color: #eff6ec !important;
  }
  .xs\:bg-darker-yellow\:before:before {
    background-color: #483206 !important;
  }
  .xs\:bg-dark-yellow\:before:before {
    background-color: #b5862a !important;
  }
  .xs\:bg-yellow\:before:before {
    background-color: #f2b63f !important;
  }
  .xs\:bg-light-yellow\:before:before {
    background-color: #f5cd78 !important;
  }
  .xs\:bg-lighter-yellow\:before:before {
    background-color: #f8ecc5 !important;
  }
  .xs\:bg-lightest-yellow\:before:before {
    background-color: #faf9e7 !important;
  }
  .xs\:bg-beige\:before:before {
    background-color: #dbd3c9 !important;
  }
  .xs\:bg-white\:before:before {
    background-color: #fff !important;
  }
  .xs\:bg-white-opacity-02\:before:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:bg-white-opacity-03\:before:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:bg-white-opacity-05\:before:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:bg-white-opacity-07\:before:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:bg-lightest-grey\:before:before {
    background-color: #f3f3f3 !important;
  }
  .xs\:bg-lighter-grey\:before:before {
    background-color: #ddd !important;
  }
  .xs\:bg-light-grey\:before:before {
    background-color: #bbb !important;
  }
  .xs\:bg-grey\:before:before {
    background-color: #8e8e8e !important;
  }
  .xs\:bg-dark-grey\:before:before {
    background-color: #646464 !important;
  }
  .xs\:bg-darker-grey\:before:before {
    background-color: #444 !important;
  }
  .xs\:bg-darkest-grey\:before:before {
    background-color: #222 !important;
  }
  .xs\:bg-black\:before:before {
    background-color: #000 !important;
  }
  .xs\:bg-black-opacity-07\:before:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:bg-transparent\:before:before {
    background-color: transparent !important;
  }
  .xs\:bg-default\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xs\:bg-highlight\:before:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xs\:bg-link--hover\:before:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xs\:bg-clear\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xs\:bg-lightest\:before:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xs\:bg-lighter\:before:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xs\:bg-light\:before:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xs\:bg-normal\:before:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xs\:bg-dark\:before:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xs\:bg-darker\:before:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xs\:bg-darkest\:before:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xs\:bg-opaque\:before:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xs\:bg-red\:after:after {
    background-color: #f12b3b !important;
  }
  .xs\:bg-dark-red\:after:after {
    background-color: #d2212f !important;
  }
  .xs\:bg-dark-blue\:after:after {
    background-color: #0273aa !important;
  }
  .xs\:bg-darker-blue\:after:after {
    background-color: #063b63 !important;
  }
  .xs\:bg-blue\:after:after {
    background-color: #008fce !important;
  }
  .xs\:bg-light-blue\:after:after {
    background-color: #4ba6ce !important;
  }
  .xs\:bg-lighter-blue\:after:after {
    background-color: #c4e5f4 !important;
  }
  .xs\:bg-lightest-blue\:after:after {
    background-color: #f1f7fa !important;
  }
  .xs\:bg-turquoise\:after:after {
    background-color: #86c6bb !important;
  }
  .xs\:bg-light-turquoise\:after:after {
    background-color: #a0d1c9 !important;
  }
  .xs\:bg-lightest-turquoise\:after:after {
    background-color: #eff4f3 !important;
  }
  .xs\:bg-darker-green\:after:after {
    background-color: #2f4f21 !important;
  }
  .xs\:bg-dark-green\:after:after {
    background-color: #456f32 !important;
  }
  .xs\:bg-green\:after:after {
    background-color: #66a54a !important;
  }
  .xs\:bg-light-green\:after:after {
    background-color: #77b65b !important;
  }
  .xs\:bg-lighter-green\:after:after {
    background-color: #c9e4bc !important;
  }
  .xs\:bg-lightest-green\:after:after {
    background-color: #eff6ec !important;
  }
  .xs\:bg-darker-yellow\:after:after {
    background-color: #483206 !important;
  }
  .xs\:bg-dark-yellow\:after:after {
    background-color: #b5862a !important;
  }
  .xs\:bg-yellow\:after:after {
    background-color: #f2b63f !important;
  }
  .xs\:bg-light-yellow\:after:after {
    background-color: #f5cd78 !important;
  }
  .xs\:bg-lighter-yellow\:after:after {
    background-color: #f8ecc5 !important;
  }
  .xs\:bg-lightest-yellow\:after:after {
    background-color: #faf9e7 !important;
  }
  .xs\:bg-beige\:after:after {
    background-color: #dbd3c9 !important;
  }
  .xs\:bg-white\:after:after {
    background-color: #fff !important;
  }
  .xs\:bg-white-opacity-02\:after:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:bg-white-opacity-03\:after:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:bg-white-opacity-05\:after:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:bg-white-opacity-07\:after:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:bg-lightest-grey\:after:after {
    background-color: #f3f3f3 !important;
  }
  .xs\:bg-lighter-grey\:after:after {
    background-color: #ddd !important;
  }
  .xs\:bg-light-grey\:after:after {
    background-color: #bbb !important;
  }
  .xs\:bg-grey\:after:after {
    background-color: #8e8e8e !important;
  }
  .xs\:bg-dark-grey\:after:after {
    background-color: #646464 !important;
  }
  .xs\:bg-darker-grey\:after:after {
    background-color: #444 !important;
  }
  .xs\:bg-darkest-grey\:after:after {
    background-color: #222 !important;
  }
  .xs\:bg-black\:after:after {
    background-color: #000 !important;
  }
  .xs\:bg-black-opacity-07\:after:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:bg-transparent\:after:after {
    background-color: transparent !important;
  }
  .xs\:bg-default\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xs\:bg-highlight\:after:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xs\:bg-link--hover\:after:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xs\:bg-clear\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xs\:bg-lightest\:after:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xs\:bg-lighter\:after:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xs\:bg-light\:after:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xs\:bg-normal\:after:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xs\:bg-dark\:after:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xs\:bg-darker\:after:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xs\:bg-darkest\:after:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xs\:bg-opaque\:after:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xs\:bg-red\:iframe iframe {
    background-color: #f12b3b !important;
  }
  .xs\:bg-dark-red\:iframe iframe {
    background-color: #d2212f !important;
  }
  .xs\:bg-dark-blue\:iframe iframe {
    background-color: #0273aa !important;
  }
  .xs\:bg-darker-blue\:iframe iframe {
    background-color: #063b63 !important;
  }
  .xs\:bg-blue\:iframe iframe {
    background-color: #008fce !important;
  }
  .xs\:bg-light-blue\:iframe iframe {
    background-color: #4ba6ce !important;
  }
  .xs\:bg-lighter-blue\:iframe iframe {
    background-color: #c4e5f4 !important;
  }
  .xs\:bg-lightest-blue\:iframe iframe {
    background-color: #f1f7fa !important;
  }
  .xs\:bg-turquoise\:iframe iframe {
    background-color: #86c6bb !important;
  }
  .xs\:bg-light-turquoise\:iframe iframe {
    background-color: #a0d1c9 !important;
  }
  .xs\:bg-lightest-turquoise\:iframe iframe {
    background-color: #eff4f3 !important;
  }
  .xs\:bg-darker-green\:iframe iframe {
    background-color: #2f4f21 !important;
  }
  .xs\:bg-dark-green\:iframe iframe {
    background-color: #456f32 !important;
  }
  .xs\:bg-green\:iframe iframe {
    background-color: #66a54a !important;
  }
  .xs\:bg-light-green\:iframe iframe {
    background-color: #77b65b !important;
  }
  .xs\:bg-lighter-green\:iframe iframe {
    background-color: #c9e4bc !important;
  }
  .xs\:bg-lightest-green\:iframe iframe {
    background-color: #eff6ec !important;
  }
  .xs\:bg-darker-yellow\:iframe iframe {
    background-color: #483206 !important;
  }
  .xs\:bg-dark-yellow\:iframe iframe {
    background-color: #b5862a !important;
  }
  .xs\:bg-yellow\:iframe iframe {
    background-color: #f2b63f !important;
  }
  .xs\:bg-light-yellow\:iframe iframe {
    background-color: #f5cd78 !important;
  }
  .xs\:bg-lighter-yellow\:iframe iframe {
    background-color: #f8ecc5 !important;
  }
  .xs\:bg-lightest-yellow\:iframe iframe {
    background-color: #faf9e7 !important;
  }
  .xs\:bg-beige\:iframe iframe {
    background-color: #dbd3c9 !important;
  }
  .xs\:bg-white\:iframe iframe {
    background-color: #fff !important;
  }
  .xs\:bg-white-opacity-02\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:bg-white-opacity-03\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:bg-white-opacity-05\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:bg-white-opacity-07\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:bg-lightest-grey\:iframe iframe {
    background-color: #f3f3f3 !important;
  }
  .xs\:bg-lighter-grey\:iframe iframe {
    background-color: #ddd !important;
  }
  .xs\:bg-light-grey\:iframe iframe {
    background-color: #bbb !important;
  }
  .xs\:bg-grey\:iframe iframe {
    background-color: #8e8e8e !important;
  }
  .xs\:bg-dark-grey\:iframe iframe {
    background-color: #646464 !important;
  }
  .xs\:bg-darker-grey\:iframe iframe {
    background-color: #444 !important;
  }
  .xs\:bg-darkest-grey\:iframe iframe {
    background-color: #222 !important;
  }
  .xs\:bg-black\:iframe iframe {
    background-color: #000 !important;
  }
  .xs\:bg-black-opacity-07\:iframe iframe {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xs\:bg-transparent\:iframe iframe {
    background-color: transparent !important;
  }
  .xs\:bg-default\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xs\:bg-highlight\:iframe iframe {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xs\:bg-link--hover\:iframe iframe {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xs\:bg-clear\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xs\:bg-lightest\:iframe iframe {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xs\:bg-lighter\:iframe iframe {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xs\:bg-light\:iframe iframe {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xs\:bg-normal\:iframe iframe {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xs\:bg-dark\:iframe iframe {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xs\:bg-darker\:iframe iframe {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xs\:bg-darkest\:iframe iframe {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xs\:bg-opaque\:iframe iframe {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:bg-red {
    background-color: #f12b3b !important;
  }
  .sm\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .sm\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .sm\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .sm\:bg-blue {
    background-color: #008fce !important;
  }
  .sm\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .sm\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .sm\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .sm\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .sm\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .sm\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .sm\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .sm\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .sm\:bg-green {
    background-color: #66a54a !important;
  }
  .sm\:bg-light-green {
    background-color: #77b65b !important;
  }
  .sm\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .sm\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .sm\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .sm\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .sm\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .sm\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .sm\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .sm\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .sm\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .sm\:bg-white {
    background-color: #fff !important;
  }
  .sm\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .sm\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .sm\:bg-light-grey {
    background-color: #bbb !important;
  }
  .sm\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .sm\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .sm\:bg-darker-grey {
    background-color: #444 !important;
  }
  .sm\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .sm\:bg-black {
    background-color: #000 !important;
  }
  .sm\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:bg-transparent {
    background-color: transparent !important;
  }
  .sm\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .sm\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .sm\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .sm\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .sm\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .sm\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .sm\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .sm\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .sm\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .sm\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .sm\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .sm\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  a:hover .sm\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  a:hover .sm\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  a:hover .sm\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  a:hover .sm\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  a:hover .sm\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  a:hover .sm\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  a:hover .sm\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  a:hover .sm\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  a:hover .sm\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  a:hover .sm\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  a:hover .sm\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  a:hover .sm\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  a:hover .sm\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  a:hover .sm\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  a:hover .sm\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  a:hover .sm\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  a:hover .sm\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  a:hover .sm\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  a:hover .sm\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  a:hover .sm\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  a:hover .sm\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  a:hover .sm\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  a:hover .sm\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  a:hover .sm\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  a:hover .sm\:hover\:bg-white {
    background-color: #fff !important;
  }
  a:hover .sm\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .sm\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .sm\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .sm\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .sm\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  a:hover .sm\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  a:hover .sm\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  a:hover .sm\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  a:hover .sm\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  a:hover .sm\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  a:hover .sm\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  a:hover .sm\:hover\:bg-black {
    background-color: #000 !important;
  }
  a:hover .sm\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .sm\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  a:hover .sm\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  a:hover .sm\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  a:hover .sm\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  a:hover .sm\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  a:hover .sm\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  a:hover .sm\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  a:hover .sm\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  a:hover .sm\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  a:hover .sm\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  a:hover .sm\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  a:hover .sm\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  a:hover .sm\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  button:hover .sm\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  button:hover .sm\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  button:hover .sm\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  button:hover .sm\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  button:hover .sm\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  button:hover .sm\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  button:hover .sm\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  button:hover .sm\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  button:hover .sm\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  button:hover .sm\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  button:hover .sm\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  button:hover .sm\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  button:hover .sm\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  button:hover .sm\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  button:hover .sm\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  button:hover .sm\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  button:hover .sm\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  button:hover .sm\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  button:hover .sm\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  button:hover .sm\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  button:hover .sm\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  button:hover .sm\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  button:hover .sm\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  button:hover .sm\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  button:hover .sm\:hover\:bg-white {
    background-color: #fff !important;
  }
  button:hover .sm\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .sm\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .sm\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .sm\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .sm\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  button:hover .sm\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  button:hover .sm\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  button:hover .sm\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  button:hover .sm\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  button:hover .sm\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  button:hover .sm\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  button:hover .sm\:hover\:bg-black {
    background-color: #000 !important;
  }
  button:hover .sm\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .sm\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  button:hover .sm\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  button:hover .sm\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  button:hover .sm\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  button:hover .sm\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  button:hover .sm\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  button:hover .sm\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  button:hover .sm\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  button:hover .sm\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  button:hover .sm\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  button:hover .sm\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  button:hover .sm\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  button:hover .sm\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .btn:hover .sm\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  .btn:hover .sm\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .btn:hover .sm\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .btn:hover .sm\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .btn:hover .sm\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  .btn:hover .sm\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .btn:hover .sm\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .btn:hover .sm\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .btn:hover .sm\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .btn:hover .sm\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .btn:hover .sm\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .btn:hover .sm\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .btn:hover .sm\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .btn:hover .sm\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  .btn:hover .sm\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  .btn:hover .sm\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .btn:hover .sm\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .btn:hover .sm\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .btn:hover .sm\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .btn:hover .sm\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .btn:hover .sm\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .btn:hover .sm\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .btn:hover .sm\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .btn:hover .sm\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .btn:hover .sm\:hover\:bg-white {
    background-color: #fff !important;
  }
  .btn:hover .sm\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .sm\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .sm\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .sm\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .sm\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .btn:hover .sm\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .btn:hover .sm\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  .btn:hover .sm\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .btn:hover .sm\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .btn:hover .sm\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  .btn:hover .sm\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .btn:hover .sm\:hover\:bg-black {
    background-color: #000 !important;
  }
  .btn:hover .sm\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .sm\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  .btn:hover .sm\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .btn:hover .sm\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .btn:hover .sm\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .btn:hover .sm\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .btn:hover .sm\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .btn:hover .sm\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .btn:hover .sm\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .btn:hover .sm\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .btn:hover .sm\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .btn:hover .sm\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .btn:hover .sm\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .btn:hover .sm\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  input:hover .sm\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  input:hover .sm\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  input:hover .sm\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  input:hover .sm\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  input:hover .sm\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  input:hover .sm\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  input:hover .sm\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  input:hover .sm\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  input:hover .sm\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  input:hover .sm\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  input:hover .sm\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  input:hover .sm\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  input:hover .sm\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  input:hover .sm\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  input:hover .sm\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  input:hover .sm\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  input:hover .sm\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  input:hover .sm\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  input:hover .sm\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  input:hover .sm\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  input:hover .sm\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  input:hover .sm\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  input:hover .sm\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  input:hover .sm\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  input:hover .sm\:hover\:bg-white {
    background-color: #fff !important;
  }
  input:hover .sm\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .sm\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .sm\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .sm\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .sm\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  input:hover .sm\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  input:hover .sm\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  input:hover .sm\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  input:hover .sm\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  input:hover .sm\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  input:hover .sm\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  input:hover .sm\:hover\:bg-black {
    background-color: #000 !important;
  }
  input:hover .sm\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .sm\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  input:hover .sm\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  input:hover .sm\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  input:hover .sm\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  input:hover .sm\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  input:hover .sm\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  input:hover .sm\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  input:hover .sm\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  input:hover .sm\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  input:hover .sm\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  input:hover .sm\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  input:hover .sm\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  input:hover .sm\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .sm\:bg-red\:hover:hover {
    background-color: #f12b3b !important;
  }
  .sm\:bg-dark-red\:hover:hover {
    background-color: #d2212f !important;
  }
  .sm\:bg-dark-blue\:hover:hover {
    background-color: #0273aa !important;
  }
  .sm\:bg-darker-blue\:hover:hover {
    background-color: #063b63 !important;
  }
  .sm\:bg-blue\:hover:hover {
    background-color: #008fce !important;
  }
  .sm\:bg-light-blue\:hover:hover {
    background-color: #4ba6ce !important;
  }
  .sm\:bg-lighter-blue\:hover:hover {
    background-color: #c4e5f4 !important;
  }
  .sm\:bg-lightest-blue\:hover:hover {
    background-color: #f1f7fa !important;
  }
  .sm\:bg-turquoise\:hover:hover {
    background-color: #86c6bb !important;
  }
  .sm\:bg-light-turquoise\:hover:hover {
    background-color: #a0d1c9 !important;
  }
  .sm\:bg-lightest-turquoise\:hover:hover {
    background-color: #eff4f3 !important;
  }
  .sm\:bg-darker-green\:hover:hover {
    background-color: #2f4f21 !important;
  }
  .sm\:bg-dark-green\:hover:hover {
    background-color: #456f32 !important;
  }
  .sm\:bg-green\:hover:hover {
    background-color: #66a54a !important;
  }
  .sm\:bg-light-green\:hover:hover {
    background-color: #77b65b !important;
  }
  .sm\:bg-lighter-green\:hover:hover {
    background-color: #c9e4bc !important;
  }
  .sm\:bg-lightest-green\:hover:hover {
    background-color: #eff6ec !important;
  }
  .sm\:bg-darker-yellow\:hover:hover {
    background-color: #483206 !important;
  }
  .sm\:bg-dark-yellow\:hover:hover {
    background-color: #b5862a !important;
  }
  .sm\:bg-yellow\:hover:hover {
    background-color: #f2b63f !important;
  }
  .sm\:bg-light-yellow\:hover:hover {
    background-color: #f5cd78 !important;
  }
  .sm\:bg-lighter-yellow\:hover:hover {
    background-color: #f8ecc5 !important;
  }
  .sm\:bg-lightest-yellow\:hover:hover {
    background-color: #faf9e7 !important;
  }
  .sm\:bg-beige\:hover:hover {
    background-color: #dbd3c9 !important;
  }
  .sm\:bg-white\:hover:hover {
    background-color: #fff !important;
  }
  .sm\:bg-white-opacity-02\:hover:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:bg-white-opacity-03\:hover:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:bg-white-opacity-05\:hover:hover {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:bg-white-opacity-07\:hover:hover {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:bg-lightest-grey\:hover:hover {
    background-color: #f3f3f3 !important;
  }
  .sm\:bg-lighter-grey\:hover:hover {
    background-color: #ddd !important;
  }
  .sm\:bg-light-grey\:hover:hover {
    background-color: #bbb !important;
  }
  .sm\:bg-grey\:hover:hover {
    background-color: #8e8e8e !important;
  }
  .sm\:bg-dark-grey\:hover:hover {
    background-color: #646464 !important;
  }
  .sm\:bg-darker-grey\:hover:hover {
    background-color: #444 !important;
  }
  .sm\:bg-darkest-grey\:hover:hover {
    background-color: #222 !important;
  }
  .sm\:bg-black\:hover:hover {
    background-color: #000 !important;
  }
  .sm\:bg-black-opacity-07\:hover:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:bg-transparent\:hover:hover {
    background-color: transparent !important;
  }
  .sm\:bg-default\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .sm\:bg-highlight\:hover:hover {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .sm\:bg-link--hover\:hover:hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .sm\:bg-clear\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .sm\:bg-lightest\:hover:hover {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .sm\:bg-lighter\:hover:hover {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .sm\:bg-light\:hover:hover {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .sm\:bg-normal\:hover:hover {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .sm\:bg-dark\:hover:hover {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .sm\:bg-darker\:hover:hover {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .sm\:bg-darkest\:hover:hover {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .sm\:bg-opaque\:hover:hover {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .sm\:bg-red\:hover\:before:hover:before {
    background-color: #f12b3b !important;
  }
  .sm\:bg-dark-red\:hover\:before:hover:before {
    background-color: #d2212f !important;
  }
  .sm\:bg-dark-blue\:hover\:before:hover:before {
    background-color: #0273aa !important;
  }
  .sm\:bg-darker-blue\:hover\:before:hover:before {
    background-color: #063b63 !important;
  }
  .sm\:bg-blue\:hover\:before:hover:before {
    background-color: #008fce !important;
  }
  .sm\:bg-light-blue\:hover\:before:hover:before {
    background-color: #4ba6ce !important;
  }
  .sm\:bg-lighter-blue\:hover\:before:hover:before {
    background-color: #c4e5f4 !important;
  }
  .sm\:bg-lightest-blue\:hover\:before:hover:before {
    background-color: #f1f7fa !important;
  }
  .sm\:bg-turquoise\:hover\:before:hover:before {
    background-color: #86c6bb !important;
  }
  .sm\:bg-light-turquoise\:hover\:before:hover:before {
    background-color: #a0d1c9 !important;
  }
  .sm\:bg-lightest-turquoise\:hover\:before:hover:before {
    background-color: #eff4f3 !important;
  }
  .sm\:bg-darker-green\:hover\:before:hover:before {
    background-color: #2f4f21 !important;
  }
  .sm\:bg-dark-green\:hover\:before:hover:before {
    background-color: #456f32 !important;
  }
  .sm\:bg-green\:hover\:before:hover:before {
    background-color: #66a54a !important;
  }
  .sm\:bg-light-green\:hover\:before:hover:before {
    background-color: #77b65b !important;
  }
  .sm\:bg-lighter-green\:hover\:before:hover:before {
    background-color: #c9e4bc !important;
  }
  .sm\:bg-lightest-green\:hover\:before:hover:before {
    background-color: #eff6ec !important;
  }
  .sm\:bg-darker-yellow\:hover\:before:hover:before {
    background-color: #483206 !important;
  }
  .sm\:bg-dark-yellow\:hover\:before:hover:before {
    background-color: #b5862a !important;
  }
  .sm\:bg-yellow\:hover\:before:hover:before {
    background-color: #f2b63f !important;
  }
  .sm\:bg-light-yellow\:hover\:before:hover:before {
    background-color: #f5cd78 !important;
  }
  .sm\:bg-lighter-yellow\:hover\:before:hover:before {
    background-color: #f8ecc5 !important;
  }
  .sm\:bg-lightest-yellow\:hover\:before:hover:before {
    background-color: #faf9e7 !important;
  }
  .sm\:bg-beige\:hover\:before:hover:before {
    background-color: #dbd3c9 !important;
  }
  .sm\:bg-white\:hover\:before:hover:before {
    background-color: #fff !important;
  }
  .sm\:bg-white-opacity-02\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:bg-white-opacity-03\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:bg-white-opacity-05\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:bg-white-opacity-07\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:bg-lightest-grey\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
  }
  .sm\:bg-lighter-grey\:hover\:before:hover:before {
    background-color: #ddd !important;
  }
  .sm\:bg-light-grey\:hover\:before:hover:before {
    background-color: #bbb !important;
  }
  .sm\:bg-grey\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
  }
  .sm\:bg-dark-grey\:hover\:before:hover:before {
    background-color: #646464 !important;
  }
  .sm\:bg-darker-grey\:hover\:before:hover:before {
    background-color: #444 !important;
  }
  .sm\:bg-darkest-grey\:hover\:before:hover:before {
    background-color: #222 !important;
  }
  .sm\:bg-black\:hover\:before:hover:before {
    background-color: #000 !important;
  }
  .sm\:bg-black-opacity-07\:hover\:before:hover:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:bg-transparent\:hover\:before:hover:before {
    background-color: transparent !important;
  }
  .sm\:bg-default\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .sm\:bg-highlight\:hover\:before:hover:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .sm\:bg-link--hover\:hover\:before:hover:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .sm\:bg-clear\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .sm\:bg-lightest\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .sm\:bg-lighter\:hover\:before:hover:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .sm\:bg-light\:hover\:before:hover:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .sm\:bg-normal\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .sm\:bg-dark\:hover\:before:hover:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .sm\:bg-darker\:hover\:before:hover:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .sm\:bg-darkest\:hover\:before:hover:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .sm\:bg-opaque\:hover\:before:hover:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .sm\:bg-red\:hover\:after:hover:after {
    background-color: #f12b3b !important;
  }
  .sm\:bg-dark-red\:hover\:after:hover:after {
    background-color: #d2212f !important;
  }
  .sm\:bg-dark-blue\:hover\:after:hover:after {
    background-color: #0273aa !important;
  }
  .sm\:bg-darker-blue\:hover\:after:hover:after {
    background-color: #063b63 !important;
  }
  .sm\:bg-blue\:hover\:after:hover:after {
    background-color: #008fce !important;
  }
  .sm\:bg-light-blue\:hover\:after:hover:after {
    background-color: #4ba6ce !important;
  }
  .sm\:bg-lighter-blue\:hover\:after:hover:after {
    background-color: #c4e5f4 !important;
  }
  .sm\:bg-lightest-blue\:hover\:after:hover:after {
    background-color: #f1f7fa !important;
  }
  .sm\:bg-turquoise\:hover\:after:hover:after {
    background-color: #86c6bb !important;
  }
  .sm\:bg-light-turquoise\:hover\:after:hover:after {
    background-color: #a0d1c9 !important;
  }
  .sm\:bg-lightest-turquoise\:hover\:after:hover:after {
    background-color: #eff4f3 !important;
  }
  .sm\:bg-darker-green\:hover\:after:hover:after {
    background-color: #2f4f21 !important;
  }
  .sm\:bg-dark-green\:hover\:after:hover:after {
    background-color: #456f32 !important;
  }
  .sm\:bg-green\:hover\:after:hover:after {
    background-color: #66a54a !important;
  }
  .sm\:bg-light-green\:hover\:after:hover:after {
    background-color: #77b65b !important;
  }
  .sm\:bg-lighter-green\:hover\:after:hover:after {
    background-color: #c9e4bc !important;
  }
  .sm\:bg-lightest-green\:hover\:after:hover:after {
    background-color: #eff6ec !important;
  }
  .sm\:bg-darker-yellow\:hover\:after:hover:after {
    background-color: #483206 !important;
  }
  .sm\:bg-dark-yellow\:hover\:after:hover:after {
    background-color: #b5862a !important;
  }
  .sm\:bg-yellow\:hover\:after:hover:after {
    background-color: #f2b63f !important;
  }
  .sm\:bg-light-yellow\:hover\:after:hover:after {
    background-color: #f5cd78 !important;
  }
  .sm\:bg-lighter-yellow\:hover\:after:hover:after {
    background-color: #f8ecc5 !important;
  }
  .sm\:bg-lightest-yellow\:hover\:after:hover:after {
    background-color: #faf9e7 !important;
  }
  .sm\:bg-beige\:hover\:after:hover:after {
    background-color: #dbd3c9 !important;
  }
  .sm\:bg-white\:hover\:after:hover:after {
    background-color: #fff !important;
  }
  .sm\:bg-white-opacity-02\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:bg-white-opacity-03\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:bg-white-opacity-05\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:bg-white-opacity-07\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:bg-lightest-grey\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
  }
  .sm\:bg-lighter-grey\:hover\:after:hover:after {
    background-color: #ddd !important;
  }
  .sm\:bg-light-grey\:hover\:after:hover:after {
    background-color: #bbb !important;
  }
  .sm\:bg-grey\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
  }
  .sm\:bg-dark-grey\:hover\:after:hover:after {
    background-color: #646464 !important;
  }
  .sm\:bg-darker-grey\:hover\:after:hover:after {
    background-color: #444 !important;
  }
  .sm\:bg-darkest-grey\:hover\:after:hover:after {
    background-color: #222 !important;
  }
  .sm\:bg-black\:hover\:after:hover:after {
    background-color: #000 !important;
  }
  .sm\:bg-black-opacity-07\:hover\:after:hover:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:bg-transparent\:hover\:after:hover:after {
    background-color: transparent !important;
  }
  .sm\:bg-default\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .sm\:bg-highlight\:hover\:after:hover:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .sm\:bg-link--hover\:hover\:after:hover:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .sm\:bg-clear\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .sm\:bg-lightest\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .sm\:bg-lighter\:hover\:after:hover:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .sm\:bg-light\:hover\:after:hover:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .sm\:bg-normal\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .sm\:bg-dark\:hover\:after:hover:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .sm\:bg-darker\:hover\:after:hover:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .sm\:bg-darkest\:hover\:after:hover:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .sm\:bg-opaque\:hover\:after:hover:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .sm\:bg-red\:before:before {
    background-color: #f12b3b !important;
  }
  .sm\:bg-dark-red\:before:before {
    background-color: #d2212f !important;
  }
  .sm\:bg-dark-blue\:before:before {
    background-color: #0273aa !important;
  }
  .sm\:bg-darker-blue\:before:before {
    background-color: #063b63 !important;
  }
  .sm\:bg-blue\:before:before {
    background-color: #008fce !important;
  }
  .sm\:bg-light-blue\:before:before {
    background-color: #4ba6ce !important;
  }
  .sm\:bg-lighter-blue\:before:before {
    background-color: #c4e5f4 !important;
  }
  .sm\:bg-lightest-blue\:before:before {
    background-color: #f1f7fa !important;
  }
  .sm\:bg-turquoise\:before:before {
    background-color: #86c6bb !important;
  }
  .sm\:bg-light-turquoise\:before:before {
    background-color: #a0d1c9 !important;
  }
  .sm\:bg-lightest-turquoise\:before:before {
    background-color: #eff4f3 !important;
  }
  .sm\:bg-darker-green\:before:before {
    background-color: #2f4f21 !important;
  }
  .sm\:bg-dark-green\:before:before {
    background-color: #456f32 !important;
  }
  .sm\:bg-green\:before:before {
    background-color: #66a54a !important;
  }
  .sm\:bg-light-green\:before:before {
    background-color: #77b65b !important;
  }
  .sm\:bg-lighter-green\:before:before {
    background-color: #c9e4bc !important;
  }
  .sm\:bg-lightest-green\:before:before {
    background-color: #eff6ec !important;
  }
  .sm\:bg-darker-yellow\:before:before {
    background-color: #483206 !important;
  }
  .sm\:bg-dark-yellow\:before:before {
    background-color: #b5862a !important;
  }
  .sm\:bg-yellow\:before:before {
    background-color: #f2b63f !important;
  }
  .sm\:bg-light-yellow\:before:before {
    background-color: #f5cd78 !important;
  }
  .sm\:bg-lighter-yellow\:before:before {
    background-color: #f8ecc5 !important;
  }
  .sm\:bg-lightest-yellow\:before:before {
    background-color: #faf9e7 !important;
  }
  .sm\:bg-beige\:before:before {
    background-color: #dbd3c9 !important;
  }
  .sm\:bg-white\:before:before {
    background-color: #fff !important;
  }
  .sm\:bg-white-opacity-02\:before:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:bg-white-opacity-03\:before:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:bg-white-opacity-05\:before:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:bg-white-opacity-07\:before:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:bg-lightest-grey\:before:before {
    background-color: #f3f3f3 !important;
  }
  .sm\:bg-lighter-grey\:before:before {
    background-color: #ddd !important;
  }
  .sm\:bg-light-grey\:before:before {
    background-color: #bbb !important;
  }
  .sm\:bg-grey\:before:before {
    background-color: #8e8e8e !important;
  }
  .sm\:bg-dark-grey\:before:before {
    background-color: #646464 !important;
  }
  .sm\:bg-darker-grey\:before:before {
    background-color: #444 !important;
  }
  .sm\:bg-darkest-grey\:before:before {
    background-color: #222 !important;
  }
  .sm\:bg-black\:before:before {
    background-color: #000 !important;
  }
  .sm\:bg-black-opacity-07\:before:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:bg-transparent\:before:before {
    background-color: transparent !important;
  }
  .sm\:bg-default\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .sm\:bg-highlight\:before:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .sm\:bg-link--hover\:before:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .sm\:bg-clear\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .sm\:bg-lightest\:before:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .sm\:bg-lighter\:before:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .sm\:bg-light\:before:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .sm\:bg-normal\:before:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .sm\:bg-dark\:before:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .sm\:bg-darker\:before:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .sm\:bg-darkest\:before:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .sm\:bg-opaque\:before:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .sm\:bg-red\:after:after {
    background-color: #f12b3b !important;
  }
  .sm\:bg-dark-red\:after:after {
    background-color: #d2212f !important;
  }
  .sm\:bg-dark-blue\:after:after {
    background-color: #0273aa !important;
  }
  .sm\:bg-darker-blue\:after:after {
    background-color: #063b63 !important;
  }
  .sm\:bg-blue\:after:after {
    background-color: #008fce !important;
  }
  .sm\:bg-light-blue\:after:after {
    background-color: #4ba6ce !important;
  }
  .sm\:bg-lighter-blue\:after:after {
    background-color: #c4e5f4 !important;
  }
  .sm\:bg-lightest-blue\:after:after {
    background-color: #f1f7fa !important;
  }
  .sm\:bg-turquoise\:after:after {
    background-color: #86c6bb !important;
  }
  .sm\:bg-light-turquoise\:after:after {
    background-color: #a0d1c9 !important;
  }
  .sm\:bg-lightest-turquoise\:after:after {
    background-color: #eff4f3 !important;
  }
  .sm\:bg-darker-green\:after:after {
    background-color: #2f4f21 !important;
  }
  .sm\:bg-dark-green\:after:after {
    background-color: #456f32 !important;
  }
  .sm\:bg-green\:after:after {
    background-color: #66a54a !important;
  }
  .sm\:bg-light-green\:after:after {
    background-color: #77b65b !important;
  }
  .sm\:bg-lighter-green\:after:after {
    background-color: #c9e4bc !important;
  }
  .sm\:bg-lightest-green\:after:after {
    background-color: #eff6ec !important;
  }
  .sm\:bg-darker-yellow\:after:after {
    background-color: #483206 !important;
  }
  .sm\:bg-dark-yellow\:after:after {
    background-color: #b5862a !important;
  }
  .sm\:bg-yellow\:after:after {
    background-color: #f2b63f !important;
  }
  .sm\:bg-light-yellow\:after:after {
    background-color: #f5cd78 !important;
  }
  .sm\:bg-lighter-yellow\:after:after {
    background-color: #f8ecc5 !important;
  }
  .sm\:bg-lightest-yellow\:after:after {
    background-color: #faf9e7 !important;
  }
  .sm\:bg-beige\:after:after {
    background-color: #dbd3c9 !important;
  }
  .sm\:bg-white\:after:after {
    background-color: #fff !important;
  }
  .sm\:bg-white-opacity-02\:after:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:bg-white-opacity-03\:after:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:bg-white-opacity-05\:after:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:bg-white-opacity-07\:after:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:bg-lightest-grey\:after:after {
    background-color: #f3f3f3 !important;
  }
  .sm\:bg-lighter-grey\:after:after {
    background-color: #ddd !important;
  }
  .sm\:bg-light-grey\:after:after {
    background-color: #bbb !important;
  }
  .sm\:bg-grey\:after:after {
    background-color: #8e8e8e !important;
  }
  .sm\:bg-dark-grey\:after:after {
    background-color: #646464 !important;
  }
  .sm\:bg-darker-grey\:after:after {
    background-color: #444 !important;
  }
  .sm\:bg-darkest-grey\:after:after {
    background-color: #222 !important;
  }
  .sm\:bg-black\:after:after {
    background-color: #000 !important;
  }
  .sm\:bg-black-opacity-07\:after:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:bg-transparent\:after:after {
    background-color: transparent !important;
  }
  .sm\:bg-default\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .sm\:bg-highlight\:after:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .sm\:bg-link--hover\:after:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .sm\:bg-clear\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .sm\:bg-lightest\:after:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .sm\:bg-lighter\:after:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .sm\:bg-light\:after:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .sm\:bg-normal\:after:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .sm\:bg-dark\:after:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .sm\:bg-darker\:after:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .sm\:bg-darkest\:after:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .sm\:bg-opaque\:after:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .sm\:bg-red\:iframe iframe {
    background-color: #f12b3b !important;
  }
  .sm\:bg-dark-red\:iframe iframe {
    background-color: #d2212f !important;
  }
  .sm\:bg-dark-blue\:iframe iframe {
    background-color: #0273aa !important;
  }
  .sm\:bg-darker-blue\:iframe iframe {
    background-color: #063b63 !important;
  }
  .sm\:bg-blue\:iframe iframe {
    background-color: #008fce !important;
  }
  .sm\:bg-light-blue\:iframe iframe {
    background-color: #4ba6ce !important;
  }
  .sm\:bg-lighter-blue\:iframe iframe {
    background-color: #c4e5f4 !important;
  }
  .sm\:bg-lightest-blue\:iframe iframe {
    background-color: #f1f7fa !important;
  }
  .sm\:bg-turquoise\:iframe iframe {
    background-color: #86c6bb !important;
  }
  .sm\:bg-light-turquoise\:iframe iframe {
    background-color: #a0d1c9 !important;
  }
  .sm\:bg-lightest-turquoise\:iframe iframe {
    background-color: #eff4f3 !important;
  }
  .sm\:bg-darker-green\:iframe iframe {
    background-color: #2f4f21 !important;
  }
  .sm\:bg-dark-green\:iframe iframe {
    background-color: #456f32 !important;
  }
  .sm\:bg-green\:iframe iframe {
    background-color: #66a54a !important;
  }
  .sm\:bg-light-green\:iframe iframe {
    background-color: #77b65b !important;
  }
  .sm\:bg-lighter-green\:iframe iframe {
    background-color: #c9e4bc !important;
  }
  .sm\:bg-lightest-green\:iframe iframe {
    background-color: #eff6ec !important;
  }
  .sm\:bg-darker-yellow\:iframe iframe {
    background-color: #483206 !important;
  }
  .sm\:bg-dark-yellow\:iframe iframe {
    background-color: #b5862a !important;
  }
  .sm\:bg-yellow\:iframe iframe {
    background-color: #f2b63f !important;
  }
  .sm\:bg-light-yellow\:iframe iframe {
    background-color: #f5cd78 !important;
  }
  .sm\:bg-lighter-yellow\:iframe iframe {
    background-color: #f8ecc5 !important;
  }
  .sm\:bg-lightest-yellow\:iframe iframe {
    background-color: #faf9e7 !important;
  }
  .sm\:bg-beige\:iframe iframe {
    background-color: #dbd3c9 !important;
  }
  .sm\:bg-white\:iframe iframe {
    background-color: #fff !important;
  }
  .sm\:bg-white-opacity-02\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:bg-white-opacity-03\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:bg-white-opacity-05\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:bg-white-opacity-07\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:bg-lightest-grey\:iframe iframe {
    background-color: #f3f3f3 !important;
  }
  .sm\:bg-lighter-grey\:iframe iframe {
    background-color: #ddd !important;
  }
  .sm\:bg-light-grey\:iframe iframe {
    background-color: #bbb !important;
  }
  .sm\:bg-grey\:iframe iframe {
    background-color: #8e8e8e !important;
  }
  .sm\:bg-dark-grey\:iframe iframe {
    background-color: #646464 !important;
  }
  .sm\:bg-darker-grey\:iframe iframe {
    background-color: #444 !important;
  }
  .sm\:bg-darkest-grey\:iframe iframe {
    background-color: #222 !important;
  }
  .sm\:bg-black\:iframe iframe {
    background-color: #000 !important;
  }
  .sm\:bg-black-opacity-07\:iframe iframe {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .sm\:bg-transparent\:iframe iframe {
    background-color: transparent !important;
  }
  .sm\:bg-default\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .sm\:bg-highlight\:iframe iframe {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .sm\:bg-link--hover\:iframe iframe {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .sm\:bg-clear\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .sm\:bg-lightest\:iframe iframe {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .sm\:bg-lighter\:iframe iframe {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .sm\:bg-light\:iframe iframe {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .sm\:bg-normal\:iframe iframe {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .sm\:bg-dark\:iframe iframe {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .sm\:bg-darker\:iframe iframe {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .sm\:bg-darkest\:iframe iframe {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .sm\:bg-opaque\:iframe iframe {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:bg-red {
    background-color: #f12b3b !important;
  }
  .md\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .md\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .md\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .md\:bg-blue {
    background-color: #008fce !important;
  }
  .md\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .md\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .md\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .md\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .md\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .md\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .md\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .md\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .md\:bg-green {
    background-color: #66a54a !important;
  }
  .md\:bg-light-green {
    background-color: #77b65b !important;
  }
  .md\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .md\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .md\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .md\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .md\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .md\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .md\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .md\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .md\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .md\:bg-white {
    background-color: #fff !important;
  }
  .md\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .md\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .md\:bg-light-grey {
    background-color: #bbb !important;
  }
  .md\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .md\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .md\:bg-darker-grey {
    background-color: #444 !important;
  }
  .md\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .md\:bg-black {
    background-color: #000 !important;
  }
  .md\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:bg-transparent {
    background-color: transparent !important;
  }
  .md\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .md\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .md\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .md\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .md\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .md\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .md\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .md\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .md\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .md\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .md\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .md\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  a:hover .md\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  a:hover .md\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  a:hover .md\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  a:hover .md\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  a:hover .md\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  a:hover .md\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  a:hover .md\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  a:hover .md\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  a:hover .md\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  a:hover .md\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  a:hover .md\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  a:hover .md\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  a:hover .md\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  a:hover .md\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  a:hover .md\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  a:hover .md\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  a:hover .md\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  a:hover .md\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  a:hover .md\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  a:hover .md\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  a:hover .md\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  a:hover .md\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  a:hover .md\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  a:hover .md\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  a:hover .md\:hover\:bg-white {
    background-color: #fff !important;
  }
  a:hover .md\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .md\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .md\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .md\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .md\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  a:hover .md\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  a:hover .md\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  a:hover .md\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  a:hover .md\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  a:hover .md\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  a:hover .md\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  a:hover .md\:hover\:bg-black {
    background-color: #000 !important;
  }
  a:hover .md\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .md\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  a:hover .md\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  a:hover .md\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  a:hover .md\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  a:hover .md\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  a:hover .md\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  a:hover .md\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  a:hover .md\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  a:hover .md\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  a:hover .md\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  a:hover .md\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  a:hover .md\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  a:hover .md\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  button:hover .md\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  button:hover .md\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  button:hover .md\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  button:hover .md\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  button:hover .md\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  button:hover .md\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  button:hover .md\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  button:hover .md\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  button:hover .md\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  button:hover .md\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  button:hover .md\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  button:hover .md\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  button:hover .md\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  button:hover .md\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  button:hover .md\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  button:hover .md\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  button:hover .md\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  button:hover .md\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  button:hover .md\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  button:hover .md\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  button:hover .md\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  button:hover .md\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  button:hover .md\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  button:hover .md\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  button:hover .md\:hover\:bg-white {
    background-color: #fff !important;
  }
  button:hover .md\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .md\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .md\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .md\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .md\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  button:hover .md\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  button:hover .md\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  button:hover .md\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  button:hover .md\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  button:hover .md\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  button:hover .md\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  button:hover .md\:hover\:bg-black {
    background-color: #000 !important;
  }
  button:hover .md\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .md\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  button:hover .md\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  button:hover .md\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  button:hover .md\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  button:hover .md\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  button:hover .md\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  button:hover .md\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  button:hover .md\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  button:hover .md\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  button:hover .md\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  button:hover .md\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  button:hover .md\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  button:hover .md\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .btn:hover .md\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  .btn:hover .md\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .btn:hover .md\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .btn:hover .md\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .btn:hover .md\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  .btn:hover .md\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .btn:hover .md\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .btn:hover .md\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .btn:hover .md\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .btn:hover .md\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .btn:hover .md\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .btn:hover .md\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .btn:hover .md\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .btn:hover .md\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  .btn:hover .md\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  .btn:hover .md\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .btn:hover .md\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .btn:hover .md\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .btn:hover .md\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .btn:hover .md\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .btn:hover .md\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .btn:hover .md\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .btn:hover .md\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .btn:hover .md\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .btn:hover .md\:hover\:bg-white {
    background-color: #fff !important;
  }
  .btn:hover .md\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .md\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .md\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .md\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .md\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .btn:hover .md\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .btn:hover .md\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  .btn:hover .md\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .btn:hover .md\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .btn:hover .md\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  .btn:hover .md\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .btn:hover .md\:hover\:bg-black {
    background-color: #000 !important;
  }
  .btn:hover .md\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .md\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  .btn:hover .md\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .btn:hover .md\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .btn:hover .md\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .btn:hover .md\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .btn:hover .md\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .btn:hover .md\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .btn:hover .md\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .btn:hover .md\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .btn:hover .md\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .btn:hover .md\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .btn:hover .md\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .btn:hover .md\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  input:hover .md\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  input:hover .md\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  input:hover .md\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  input:hover .md\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  input:hover .md\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  input:hover .md\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  input:hover .md\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  input:hover .md\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  input:hover .md\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  input:hover .md\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  input:hover .md\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  input:hover .md\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  input:hover .md\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  input:hover .md\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  input:hover .md\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  input:hover .md\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  input:hover .md\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  input:hover .md\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  input:hover .md\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  input:hover .md\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  input:hover .md\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  input:hover .md\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  input:hover .md\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  input:hover .md\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  input:hover .md\:hover\:bg-white {
    background-color: #fff !important;
  }
  input:hover .md\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .md\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .md\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .md\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .md\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  input:hover .md\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  input:hover .md\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  input:hover .md\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  input:hover .md\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  input:hover .md\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  input:hover .md\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  input:hover .md\:hover\:bg-black {
    background-color: #000 !important;
  }
  input:hover .md\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .md\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  input:hover .md\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  input:hover .md\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  input:hover .md\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  input:hover .md\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  input:hover .md\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  input:hover .md\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  input:hover .md\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  input:hover .md\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  input:hover .md\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  input:hover .md\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  input:hover .md\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  input:hover .md\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .md\:bg-red\:hover:hover {
    background-color: #f12b3b !important;
  }
  .md\:bg-dark-red\:hover:hover {
    background-color: #d2212f !important;
  }
  .md\:bg-dark-blue\:hover:hover {
    background-color: #0273aa !important;
  }
  .md\:bg-darker-blue\:hover:hover {
    background-color: #063b63 !important;
  }
  .md\:bg-blue\:hover:hover {
    background-color: #008fce !important;
  }
  .md\:bg-light-blue\:hover:hover {
    background-color: #4ba6ce !important;
  }
  .md\:bg-lighter-blue\:hover:hover {
    background-color: #c4e5f4 !important;
  }
  .md\:bg-lightest-blue\:hover:hover {
    background-color: #f1f7fa !important;
  }
  .md\:bg-turquoise\:hover:hover {
    background-color: #86c6bb !important;
  }
  .md\:bg-light-turquoise\:hover:hover {
    background-color: #a0d1c9 !important;
  }
  .md\:bg-lightest-turquoise\:hover:hover {
    background-color: #eff4f3 !important;
  }
  .md\:bg-darker-green\:hover:hover {
    background-color: #2f4f21 !important;
  }
  .md\:bg-dark-green\:hover:hover {
    background-color: #456f32 !important;
  }
  .md\:bg-green\:hover:hover {
    background-color: #66a54a !important;
  }
  .md\:bg-light-green\:hover:hover {
    background-color: #77b65b !important;
  }
  .md\:bg-lighter-green\:hover:hover {
    background-color: #c9e4bc !important;
  }
  .md\:bg-lightest-green\:hover:hover {
    background-color: #eff6ec !important;
  }
  .md\:bg-darker-yellow\:hover:hover {
    background-color: #483206 !important;
  }
  .md\:bg-dark-yellow\:hover:hover {
    background-color: #b5862a !important;
  }
  .md\:bg-yellow\:hover:hover {
    background-color: #f2b63f !important;
  }
  .md\:bg-light-yellow\:hover:hover {
    background-color: #f5cd78 !important;
  }
  .md\:bg-lighter-yellow\:hover:hover {
    background-color: #f8ecc5 !important;
  }
  .md\:bg-lightest-yellow\:hover:hover {
    background-color: #faf9e7 !important;
  }
  .md\:bg-beige\:hover:hover {
    background-color: #dbd3c9 !important;
  }
  .md\:bg-white\:hover:hover {
    background-color: #fff !important;
  }
  .md\:bg-white-opacity-02\:hover:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:bg-white-opacity-03\:hover:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:bg-white-opacity-05\:hover:hover {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:bg-white-opacity-07\:hover:hover {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:bg-lightest-grey\:hover:hover {
    background-color: #f3f3f3 !important;
  }
  .md\:bg-lighter-grey\:hover:hover {
    background-color: #ddd !important;
  }
  .md\:bg-light-grey\:hover:hover {
    background-color: #bbb !important;
  }
  .md\:bg-grey\:hover:hover {
    background-color: #8e8e8e !important;
  }
  .md\:bg-dark-grey\:hover:hover {
    background-color: #646464 !important;
  }
  .md\:bg-darker-grey\:hover:hover {
    background-color: #444 !important;
  }
  .md\:bg-darkest-grey\:hover:hover {
    background-color: #222 !important;
  }
  .md\:bg-black\:hover:hover {
    background-color: #000 !important;
  }
  .md\:bg-black-opacity-07\:hover:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:bg-transparent\:hover:hover {
    background-color: transparent !important;
  }
  .md\:bg-default\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .md\:bg-highlight\:hover:hover {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .md\:bg-link--hover\:hover:hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .md\:bg-clear\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .md\:bg-lightest\:hover:hover {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .md\:bg-lighter\:hover:hover {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .md\:bg-light\:hover:hover {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .md\:bg-normal\:hover:hover {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .md\:bg-dark\:hover:hover {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .md\:bg-darker\:hover:hover {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .md\:bg-darkest\:hover:hover {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .md\:bg-opaque\:hover:hover {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .md\:bg-red\:hover\:before:hover:before {
    background-color: #f12b3b !important;
  }
  .md\:bg-dark-red\:hover\:before:hover:before {
    background-color: #d2212f !important;
  }
  .md\:bg-dark-blue\:hover\:before:hover:before {
    background-color: #0273aa !important;
  }
  .md\:bg-darker-blue\:hover\:before:hover:before {
    background-color: #063b63 !important;
  }
  .md\:bg-blue\:hover\:before:hover:before {
    background-color: #008fce !important;
  }
  .md\:bg-light-blue\:hover\:before:hover:before {
    background-color: #4ba6ce !important;
  }
  .md\:bg-lighter-blue\:hover\:before:hover:before {
    background-color: #c4e5f4 !important;
  }
  .md\:bg-lightest-blue\:hover\:before:hover:before {
    background-color: #f1f7fa !important;
  }
  .md\:bg-turquoise\:hover\:before:hover:before {
    background-color: #86c6bb !important;
  }
  .md\:bg-light-turquoise\:hover\:before:hover:before {
    background-color: #a0d1c9 !important;
  }
  .md\:bg-lightest-turquoise\:hover\:before:hover:before {
    background-color: #eff4f3 !important;
  }
  .md\:bg-darker-green\:hover\:before:hover:before {
    background-color: #2f4f21 !important;
  }
  .md\:bg-dark-green\:hover\:before:hover:before {
    background-color: #456f32 !important;
  }
  .md\:bg-green\:hover\:before:hover:before {
    background-color: #66a54a !important;
  }
  .md\:bg-light-green\:hover\:before:hover:before {
    background-color: #77b65b !important;
  }
  .md\:bg-lighter-green\:hover\:before:hover:before {
    background-color: #c9e4bc !important;
  }
  .md\:bg-lightest-green\:hover\:before:hover:before {
    background-color: #eff6ec !important;
  }
  .md\:bg-darker-yellow\:hover\:before:hover:before {
    background-color: #483206 !important;
  }
  .md\:bg-dark-yellow\:hover\:before:hover:before {
    background-color: #b5862a !important;
  }
  .md\:bg-yellow\:hover\:before:hover:before {
    background-color: #f2b63f !important;
  }
  .md\:bg-light-yellow\:hover\:before:hover:before {
    background-color: #f5cd78 !important;
  }
  .md\:bg-lighter-yellow\:hover\:before:hover:before {
    background-color: #f8ecc5 !important;
  }
  .md\:bg-lightest-yellow\:hover\:before:hover:before {
    background-color: #faf9e7 !important;
  }
  .md\:bg-beige\:hover\:before:hover:before {
    background-color: #dbd3c9 !important;
  }
  .md\:bg-white\:hover\:before:hover:before {
    background-color: #fff !important;
  }
  .md\:bg-white-opacity-02\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:bg-white-opacity-03\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:bg-white-opacity-05\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:bg-white-opacity-07\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:bg-lightest-grey\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
  }
  .md\:bg-lighter-grey\:hover\:before:hover:before {
    background-color: #ddd !important;
  }
  .md\:bg-light-grey\:hover\:before:hover:before {
    background-color: #bbb !important;
  }
  .md\:bg-grey\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
  }
  .md\:bg-dark-grey\:hover\:before:hover:before {
    background-color: #646464 !important;
  }
  .md\:bg-darker-grey\:hover\:before:hover:before {
    background-color: #444 !important;
  }
  .md\:bg-darkest-grey\:hover\:before:hover:before {
    background-color: #222 !important;
  }
  .md\:bg-black\:hover\:before:hover:before {
    background-color: #000 !important;
  }
  .md\:bg-black-opacity-07\:hover\:before:hover:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:bg-transparent\:hover\:before:hover:before {
    background-color: transparent !important;
  }
  .md\:bg-default\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .md\:bg-highlight\:hover\:before:hover:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .md\:bg-link--hover\:hover\:before:hover:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .md\:bg-clear\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .md\:bg-lightest\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .md\:bg-lighter\:hover\:before:hover:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .md\:bg-light\:hover\:before:hover:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .md\:bg-normal\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .md\:bg-dark\:hover\:before:hover:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .md\:bg-darker\:hover\:before:hover:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .md\:bg-darkest\:hover\:before:hover:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .md\:bg-opaque\:hover\:before:hover:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .md\:bg-red\:hover\:after:hover:after {
    background-color: #f12b3b !important;
  }
  .md\:bg-dark-red\:hover\:after:hover:after {
    background-color: #d2212f !important;
  }
  .md\:bg-dark-blue\:hover\:after:hover:after {
    background-color: #0273aa !important;
  }
  .md\:bg-darker-blue\:hover\:after:hover:after {
    background-color: #063b63 !important;
  }
  .md\:bg-blue\:hover\:after:hover:after {
    background-color: #008fce !important;
  }
  .md\:bg-light-blue\:hover\:after:hover:after {
    background-color: #4ba6ce !important;
  }
  .md\:bg-lighter-blue\:hover\:after:hover:after {
    background-color: #c4e5f4 !important;
  }
  .md\:bg-lightest-blue\:hover\:after:hover:after {
    background-color: #f1f7fa !important;
  }
  .md\:bg-turquoise\:hover\:after:hover:after {
    background-color: #86c6bb !important;
  }
  .md\:bg-light-turquoise\:hover\:after:hover:after {
    background-color: #a0d1c9 !important;
  }
  .md\:bg-lightest-turquoise\:hover\:after:hover:after {
    background-color: #eff4f3 !important;
  }
  .md\:bg-darker-green\:hover\:after:hover:after {
    background-color: #2f4f21 !important;
  }
  .md\:bg-dark-green\:hover\:after:hover:after {
    background-color: #456f32 !important;
  }
  .md\:bg-green\:hover\:after:hover:after {
    background-color: #66a54a !important;
  }
  .md\:bg-light-green\:hover\:after:hover:after {
    background-color: #77b65b !important;
  }
  .md\:bg-lighter-green\:hover\:after:hover:after {
    background-color: #c9e4bc !important;
  }
  .md\:bg-lightest-green\:hover\:after:hover:after {
    background-color: #eff6ec !important;
  }
  .md\:bg-darker-yellow\:hover\:after:hover:after {
    background-color: #483206 !important;
  }
  .md\:bg-dark-yellow\:hover\:after:hover:after {
    background-color: #b5862a !important;
  }
  .md\:bg-yellow\:hover\:after:hover:after {
    background-color: #f2b63f !important;
  }
  .md\:bg-light-yellow\:hover\:after:hover:after {
    background-color: #f5cd78 !important;
  }
  .md\:bg-lighter-yellow\:hover\:after:hover:after {
    background-color: #f8ecc5 !important;
  }
  .md\:bg-lightest-yellow\:hover\:after:hover:after {
    background-color: #faf9e7 !important;
  }
  .md\:bg-beige\:hover\:after:hover:after {
    background-color: #dbd3c9 !important;
  }
  .md\:bg-white\:hover\:after:hover:after {
    background-color: #fff !important;
  }
  .md\:bg-white-opacity-02\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:bg-white-opacity-03\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:bg-white-opacity-05\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:bg-white-opacity-07\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:bg-lightest-grey\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
  }
  .md\:bg-lighter-grey\:hover\:after:hover:after {
    background-color: #ddd !important;
  }
  .md\:bg-light-grey\:hover\:after:hover:after {
    background-color: #bbb !important;
  }
  .md\:bg-grey\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
  }
  .md\:bg-dark-grey\:hover\:after:hover:after {
    background-color: #646464 !important;
  }
  .md\:bg-darker-grey\:hover\:after:hover:after {
    background-color: #444 !important;
  }
  .md\:bg-darkest-grey\:hover\:after:hover:after {
    background-color: #222 !important;
  }
  .md\:bg-black\:hover\:after:hover:after {
    background-color: #000 !important;
  }
  .md\:bg-black-opacity-07\:hover\:after:hover:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:bg-transparent\:hover\:after:hover:after {
    background-color: transparent !important;
  }
  .md\:bg-default\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .md\:bg-highlight\:hover\:after:hover:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .md\:bg-link--hover\:hover\:after:hover:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .md\:bg-clear\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .md\:bg-lightest\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .md\:bg-lighter\:hover\:after:hover:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .md\:bg-light\:hover\:after:hover:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .md\:bg-normal\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .md\:bg-dark\:hover\:after:hover:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .md\:bg-darker\:hover\:after:hover:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .md\:bg-darkest\:hover\:after:hover:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .md\:bg-opaque\:hover\:after:hover:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .md\:bg-red\:before:before {
    background-color: #f12b3b !important;
  }
  .md\:bg-dark-red\:before:before {
    background-color: #d2212f !important;
  }
  .md\:bg-dark-blue\:before:before {
    background-color: #0273aa !important;
  }
  .md\:bg-darker-blue\:before:before {
    background-color: #063b63 !important;
  }
  .md\:bg-blue\:before:before {
    background-color: #008fce !important;
  }
  .md\:bg-light-blue\:before:before {
    background-color: #4ba6ce !important;
  }
  .md\:bg-lighter-blue\:before:before {
    background-color: #c4e5f4 !important;
  }
  .md\:bg-lightest-blue\:before:before {
    background-color: #f1f7fa !important;
  }
  .md\:bg-turquoise\:before:before {
    background-color: #86c6bb !important;
  }
  .md\:bg-light-turquoise\:before:before {
    background-color: #a0d1c9 !important;
  }
  .md\:bg-lightest-turquoise\:before:before {
    background-color: #eff4f3 !important;
  }
  .md\:bg-darker-green\:before:before {
    background-color: #2f4f21 !important;
  }
  .md\:bg-dark-green\:before:before {
    background-color: #456f32 !important;
  }
  .md\:bg-green\:before:before {
    background-color: #66a54a !important;
  }
  .md\:bg-light-green\:before:before {
    background-color: #77b65b !important;
  }
  .md\:bg-lighter-green\:before:before {
    background-color: #c9e4bc !important;
  }
  .md\:bg-lightest-green\:before:before {
    background-color: #eff6ec !important;
  }
  .md\:bg-darker-yellow\:before:before {
    background-color: #483206 !important;
  }
  .md\:bg-dark-yellow\:before:before {
    background-color: #b5862a !important;
  }
  .md\:bg-yellow\:before:before {
    background-color: #f2b63f !important;
  }
  .md\:bg-light-yellow\:before:before {
    background-color: #f5cd78 !important;
  }
  .md\:bg-lighter-yellow\:before:before {
    background-color: #f8ecc5 !important;
  }
  .md\:bg-lightest-yellow\:before:before {
    background-color: #faf9e7 !important;
  }
  .md\:bg-beige\:before:before {
    background-color: #dbd3c9 !important;
  }
  .md\:bg-white\:before:before {
    background-color: #fff !important;
  }
  .md\:bg-white-opacity-02\:before:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:bg-white-opacity-03\:before:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:bg-white-opacity-05\:before:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:bg-white-opacity-07\:before:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:bg-lightest-grey\:before:before {
    background-color: #f3f3f3 !important;
  }
  .md\:bg-lighter-grey\:before:before {
    background-color: #ddd !important;
  }
  .md\:bg-light-grey\:before:before {
    background-color: #bbb !important;
  }
  .md\:bg-grey\:before:before {
    background-color: #8e8e8e !important;
  }
  .md\:bg-dark-grey\:before:before {
    background-color: #646464 !important;
  }
  .md\:bg-darker-grey\:before:before {
    background-color: #444 !important;
  }
  .md\:bg-darkest-grey\:before:before {
    background-color: #222 !important;
  }
  .md\:bg-black\:before:before {
    background-color: #000 !important;
  }
  .md\:bg-black-opacity-07\:before:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:bg-transparent\:before:before {
    background-color: transparent !important;
  }
  .md\:bg-default\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .md\:bg-highlight\:before:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .md\:bg-link--hover\:before:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .md\:bg-clear\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .md\:bg-lightest\:before:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .md\:bg-lighter\:before:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .md\:bg-light\:before:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .md\:bg-normal\:before:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .md\:bg-dark\:before:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .md\:bg-darker\:before:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .md\:bg-darkest\:before:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .md\:bg-opaque\:before:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .md\:bg-red\:after:after {
    background-color: #f12b3b !important;
  }
  .md\:bg-dark-red\:after:after {
    background-color: #d2212f !important;
  }
  .md\:bg-dark-blue\:after:after {
    background-color: #0273aa !important;
  }
  .md\:bg-darker-blue\:after:after {
    background-color: #063b63 !important;
  }
  .md\:bg-blue\:after:after {
    background-color: #008fce !important;
  }
  .md\:bg-light-blue\:after:after {
    background-color: #4ba6ce !important;
  }
  .md\:bg-lighter-blue\:after:after {
    background-color: #c4e5f4 !important;
  }
  .md\:bg-lightest-blue\:after:after {
    background-color: #f1f7fa !important;
  }
  .md\:bg-turquoise\:after:after {
    background-color: #86c6bb !important;
  }
  .md\:bg-light-turquoise\:after:after {
    background-color: #a0d1c9 !important;
  }
  .md\:bg-lightest-turquoise\:after:after {
    background-color: #eff4f3 !important;
  }
  .md\:bg-darker-green\:after:after {
    background-color: #2f4f21 !important;
  }
  .md\:bg-dark-green\:after:after {
    background-color: #456f32 !important;
  }
  .md\:bg-green\:after:after {
    background-color: #66a54a !important;
  }
  .md\:bg-light-green\:after:after {
    background-color: #77b65b !important;
  }
  .md\:bg-lighter-green\:after:after {
    background-color: #c9e4bc !important;
  }
  .md\:bg-lightest-green\:after:after {
    background-color: #eff6ec !important;
  }
  .md\:bg-darker-yellow\:after:after {
    background-color: #483206 !important;
  }
  .md\:bg-dark-yellow\:after:after {
    background-color: #b5862a !important;
  }
  .md\:bg-yellow\:after:after {
    background-color: #f2b63f !important;
  }
  .md\:bg-light-yellow\:after:after {
    background-color: #f5cd78 !important;
  }
  .md\:bg-lighter-yellow\:after:after {
    background-color: #f8ecc5 !important;
  }
  .md\:bg-lightest-yellow\:after:after {
    background-color: #faf9e7 !important;
  }
  .md\:bg-beige\:after:after {
    background-color: #dbd3c9 !important;
  }
  .md\:bg-white\:after:after {
    background-color: #fff !important;
  }
  .md\:bg-white-opacity-02\:after:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:bg-white-opacity-03\:after:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:bg-white-opacity-05\:after:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:bg-white-opacity-07\:after:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:bg-lightest-grey\:after:after {
    background-color: #f3f3f3 !important;
  }
  .md\:bg-lighter-grey\:after:after {
    background-color: #ddd !important;
  }
  .md\:bg-light-grey\:after:after {
    background-color: #bbb !important;
  }
  .md\:bg-grey\:after:after {
    background-color: #8e8e8e !important;
  }
  .md\:bg-dark-grey\:after:after {
    background-color: #646464 !important;
  }
  .md\:bg-darker-grey\:after:after {
    background-color: #444 !important;
  }
  .md\:bg-darkest-grey\:after:after {
    background-color: #222 !important;
  }
  .md\:bg-black\:after:after {
    background-color: #000 !important;
  }
  .md\:bg-black-opacity-07\:after:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:bg-transparent\:after:after {
    background-color: transparent !important;
  }
  .md\:bg-default\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .md\:bg-highlight\:after:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .md\:bg-link--hover\:after:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .md\:bg-clear\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .md\:bg-lightest\:after:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .md\:bg-lighter\:after:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .md\:bg-light\:after:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .md\:bg-normal\:after:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .md\:bg-dark\:after:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .md\:bg-darker\:after:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .md\:bg-darkest\:after:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .md\:bg-opaque\:after:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .md\:bg-red\:iframe iframe {
    background-color: #f12b3b !important;
  }
  .md\:bg-dark-red\:iframe iframe {
    background-color: #d2212f !important;
  }
  .md\:bg-dark-blue\:iframe iframe {
    background-color: #0273aa !important;
  }
  .md\:bg-darker-blue\:iframe iframe {
    background-color: #063b63 !important;
  }
  .md\:bg-blue\:iframe iframe {
    background-color: #008fce !important;
  }
  .md\:bg-light-blue\:iframe iframe {
    background-color: #4ba6ce !important;
  }
  .md\:bg-lighter-blue\:iframe iframe {
    background-color: #c4e5f4 !important;
  }
  .md\:bg-lightest-blue\:iframe iframe {
    background-color: #f1f7fa !important;
  }
  .md\:bg-turquoise\:iframe iframe {
    background-color: #86c6bb !important;
  }
  .md\:bg-light-turquoise\:iframe iframe {
    background-color: #a0d1c9 !important;
  }
  .md\:bg-lightest-turquoise\:iframe iframe {
    background-color: #eff4f3 !important;
  }
  .md\:bg-darker-green\:iframe iframe {
    background-color: #2f4f21 !important;
  }
  .md\:bg-dark-green\:iframe iframe {
    background-color: #456f32 !important;
  }
  .md\:bg-green\:iframe iframe {
    background-color: #66a54a !important;
  }
  .md\:bg-light-green\:iframe iframe {
    background-color: #77b65b !important;
  }
  .md\:bg-lighter-green\:iframe iframe {
    background-color: #c9e4bc !important;
  }
  .md\:bg-lightest-green\:iframe iframe {
    background-color: #eff6ec !important;
  }
  .md\:bg-darker-yellow\:iframe iframe {
    background-color: #483206 !important;
  }
  .md\:bg-dark-yellow\:iframe iframe {
    background-color: #b5862a !important;
  }
  .md\:bg-yellow\:iframe iframe {
    background-color: #f2b63f !important;
  }
  .md\:bg-light-yellow\:iframe iframe {
    background-color: #f5cd78 !important;
  }
  .md\:bg-lighter-yellow\:iframe iframe {
    background-color: #f8ecc5 !important;
  }
  .md\:bg-lightest-yellow\:iframe iframe {
    background-color: #faf9e7 !important;
  }
  .md\:bg-beige\:iframe iframe {
    background-color: #dbd3c9 !important;
  }
  .md\:bg-white\:iframe iframe {
    background-color: #fff !important;
  }
  .md\:bg-white-opacity-02\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:bg-white-opacity-03\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:bg-white-opacity-05\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:bg-white-opacity-07\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:bg-lightest-grey\:iframe iframe {
    background-color: #f3f3f3 !important;
  }
  .md\:bg-lighter-grey\:iframe iframe {
    background-color: #ddd !important;
  }
  .md\:bg-light-grey\:iframe iframe {
    background-color: #bbb !important;
  }
  .md\:bg-grey\:iframe iframe {
    background-color: #8e8e8e !important;
  }
  .md\:bg-dark-grey\:iframe iframe {
    background-color: #646464 !important;
  }
  .md\:bg-darker-grey\:iframe iframe {
    background-color: #444 !important;
  }
  .md\:bg-darkest-grey\:iframe iframe {
    background-color: #222 !important;
  }
  .md\:bg-black\:iframe iframe {
    background-color: #000 !important;
  }
  .md\:bg-black-opacity-07\:iframe iframe {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .md\:bg-transparent\:iframe iframe {
    background-color: transparent !important;
  }
  .md\:bg-default\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .md\:bg-highlight\:iframe iframe {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .md\:bg-link--hover\:iframe iframe {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .md\:bg-clear\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .md\:bg-lightest\:iframe iframe {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .md\:bg-lighter\:iframe iframe {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .md\:bg-light\:iframe iframe {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .md\:bg-normal\:iframe iframe {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .md\:bg-dark\:iframe iframe {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .md\:bg-darker\:iframe iframe {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .md\:bg-darkest\:iframe iframe {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .md\:bg-opaque\:iframe iframe {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:bg-red {
    background-color: #f12b3b !important;
  }
  .lg\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .lg\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .lg\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .lg\:bg-blue {
    background-color: #008fce !important;
  }
  .lg\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .lg\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .lg\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .lg\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .lg\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .lg\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .lg\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .lg\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .lg\:bg-green {
    background-color: #66a54a !important;
  }
  .lg\:bg-light-green {
    background-color: #77b65b !important;
  }
  .lg\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .lg\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .lg\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .lg\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .lg\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .lg\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .lg\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .lg\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .lg\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .lg\:bg-white {
    background-color: #fff !important;
  }
  .lg\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .lg\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .lg\:bg-light-grey {
    background-color: #bbb !important;
  }
  .lg\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .lg\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .lg\:bg-darker-grey {
    background-color: #444 !important;
  }
  .lg\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .lg\:bg-black {
    background-color: #000 !important;
  }
  .lg\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:bg-transparent {
    background-color: transparent !important;
  }
  .lg\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .lg\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .lg\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .lg\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .lg\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .lg\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .lg\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .lg\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .lg\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .lg\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .lg\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .lg\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  a:hover .lg\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  a:hover .lg\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  a:hover .lg\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  a:hover .lg\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  a:hover .lg\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  a:hover .lg\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  a:hover .lg\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  a:hover .lg\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  a:hover .lg\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  a:hover .lg\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  a:hover .lg\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  a:hover .lg\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  a:hover .lg\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  a:hover .lg\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  a:hover .lg\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  a:hover .lg\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  a:hover .lg\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  a:hover .lg\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  a:hover .lg\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  a:hover .lg\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  a:hover .lg\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  a:hover .lg\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  a:hover .lg\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  a:hover .lg\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  a:hover .lg\:hover\:bg-white {
    background-color: #fff !important;
  }
  a:hover .lg\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .lg\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .lg\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .lg\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .lg\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  a:hover .lg\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  a:hover .lg\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  a:hover .lg\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  a:hover .lg\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  a:hover .lg\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  a:hover .lg\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  a:hover .lg\:hover\:bg-black {
    background-color: #000 !important;
  }
  a:hover .lg\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .lg\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  a:hover .lg\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  a:hover .lg\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  a:hover .lg\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  a:hover .lg\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  a:hover .lg\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  a:hover .lg\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  a:hover .lg\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  a:hover .lg\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  a:hover .lg\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  a:hover .lg\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  a:hover .lg\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  a:hover .lg\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  button:hover .lg\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  button:hover .lg\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  button:hover .lg\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  button:hover .lg\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  button:hover .lg\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  button:hover .lg\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  button:hover .lg\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  button:hover .lg\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  button:hover .lg\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  button:hover .lg\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  button:hover .lg\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  button:hover .lg\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  button:hover .lg\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  button:hover .lg\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  button:hover .lg\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  button:hover .lg\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  button:hover .lg\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  button:hover .lg\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  button:hover .lg\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  button:hover .lg\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  button:hover .lg\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  button:hover .lg\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  button:hover .lg\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  button:hover .lg\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  button:hover .lg\:hover\:bg-white {
    background-color: #fff !important;
  }
  button:hover .lg\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .lg\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .lg\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .lg\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .lg\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  button:hover .lg\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  button:hover .lg\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  button:hover .lg\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  button:hover .lg\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  button:hover .lg\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  button:hover .lg\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  button:hover .lg\:hover\:bg-black {
    background-color: #000 !important;
  }
  button:hover .lg\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .lg\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  button:hover .lg\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  button:hover .lg\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  button:hover .lg\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  button:hover .lg\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  button:hover .lg\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  button:hover .lg\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  button:hover .lg\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  button:hover .lg\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  button:hover .lg\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  button:hover .lg\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  button:hover .lg\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  button:hover .lg\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .btn:hover .lg\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  .btn:hover .lg\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .btn:hover .lg\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .btn:hover .lg\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .btn:hover .lg\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  .btn:hover .lg\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .btn:hover .lg\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .btn:hover .lg\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .btn:hover .lg\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .btn:hover .lg\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .btn:hover .lg\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .btn:hover .lg\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .btn:hover .lg\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .btn:hover .lg\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  .btn:hover .lg\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  .btn:hover .lg\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .btn:hover .lg\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .btn:hover .lg\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .btn:hover .lg\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .btn:hover .lg\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .btn:hover .lg\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .btn:hover .lg\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .btn:hover .lg\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .btn:hover .lg\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .btn:hover .lg\:hover\:bg-white {
    background-color: #fff !important;
  }
  .btn:hover .lg\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .lg\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .lg\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .lg\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .lg\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .btn:hover .lg\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .btn:hover .lg\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  .btn:hover .lg\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .btn:hover .lg\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .btn:hover .lg\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  .btn:hover .lg\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .btn:hover .lg\:hover\:bg-black {
    background-color: #000 !important;
  }
  .btn:hover .lg\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .lg\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  .btn:hover .lg\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .btn:hover .lg\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .btn:hover .lg\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .btn:hover .lg\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .btn:hover .lg\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .btn:hover .lg\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .btn:hover .lg\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .btn:hover .lg\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .btn:hover .lg\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .btn:hover .lg\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .btn:hover .lg\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .btn:hover .lg\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  input:hover .lg\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  input:hover .lg\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  input:hover .lg\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  input:hover .lg\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  input:hover .lg\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  input:hover .lg\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  input:hover .lg\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  input:hover .lg\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  input:hover .lg\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  input:hover .lg\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  input:hover .lg\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  input:hover .lg\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  input:hover .lg\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  input:hover .lg\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  input:hover .lg\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  input:hover .lg\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  input:hover .lg\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  input:hover .lg\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  input:hover .lg\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  input:hover .lg\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  input:hover .lg\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  input:hover .lg\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  input:hover .lg\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  input:hover .lg\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  input:hover .lg\:hover\:bg-white {
    background-color: #fff !important;
  }
  input:hover .lg\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .lg\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .lg\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .lg\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .lg\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  input:hover .lg\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  input:hover .lg\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  input:hover .lg\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  input:hover .lg\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  input:hover .lg\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  input:hover .lg\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  input:hover .lg\:hover\:bg-black {
    background-color: #000 !important;
  }
  input:hover .lg\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .lg\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  input:hover .lg\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  input:hover .lg\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  input:hover .lg\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  input:hover .lg\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  input:hover .lg\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  input:hover .lg\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  input:hover .lg\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  input:hover .lg\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  input:hover .lg\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  input:hover .lg\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  input:hover .lg\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  input:hover .lg\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .lg\:bg-red\:hover:hover {
    background-color: #f12b3b !important;
  }
  .lg\:bg-dark-red\:hover:hover {
    background-color: #d2212f !important;
  }
  .lg\:bg-dark-blue\:hover:hover {
    background-color: #0273aa !important;
  }
  .lg\:bg-darker-blue\:hover:hover {
    background-color: #063b63 !important;
  }
  .lg\:bg-blue\:hover:hover {
    background-color: #008fce !important;
  }
  .lg\:bg-light-blue\:hover:hover {
    background-color: #4ba6ce !important;
  }
  .lg\:bg-lighter-blue\:hover:hover {
    background-color: #c4e5f4 !important;
  }
  .lg\:bg-lightest-blue\:hover:hover {
    background-color: #f1f7fa !important;
  }
  .lg\:bg-turquoise\:hover:hover {
    background-color: #86c6bb !important;
  }
  .lg\:bg-light-turquoise\:hover:hover {
    background-color: #a0d1c9 !important;
  }
  .lg\:bg-lightest-turquoise\:hover:hover {
    background-color: #eff4f3 !important;
  }
  .lg\:bg-darker-green\:hover:hover {
    background-color: #2f4f21 !important;
  }
  .lg\:bg-dark-green\:hover:hover {
    background-color: #456f32 !important;
  }
  .lg\:bg-green\:hover:hover {
    background-color: #66a54a !important;
  }
  .lg\:bg-light-green\:hover:hover {
    background-color: #77b65b !important;
  }
  .lg\:bg-lighter-green\:hover:hover {
    background-color: #c9e4bc !important;
  }
  .lg\:bg-lightest-green\:hover:hover {
    background-color: #eff6ec !important;
  }
  .lg\:bg-darker-yellow\:hover:hover {
    background-color: #483206 !important;
  }
  .lg\:bg-dark-yellow\:hover:hover {
    background-color: #b5862a !important;
  }
  .lg\:bg-yellow\:hover:hover {
    background-color: #f2b63f !important;
  }
  .lg\:bg-light-yellow\:hover:hover {
    background-color: #f5cd78 !important;
  }
  .lg\:bg-lighter-yellow\:hover:hover {
    background-color: #f8ecc5 !important;
  }
  .lg\:bg-lightest-yellow\:hover:hover {
    background-color: #faf9e7 !important;
  }
  .lg\:bg-beige\:hover:hover {
    background-color: #dbd3c9 !important;
  }
  .lg\:bg-white\:hover:hover {
    background-color: #fff !important;
  }
  .lg\:bg-white-opacity-02\:hover:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:bg-white-opacity-03\:hover:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:bg-white-opacity-05\:hover:hover {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:bg-white-opacity-07\:hover:hover {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:bg-lightest-grey\:hover:hover {
    background-color: #f3f3f3 !important;
  }
  .lg\:bg-lighter-grey\:hover:hover {
    background-color: #ddd !important;
  }
  .lg\:bg-light-grey\:hover:hover {
    background-color: #bbb !important;
  }
  .lg\:bg-grey\:hover:hover {
    background-color: #8e8e8e !important;
  }
  .lg\:bg-dark-grey\:hover:hover {
    background-color: #646464 !important;
  }
  .lg\:bg-darker-grey\:hover:hover {
    background-color: #444 !important;
  }
  .lg\:bg-darkest-grey\:hover:hover {
    background-color: #222 !important;
  }
  .lg\:bg-black\:hover:hover {
    background-color: #000 !important;
  }
  .lg\:bg-black-opacity-07\:hover:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:bg-transparent\:hover:hover {
    background-color: transparent !important;
  }
  .lg\:bg-default\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .lg\:bg-highlight\:hover:hover {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .lg\:bg-link--hover\:hover:hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .lg\:bg-clear\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .lg\:bg-lightest\:hover:hover {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .lg\:bg-lighter\:hover:hover {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .lg\:bg-light\:hover:hover {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .lg\:bg-normal\:hover:hover {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .lg\:bg-dark\:hover:hover {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .lg\:bg-darker\:hover:hover {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .lg\:bg-darkest\:hover:hover {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .lg\:bg-opaque\:hover:hover {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .lg\:bg-red\:hover\:before:hover:before {
    background-color: #f12b3b !important;
  }
  .lg\:bg-dark-red\:hover\:before:hover:before {
    background-color: #d2212f !important;
  }
  .lg\:bg-dark-blue\:hover\:before:hover:before {
    background-color: #0273aa !important;
  }
  .lg\:bg-darker-blue\:hover\:before:hover:before {
    background-color: #063b63 !important;
  }
  .lg\:bg-blue\:hover\:before:hover:before {
    background-color: #008fce !important;
  }
  .lg\:bg-light-blue\:hover\:before:hover:before {
    background-color: #4ba6ce !important;
  }
  .lg\:bg-lighter-blue\:hover\:before:hover:before {
    background-color: #c4e5f4 !important;
  }
  .lg\:bg-lightest-blue\:hover\:before:hover:before {
    background-color: #f1f7fa !important;
  }
  .lg\:bg-turquoise\:hover\:before:hover:before {
    background-color: #86c6bb !important;
  }
  .lg\:bg-light-turquoise\:hover\:before:hover:before {
    background-color: #a0d1c9 !important;
  }
  .lg\:bg-lightest-turquoise\:hover\:before:hover:before {
    background-color: #eff4f3 !important;
  }
  .lg\:bg-darker-green\:hover\:before:hover:before {
    background-color: #2f4f21 !important;
  }
  .lg\:bg-dark-green\:hover\:before:hover:before {
    background-color: #456f32 !important;
  }
  .lg\:bg-green\:hover\:before:hover:before {
    background-color: #66a54a !important;
  }
  .lg\:bg-light-green\:hover\:before:hover:before {
    background-color: #77b65b !important;
  }
  .lg\:bg-lighter-green\:hover\:before:hover:before {
    background-color: #c9e4bc !important;
  }
  .lg\:bg-lightest-green\:hover\:before:hover:before {
    background-color: #eff6ec !important;
  }
  .lg\:bg-darker-yellow\:hover\:before:hover:before {
    background-color: #483206 !important;
  }
  .lg\:bg-dark-yellow\:hover\:before:hover:before {
    background-color: #b5862a !important;
  }
  .lg\:bg-yellow\:hover\:before:hover:before {
    background-color: #f2b63f !important;
  }
  .lg\:bg-light-yellow\:hover\:before:hover:before {
    background-color: #f5cd78 !important;
  }
  .lg\:bg-lighter-yellow\:hover\:before:hover:before {
    background-color: #f8ecc5 !important;
  }
  .lg\:bg-lightest-yellow\:hover\:before:hover:before {
    background-color: #faf9e7 !important;
  }
  .lg\:bg-beige\:hover\:before:hover:before {
    background-color: #dbd3c9 !important;
  }
  .lg\:bg-white\:hover\:before:hover:before {
    background-color: #fff !important;
  }
  .lg\:bg-white-opacity-02\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:bg-white-opacity-03\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:bg-white-opacity-05\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:bg-white-opacity-07\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:bg-lightest-grey\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
  }
  .lg\:bg-lighter-grey\:hover\:before:hover:before {
    background-color: #ddd !important;
  }
  .lg\:bg-light-grey\:hover\:before:hover:before {
    background-color: #bbb !important;
  }
  .lg\:bg-grey\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
  }
  .lg\:bg-dark-grey\:hover\:before:hover:before {
    background-color: #646464 !important;
  }
  .lg\:bg-darker-grey\:hover\:before:hover:before {
    background-color: #444 !important;
  }
  .lg\:bg-darkest-grey\:hover\:before:hover:before {
    background-color: #222 !important;
  }
  .lg\:bg-black\:hover\:before:hover:before {
    background-color: #000 !important;
  }
  .lg\:bg-black-opacity-07\:hover\:before:hover:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:bg-transparent\:hover\:before:hover:before {
    background-color: transparent !important;
  }
  .lg\:bg-default\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .lg\:bg-highlight\:hover\:before:hover:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .lg\:bg-link--hover\:hover\:before:hover:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .lg\:bg-clear\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .lg\:bg-lightest\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .lg\:bg-lighter\:hover\:before:hover:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .lg\:bg-light\:hover\:before:hover:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .lg\:bg-normal\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .lg\:bg-dark\:hover\:before:hover:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .lg\:bg-darker\:hover\:before:hover:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .lg\:bg-darkest\:hover\:before:hover:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .lg\:bg-opaque\:hover\:before:hover:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .lg\:bg-red\:hover\:after:hover:after {
    background-color: #f12b3b !important;
  }
  .lg\:bg-dark-red\:hover\:after:hover:after {
    background-color: #d2212f !important;
  }
  .lg\:bg-dark-blue\:hover\:after:hover:after {
    background-color: #0273aa !important;
  }
  .lg\:bg-darker-blue\:hover\:after:hover:after {
    background-color: #063b63 !important;
  }
  .lg\:bg-blue\:hover\:after:hover:after {
    background-color: #008fce !important;
  }
  .lg\:bg-light-blue\:hover\:after:hover:after {
    background-color: #4ba6ce !important;
  }
  .lg\:bg-lighter-blue\:hover\:after:hover:after {
    background-color: #c4e5f4 !important;
  }
  .lg\:bg-lightest-blue\:hover\:after:hover:after {
    background-color: #f1f7fa !important;
  }
  .lg\:bg-turquoise\:hover\:after:hover:after {
    background-color: #86c6bb !important;
  }
  .lg\:bg-light-turquoise\:hover\:after:hover:after {
    background-color: #a0d1c9 !important;
  }
  .lg\:bg-lightest-turquoise\:hover\:after:hover:after {
    background-color: #eff4f3 !important;
  }
  .lg\:bg-darker-green\:hover\:after:hover:after {
    background-color: #2f4f21 !important;
  }
  .lg\:bg-dark-green\:hover\:after:hover:after {
    background-color: #456f32 !important;
  }
  .lg\:bg-green\:hover\:after:hover:after {
    background-color: #66a54a !important;
  }
  .lg\:bg-light-green\:hover\:after:hover:after {
    background-color: #77b65b !important;
  }
  .lg\:bg-lighter-green\:hover\:after:hover:after {
    background-color: #c9e4bc !important;
  }
  .lg\:bg-lightest-green\:hover\:after:hover:after {
    background-color: #eff6ec !important;
  }
  .lg\:bg-darker-yellow\:hover\:after:hover:after {
    background-color: #483206 !important;
  }
  .lg\:bg-dark-yellow\:hover\:after:hover:after {
    background-color: #b5862a !important;
  }
  .lg\:bg-yellow\:hover\:after:hover:after {
    background-color: #f2b63f !important;
  }
  .lg\:bg-light-yellow\:hover\:after:hover:after {
    background-color: #f5cd78 !important;
  }
  .lg\:bg-lighter-yellow\:hover\:after:hover:after {
    background-color: #f8ecc5 !important;
  }
  .lg\:bg-lightest-yellow\:hover\:after:hover:after {
    background-color: #faf9e7 !important;
  }
  .lg\:bg-beige\:hover\:after:hover:after {
    background-color: #dbd3c9 !important;
  }
  .lg\:bg-white\:hover\:after:hover:after {
    background-color: #fff !important;
  }
  .lg\:bg-white-opacity-02\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:bg-white-opacity-03\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:bg-white-opacity-05\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:bg-white-opacity-07\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:bg-lightest-grey\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
  }
  .lg\:bg-lighter-grey\:hover\:after:hover:after {
    background-color: #ddd !important;
  }
  .lg\:bg-light-grey\:hover\:after:hover:after {
    background-color: #bbb !important;
  }
  .lg\:bg-grey\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
  }
  .lg\:bg-dark-grey\:hover\:after:hover:after {
    background-color: #646464 !important;
  }
  .lg\:bg-darker-grey\:hover\:after:hover:after {
    background-color: #444 !important;
  }
  .lg\:bg-darkest-grey\:hover\:after:hover:after {
    background-color: #222 !important;
  }
  .lg\:bg-black\:hover\:after:hover:after {
    background-color: #000 !important;
  }
  .lg\:bg-black-opacity-07\:hover\:after:hover:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:bg-transparent\:hover\:after:hover:after {
    background-color: transparent !important;
  }
  .lg\:bg-default\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .lg\:bg-highlight\:hover\:after:hover:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .lg\:bg-link--hover\:hover\:after:hover:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .lg\:bg-clear\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .lg\:bg-lightest\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .lg\:bg-lighter\:hover\:after:hover:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .lg\:bg-light\:hover\:after:hover:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .lg\:bg-normal\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .lg\:bg-dark\:hover\:after:hover:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .lg\:bg-darker\:hover\:after:hover:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .lg\:bg-darkest\:hover\:after:hover:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .lg\:bg-opaque\:hover\:after:hover:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .lg\:bg-red\:before:before {
    background-color: #f12b3b !important;
  }
  .lg\:bg-dark-red\:before:before {
    background-color: #d2212f !important;
  }
  .lg\:bg-dark-blue\:before:before {
    background-color: #0273aa !important;
  }
  .lg\:bg-darker-blue\:before:before {
    background-color: #063b63 !important;
  }
  .lg\:bg-blue\:before:before {
    background-color: #008fce !important;
  }
  .lg\:bg-light-blue\:before:before {
    background-color: #4ba6ce !important;
  }
  .lg\:bg-lighter-blue\:before:before {
    background-color: #c4e5f4 !important;
  }
  .lg\:bg-lightest-blue\:before:before {
    background-color: #f1f7fa !important;
  }
  .lg\:bg-turquoise\:before:before {
    background-color: #86c6bb !important;
  }
  .lg\:bg-light-turquoise\:before:before {
    background-color: #a0d1c9 !important;
  }
  .lg\:bg-lightest-turquoise\:before:before {
    background-color: #eff4f3 !important;
  }
  .lg\:bg-darker-green\:before:before {
    background-color: #2f4f21 !important;
  }
  .lg\:bg-dark-green\:before:before {
    background-color: #456f32 !important;
  }
  .lg\:bg-green\:before:before {
    background-color: #66a54a !important;
  }
  .lg\:bg-light-green\:before:before {
    background-color: #77b65b !important;
  }
  .lg\:bg-lighter-green\:before:before {
    background-color: #c9e4bc !important;
  }
  .lg\:bg-lightest-green\:before:before {
    background-color: #eff6ec !important;
  }
  .lg\:bg-darker-yellow\:before:before {
    background-color: #483206 !important;
  }
  .lg\:bg-dark-yellow\:before:before {
    background-color: #b5862a !important;
  }
  .lg\:bg-yellow\:before:before {
    background-color: #f2b63f !important;
  }
  .lg\:bg-light-yellow\:before:before {
    background-color: #f5cd78 !important;
  }
  .lg\:bg-lighter-yellow\:before:before {
    background-color: #f8ecc5 !important;
  }
  .lg\:bg-lightest-yellow\:before:before {
    background-color: #faf9e7 !important;
  }
  .lg\:bg-beige\:before:before {
    background-color: #dbd3c9 !important;
  }
  .lg\:bg-white\:before:before {
    background-color: #fff !important;
  }
  .lg\:bg-white-opacity-02\:before:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:bg-white-opacity-03\:before:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:bg-white-opacity-05\:before:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:bg-white-opacity-07\:before:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:bg-lightest-grey\:before:before {
    background-color: #f3f3f3 !important;
  }
  .lg\:bg-lighter-grey\:before:before {
    background-color: #ddd !important;
  }
  .lg\:bg-light-grey\:before:before {
    background-color: #bbb !important;
  }
  .lg\:bg-grey\:before:before {
    background-color: #8e8e8e !important;
  }
  .lg\:bg-dark-grey\:before:before {
    background-color: #646464 !important;
  }
  .lg\:bg-darker-grey\:before:before {
    background-color: #444 !important;
  }
  .lg\:bg-darkest-grey\:before:before {
    background-color: #222 !important;
  }
  .lg\:bg-black\:before:before {
    background-color: #000 !important;
  }
  .lg\:bg-black-opacity-07\:before:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:bg-transparent\:before:before {
    background-color: transparent !important;
  }
  .lg\:bg-default\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .lg\:bg-highlight\:before:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .lg\:bg-link--hover\:before:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .lg\:bg-clear\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .lg\:bg-lightest\:before:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .lg\:bg-lighter\:before:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .lg\:bg-light\:before:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .lg\:bg-normal\:before:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .lg\:bg-dark\:before:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .lg\:bg-darker\:before:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .lg\:bg-darkest\:before:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .lg\:bg-opaque\:before:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .lg\:bg-red\:after:after {
    background-color: #f12b3b !important;
  }
  .lg\:bg-dark-red\:after:after {
    background-color: #d2212f !important;
  }
  .lg\:bg-dark-blue\:after:after {
    background-color: #0273aa !important;
  }
  .lg\:bg-darker-blue\:after:after {
    background-color: #063b63 !important;
  }
  .lg\:bg-blue\:after:after {
    background-color: #008fce !important;
  }
  .lg\:bg-light-blue\:after:after {
    background-color: #4ba6ce !important;
  }
  .lg\:bg-lighter-blue\:after:after {
    background-color: #c4e5f4 !important;
  }
  .lg\:bg-lightest-blue\:after:after {
    background-color: #f1f7fa !important;
  }
  .lg\:bg-turquoise\:after:after {
    background-color: #86c6bb !important;
  }
  .lg\:bg-light-turquoise\:after:after {
    background-color: #a0d1c9 !important;
  }
  .lg\:bg-lightest-turquoise\:after:after {
    background-color: #eff4f3 !important;
  }
  .lg\:bg-darker-green\:after:after {
    background-color: #2f4f21 !important;
  }
  .lg\:bg-dark-green\:after:after {
    background-color: #456f32 !important;
  }
  .lg\:bg-green\:after:after {
    background-color: #66a54a !important;
  }
  .lg\:bg-light-green\:after:after {
    background-color: #77b65b !important;
  }
  .lg\:bg-lighter-green\:after:after {
    background-color: #c9e4bc !important;
  }
  .lg\:bg-lightest-green\:after:after {
    background-color: #eff6ec !important;
  }
  .lg\:bg-darker-yellow\:after:after {
    background-color: #483206 !important;
  }
  .lg\:bg-dark-yellow\:after:after {
    background-color: #b5862a !important;
  }
  .lg\:bg-yellow\:after:after {
    background-color: #f2b63f !important;
  }
  .lg\:bg-light-yellow\:after:after {
    background-color: #f5cd78 !important;
  }
  .lg\:bg-lighter-yellow\:after:after {
    background-color: #f8ecc5 !important;
  }
  .lg\:bg-lightest-yellow\:after:after {
    background-color: #faf9e7 !important;
  }
  .lg\:bg-beige\:after:after {
    background-color: #dbd3c9 !important;
  }
  .lg\:bg-white\:after:after {
    background-color: #fff !important;
  }
  .lg\:bg-white-opacity-02\:after:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:bg-white-opacity-03\:after:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:bg-white-opacity-05\:after:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:bg-white-opacity-07\:after:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:bg-lightest-grey\:after:after {
    background-color: #f3f3f3 !important;
  }
  .lg\:bg-lighter-grey\:after:after {
    background-color: #ddd !important;
  }
  .lg\:bg-light-grey\:after:after {
    background-color: #bbb !important;
  }
  .lg\:bg-grey\:after:after {
    background-color: #8e8e8e !important;
  }
  .lg\:bg-dark-grey\:after:after {
    background-color: #646464 !important;
  }
  .lg\:bg-darker-grey\:after:after {
    background-color: #444 !important;
  }
  .lg\:bg-darkest-grey\:after:after {
    background-color: #222 !important;
  }
  .lg\:bg-black\:after:after {
    background-color: #000 !important;
  }
  .lg\:bg-black-opacity-07\:after:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:bg-transparent\:after:after {
    background-color: transparent !important;
  }
  .lg\:bg-default\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .lg\:bg-highlight\:after:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .lg\:bg-link--hover\:after:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .lg\:bg-clear\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .lg\:bg-lightest\:after:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .lg\:bg-lighter\:after:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .lg\:bg-light\:after:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .lg\:bg-normal\:after:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .lg\:bg-dark\:after:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .lg\:bg-darker\:after:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .lg\:bg-darkest\:after:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .lg\:bg-opaque\:after:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .lg\:bg-red\:iframe iframe {
    background-color: #f12b3b !important;
  }
  .lg\:bg-dark-red\:iframe iframe {
    background-color: #d2212f !important;
  }
  .lg\:bg-dark-blue\:iframe iframe {
    background-color: #0273aa !important;
  }
  .lg\:bg-darker-blue\:iframe iframe {
    background-color: #063b63 !important;
  }
  .lg\:bg-blue\:iframe iframe {
    background-color: #008fce !important;
  }
  .lg\:bg-light-blue\:iframe iframe {
    background-color: #4ba6ce !important;
  }
  .lg\:bg-lighter-blue\:iframe iframe {
    background-color: #c4e5f4 !important;
  }
  .lg\:bg-lightest-blue\:iframe iframe {
    background-color: #f1f7fa !important;
  }
  .lg\:bg-turquoise\:iframe iframe {
    background-color: #86c6bb !important;
  }
  .lg\:bg-light-turquoise\:iframe iframe {
    background-color: #a0d1c9 !important;
  }
  .lg\:bg-lightest-turquoise\:iframe iframe {
    background-color: #eff4f3 !important;
  }
  .lg\:bg-darker-green\:iframe iframe {
    background-color: #2f4f21 !important;
  }
  .lg\:bg-dark-green\:iframe iframe {
    background-color: #456f32 !important;
  }
  .lg\:bg-green\:iframe iframe {
    background-color: #66a54a !important;
  }
  .lg\:bg-light-green\:iframe iframe {
    background-color: #77b65b !important;
  }
  .lg\:bg-lighter-green\:iframe iframe {
    background-color: #c9e4bc !important;
  }
  .lg\:bg-lightest-green\:iframe iframe {
    background-color: #eff6ec !important;
  }
  .lg\:bg-darker-yellow\:iframe iframe {
    background-color: #483206 !important;
  }
  .lg\:bg-dark-yellow\:iframe iframe {
    background-color: #b5862a !important;
  }
  .lg\:bg-yellow\:iframe iframe {
    background-color: #f2b63f !important;
  }
  .lg\:bg-light-yellow\:iframe iframe {
    background-color: #f5cd78 !important;
  }
  .lg\:bg-lighter-yellow\:iframe iframe {
    background-color: #f8ecc5 !important;
  }
  .lg\:bg-lightest-yellow\:iframe iframe {
    background-color: #faf9e7 !important;
  }
  .lg\:bg-beige\:iframe iframe {
    background-color: #dbd3c9 !important;
  }
  .lg\:bg-white\:iframe iframe {
    background-color: #fff !important;
  }
  .lg\:bg-white-opacity-02\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:bg-white-opacity-03\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:bg-white-opacity-05\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:bg-white-opacity-07\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:bg-lightest-grey\:iframe iframe {
    background-color: #f3f3f3 !important;
  }
  .lg\:bg-lighter-grey\:iframe iframe {
    background-color: #ddd !important;
  }
  .lg\:bg-light-grey\:iframe iframe {
    background-color: #bbb !important;
  }
  .lg\:bg-grey\:iframe iframe {
    background-color: #8e8e8e !important;
  }
  .lg\:bg-dark-grey\:iframe iframe {
    background-color: #646464 !important;
  }
  .lg\:bg-darker-grey\:iframe iframe {
    background-color: #444 !important;
  }
  .lg\:bg-darkest-grey\:iframe iframe {
    background-color: #222 !important;
  }
  .lg\:bg-black\:iframe iframe {
    background-color: #000 !important;
  }
  .lg\:bg-black-opacity-07\:iframe iframe {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .lg\:bg-transparent\:iframe iframe {
    background-color: transparent !important;
  }
  .lg\:bg-default\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .lg\:bg-highlight\:iframe iframe {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .lg\:bg-link--hover\:iframe iframe {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .lg\:bg-clear\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .lg\:bg-lightest\:iframe iframe {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .lg\:bg-lighter\:iframe iframe {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .lg\:bg-light\:iframe iframe {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .lg\:bg-normal\:iframe iframe {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .lg\:bg-dark\:iframe iframe {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .lg\:bg-darker\:iframe iframe {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .lg\:bg-darkest\:iframe iframe {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .lg\:bg-opaque\:iframe iframe {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:bg-red {
    background-color: #f12b3b !important;
  }
  .xl\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .xl\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .xl\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .xl\:bg-blue {
    background-color: #008fce !important;
  }
  .xl\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .xl\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .xl\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .xl\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .xl\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .xl\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .xl\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .xl\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .xl\:bg-green {
    background-color: #66a54a !important;
  }
  .xl\:bg-light-green {
    background-color: #77b65b !important;
  }
  .xl\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .xl\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .xl\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .xl\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .xl\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .xl\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .xl\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .xl\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .xl\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .xl\:bg-white {
    background-color: #fff !important;
  }
  .xl\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .xl\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .xl\:bg-light-grey {
    background-color: #bbb !important;
  }
  .xl\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .xl\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .xl\:bg-darker-grey {
    background-color: #444 !important;
  }
  .xl\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .xl\:bg-black {
    background-color: #000 !important;
  }
  .xl\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:bg-transparent {
    background-color: transparent !important;
  }
  .xl\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xl\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xl\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xl\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xl\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xl\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xl\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xl\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xl\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xl\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xl\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xl\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  a:hover .xl\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  a:hover .xl\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  a:hover .xl\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  a:hover .xl\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  a:hover .xl\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  a:hover .xl\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  a:hover .xl\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  a:hover .xl\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  a:hover .xl\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  a:hover .xl\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  a:hover .xl\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  a:hover .xl\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  a:hover .xl\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  a:hover .xl\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  a:hover .xl\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  a:hover .xl\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  a:hover .xl\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  a:hover .xl\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  a:hover .xl\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  a:hover .xl\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  a:hover .xl\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  a:hover .xl\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  a:hover .xl\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  a:hover .xl\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  a:hover .xl\:hover\:bg-white {
    background-color: #fff !important;
  }
  a:hover .xl\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .xl\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .xl\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .xl\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .xl\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  a:hover .xl\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  a:hover .xl\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  a:hover .xl\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  a:hover .xl\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  a:hover .xl\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  a:hover .xl\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  a:hover .xl\:hover\:bg-black {
    background-color: #000 !important;
  }
  a:hover .xl\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .xl\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  a:hover .xl\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  a:hover .xl\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  a:hover .xl\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  a:hover .xl\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  a:hover .xl\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  a:hover .xl\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  a:hover .xl\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  a:hover .xl\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  a:hover .xl\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  a:hover .xl\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  a:hover .xl\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  a:hover .xl\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  button:hover .xl\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  button:hover .xl\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  button:hover .xl\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  button:hover .xl\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  button:hover .xl\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  button:hover .xl\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  button:hover .xl\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  button:hover .xl\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  button:hover .xl\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  button:hover .xl\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  button:hover .xl\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  button:hover .xl\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  button:hover .xl\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  button:hover .xl\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  button:hover .xl\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  button:hover .xl\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  button:hover .xl\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  button:hover .xl\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  button:hover .xl\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  button:hover .xl\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  button:hover .xl\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  button:hover .xl\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  button:hover .xl\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  button:hover .xl\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  button:hover .xl\:hover\:bg-white {
    background-color: #fff !important;
  }
  button:hover .xl\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .xl\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .xl\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .xl\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .xl\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  button:hover .xl\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  button:hover .xl\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  button:hover .xl\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  button:hover .xl\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  button:hover .xl\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  button:hover .xl\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  button:hover .xl\:hover\:bg-black {
    background-color: #000 !important;
  }
  button:hover .xl\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .xl\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  button:hover .xl\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  button:hover .xl\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  button:hover .xl\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  button:hover .xl\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  button:hover .xl\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  button:hover .xl\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  button:hover .xl\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  button:hover .xl\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  button:hover .xl\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  button:hover .xl\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  button:hover .xl\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  button:hover .xl\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .btn:hover .xl\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  .btn:hover .xl\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .btn:hover .xl\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .btn:hover .xl\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .btn:hover .xl\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  .btn:hover .xl\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .btn:hover .xl\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .btn:hover .xl\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .btn:hover .xl\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .btn:hover .xl\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .btn:hover .xl\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .btn:hover .xl\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .btn:hover .xl\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .btn:hover .xl\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  .btn:hover .xl\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  .btn:hover .xl\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .btn:hover .xl\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .btn:hover .xl\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .btn:hover .xl\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .btn:hover .xl\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .btn:hover .xl\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .btn:hover .xl\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .btn:hover .xl\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .btn:hover .xl\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .btn:hover .xl\:hover\:bg-white {
    background-color: #fff !important;
  }
  .btn:hover .xl\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .xl\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .xl\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .xl\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .xl\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .btn:hover .xl\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .btn:hover .xl\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  .btn:hover .xl\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .btn:hover .xl\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .btn:hover .xl\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  .btn:hover .xl\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .btn:hover .xl\:hover\:bg-black {
    background-color: #000 !important;
  }
  .btn:hover .xl\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .xl\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  .btn:hover .xl\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .btn:hover .xl\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .btn:hover .xl\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .btn:hover .xl\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .btn:hover .xl\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .btn:hover .xl\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .btn:hover .xl\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .btn:hover .xl\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .btn:hover .xl\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .btn:hover .xl\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .btn:hover .xl\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .btn:hover .xl\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  input:hover .xl\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  input:hover .xl\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  input:hover .xl\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  input:hover .xl\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  input:hover .xl\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  input:hover .xl\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  input:hover .xl\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  input:hover .xl\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  input:hover .xl\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  input:hover .xl\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  input:hover .xl\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  input:hover .xl\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  input:hover .xl\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  input:hover .xl\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  input:hover .xl\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  input:hover .xl\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  input:hover .xl\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  input:hover .xl\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  input:hover .xl\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  input:hover .xl\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  input:hover .xl\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  input:hover .xl\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  input:hover .xl\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  input:hover .xl\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  input:hover .xl\:hover\:bg-white {
    background-color: #fff !important;
  }
  input:hover .xl\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .xl\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .xl\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .xl\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .xl\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  input:hover .xl\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  input:hover .xl\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  input:hover .xl\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  input:hover .xl\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  input:hover .xl\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  input:hover .xl\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  input:hover .xl\:hover\:bg-black {
    background-color: #000 !important;
  }
  input:hover .xl\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .xl\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  input:hover .xl\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  input:hover .xl\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  input:hover .xl\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  input:hover .xl\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  input:hover .xl\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  input:hover .xl\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  input:hover .xl\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  input:hover .xl\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  input:hover .xl\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  input:hover .xl\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  input:hover .xl\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  input:hover .xl\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xl\:bg-red\:hover:hover {
    background-color: #f12b3b !important;
  }
  .xl\:bg-dark-red\:hover:hover {
    background-color: #d2212f !important;
  }
  .xl\:bg-dark-blue\:hover:hover {
    background-color: #0273aa !important;
  }
  .xl\:bg-darker-blue\:hover:hover {
    background-color: #063b63 !important;
  }
  .xl\:bg-blue\:hover:hover {
    background-color: #008fce !important;
  }
  .xl\:bg-light-blue\:hover:hover {
    background-color: #4ba6ce !important;
  }
  .xl\:bg-lighter-blue\:hover:hover {
    background-color: #c4e5f4 !important;
  }
  .xl\:bg-lightest-blue\:hover:hover {
    background-color: #f1f7fa !important;
  }
  .xl\:bg-turquoise\:hover:hover {
    background-color: #86c6bb !important;
  }
  .xl\:bg-light-turquoise\:hover:hover {
    background-color: #a0d1c9 !important;
  }
  .xl\:bg-lightest-turquoise\:hover:hover {
    background-color: #eff4f3 !important;
  }
  .xl\:bg-darker-green\:hover:hover {
    background-color: #2f4f21 !important;
  }
  .xl\:bg-dark-green\:hover:hover {
    background-color: #456f32 !important;
  }
  .xl\:bg-green\:hover:hover {
    background-color: #66a54a !important;
  }
  .xl\:bg-light-green\:hover:hover {
    background-color: #77b65b !important;
  }
  .xl\:bg-lighter-green\:hover:hover {
    background-color: #c9e4bc !important;
  }
  .xl\:bg-lightest-green\:hover:hover {
    background-color: #eff6ec !important;
  }
  .xl\:bg-darker-yellow\:hover:hover {
    background-color: #483206 !important;
  }
  .xl\:bg-dark-yellow\:hover:hover {
    background-color: #b5862a !important;
  }
  .xl\:bg-yellow\:hover:hover {
    background-color: #f2b63f !important;
  }
  .xl\:bg-light-yellow\:hover:hover {
    background-color: #f5cd78 !important;
  }
  .xl\:bg-lighter-yellow\:hover:hover {
    background-color: #f8ecc5 !important;
  }
  .xl\:bg-lightest-yellow\:hover:hover {
    background-color: #faf9e7 !important;
  }
  .xl\:bg-beige\:hover:hover {
    background-color: #dbd3c9 !important;
  }
  .xl\:bg-white\:hover:hover {
    background-color: #fff !important;
  }
  .xl\:bg-white-opacity-02\:hover:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:bg-white-opacity-03\:hover:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:bg-white-opacity-05\:hover:hover {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:bg-white-opacity-07\:hover:hover {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:bg-lightest-grey\:hover:hover {
    background-color: #f3f3f3 !important;
  }
  .xl\:bg-lighter-grey\:hover:hover {
    background-color: #ddd !important;
  }
  .xl\:bg-light-grey\:hover:hover {
    background-color: #bbb !important;
  }
  .xl\:bg-grey\:hover:hover {
    background-color: #8e8e8e !important;
  }
  .xl\:bg-dark-grey\:hover:hover {
    background-color: #646464 !important;
  }
  .xl\:bg-darker-grey\:hover:hover {
    background-color: #444 !important;
  }
  .xl\:bg-darkest-grey\:hover:hover {
    background-color: #222 !important;
  }
  .xl\:bg-black\:hover:hover {
    background-color: #000 !important;
  }
  .xl\:bg-black-opacity-07\:hover:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:bg-transparent\:hover:hover {
    background-color: transparent !important;
  }
  .xl\:bg-default\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xl\:bg-highlight\:hover:hover {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xl\:bg-link--hover\:hover:hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xl\:bg-clear\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xl\:bg-lightest\:hover:hover {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xl\:bg-lighter\:hover:hover {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xl\:bg-light\:hover:hover {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xl\:bg-normal\:hover:hover {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xl\:bg-dark\:hover:hover {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xl\:bg-darker\:hover:hover {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xl\:bg-darkest\:hover:hover {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xl\:bg-opaque\:hover:hover {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xl\:bg-red\:hover\:before:hover:before {
    background-color: #f12b3b !important;
  }
  .xl\:bg-dark-red\:hover\:before:hover:before {
    background-color: #d2212f !important;
  }
  .xl\:bg-dark-blue\:hover\:before:hover:before {
    background-color: #0273aa !important;
  }
  .xl\:bg-darker-blue\:hover\:before:hover:before {
    background-color: #063b63 !important;
  }
  .xl\:bg-blue\:hover\:before:hover:before {
    background-color: #008fce !important;
  }
  .xl\:bg-light-blue\:hover\:before:hover:before {
    background-color: #4ba6ce !important;
  }
  .xl\:bg-lighter-blue\:hover\:before:hover:before {
    background-color: #c4e5f4 !important;
  }
  .xl\:bg-lightest-blue\:hover\:before:hover:before {
    background-color: #f1f7fa !important;
  }
  .xl\:bg-turquoise\:hover\:before:hover:before {
    background-color: #86c6bb !important;
  }
  .xl\:bg-light-turquoise\:hover\:before:hover:before {
    background-color: #a0d1c9 !important;
  }
  .xl\:bg-lightest-turquoise\:hover\:before:hover:before {
    background-color: #eff4f3 !important;
  }
  .xl\:bg-darker-green\:hover\:before:hover:before {
    background-color: #2f4f21 !important;
  }
  .xl\:bg-dark-green\:hover\:before:hover:before {
    background-color: #456f32 !important;
  }
  .xl\:bg-green\:hover\:before:hover:before {
    background-color: #66a54a !important;
  }
  .xl\:bg-light-green\:hover\:before:hover:before {
    background-color: #77b65b !important;
  }
  .xl\:bg-lighter-green\:hover\:before:hover:before {
    background-color: #c9e4bc !important;
  }
  .xl\:bg-lightest-green\:hover\:before:hover:before {
    background-color: #eff6ec !important;
  }
  .xl\:bg-darker-yellow\:hover\:before:hover:before {
    background-color: #483206 !important;
  }
  .xl\:bg-dark-yellow\:hover\:before:hover:before {
    background-color: #b5862a !important;
  }
  .xl\:bg-yellow\:hover\:before:hover:before {
    background-color: #f2b63f !important;
  }
  .xl\:bg-light-yellow\:hover\:before:hover:before {
    background-color: #f5cd78 !important;
  }
  .xl\:bg-lighter-yellow\:hover\:before:hover:before {
    background-color: #f8ecc5 !important;
  }
  .xl\:bg-lightest-yellow\:hover\:before:hover:before {
    background-color: #faf9e7 !important;
  }
  .xl\:bg-beige\:hover\:before:hover:before {
    background-color: #dbd3c9 !important;
  }
  .xl\:bg-white\:hover\:before:hover:before {
    background-color: #fff !important;
  }
  .xl\:bg-white-opacity-02\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:bg-white-opacity-03\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:bg-white-opacity-05\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:bg-white-opacity-07\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:bg-lightest-grey\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
  }
  .xl\:bg-lighter-grey\:hover\:before:hover:before {
    background-color: #ddd !important;
  }
  .xl\:bg-light-grey\:hover\:before:hover:before {
    background-color: #bbb !important;
  }
  .xl\:bg-grey\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
  }
  .xl\:bg-dark-grey\:hover\:before:hover:before {
    background-color: #646464 !important;
  }
  .xl\:bg-darker-grey\:hover\:before:hover:before {
    background-color: #444 !important;
  }
  .xl\:bg-darkest-grey\:hover\:before:hover:before {
    background-color: #222 !important;
  }
  .xl\:bg-black\:hover\:before:hover:before {
    background-color: #000 !important;
  }
  .xl\:bg-black-opacity-07\:hover\:before:hover:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:bg-transparent\:hover\:before:hover:before {
    background-color: transparent !important;
  }
  .xl\:bg-default\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xl\:bg-highlight\:hover\:before:hover:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xl\:bg-link--hover\:hover\:before:hover:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xl\:bg-clear\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xl\:bg-lightest\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xl\:bg-lighter\:hover\:before:hover:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xl\:bg-light\:hover\:before:hover:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xl\:bg-normal\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xl\:bg-dark\:hover\:before:hover:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xl\:bg-darker\:hover\:before:hover:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xl\:bg-darkest\:hover\:before:hover:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xl\:bg-opaque\:hover\:before:hover:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xl\:bg-red\:hover\:after:hover:after {
    background-color: #f12b3b !important;
  }
  .xl\:bg-dark-red\:hover\:after:hover:after {
    background-color: #d2212f !important;
  }
  .xl\:bg-dark-blue\:hover\:after:hover:after {
    background-color: #0273aa !important;
  }
  .xl\:bg-darker-blue\:hover\:after:hover:after {
    background-color: #063b63 !important;
  }
  .xl\:bg-blue\:hover\:after:hover:after {
    background-color: #008fce !important;
  }
  .xl\:bg-light-blue\:hover\:after:hover:after {
    background-color: #4ba6ce !important;
  }
  .xl\:bg-lighter-blue\:hover\:after:hover:after {
    background-color: #c4e5f4 !important;
  }
  .xl\:bg-lightest-blue\:hover\:after:hover:after {
    background-color: #f1f7fa !important;
  }
  .xl\:bg-turquoise\:hover\:after:hover:after {
    background-color: #86c6bb !important;
  }
  .xl\:bg-light-turquoise\:hover\:after:hover:after {
    background-color: #a0d1c9 !important;
  }
  .xl\:bg-lightest-turquoise\:hover\:after:hover:after {
    background-color: #eff4f3 !important;
  }
  .xl\:bg-darker-green\:hover\:after:hover:after {
    background-color: #2f4f21 !important;
  }
  .xl\:bg-dark-green\:hover\:after:hover:after {
    background-color: #456f32 !important;
  }
  .xl\:bg-green\:hover\:after:hover:after {
    background-color: #66a54a !important;
  }
  .xl\:bg-light-green\:hover\:after:hover:after {
    background-color: #77b65b !important;
  }
  .xl\:bg-lighter-green\:hover\:after:hover:after {
    background-color: #c9e4bc !important;
  }
  .xl\:bg-lightest-green\:hover\:after:hover:after {
    background-color: #eff6ec !important;
  }
  .xl\:bg-darker-yellow\:hover\:after:hover:after {
    background-color: #483206 !important;
  }
  .xl\:bg-dark-yellow\:hover\:after:hover:after {
    background-color: #b5862a !important;
  }
  .xl\:bg-yellow\:hover\:after:hover:after {
    background-color: #f2b63f !important;
  }
  .xl\:bg-light-yellow\:hover\:after:hover:after {
    background-color: #f5cd78 !important;
  }
  .xl\:bg-lighter-yellow\:hover\:after:hover:after {
    background-color: #f8ecc5 !important;
  }
  .xl\:bg-lightest-yellow\:hover\:after:hover:after {
    background-color: #faf9e7 !important;
  }
  .xl\:bg-beige\:hover\:after:hover:after {
    background-color: #dbd3c9 !important;
  }
  .xl\:bg-white\:hover\:after:hover:after {
    background-color: #fff !important;
  }
  .xl\:bg-white-opacity-02\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:bg-white-opacity-03\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:bg-white-opacity-05\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:bg-white-opacity-07\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:bg-lightest-grey\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
  }
  .xl\:bg-lighter-grey\:hover\:after:hover:after {
    background-color: #ddd !important;
  }
  .xl\:bg-light-grey\:hover\:after:hover:after {
    background-color: #bbb !important;
  }
  .xl\:bg-grey\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
  }
  .xl\:bg-dark-grey\:hover\:after:hover:after {
    background-color: #646464 !important;
  }
  .xl\:bg-darker-grey\:hover\:after:hover:after {
    background-color: #444 !important;
  }
  .xl\:bg-darkest-grey\:hover\:after:hover:after {
    background-color: #222 !important;
  }
  .xl\:bg-black\:hover\:after:hover:after {
    background-color: #000 !important;
  }
  .xl\:bg-black-opacity-07\:hover\:after:hover:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:bg-transparent\:hover\:after:hover:after {
    background-color: transparent !important;
  }
  .xl\:bg-default\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xl\:bg-highlight\:hover\:after:hover:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xl\:bg-link--hover\:hover\:after:hover:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xl\:bg-clear\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xl\:bg-lightest\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xl\:bg-lighter\:hover\:after:hover:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xl\:bg-light\:hover\:after:hover:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xl\:bg-normal\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xl\:bg-dark\:hover\:after:hover:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xl\:bg-darker\:hover\:after:hover:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xl\:bg-darkest\:hover\:after:hover:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xl\:bg-opaque\:hover\:after:hover:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xl\:bg-red\:before:before {
    background-color: #f12b3b !important;
  }
  .xl\:bg-dark-red\:before:before {
    background-color: #d2212f !important;
  }
  .xl\:bg-dark-blue\:before:before {
    background-color: #0273aa !important;
  }
  .xl\:bg-darker-blue\:before:before {
    background-color: #063b63 !important;
  }
  .xl\:bg-blue\:before:before {
    background-color: #008fce !important;
  }
  .xl\:bg-light-blue\:before:before {
    background-color: #4ba6ce !important;
  }
  .xl\:bg-lighter-blue\:before:before {
    background-color: #c4e5f4 !important;
  }
  .xl\:bg-lightest-blue\:before:before {
    background-color: #f1f7fa !important;
  }
  .xl\:bg-turquoise\:before:before {
    background-color: #86c6bb !important;
  }
  .xl\:bg-light-turquoise\:before:before {
    background-color: #a0d1c9 !important;
  }
  .xl\:bg-lightest-turquoise\:before:before {
    background-color: #eff4f3 !important;
  }
  .xl\:bg-darker-green\:before:before {
    background-color: #2f4f21 !important;
  }
  .xl\:bg-dark-green\:before:before {
    background-color: #456f32 !important;
  }
  .xl\:bg-green\:before:before {
    background-color: #66a54a !important;
  }
  .xl\:bg-light-green\:before:before {
    background-color: #77b65b !important;
  }
  .xl\:bg-lighter-green\:before:before {
    background-color: #c9e4bc !important;
  }
  .xl\:bg-lightest-green\:before:before {
    background-color: #eff6ec !important;
  }
  .xl\:bg-darker-yellow\:before:before {
    background-color: #483206 !important;
  }
  .xl\:bg-dark-yellow\:before:before {
    background-color: #b5862a !important;
  }
  .xl\:bg-yellow\:before:before {
    background-color: #f2b63f !important;
  }
  .xl\:bg-light-yellow\:before:before {
    background-color: #f5cd78 !important;
  }
  .xl\:bg-lighter-yellow\:before:before {
    background-color: #f8ecc5 !important;
  }
  .xl\:bg-lightest-yellow\:before:before {
    background-color: #faf9e7 !important;
  }
  .xl\:bg-beige\:before:before {
    background-color: #dbd3c9 !important;
  }
  .xl\:bg-white\:before:before {
    background-color: #fff !important;
  }
  .xl\:bg-white-opacity-02\:before:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:bg-white-opacity-03\:before:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:bg-white-opacity-05\:before:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:bg-white-opacity-07\:before:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:bg-lightest-grey\:before:before {
    background-color: #f3f3f3 !important;
  }
  .xl\:bg-lighter-grey\:before:before {
    background-color: #ddd !important;
  }
  .xl\:bg-light-grey\:before:before {
    background-color: #bbb !important;
  }
  .xl\:bg-grey\:before:before {
    background-color: #8e8e8e !important;
  }
  .xl\:bg-dark-grey\:before:before {
    background-color: #646464 !important;
  }
  .xl\:bg-darker-grey\:before:before {
    background-color: #444 !important;
  }
  .xl\:bg-darkest-grey\:before:before {
    background-color: #222 !important;
  }
  .xl\:bg-black\:before:before {
    background-color: #000 !important;
  }
  .xl\:bg-black-opacity-07\:before:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:bg-transparent\:before:before {
    background-color: transparent !important;
  }
  .xl\:bg-default\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xl\:bg-highlight\:before:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xl\:bg-link--hover\:before:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xl\:bg-clear\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xl\:bg-lightest\:before:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xl\:bg-lighter\:before:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xl\:bg-light\:before:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xl\:bg-normal\:before:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xl\:bg-dark\:before:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xl\:bg-darker\:before:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xl\:bg-darkest\:before:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xl\:bg-opaque\:before:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xl\:bg-red\:after:after {
    background-color: #f12b3b !important;
  }
  .xl\:bg-dark-red\:after:after {
    background-color: #d2212f !important;
  }
  .xl\:bg-dark-blue\:after:after {
    background-color: #0273aa !important;
  }
  .xl\:bg-darker-blue\:after:after {
    background-color: #063b63 !important;
  }
  .xl\:bg-blue\:after:after {
    background-color: #008fce !important;
  }
  .xl\:bg-light-blue\:after:after {
    background-color: #4ba6ce !important;
  }
  .xl\:bg-lighter-blue\:after:after {
    background-color: #c4e5f4 !important;
  }
  .xl\:bg-lightest-blue\:after:after {
    background-color: #f1f7fa !important;
  }
  .xl\:bg-turquoise\:after:after {
    background-color: #86c6bb !important;
  }
  .xl\:bg-light-turquoise\:after:after {
    background-color: #a0d1c9 !important;
  }
  .xl\:bg-lightest-turquoise\:after:after {
    background-color: #eff4f3 !important;
  }
  .xl\:bg-darker-green\:after:after {
    background-color: #2f4f21 !important;
  }
  .xl\:bg-dark-green\:after:after {
    background-color: #456f32 !important;
  }
  .xl\:bg-green\:after:after {
    background-color: #66a54a !important;
  }
  .xl\:bg-light-green\:after:after {
    background-color: #77b65b !important;
  }
  .xl\:bg-lighter-green\:after:after {
    background-color: #c9e4bc !important;
  }
  .xl\:bg-lightest-green\:after:after {
    background-color: #eff6ec !important;
  }
  .xl\:bg-darker-yellow\:after:after {
    background-color: #483206 !important;
  }
  .xl\:bg-dark-yellow\:after:after {
    background-color: #b5862a !important;
  }
  .xl\:bg-yellow\:after:after {
    background-color: #f2b63f !important;
  }
  .xl\:bg-light-yellow\:after:after {
    background-color: #f5cd78 !important;
  }
  .xl\:bg-lighter-yellow\:after:after {
    background-color: #f8ecc5 !important;
  }
  .xl\:bg-lightest-yellow\:after:after {
    background-color: #faf9e7 !important;
  }
  .xl\:bg-beige\:after:after {
    background-color: #dbd3c9 !important;
  }
  .xl\:bg-white\:after:after {
    background-color: #fff !important;
  }
  .xl\:bg-white-opacity-02\:after:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:bg-white-opacity-03\:after:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:bg-white-opacity-05\:after:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:bg-white-opacity-07\:after:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:bg-lightest-grey\:after:after {
    background-color: #f3f3f3 !important;
  }
  .xl\:bg-lighter-grey\:after:after {
    background-color: #ddd !important;
  }
  .xl\:bg-light-grey\:after:after {
    background-color: #bbb !important;
  }
  .xl\:bg-grey\:after:after {
    background-color: #8e8e8e !important;
  }
  .xl\:bg-dark-grey\:after:after {
    background-color: #646464 !important;
  }
  .xl\:bg-darker-grey\:after:after {
    background-color: #444 !important;
  }
  .xl\:bg-darkest-grey\:after:after {
    background-color: #222 !important;
  }
  .xl\:bg-black\:after:after {
    background-color: #000 !important;
  }
  .xl\:bg-black-opacity-07\:after:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:bg-transparent\:after:after {
    background-color: transparent !important;
  }
  .xl\:bg-default\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xl\:bg-highlight\:after:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xl\:bg-link--hover\:after:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xl\:bg-clear\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xl\:bg-lightest\:after:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xl\:bg-lighter\:after:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xl\:bg-light\:after:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xl\:bg-normal\:after:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xl\:bg-dark\:after:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xl\:bg-darker\:after:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xl\:bg-darkest\:after:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xl\:bg-opaque\:after:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xl\:bg-red\:iframe iframe {
    background-color: #f12b3b !important;
  }
  .xl\:bg-dark-red\:iframe iframe {
    background-color: #d2212f !important;
  }
  .xl\:bg-dark-blue\:iframe iframe {
    background-color: #0273aa !important;
  }
  .xl\:bg-darker-blue\:iframe iframe {
    background-color: #063b63 !important;
  }
  .xl\:bg-blue\:iframe iframe {
    background-color: #008fce !important;
  }
  .xl\:bg-light-blue\:iframe iframe {
    background-color: #4ba6ce !important;
  }
  .xl\:bg-lighter-blue\:iframe iframe {
    background-color: #c4e5f4 !important;
  }
  .xl\:bg-lightest-blue\:iframe iframe {
    background-color: #f1f7fa !important;
  }
  .xl\:bg-turquoise\:iframe iframe {
    background-color: #86c6bb !important;
  }
  .xl\:bg-light-turquoise\:iframe iframe {
    background-color: #a0d1c9 !important;
  }
  .xl\:bg-lightest-turquoise\:iframe iframe {
    background-color: #eff4f3 !important;
  }
  .xl\:bg-darker-green\:iframe iframe {
    background-color: #2f4f21 !important;
  }
  .xl\:bg-dark-green\:iframe iframe {
    background-color: #456f32 !important;
  }
  .xl\:bg-green\:iframe iframe {
    background-color: #66a54a !important;
  }
  .xl\:bg-light-green\:iframe iframe {
    background-color: #77b65b !important;
  }
  .xl\:bg-lighter-green\:iframe iframe {
    background-color: #c9e4bc !important;
  }
  .xl\:bg-lightest-green\:iframe iframe {
    background-color: #eff6ec !important;
  }
  .xl\:bg-darker-yellow\:iframe iframe {
    background-color: #483206 !important;
  }
  .xl\:bg-dark-yellow\:iframe iframe {
    background-color: #b5862a !important;
  }
  .xl\:bg-yellow\:iframe iframe {
    background-color: #f2b63f !important;
  }
  .xl\:bg-light-yellow\:iframe iframe {
    background-color: #f5cd78 !important;
  }
  .xl\:bg-lighter-yellow\:iframe iframe {
    background-color: #f8ecc5 !important;
  }
  .xl\:bg-lightest-yellow\:iframe iframe {
    background-color: #faf9e7 !important;
  }
  .xl\:bg-beige\:iframe iframe {
    background-color: #dbd3c9 !important;
  }
  .xl\:bg-white\:iframe iframe {
    background-color: #fff !important;
  }
  .xl\:bg-white-opacity-02\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:bg-white-opacity-03\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:bg-white-opacity-05\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:bg-white-opacity-07\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:bg-lightest-grey\:iframe iframe {
    background-color: #f3f3f3 !important;
  }
  .xl\:bg-lighter-grey\:iframe iframe {
    background-color: #ddd !important;
  }
  .xl\:bg-light-grey\:iframe iframe {
    background-color: #bbb !important;
  }
  .xl\:bg-grey\:iframe iframe {
    background-color: #8e8e8e !important;
  }
  .xl\:bg-dark-grey\:iframe iframe {
    background-color: #646464 !important;
  }
  .xl\:bg-darker-grey\:iframe iframe {
    background-color: #444 !important;
  }
  .xl\:bg-darkest-grey\:iframe iframe {
    background-color: #222 !important;
  }
  .xl\:bg-black\:iframe iframe {
    background-color: #000 !important;
  }
  .xl\:bg-black-opacity-07\:iframe iframe {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xl\:bg-transparent\:iframe iframe {
    background-color: transparent !important;
  }
  .xl\:bg-default\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xl\:bg-highlight\:iframe iframe {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xl\:bg-link--hover\:iframe iframe {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xl\:bg-clear\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xl\:bg-lightest\:iframe iframe {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xl\:bg-lighter\:iframe iframe {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xl\:bg-light\:iframe iframe {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xl\:bg-normal\:iframe iframe {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xl\:bg-dark\:iframe iframe {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xl\:bg-darker\:iframe iframe {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xl\:bg-darkest\:iframe iframe {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xl\:bg-opaque\:iframe iframe {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:bg-red {
    background-color: #f12b3b !important;
  }
  .xxl\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .xxl\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .xxl\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .xxl\:bg-blue {
    background-color: #008fce !important;
  }
  .xxl\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .xxl\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .xxl\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .xxl\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .xxl\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .xxl\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .xxl\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .xxl\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .xxl\:bg-green {
    background-color: #66a54a !important;
  }
  .xxl\:bg-light-green {
    background-color: #77b65b !important;
  }
  .xxl\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .xxl\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .xxl\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .xxl\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .xxl\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .xxl\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .xxl\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .xxl\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .xxl\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .xxl\:bg-white {
    background-color: #fff !important;
  }
  .xxl\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .xxl\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .xxl\:bg-light-grey {
    background-color: #bbb !important;
  }
  .xxl\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .xxl\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .xxl\:bg-darker-grey {
    background-color: #444 !important;
  }
  .xxl\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .xxl\:bg-black {
    background-color: #000 !important;
  }
  .xxl\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:bg-transparent {
    background-color: transparent !important;
  }
  .xxl\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xxl\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xxl\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xxl\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xxl\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xxl\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xxl\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xxl\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xxl\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xxl\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xxl\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xxl\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  a:hover .xxl\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  a:hover .xxl\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  a:hover .xxl\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  a:hover .xxl\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  a:hover .xxl\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  a:hover .xxl\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  a:hover .xxl\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  a:hover .xxl\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  a:hover .xxl\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  a:hover .xxl\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  a:hover .xxl\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  a:hover .xxl\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  a:hover .xxl\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  a:hover .xxl\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  a:hover .xxl\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  a:hover .xxl\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  a:hover .xxl\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  a:hover .xxl\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  a:hover .xxl\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  a:hover .xxl\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  a:hover .xxl\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  a:hover .xxl\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  a:hover .xxl\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  a:hover .xxl\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  a:hover .xxl\:hover\:bg-white {
    background-color: #fff !important;
  }
  a:hover .xxl\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .xxl\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .xxl\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .xxl\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .xxl\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  a:hover .xxl\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  a:hover .xxl\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  a:hover .xxl\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  a:hover .xxl\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  a:hover .xxl\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  a:hover .xxl\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  a:hover .xxl\:hover\:bg-black {
    background-color: #000 !important;
  }
  a:hover .xxl\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .xxl\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  a:hover .xxl\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  a:hover .xxl\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  a:hover .xxl\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  a:hover .xxl\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  a:hover .xxl\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  a:hover .xxl\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  a:hover .xxl\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  a:hover .xxl\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  a:hover .xxl\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  a:hover .xxl\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  a:hover .xxl\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  a:hover .xxl\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  button:hover .xxl\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  button:hover .xxl\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  button:hover .xxl\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  button:hover .xxl\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  button:hover .xxl\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  button:hover .xxl\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  button:hover .xxl\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  button:hover .xxl\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  button:hover .xxl\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  button:hover .xxl\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  button:hover .xxl\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  button:hover .xxl\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  button:hover .xxl\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  button:hover .xxl\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  button:hover .xxl\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  button:hover .xxl\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  button:hover .xxl\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  button:hover .xxl\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  button:hover .xxl\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  button:hover .xxl\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  button:hover .xxl\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  button:hover .xxl\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  button:hover .xxl\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  button:hover .xxl\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  button:hover .xxl\:hover\:bg-white {
    background-color: #fff !important;
  }
  button:hover .xxl\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .xxl\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .xxl\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .xxl\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .xxl\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  button:hover .xxl\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  button:hover .xxl\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  button:hover .xxl\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  button:hover .xxl\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  button:hover .xxl\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  button:hover .xxl\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  button:hover .xxl\:hover\:bg-black {
    background-color: #000 !important;
  }
  button:hover .xxl\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .xxl\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  button:hover .xxl\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  button:hover .xxl\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  button:hover .xxl\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  button:hover .xxl\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  button:hover .xxl\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  button:hover .xxl\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  button:hover .xxl\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  button:hover .xxl\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  button:hover .xxl\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  button:hover .xxl\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  button:hover .xxl\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  button:hover .xxl\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .btn:hover .xxl\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  .btn:hover .xxl\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .btn:hover .xxl\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .btn:hover .xxl\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .btn:hover .xxl\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  .btn:hover .xxl\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .btn:hover .xxl\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .btn:hover .xxl\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .btn:hover .xxl\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .btn:hover .xxl\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .btn:hover .xxl\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .btn:hover .xxl\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .btn:hover .xxl\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .btn:hover .xxl\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  .btn:hover .xxl\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  .btn:hover .xxl\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .btn:hover .xxl\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .btn:hover .xxl\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .btn:hover .xxl\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .btn:hover .xxl\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .btn:hover .xxl\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .btn:hover .xxl\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .btn:hover .xxl\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .btn:hover .xxl\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .btn:hover .xxl\:hover\:bg-white {
    background-color: #fff !important;
  }
  .btn:hover .xxl\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .xxl\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .xxl\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .xxl\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .xxl\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .btn:hover .xxl\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .btn:hover .xxl\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  .btn:hover .xxl\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .btn:hover .xxl\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .btn:hover .xxl\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  .btn:hover .xxl\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .btn:hover .xxl\:hover\:bg-black {
    background-color: #000 !important;
  }
  .btn:hover .xxl\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .xxl\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  .btn:hover .xxl\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .btn:hover .xxl\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .btn:hover .xxl\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .btn:hover .xxl\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .btn:hover .xxl\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .btn:hover .xxl\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .btn:hover .xxl\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .btn:hover .xxl\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .btn:hover .xxl\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .btn:hover .xxl\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .btn:hover .xxl\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .btn:hover .xxl\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  input:hover .xxl\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  input:hover .xxl\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  input:hover .xxl\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  input:hover .xxl\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  input:hover .xxl\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  input:hover .xxl\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  input:hover .xxl\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  input:hover .xxl\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  input:hover .xxl\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  input:hover .xxl\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  input:hover .xxl\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  input:hover .xxl\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  input:hover .xxl\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  input:hover .xxl\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  input:hover .xxl\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  input:hover .xxl\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  input:hover .xxl\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  input:hover .xxl\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  input:hover .xxl\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  input:hover .xxl\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  input:hover .xxl\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  input:hover .xxl\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  input:hover .xxl\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  input:hover .xxl\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  input:hover .xxl\:hover\:bg-white {
    background-color: #fff !important;
  }
  input:hover .xxl\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .xxl\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .xxl\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .xxl\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .xxl\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  input:hover .xxl\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  input:hover .xxl\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  input:hover .xxl\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  input:hover .xxl\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  input:hover .xxl\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  input:hover .xxl\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  input:hover .xxl\:hover\:bg-black {
    background-color: #000 !important;
  }
  input:hover .xxl\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .xxl\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  input:hover .xxl\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  input:hover .xxl\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  input:hover .xxl\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  input:hover .xxl\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  input:hover .xxl\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  input:hover .xxl\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  input:hover .xxl\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  input:hover .xxl\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  input:hover .xxl\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  input:hover .xxl\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  input:hover .xxl\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  input:hover .xxl\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xxl\:bg-red\:hover:hover {
    background-color: #f12b3b !important;
  }
  .xxl\:bg-dark-red\:hover:hover {
    background-color: #d2212f !important;
  }
  .xxl\:bg-dark-blue\:hover:hover {
    background-color: #0273aa !important;
  }
  .xxl\:bg-darker-blue\:hover:hover {
    background-color: #063b63 !important;
  }
  .xxl\:bg-blue\:hover:hover {
    background-color: #008fce !important;
  }
  .xxl\:bg-light-blue\:hover:hover {
    background-color: #4ba6ce !important;
  }
  .xxl\:bg-lighter-blue\:hover:hover {
    background-color: #c4e5f4 !important;
  }
  .xxl\:bg-lightest-blue\:hover:hover {
    background-color: #f1f7fa !important;
  }
  .xxl\:bg-turquoise\:hover:hover {
    background-color: #86c6bb !important;
  }
  .xxl\:bg-light-turquoise\:hover:hover {
    background-color: #a0d1c9 !important;
  }
  .xxl\:bg-lightest-turquoise\:hover:hover {
    background-color: #eff4f3 !important;
  }
  .xxl\:bg-darker-green\:hover:hover {
    background-color: #2f4f21 !important;
  }
  .xxl\:bg-dark-green\:hover:hover {
    background-color: #456f32 !important;
  }
  .xxl\:bg-green\:hover:hover {
    background-color: #66a54a !important;
  }
  .xxl\:bg-light-green\:hover:hover {
    background-color: #77b65b !important;
  }
  .xxl\:bg-lighter-green\:hover:hover {
    background-color: #c9e4bc !important;
  }
  .xxl\:bg-lightest-green\:hover:hover {
    background-color: #eff6ec !important;
  }
  .xxl\:bg-darker-yellow\:hover:hover {
    background-color: #483206 !important;
  }
  .xxl\:bg-dark-yellow\:hover:hover {
    background-color: #b5862a !important;
  }
  .xxl\:bg-yellow\:hover:hover {
    background-color: #f2b63f !important;
  }
  .xxl\:bg-light-yellow\:hover:hover {
    background-color: #f5cd78 !important;
  }
  .xxl\:bg-lighter-yellow\:hover:hover {
    background-color: #f8ecc5 !important;
  }
  .xxl\:bg-lightest-yellow\:hover:hover {
    background-color: #faf9e7 !important;
  }
  .xxl\:bg-beige\:hover:hover {
    background-color: #dbd3c9 !important;
  }
  .xxl\:bg-white\:hover:hover {
    background-color: #fff !important;
  }
  .xxl\:bg-white-opacity-02\:hover:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:bg-white-opacity-03\:hover:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:bg-white-opacity-05\:hover:hover {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:bg-white-opacity-07\:hover:hover {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:bg-lightest-grey\:hover:hover {
    background-color: #f3f3f3 !important;
  }
  .xxl\:bg-lighter-grey\:hover:hover {
    background-color: #ddd !important;
  }
  .xxl\:bg-light-grey\:hover:hover {
    background-color: #bbb !important;
  }
  .xxl\:bg-grey\:hover:hover {
    background-color: #8e8e8e !important;
  }
  .xxl\:bg-dark-grey\:hover:hover {
    background-color: #646464 !important;
  }
  .xxl\:bg-darker-grey\:hover:hover {
    background-color: #444 !important;
  }
  .xxl\:bg-darkest-grey\:hover:hover {
    background-color: #222 !important;
  }
  .xxl\:bg-black\:hover:hover {
    background-color: #000 !important;
  }
  .xxl\:bg-black-opacity-07\:hover:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:bg-transparent\:hover:hover {
    background-color: transparent !important;
  }
  .xxl\:bg-default\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xxl\:bg-highlight\:hover:hover {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xxl\:bg-link--hover\:hover:hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xxl\:bg-clear\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xxl\:bg-lightest\:hover:hover {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xxl\:bg-lighter\:hover:hover {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xxl\:bg-light\:hover:hover {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xxl\:bg-normal\:hover:hover {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xxl\:bg-dark\:hover:hover {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xxl\:bg-darker\:hover:hover {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xxl\:bg-darkest\:hover:hover {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xxl\:bg-opaque\:hover:hover {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xxl\:bg-red\:hover\:before:hover:before {
    background-color: #f12b3b !important;
  }
  .xxl\:bg-dark-red\:hover\:before:hover:before {
    background-color: #d2212f !important;
  }
  .xxl\:bg-dark-blue\:hover\:before:hover:before {
    background-color: #0273aa !important;
  }
  .xxl\:bg-darker-blue\:hover\:before:hover:before {
    background-color: #063b63 !important;
  }
  .xxl\:bg-blue\:hover\:before:hover:before {
    background-color: #008fce !important;
  }
  .xxl\:bg-light-blue\:hover\:before:hover:before {
    background-color: #4ba6ce !important;
  }
  .xxl\:bg-lighter-blue\:hover\:before:hover:before {
    background-color: #c4e5f4 !important;
  }
  .xxl\:bg-lightest-blue\:hover\:before:hover:before {
    background-color: #f1f7fa !important;
  }
  .xxl\:bg-turquoise\:hover\:before:hover:before {
    background-color: #86c6bb !important;
  }
  .xxl\:bg-light-turquoise\:hover\:before:hover:before {
    background-color: #a0d1c9 !important;
  }
  .xxl\:bg-lightest-turquoise\:hover\:before:hover:before {
    background-color: #eff4f3 !important;
  }
  .xxl\:bg-darker-green\:hover\:before:hover:before {
    background-color: #2f4f21 !important;
  }
  .xxl\:bg-dark-green\:hover\:before:hover:before {
    background-color: #456f32 !important;
  }
  .xxl\:bg-green\:hover\:before:hover:before {
    background-color: #66a54a !important;
  }
  .xxl\:bg-light-green\:hover\:before:hover:before {
    background-color: #77b65b !important;
  }
  .xxl\:bg-lighter-green\:hover\:before:hover:before {
    background-color: #c9e4bc !important;
  }
  .xxl\:bg-lightest-green\:hover\:before:hover:before {
    background-color: #eff6ec !important;
  }
  .xxl\:bg-darker-yellow\:hover\:before:hover:before {
    background-color: #483206 !important;
  }
  .xxl\:bg-dark-yellow\:hover\:before:hover:before {
    background-color: #b5862a !important;
  }
  .xxl\:bg-yellow\:hover\:before:hover:before {
    background-color: #f2b63f !important;
  }
  .xxl\:bg-light-yellow\:hover\:before:hover:before {
    background-color: #f5cd78 !important;
  }
  .xxl\:bg-lighter-yellow\:hover\:before:hover:before {
    background-color: #f8ecc5 !important;
  }
  .xxl\:bg-lightest-yellow\:hover\:before:hover:before {
    background-color: #faf9e7 !important;
  }
  .xxl\:bg-beige\:hover\:before:hover:before {
    background-color: #dbd3c9 !important;
  }
  .xxl\:bg-white\:hover\:before:hover:before {
    background-color: #fff !important;
  }
  .xxl\:bg-white-opacity-02\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:bg-white-opacity-03\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:bg-white-opacity-05\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:bg-white-opacity-07\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:bg-lightest-grey\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
  }
  .xxl\:bg-lighter-grey\:hover\:before:hover:before {
    background-color: #ddd !important;
  }
  .xxl\:bg-light-grey\:hover\:before:hover:before {
    background-color: #bbb !important;
  }
  .xxl\:bg-grey\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
  }
  .xxl\:bg-dark-grey\:hover\:before:hover:before {
    background-color: #646464 !important;
  }
  .xxl\:bg-darker-grey\:hover\:before:hover:before {
    background-color: #444 !important;
  }
  .xxl\:bg-darkest-grey\:hover\:before:hover:before {
    background-color: #222 !important;
  }
  .xxl\:bg-black\:hover\:before:hover:before {
    background-color: #000 !important;
  }
  .xxl\:bg-black-opacity-07\:hover\:before:hover:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:bg-transparent\:hover\:before:hover:before {
    background-color: transparent !important;
  }
  .xxl\:bg-default\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xxl\:bg-highlight\:hover\:before:hover:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xxl\:bg-link--hover\:hover\:before:hover:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xxl\:bg-clear\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xxl\:bg-lightest\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xxl\:bg-lighter\:hover\:before:hover:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xxl\:bg-light\:hover\:before:hover:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xxl\:bg-normal\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xxl\:bg-dark\:hover\:before:hover:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xxl\:bg-darker\:hover\:before:hover:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xxl\:bg-darkest\:hover\:before:hover:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xxl\:bg-opaque\:hover\:before:hover:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xxl\:bg-red\:hover\:after:hover:after {
    background-color: #f12b3b !important;
  }
  .xxl\:bg-dark-red\:hover\:after:hover:after {
    background-color: #d2212f !important;
  }
  .xxl\:bg-dark-blue\:hover\:after:hover:after {
    background-color: #0273aa !important;
  }
  .xxl\:bg-darker-blue\:hover\:after:hover:after {
    background-color: #063b63 !important;
  }
  .xxl\:bg-blue\:hover\:after:hover:after {
    background-color: #008fce !important;
  }
  .xxl\:bg-light-blue\:hover\:after:hover:after {
    background-color: #4ba6ce !important;
  }
  .xxl\:bg-lighter-blue\:hover\:after:hover:after {
    background-color: #c4e5f4 !important;
  }
  .xxl\:bg-lightest-blue\:hover\:after:hover:after {
    background-color: #f1f7fa !important;
  }
  .xxl\:bg-turquoise\:hover\:after:hover:after {
    background-color: #86c6bb !important;
  }
  .xxl\:bg-light-turquoise\:hover\:after:hover:after {
    background-color: #a0d1c9 !important;
  }
  .xxl\:bg-lightest-turquoise\:hover\:after:hover:after {
    background-color: #eff4f3 !important;
  }
  .xxl\:bg-darker-green\:hover\:after:hover:after {
    background-color: #2f4f21 !important;
  }
  .xxl\:bg-dark-green\:hover\:after:hover:after {
    background-color: #456f32 !important;
  }
  .xxl\:bg-green\:hover\:after:hover:after {
    background-color: #66a54a !important;
  }
  .xxl\:bg-light-green\:hover\:after:hover:after {
    background-color: #77b65b !important;
  }
  .xxl\:bg-lighter-green\:hover\:after:hover:after {
    background-color: #c9e4bc !important;
  }
  .xxl\:bg-lightest-green\:hover\:after:hover:after {
    background-color: #eff6ec !important;
  }
  .xxl\:bg-darker-yellow\:hover\:after:hover:after {
    background-color: #483206 !important;
  }
  .xxl\:bg-dark-yellow\:hover\:after:hover:after {
    background-color: #b5862a !important;
  }
  .xxl\:bg-yellow\:hover\:after:hover:after {
    background-color: #f2b63f !important;
  }
  .xxl\:bg-light-yellow\:hover\:after:hover:after {
    background-color: #f5cd78 !important;
  }
  .xxl\:bg-lighter-yellow\:hover\:after:hover:after {
    background-color: #f8ecc5 !important;
  }
  .xxl\:bg-lightest-yellow\:hover\:after:hover:after {
    background-color: #faf9e7 !important;
  }
  .xxl\:bg-beige\:hover\:after:hover:after {
    background-color: #dbd3c9 !important;
  }
  .xxl\:bg-white\:hover\:after:hover:after {
    background-color: #fff !important;
  }
  .xxl\:bg-white-opacity-02\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:bg-white-opacity-03\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:bg-white-opacity-05\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:bg-white-opacity-07\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:bg-lightest-grey\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
  }
  .xxl\:bg-lighter-grey\:hover\:after:hover:after {
    background-color: #ddd !important;
  }
  .xxl\:bg-light-grey\:hover\:after:hover:after {
    background-color: #bbb !important;
  }
  .xxl\:bg-grey\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
  }
  .xxl\:bg-dark-grey\:hover\:after:hover:after {
    background-color: #646464 !important;
  }
  .xxl\:bg-darker-grey\:hover\:after:hover:after {
    background-color: #444 !important;
  }
  .xxl\:bg-darkest-grey\:hover\:after:hover:after {
    background-color: #222 !important;
  }
  .xxl\:bg-black\:hover\:after:hover:after {
    background-color: #000 !important;
  }
  .xxl\:bg-black-opacity-07\:hover\:after:hover:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:bg-transparent\:hover\:after:hover:after {
    background-color: transparent !important;
  }
  .xxl\:bg-default\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xxl\:bg-highlight\:hover\:after:hover:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xxl\:bg-link--hover\:hover\:after:hover:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xxl\:bg-clear\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xxl\:bg-lightest\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xxl\:bg-lighter\:hover\:after:hover:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xxl\:bg-light\:hover\:after:hover:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xxl\:bg-normal\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xxl\:bg-dark\:hover\:after:hover:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xxl\:bg-darker\:hover\:after:hover:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xxl\:bg-darkest\:hover\:after:hover:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xxl\:bg-opaque\:hover\:after:hover:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xxl\:bg-red\:before:before {
    background-color: #f12b3b !important;
  }
  .xxl\:bg-dark-red\:before:before {
    background-color: #d2212f !important;
  }
  .xxl\:bg-dark-blue\:before:before {
    background-color: #0273aa !important;
  }
  .xxl\:bg-darker-blue\:before:before {
    background-color: #063b63 !important;
  }
  .xxl\:bg-blue\:before:before {
    background-color: #008fce !important;
  }
  .xxl\:bg-light-blue\:before:before {
    background-color: #4ba6ce !important;
  }
  .xxl\:bg-lighter-blue\:before:before {
    background-color: #c4e5f4 !important;
  }
  .xxl\:bg-lightest-blue\:before:before {
    background-color: #f1f7fa !important;
  }
  .xxl\:bg-turquoise\:before:before {
    background-color: #86c6bb !important;
  }
  .xxl\:bg-light-turquoise\:before:before {
    background-color: #a0d1c9 !important;
  }
  .xxl\:bg-lightest-turquoise\:before:before {
    background-color: #eff4f3 !important;
  }
  .xxl\:bg-darker-green\:before:before {
    background-color: #2f4f21 !important;
  }
  .xxl\:bg-dark-green\:before:before {
    background-color: #456f32 !important;
  }
  .xxl\:bg-green\:before:before {
    background-color: #66a54a !important;
  }
  .xxl\:bg-light-green\:before:before {
    background-color: #77b65b !important;
  }
  .xxl\:bg-lighter-green\:before:before {
    background-color: #c9e4bc !important;
  }
  .xxl\:bg-lightest-green\:before:before {
    background-color: #eff6ec !important;
  }
  .xxl\:bg-darker-yellow\:before:before {
    background-color: #483206 !important;
  }
  .xxl\:bg-dark-yellow\:before:before {
    background-color: #b5862a !important;
  }
  .xxl\:bg-yellow\:before:before {
    background-color: #f2b63f !important;
  }
  .xxl\:bg-light-yellow\:before:before {
    background-color: #f5cd78 !important;
  }
  .xxl\:bg-lighter-yellow\:before:before {
    background-color: #f8ecc5 !important;
  }
  .xxl\:bg-lightest-yellow\:before:before {
    background-color: #faf9e7 !important;
  }
  .xxl\:bg-beige\:before:before {
    background-color: #dbd3c9 !important;
  }
  .xxl\:bg-white\:before:before {
    background-color: #fff !important;
  }
  .xxl\:bg-white-opacity-02\:before:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:bg-white-opacity-03\:before:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:bg-white-opacity-05\:before:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:bg-white-opacity-07\:before:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:bg-lightest-grey\:before:before {
    background-color: #f3f3f3 !important;
  }
  .xxl\:bg-lighter-grey\:before:before {
    background-color: #ddd !important;
  }
  .xxl\:bg-light-grey\:before:before {
    background-color: #bbb !important;
  }
  .xxl\:bg-grey\:before:before {
    background-color: #8e8e8e !important;
  }
  .xxl\:bg-dark-grey\:before:before {
    background-color: #646464 !important;
  }
  .xxl\:bg-darker-grey\:before:before {
    background-color: #444 !important;
  }
  .xxl\:bg-darkest-grey\:before:before {
    background-color: #222 !important;
  }
  .xxl\:bg-black\:before:before {
    background-color: #000 !important;
  }
  .xxl\:bg-black-opacity-07\:before:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:bg-transparent\:before:before {
    background-color: transparent !important;
  }
  .xxl\:bg-default\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xxl\:bg-highlight\:before:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xxl\:bg-link--hover\:before:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xxl\:bg-clear\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xxl\:bg-lightest\:before:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xxl\:bg-lighter\:before:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xxl\:bg-light\:before:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xxl\:bg-normal\:before:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xxl\:bg-dark\:before:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xxl\:bg-darker\:before:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xxl\:bg-darkest\:before:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xxl\:bg-opaque\:before:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xxl\:bg-red\:after:after {
    background-color: #f12b3b !important;
  }
  .xxl\:bg-dark-red\:after:after {
    background-color: #d2212f !important;
  }
  .xxl\:bg-dark-blue\:after:after {
    background-color: #0273aa !important;
  }
  .xxl\:bg-darker-blue\:after:after {
    background-color: #063b63 !important;
  }
  .xxl\:bg-blue\:after:after {
    background-color: #008fce !important;
  }
  .xxl\:bg-light-blue\:after:after {
    background-color: #4ba6ce !important;
  }
  .xxl\:bg-lighter-blue\:after:after {
    background-color: #c4e5f4 !important;
  }
  .xxl\:bg-lightest-blue\:after:after {
    background-color: #f1f7fa !important;
  }
  .xxl\:bg-turquoise\:after:after {
    background-color: #86c6bb !important;
  }
  .xxl\:bg-light-turquoise\:after:after {
    background-color: #a0d1c9 !important;
  }
  .xxl\:bg-lightest-turquoise\:after:after {
    background-color: #eff4f3 !important;
  }
  .xxl\:bg-darker-green\:after:after {
    background-color: #2f4f21 !important;
  }
  .xxl\:bg-dark-green\:after:after {
    background-color: #456f32 !important;
  }
  .xxl\:bg-green\:after:after {
    background-color: #66a54a !important;
  }
  .xxl\:bg-light-green\:after:after {
    background-color: #77b65b !important;
  }
  .xxl\:bg-lighter-green\:after:after {
    background-color: #c9e4bc !important;
  }
  .xxl\:bg-lightest-green\:after:after {
    background-color: #eff6ec !important;
  }
  .xxl\:bg-darker-yellow\:after:after {
    background-color: #483206 !important;
  }
  .xxl\:bg-dark-yellow\:after:after {
    background-color: #b5862a !important;
  }
  .xxl\:bg-yellow\:after:after {
    background-color: #f2b63f !important;
  }
  .xxl\:bg-light-yellow\:after:after {
    background-color: #f5cd78 !important;
  }
  .xxl\:bg-lighter-yellow\:after:after {
    background-color: #f8ecc5 !important;
  }
  .xxl\:bg-lightest-yellow\:after:after {
    background-color: #faf9e7 !important;
  }
  .xxl\:bg-beige\:after:after {
    background-color: #dbd3c9 !important;
  }
  .xxl\:bg-white\:after:after {
    background-color: #fff !important;
  }
  .xxl\:bg-white-opacity-02\:after:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:bg-white-opacity-03\:after:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:bg-white-opacity-05\:after:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:bg-white-opacity-07\:after:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:bg-lightest-grey\:after:after {
    background-color: #f3f3f3 !important;
  }
  .xxl\:bg-lighter-grey\:after:after {
    background-color: #ddd !important;
  }
  .xxl\:bg-light-grey\:after:after {
    background-color: #bbb !important;
  }
  .xxl\:bg-grey\:after:after {
    background-color: #8e8e8e !important;
  }
  .xxl\:bg-dark-grey\:after:after {
    background-color: #646464 !important;
  }
  .xxl\:bg-darker-grey\:after:after {
    background-color: #444 !important;
  }
  .xxl\:bg-darkest-grey\:after:after {
    background-color: #222 !important;
  }
  .xxl\:bg-black\:after:after {
    background-color: #000 !important;
  }
  .xxl\:bg-black-opacity-07\:after:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:bg-transparent\:after:after {
    background-color: transparent !important;
  }
  .xxl\:bg-default\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xxl\:bg-highlight\:after:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xxl\:bg-link--hover\:after:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xxl\:bg-clear\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xxl\:bg-lightest\:after:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xxl\:bg-lighter\:after:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xxl\:bg-light\:after:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xxl\:bg-normal\:after:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xxl\:bg-dark\:after:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xxl\:bg-darker\:after:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xxl\:bg-darkest\:after:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xxl\:bg-opaque\:after:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .xxl\:bg-red\:iframe iframe {
    background-color: #f12b3b !important;
  }
  .xxl\:bg-dark-red\:iframe iframe {
    background-color: #d2212f !important;
  }
  .xxl\:bg-dark-blue\:iframe iframe {
    background-color: #0273aa !important;
  }
  .xxl\:bg-darker-blue\:iframe iframe {
    background-color: #063b63 !important;
  }
  .xxl\:bg-blue\:iframe iframe {
    background-color: #008fce !important;
  }
  .xxl\:bg-light-blue\:iframe iframe {
    background-color: #4ba6ce !important;
  }
  .xxl\:bg-lighter-blue\:iframe iframe {
    background-color: #c4e5f4 !important;
  }
  .xxl\:bg-lightest-blue\:iframe iframe {
    background-color: #f1f7fa !important;
  }
  .xxl\:bg-turquoise\:iframe iframe {
    background-color: #86c6bb !important;
  }
  .xxl\:bg-light-turquoise\:iframe iframe {
    background-color: #a0d1c9 !important;
  }
  .xxl\:bg-lightest-turquoise\:iframe iframe {
    background-color: #eff4f3 !important;
  }
  .xxl\:bg-darker-green\:iframe iframe {
    background-color: #2f4f21 !important;
  }
  .xxl\:bg-dark-green\:iframe iframe {
    background-color: #456f32 !important;
  }
  .xxl\:bg-green\:iframe iframe {
    background-color: #66a54a !important;
  }
  .xxl\:bg-light-green\:iframe iframe {
    background-color: #77b65b !important;
  }
  .xxl\:bg-lighter-green\:iframe iframe {
    background-color: #c9e4bc !important;
  }
  .xxl\:bg-lightest-green\:iframe iframe {
    background-color: #eff6ec !important;
  }
  .xxl\:bg-darker-yellow\:iframe iframe {
    background-color: #483206 !important;
  }
  .xxl\:bg-dark-yellow\:iframe iframe {
    background-color: #b5862a !important;
  }
  .xxl\:bg-yellow\:iframe iframe {
    background-color: #f2b63f !important;
  }
  .xxl\:bg-light-yellow\:iframe iframe {
    background-color: #f5cd78 !important;
  }
  .xxl\:bg-lighter-yellow\:iframe iframe {
    background-color: #f8ecc5 !important;
  }
  .xxl\:bg-lightest-yellow\:iframe iframe {
    background-color: #faf9e7 !important;
  }
  .xxl\:bg-beige\:iframe iframe {
    background-color: #dbd3c9 !important;
  }
  .xxl\:bg-white\:iframe iframe {
    background-color: #fff !important;
  }
  .xxl\:bg-white-opacity-02\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:bg-white-opacity-03\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:bg-white-opacity-05\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:bg-white-opacity-07\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:bg-lightest-grey\:iframe iframe {
    background-color: #f3f3f3 !important;
  }
  .xxl\:bg-lighter-grey\:iframe iframe {
    background-color: #ddd !important;
  }
  .xxl\:bg-light-grey\:iframe iframe {
    background-color: #bbb !important;
  }
  .xxl\:bg-grey\:iframe iframe {
    background-color: #8e8e8e !important;
  }
  .xxl\:bg-dark-grey\:iframe iframe {
    background-color: #646464 !important;
  }
  .xxl\:bg-darker-grey\:iframe iframe {
    background-color: #444 !important;
  }
  .xxl\:bg-darkest-grey\:iframe iframe {
    background-color: #222 !important;
  }
  .xxl\:bg-black\:iframe iframe {
    background-color: #000 !important;
  }
  .xxl\:bg-black-opacity-07\:iframe iframe {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .xxl\:bg-transparent\:iframe iframe {
    background-color: transparent !important;
  }
  .xxl\:bg-default\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .xxl\:bg-highlight\:iframe iframe {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .xxl\:bg-link--hover\:iframe iframe {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .xxl\:bg-clear\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .xxl\:bg-lightest\:iframe iframe {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .xxl\:bg-lighter\:iframe iframe {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .xxl\:bg-light\:iframe iframe {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .xxl\:bg-normal\:iframe iframe {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .xxl\:bg-dark\:iframe iframe {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .xxl\:bg-darker\:iframe iframe {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .xxl\:bg-darkest\:iframe iframe {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .xxl\:bg-opaque\:iframe iframe {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:bg-red {
    background-color: #f12b3b !important;
  }
  .max\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .max\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .max\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .max\:bg-blue {
    background-color: #008fce !important;
  }
  .max\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .max\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .max\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .max\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .max\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .max\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .max\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .max\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .max\:bg-green {
    background-color: #66a54a !important;
  }
  .max\:bg-light-green {
    background-color: #77b65b !important;
  }
  .max\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .max\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .max\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .max\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .max\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .max\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .max\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .max\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .max\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .max\:bg-white {
    background-color: #fff !important;
  }
  .max\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .max\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .max\:bg-light-grey {
    background-color: #bbb !important;
  }
  .max\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .max\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .max\:bg-darker-grey {
    background-color: #444 !important;
  }
  .max\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .max\:bg-black {
    background-color: #000 !important;
  }
  .max\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:bg-transparent {
    background-color: transparent !important;
  }
  .max\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .max\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .max\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .max\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .max\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .max\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .max\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .max\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .max\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .max\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .max\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .max\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  a:hover .max\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  a:hover .max\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  a:hover .max\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  a:hover .max\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  a:hover .max\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  a:hover .max\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  a:hover .max\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  a:hover .max\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  a:hover .max\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  a:hover .max\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  a:hover .max\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  a:hover .max\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  a:hover .max\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  a:hover .max\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  a:hover .max\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  a:hover .max\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  a:hover .max\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  a:hover .max\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  a:hover .max\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  a:hover .max\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  a:hover .max\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  a:hover .max\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  a:hover .max\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  a:hover .max\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  a:hover .max\:hover\:bg-white {
    background-color: #fff !important;
  }
  a:hover .max\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .max\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .max\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .max\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .max\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  a:hover .max\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  a:hover .max\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  a:hover .max\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  a:hover .max\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  a:hover .max\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  a:hover .max\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  a:hover .max\:hover\:bg-black {
    background-color: #000 !important;
  }
  a:hover .max\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  a:hover .max\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  a:hover .max\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  a:hover .max\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  a:hover .max\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  a:hover .max\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  a:hover .max\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  a:hover .max\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  a:hover .max\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  a:hover .max\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  a:hover .max\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  a:hover .max\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  a:hover .max\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  a:hover .max\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  button:hover .max\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  button:hover .max\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  button:hover .max\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  button:hover .max\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  button:hover .max\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  button:hover .max\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  button:hover .max\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  button:hover .max\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  button:hover .max\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  button:hover .max\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  button:hover .max\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  button:hover .max\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  button:hover .max\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  button:hover .max\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  button:hover .max\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  button:hover .max\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  button:hover .max\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  button:hover .max\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  button:hover .max\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  button:hover .max\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  button:hover .max\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  button:hover .max\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  button:hover .max\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  button:hover .max\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  button:hover .max\:hover\:bg-white {
    background-color: #fff !important;
  }
  button:hover .max\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .max\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .max\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .max\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .max\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  button:hover .max\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  button:hover .max\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  button:hover .max\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  button:hover .max\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  button:hover .max\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  button:hover .max\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  button:hover .max\:hover\:bg-black {
    background-color: #000 !important;
  }
  button:hover .max\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  button:hover .max\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  button:hover .max\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  button:hover .max\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  button:hover .max\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  button:hover .max\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  button:hover .max\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  button:hover .max\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  button:hover .max\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  button:hover .max\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  button:hover .max\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  button:hover .max\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  button:hover .max\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  button:hover .max\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .btn:hover .max\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  .btn:hover .max\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  .btn:hover .max\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  .btn:hover .max\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  .btn:hover .max\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  .btn:hover .max\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  .btn:hover .max\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  .btn:hover .max\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  .btn:hover .max\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  .btn:hover .max\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  .btn:hover .max\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  .btn:hover .max\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  .btn:hover .max\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  .btn:hover .max\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  .btn:hover .max\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  .btn:hover .max\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  .btn:hover .max\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  .btn:hover .max\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  .btn:hover .max\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  .btn:hover .max\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  .btn:hover .max\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  .btn:hover .max\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  .btn:hover .max\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  .btn:hover .max\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  .btn:hover .max\:hover\:bg-white {
    background-color: #fff !important;
  }
  .btn:hover .max\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .max\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .max\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .max\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .max\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  .btn:hover .max\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  .btn:hover .max\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  .btn:hover .max\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  .btn:hover .max\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  .btn:hover .max\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  .btn:hover .max\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  .btn:hover .max\:hover\:bg-black {
    background-color: #000 !important;
  }
  .btn:hover .max\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .btn:hover .max\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  .btn:hover .max\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .btn:hover .max\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .btn:hover .max\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .btn:hover .max\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .btn:hover .max\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .btn:hover .max\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .btn:hover .max\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .btn:hover .max\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .btn:hover .max\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .btn:hover .max\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .btn:hover .max\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .btn:hover .max\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  input:hover .max\:hover\:bg-red {
    background-color: #f12b3b !important;
  }
  input:hover .max\:hover\:bg-dark-red {
    background-color: #d2212f !important;
  }
  input:hover .max\:hover\:bg-dark-blue {
    background-color: #0273aa !important;
  }
  input:hover .max\:hover\:bg-darker-blue {
    background-color: #063b63 !important;
  }
  input:hover .max\:hover\:bg-blue {
    background-color: #008fce !important;
  }
  input:hover .max\:hover\:bg-light-blue {
    background-color: #4ba6ce !important;
  }
  input:hover .max\:hover\:bg-lighter-blue {
    background-color: #c4e5f4 !important;
  }
  input:hover .max\:hover\:bg-lightest-blue {
    background-color: #f1f7fa !important;
  }
  input:hover .max\:hover\:bg-turquoise {
    background-color: #86c6bb !important;
  }
  input:hover .max\:hover\:bg-light-turquoise {
    background-color: #a0d1c9 !important;
  }
  input:hover .max\:hover\:bg-lightest-turquoise {
    background-color: #eff4f3 !important;
  }
  input:hover .max\:hover\:bg-darker-green {
    background-color: #2f4f21 !important;
  }
  input:hover .max\:hover\:bg-dark-green {
    background-color: #456f32 !important;
  }
  input:hover .max\:hover\:bg-green {
    background-color: #66a54a !important;
  }
  input:hover .max\:hover\:bg-light-green {
    background-color: #77b65b !important;
  }
  input:hover .max\:hover\:bg-lighter-green {
    background-color: #c9e4bc !important;
  }
  input:hover .max\:hover\:bg-lightest-green {
    background-color: #eff6ec !important;
  }
  input:hover .max\:hover\:bg-darker-yellow {
    background-color: #483206 !important;
  }
  input:hover .max\:hover\:bg-dark-yellow {
    background-color: #b5862a !important;
  }
  input:hover .max\:hover\:bg-yellow {
    background-color: #f2b63f !important;
  }
  input:hover .max\:hover\:bg-light-yellow {
    background-color: #f5cd78 !important;
  }
  input:hover .max\:hover\:bg-lighter-yellow {
    background-color: #f8ecc5 !important;
  }
  input:hover .max\:hover\:bg-lightest-yellow {
    background-color: #faf9e7 !important;
  }
  input:hover .max\:hover\:bg-beige {
    background-color: #dbd3c9 !important;
  }
  input:hover .max\:hover\:bg-white {
    background-color: #fff !important;
  }
  input:hover .max\:hover\:bg-white-opacity-02 {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .max\:hover\:bg-white-opacity-03 {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .max\:hover\:bg-white-opacity-05 {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .max\:hover\:bg-white-opacity-07 {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .max\:hover\:bg-lightest-grey {
    background-color: #f3f3f3 !important;
  }
  input:hover .max\:hover\:bg-lighter-grey {
    background-color: #ddd !important;
  }
  input:hover .max\:hover\:bg-light-grey {
    background-color: #bbb !important;
  }
  input:hover .max\:hover\:bg-grey {
    background-color: #8e8e8e !important;
  }
  input:hover .max\:hover\:bg-dark-grey {
    background-color: #646464 !important;
  }
  input:hover .max\:hover\:bg-darker-grey {
    background-color: #444 !important;
  }
  input:hover .max\:hover\:bg-darkest-grey {
    background-color: #222 !important;
  }
  input:hover .max\:hover\:bg-black {
    background-color: #000 !important;
  }
  input:hover .max\:hover\:bg-black-opacity-07 {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  input:hover .max\:hover\:bg-transparent {
    background-color: transparent !important;
  }
  input:hover .max\:hover\:bg-default {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  input:hover .max\:hover\:bg-highlight {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  input:hover .max\:hover\:bg-link--hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  input:hover .max\:hover\:bg-clear {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  input:hover .max\:hover\:bg-lightest {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  input:hover .max\:hover\:bg-lighter {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  input:hover .max\:hover\:bg-light {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  input:hover .max\:hover\:bg-normal {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  input:hover .max\:hover\:bg-dark {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  input:hover .max\:hover\:bg-darker {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  input:hover .max\:hover\:bg-darkest {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  input:hover .max\:hover\:bg-opaque {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .max\:bg-red\:hover:hover {
    background-color: #f12b3b !important;
  }
  .max\:bg-dark-red\:hover:hover {
    background-color: #d2212f !important;
  }
  .max\:bg-dark-blue\:hover:hover {
    background-color: #0273aa !important;
  }
  .max\:bg-darker-blue\:hover:hover {
    background-color: #063b63 !important;
  }
  .max\:bg-blue\:hover:hover {
    background-color: #008fce !important;
  }
  .max\:bg-light-blue\:hover:hover {
    background-color: #4ba6ce !important;
  }
  .max\:bg-lighter-blue\:hover:hover {
    background-color: #c4e5f4 !important;
  }
  .max\:bg-lightest-blue\:hover:hover {
    background-color: #f1f7fa !important;
  }
  .max\:bg-turquoise\:hover:hover {
    background-color: #86c6bb !important;
  }
  .max\:bg-light-turquoise\:hover:hover {
    background-color: #a0d1c9 !important;
  }
  .max\:bg-lightest-turquoise\:hover:hover {
    background-color: #eff4f3 !important;
  }
  .max\:bg-darker-green\:hover:hover {
    background-color: #2f4f21 !important;
  }
  .max\:bg-dark-green\:hover:hover {
    background-color: #456f32 !important;
  }
  .max\:bg-green\:hover:hover {
    background-color: #66a54a !important;
  }
  .max\:bg-light-green\:hover:hover {
    background-color: #77b65b !important;
  }
  .max\:bg-lighter-green\:hover:hover {
    background-color: #c9e4bc !important;
  }
  .max\:bg-lightest-green\:hover:hover {
    background-color: #eff6ec !important;
  }
  .max\:bg-darker-yellow\:hover:hover {
    background-color: #483206 !important;
  }
  .max\:bg-dark-yellow\:hover:hover {
    background-color: #b5862a !important;
  }
  .max\:bg-yellow\:hover:hover {
    background-color: #f2b63f !important;
  }
  .max\:bg-light-yellow\:hover:hover {
    background-color: #f5cd78 !important;
  }
  .max\:bg-lighter-yellow\:hover:hover {
    background-color: #f8ecc5 !important;
  }
  .max\:bg-lightest-yellow\:hover:hover {
    background-color: #faf9e7 !important;
  }
  .max\:bg-beige\:hover:hover {
    background-color: #dbd3c9 !important;
  }
  .max\:bg-white\:hover:hover {
    background-color: #fff !important;
  }
  .max\:bg-white-opacity-02\:hover:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:bg-white-opacity-03\:hover:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:bg-white-opacity-05\:hover:hover {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:bg-white-opacity-07\:hover:hover {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:bg-lightest-grey\:hover:hover {
    background-color: #f3f3f3 !important;
  }
  .max\:bg-lighter-grey\:hover:hover {
    background-color: #ddd !important;
  }
  .max\:bg-light-grey\:hover:hover {
    background-color: #bbb !important;
  }
  .max\:bg-grey\:hover:hover {
    background-color: #8e8e8e !important;
  }
  .max\:bg-dark-grey\:hover:hover {
    background-color: #646464 !important;
  }
  .max\:bg-darker-grey\:hover:hover {
    background-color: #444 !important;
  }
  .max\:bg-darkest-grey\:hover:hover {
    background-color: #222 !important;
  }
  .max\:bg-black\:hover:hover {
    background-color: #000 !important;
  }
  .max\:bg-black-opacity-07\:hover:hover {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:bg-transparent\:hover:hover {
    background-color: transparent !important;
  }
  .max\:bg-default\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .max\:bg-highlight\:hover:hover {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .max\:bg-link--hover\:hover:hover {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .max\:bg-clear\:hover:hover {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .max\:bg-lightest\:hover:hover {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .max\:bg-lighter\:hover:hover {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .max\:bg-light\:hover:hover {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .max\:bg-normal\:hover:hover {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .max\:bg-dark\:hover:hover {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .max\:bg-darker\:hover:hover {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .max\:bg-darkest\:hover:hover {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .max\:bg-opaque\:hover:hover {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .max\:bg-red\:hover\:before:hover:before {
    background-color: #f12b3b !important;
  }
  .max\:bg-dark-red\:hover\:before:hover:before {
    background-color: #d2212f !important;
  }
  .max\:bg-dark-blue\:hover\:before:hover:before {
    background-color: #0273aa !important;
  }
  .max\:bg-darker-blue\:hover\:before:hover:before {
    background-color: #063b63 !important;
  }
  .max\:bg-blue\:hover\:before:hover:before {
    background-color: #008fce !important;
  }
  .max\:bg-light-blue\:hover\:before:hover:before {
    background-color: #4ba6ce !important;
  }
  .max\:bg-lighter-blue\:hover\:before:hover:before {
    background-color: #c4e5f4 !important;
  }
  .max\:bg-lightest-blue\:hover\:before:hover:before {
    background-color: #f1f7fa !important;
  }
  .max\:bg-turquoise\:hover\:before:hover:before {
    background-color: #86c6bb !important;
  }
  .max\:bg-light-turquoise\:hover\:before:hover:before {
    background-color: #a0d1c9 !important;
  }
  .max\:bg-lightest-turquoise\:hover\:before:hover:before {
    background-color: #eff4f3 !important;
  }
  .max\:bg-darker-green\:hover\:before:hover:before {
    background-color: #2f4f21 !important;
  }
  .max\:bg-dark-green\:hover\:before:hover:before {
    background-color: #456f32 !important;
  }
  .max\:bg-green\:hover\:before:hover:before {
    background-color: #66a54a !important;
  }
  .max\:bg-light-green\:hover\:before:hover:before {
    background-color: #77b65b !important;
  }
  .max\:bg-lighter-green\:hover\:before:hover:before {
    background-color: #c9e4bc !important;
  }
  .max\:bg-lightest-green\:hover\:before:hover:before {
    background-color: #eff6ec !important;
  }
  .max\:bg-darker-yellow\:hover\:before:hover:before {
    background-color: #483206 !important;
  }
  .max\:bg-dark-yellow\:hover\:before:hover:before {
    background-color: #b5862a !important;
  }
  .max\:bg-yellow\:hover\:before:hover:before {
    background-color: #f2b63f !important;
  }
  .max\:bg-light-yellow\:hover\:before:hover:before {
    background-color: #f5cd78 !important;
  }
  .max\:bg-lighter-yellow\:hover\:before:hover:before {
    background-color: #f8ecc5 !important;
  }
  .max\:bg-lightest-yellow\:hover\:before:hover:before {
    background-color: #faf9e7 !important;
  }
  .max\:bg-beige\:hover\:before:hover:before {
    background-color: #dbd3c9 !important;
  }
  .max\:bg-white\:hover\:before:hover:before {
    background-color: #fff !important;
  }
  .max\:bg-white-opacity-02\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:bg-white-opacity-03\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:bg-white-opacity-05\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:bg-white-opacity-07\:hover\:before:hover:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:bg-lightest-grey\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
  }
  .max\:bg-lighter-grey\:hover\:before:hover:before {
    background-color: #ddd !important;
  }
  .max\:bg-light-grey\:hover\:before:hover:before {
    background-color: #bbb !important;
  }
  .max\:bg-grey\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
  }
  .max\:bg-dark-grey\:hover\:before:hover:before {
    background-color: #646464 !important;
  }
  .max\:bg-darker-grey\:hover\:before:hover:before {
    background-color: #444 !important;
  }
  .max\:bg-darkest-grey\:hover\:before:hover:before {
    background-color: #222 !important;
  }
  .max\:bg-black\:hover\:before:hover:before {
    background-color: #000 !important;
  }
  .max\:bg-black-opacity-07\:hover\:before:hover:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:bg-transparent\:hover\:before:hover:before {
    background-color: transparent !important;
  }
  .max\:bg-default\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .max\:bg-highlight\:hover\:before:hover:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .max\:bg-link--hover\:hover\:before:hover:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .max\:bg-clear\:hover\:before:hover:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .max\:bg-lightest\:hover\:before:hover:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .max\:bg-lighter\:hover\:before:hover:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .max\:bg-light\:hover\:before:hover:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .max\:bg-normal\:hover\:before:hover:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .max\:bg-dark\:hover\:before:hover:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .max\:bg-darker\:hover\:before:hover:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .max\:bg-darkest\:hover\:before:hover:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .max\:bg-opaque\:hover\:before:hover:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .max\:bg-red\:hover\:after:hover:after {
    background-color: #f12b3b !important;
  }
  .max\:bg-dark-red\:hover\:after:hover:after {
    background-color: #d2212f !important;
  }
  .max\:bg-dark-blue\:hover\:after:hover:after {
    background-color: #0273aa !important;
  }
  .max\:bg-darker-blue\:hover\:after:hover:after {
    background-color: #063b63 !important;
  }
  .max\:bg-blue\:hover\:after:hover:after {
    background-color: #008fce !important;
  }
  .max\:bg-light-blue\:hover\:after:hover:after {
    background-color: #4ba6ce !important;
  }
  .max\:bg-lighter-blue\:hover\:after:hover:after {
    background-color: #c4e5f4 !important;
  }
  .max\:bg-lightest-blue\:hover\:after:hover:after {
    background-color: #f1f7fa !important;
  }
  .max\:bg-turquoise\:hover\:after:hover:after {
    background-color: #86c6bb !important;
  }
  .max\:bg-light-turquoise\:hover\:after:hover:after {
    background-color: #a0d1c9 !important;
  }
  .max\:bg-lightest-turquoise\:hover\:after:hover:after {
    background-color: #eff4f3 !important;
  }
  .max\:bg-darker-green\:hover\:after:hover:after {
    background-color: #2f4f21 !important;
  }
  .max\:bg-dark-green\:hover\:after:hover:after {
    background-color: #456f32 !important;
  }
  .max\:bg-green\:hover\:after:hover:after {
    background-color: #66a54a !important;
  }
  .max\:bg-light-green\:hover\:after:hover:after {
    background-color: #77b65b !important;
  }
  .max\:bg-lighter-green\:hover\:after:hover:after {
    background-color: #c9e4bc !important;
  }
  .max\:bg-lightest-green\:hover\:after:hover:after {
    background-color: #eff6ec !important;
  }
  .max\:bg-darker-yellow\:hover\:after:hover:after {
    background-color: #483206 !important;
  }
  .max\:bg-dark-yellow\:hover\:after:hover:after {
    background-color: #b5862a !important;
  }
  .max\:bg-yellow\:hover\:after:hover:after {
    background-color: #f2b63f !important;
  }
  .max\:bg-light-yellow\:hover\:after:hover:after {
    background-color: #f5cd78 !important;
  }
  .max\:bg-lighter-yellow\:hover\:after:hover:after {
    background-color: #f8ecc5 !important;
  }
  .max\:bg-lightest-yellow\:hover\:after:hover:after {
    background-color: #faf9e7 !important;
  }
  .max\:bg-beige\:hover\:after:hover:after {
    background-color: #dbd3c9 !important;
  }
  .max\:bg-white\:hover\:after:hover:after {
    background-color: #fff !important;
  }
  .max\:bg-white-opacity-02\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:bg-white-opacity-03\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:bg-white-opacity-05\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:bg-white-opacity-07\:hover\:after:hover:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:bg-lightest-grey\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
  }
  .max\:bg-lighter-grey\:hover\:after:hover:after {
    background-color: #ddd !important;
  }
  .max\:bg-light-grey\:hover\:after:hover:after {
    background-color: #bbb !important;
  }
  .max\:bg-grey\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
  }
  .max\:bg-dark-grey\:hover\:after:hover:after {
    background-color: #646464 !important;
  }
  .max\:bg-darker-grey\:hover\:after:hover:after {
    background-color: #444 !important;
  }
  .max\:bg-darkest-grey\:hover\:after:hover:after {
    background-color: #222 !important;
  }
  .max\:bg-black\:hover\:after:hover:after {
    background-color: #000 !important;
  }
  .max\:bg-black-opacity-07\:hover\:after:hover:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:bg-transparent\:hover\:after:hover:after {
    background-color: transparent !important;
  }
  .max\:bg-default\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .max\:bg-highlight\:hover\:after:hover:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .max\:bg-link--hover\:hover\:after:hover:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .max\:bg-clear\:hover\:after:hover:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .max\:bg-lightest\:hover\:after:hover:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .max\:bg-lighter\:hover\:after:hover:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .max\:bg-light\:hover\:after:hover:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .max\:bg-normal\:hover\:after:hover:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .max\:bg-dark\:hover\:after:hover:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .max\:bg-darker\:hover\:after:hover:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .max\:bg-darkest\:hover\:after:hover:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .max\:bg-opaque\:hover\:after:hover:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .max\:bg-red\:before:before {
    background-color: #f12b3b !important;
  }
  .max\:bg-dark-red\:before:before {
    background-color: #d2212f !important;
  }
  .max\:bg-dark-blue\:before:before {
    background-color: #0273aa !important;
  }
  .max\:bg-darker-blue\:before:before {
    background-color: #063b63 !important;
  }
  .max\:bg-blue\:before:before {
    background-color: #008fce !important;
  }
  .max\:bg-light-blue\:before:before {
    background-color: #4ba6ce !important;
  }
  .max\:bg-lighter-blue\:before:before {
    background-color: #c4e5f4 !important;
  }
  .max\:bg-lightest-blue\:before:before {
    background-color: #f1f7fa !important;
  }
  .max\:bg-turquoise\:before:before {
    background-color: #86c6bb !important;
  }
  .max\:bg-light-turquoise\:before:before {
    background-color: #a0d1c9 !important;
  }
  .max\:bg-lightest-turquoise\:before:before {
    background-color: #eff4f3 !important;
  }
  .max\:bg-darker-green\:before:before {
    background-color: #2f4f21 !important;
  }
  .max\:bg-dark-green\:before:before {
    background-color: #456f32 !important;
  }
  .max\:bg-green\:before:before {
    background-color: #66a54a !important;
  }
  .max\:bg-light-green\:before:before {
    background-color: #77b65b !important;
  }
  .max\:bg-lighter-green\:before:before {
    background-color: #c9e4bc !important;
  }
  .max\:bg-lightest-green\:before:before {
    background-color: #eff6ec !important;
  }
  .max\:bg-darker-yellow\:before:before {
    background-color: #483206 !important;
  }
  .max\:bg-dark-yellow\:before:before {
    background-color: #b5862a !important;
  }
  .max\:bg-yellow\:before:before {
    background-color: #f2b63f !important;
  }
  .max\:bg-light-yellow\:before:before {
    background-color: #f5cd78 !important;
  }
  .max\:bg-lighter-yellow\:before:before {
    background-color: #f8ecc5 !important;
  }
  .max\:bg-lightest-yellow\:before:before {
    background-color: #faf9e7 !important;
  }
  .max\:bg-beige\:before:before {
    background-color: #dbd3c9 !important;
  }
  .max\:bg-white\:before:before {
    background-color: #fff !important;
  }
  .max\:bg-white-opacity-02\:before:before {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:bg-white-opacity-03\:before:before {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:bg-white-opacity-05\:before:before {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:bg-white-opacity-07\:before:before {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:bg-lightest-grey\:before:before {
    background-color: #f3f3f3 !important;
  }
  .max\:bg-lighter-grey\:before:before {
    background-color: #ddd !important;
  }
  .max\:bg-light-grey\:before:before {
    background-color: #bbb !important;
  }
  .max\:bg-grey\:before:before {
    background-color: #8e8e8e !important;
  }
  .max\:bg-dark-grey\:before:before {
    background-color: #646464 !important;
  }
  .max\:bg-darker-grey\:before:before {
    background-color: #444 !important;
  }
  .max\:bg-darkest-grey\:before:before {
    background-color: #222 !important;
  }
  .max\:bg-black\:before:before {
    background-color: #000 !important;
  }
  .max\:bg-black-opacity-07\:before:before {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:bg-transparent\:before:before {
    background-color: transparent !important;
  }
  .max\:bg-default\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .max\:bg-highlight\:before:before {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .max\:bg-link--hover\:before:before {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .max\:bg-clear\:before:before {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .max\:bg-lightest\:before:before {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .max\:bg-lighter\:before:before {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .max\:bg-light\:before:before {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .max\:bg-normal\:before:before {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .max\:bg-dark\:before:before {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .max\:bg-darker\:before:before {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .max\:bg-darkest\:before:before {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .max\:bg-opaque\:before:before {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .max\:bg-red\:after:after {
    background-color: #f12b3b !important;
  }
  .max\:bg-dark-red\:after:after {
    background-color: #d2212f !important;
  }
  .max\:bg-dark-blue\:after:after {
    background-color: #0273aa !important;
  }
  .max\:bg-darker-blue\:after:after {
    background-color: #063b63 !important;
  }
  .max\:bg-blue\:after:after {
    background-color: #008fce !important;
  }
  .max\:bg-light-blue\:after:after {
    background-color: #4ba6ce !important;
  }
  .max\:bg-lighter-blue\:after:after {
    background-color: #c4e5f4 !important;
  }
  .max\:bg-lightest-blue\:after:after {
    background-color: #f1f7fa !important;
  }
  .max\:bg-turquoise\:after:after {
    background-color: #86c6bb !important;
  }
  .max\:bg-light-turquoise\:after:after {
    background-color: #a0d1c9 !important;
  }
  .max\:bg-lightest-turquoise\:after:after {
    background-color: #eff4f3 !important;
  }
  .max\:bg-darker-green\:after:after {
    background-color: #2f4f21 !important;
  }
  .max\:bg-dark-green\:after:after {
    background-color: #456f32 !important;
  }
  .max\:bg-green\:after:after {
    background-color: #66a54a !important;
  }
  .max\:bg-light-green\:after:after {
    background-color: #77b65b !important;
  }
  .max\:bg-lighter-green\:after:after {
    background-color: #c9e4bc !important;
  }
  .max\:bg-lightest-green\:after:after {
    background-color: #eff6ec !important;
  }
  .max\:bg-darker-yellow\:after:after {
    background-color: #483206 !important;
  }
  .max\:bg-dark-yellow\:after:after {
    background-color: #b5862a !important;
  }
  .max\:bg-yellow\:after:after {
    background-color: #f2b63f !important;
  }
  .max\:bg-light-yellow\:after:after {
    background-color: #f5cd78 !important;
  }
  .max\:bg-lighter-yellow\:after:after {
    background-color: #f8ecc5 !important;
  }
  .max\:bg-lightest-yellow\:after:after {
    background-color: #faf9e7 !important;
  }
  .max\:bg-beige\:after:after {
    background-color: #dbd3c9 !important;
  }
  .max\:bg-white\:after:after {
    background-color: #fff !important;
  }
  .max\:bg-white-opacity-02\:after:after {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:bg-white-opacity-03\:after:after {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:bg-white-opacity-05\:after:after {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:bg-white-opacity-07\:after:after {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:bg-lightest-grey\:after:after {
    background-color: #f3f3f3 !important;
  }
  .max\:bg-lighter-grey\:after:after {
    background-color: #ddd !important;
  }
  .max\:bg-light-grey\:after:after {
    background-color: #bbb !important;
  }
  .max\:bg-grey\:after:after {
    background-color: #8e8e8e !important;
  }
  .max\:bg-dark-grey\:after:after {
    background-color: #646464 !important;
  }
  .max\:bg-darker-grey\:after:after {
    background-color: #444 !important;
  }
  .max\:bg-darkest-grey\:after:after {
    background-color: #222 !important;
  }
  .max\:bg-black\:after:after {
    background-color: #000 !important;
  }
  .max\:bg-black-opacity-07\:after:after {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:bg-transparent\:after:after {
    background-color: transparent !important;
  }
  .max\:bg-default\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .max\:bg-highlight\:after:after {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .max\:bg-link--hover\:after:after {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .max\:bg-clear\:after:after {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .max\:bg-lightest\:after:after {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .max\:bg-lighter\:after:after {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .max\:bg-light\:after:after {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .max\:bg-normal\:after:after {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .max\:bg-dark\:after:after {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .max\:bg-darker\:after:after {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .max\:bg-darkest\:after:after {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .max\:bg-opaque\:after:after {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
  .max\:bg-red\:iframe iframe {
    background-color: #f12b3b !important;
  }
  .max\:bg-dark-red\:iframe iframe {
    background-color: #d2212f !important;
  }
  .max\:bg-dark-blue\:iframe iframe {
    background-color: #0273aa !important;
  }
  .max\:bg-darker-blue\:iframe iframe {
    background-color: #063b63 !important;
  }
  .max\:bg-blue\:iframe iframe {
    background-color: #008fce !important;
  }
  .max\:bg-light-blue\:iframe iframe {
    background-color: #4ba6ce !important;
  }
  .max\:bg-lighter-blue\:iframe iframe {
    background-color: #c4e5f4 !important;
  }
  .max\:bg-lightest-blue\:iframe iframe {
    background-color: #f1f7fa !important;
  }
  .max\:bg-turquoise\:iframe iframe {
    background-color: #86c6bb !important;
  }
  .max\:bg-light-turquoise\:iframe iframe {
    background-color: #a0d1c9 !important;
  }
  .max\:bg-lightest-turquoise\:iframe iframe {
    background-color: #eff4f3 !important;
  }
  .max\:bg-darker-green\:iframe iframe {
    background-color: #2f4f21 !important;
  }
  .max\:bg-dark-green\:iframe iframe {
    background-color: #456f32 !important;
  }
  .max\:bg-green\:iframe iframe {
    background-color: #66a54a !important;
  }
  .max\:bg-light-green\:iframe iframe {
    background-color: #77b65b !important;
  }
  .max\:bg-lighter-green\:iframe iframe {
    background-color: #c9e4bc !important;
  }
  .max\:bg-lightest-green\:iframe iframe {
    background-color: #eff6ec !important;
  }
  .max\:bg-darker-yellow\:iframe iframe {
    background-color: #483206 !important;
  }
  .max\:bg-dark-yellow\:iframe iframe {
    background-color: #b5862a !important;
  }
  .max\:bg-yellow\:iframe iframe {
    background-color: #f2b63f !important;
  }
  .max\:bg-light-yellow\:iframe iframe {
    background-color: #f5cd78 !important;
  }
  .max\:bg-lighter-yellow\:iframe iframe {
    background-color: #f8ecc5 !important;
  }
  .max\:bg-lightest-yellow\:iframe iframe {
    background-color: #faf9e7 !important;
  }
  .max\:bg-beige\:iframe iframe {
    background-color: #dbd3c9 !important;
  }
  .max\:bg-white\:iframe iframe {
    background-color: #fff !important;
  }
  .max\:bg-white-opacity-02\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:bg-white-opacity-03\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:bg-white-opacity-05\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:bg-white-opacity-07\:iframe iframe {
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:bg-lightest-grey\:iframe iframe {
    background-color: #f3f3f3 !important;
  }
  .max\:bg-lighter-grey\:iframe iframe {
    background-color: #ddd !important;
  }
  .max\:bg-light-grey\:iframe iframe {
    background-color: #bbb !important;
  }
  .max\:bg-grey\:iframe iframe {
    background-color: #8e8e8e !important;
  }
  .max\:bg-dark-grey\:iframe iframe {
    background-color: #646464 !important;
  }
  .max\:bg-darker-grey\:iframe iframe {
    background-color: #444 !important;
  }
  .max\:bg-darkest-grey\:iframe iframe {
    background-color: #222 !important;
  }
  .max\:bg-black\:iframe iframe {
    background-color: #000 !important;
  }
  .max\:bg-black-opacity-07\:iframe iframe {
    background-color: rgba(0, 0, 0, 0.7) !important;
  }
  .max\:bg-transparent\:iframe iframe {
    background-color: transparent !important;
  }
  .max\:bg-default\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-default) !important;
    fill: var(--bg-default) !important;
  }
  .max\:bg-highlight\:iframe iframe {
    background-color: #f12b3b !important;
    background-color: var(--bg-highlight) !important;
    fill: var(--bg-highlight) !important;
  }
  .max\:bg-link--hover\:iframe iframe {
    background-color: #008fce !important;
    background-color: var(--bg-link--hover) !important;
    fill: var(--bg-link--hover) !important;
  }
  .max\:bg-clear\:iframe iframe {
    background-color: #fff !important;
    background-color: var(--bg-clear) !important;
    fill: var(--bg-clear) !important;
  }
  .max\:bg-lightest\:iframe iframe {
    background-color: #f3f3f3 !important;
    background-color: var(--bg-lightest) !important;
    fill: var(--bg-lightest) !important;
  }
  .max\:bg-lighter\:iframe iframe {
    background-color: #ddd !important;
    background-color: var(--bg-lighter) !important;
    fill: var(--bg-lighter) !important;
  }
  .max\:bg-light\:iframe iframe {
    background-color: #bbb !important;
    background-color: var(--bg-light) !important;
    fill: var(--bg-light) !important;
  }
  .max\:bg-normal\:iframe iframe {
    background-color: #8e8e8e !important;
    background-color: var(--bg-normal) !important;
    fill: var(--bg-normal) !important;
  }
  .max\:bg-dark\:iframe iframe {
    background-color: #646464 !important;
    background-color: var(--bg-dark) !important;
    fill: var(--bg-dark) !important;
  }
  .max\:bg-darker\:iframe iframe {
    background-color: #444 !important;
    background-color: var(--bg-darker) !important;
    fill: var(--bg-darker) !important;
  }
  .max\:bg-darkest\:iframe iframe {
    background-color: #222 !important;
    background-color: var(--bg-darkest) !important;
    fill: var(--bg-darkest) !important;
  }
  .max\:bg-opaque\:iframe iframe {
    background-color: #000 !important;
    background-color: var(--bg-opaque) !important;
    fill: var(--bg-opaque) !important;
  }
}
.border-red {
  border-color: #f12b3b !important;
}

.border-dark-red {
  border-color: #d2212f !important;
}

.border-dark-blue {
  border-color: #0273aa !important;
}

.border-darker-blue {
  border-color: #063b63 !important;
}

.border-blue {
  border-color: #008fce !important;
}

.border-light-blue {
  border-color: #4ba6ce !important;
}

.border-lighter-blue {
  border-color: #c4e5f4 !important;
}

.border-lightest-blue {
  border-color: #f1f7fa !important;
}

.border-turquoise {
  border-color: #86c6bb !important;
}

.border-light-turquoise {
  border-color: #a0d1c9 !important;
}

.border-lightest-turquoise {
  border-color: #eff4f3 !important;
}

.border-darker-green {
  border-color: #2f4f21 !important;
}

.border-dark-green {
  border-color: #456f32 !important;
}

.border-green {
  border-color: #66a54a !important;
}

.border-light-green {
  border-color: #77b65b !important;
}

.border-lighter-green {
  border-color: #c9e4bc !important;
}

.border-lightest-green {
  border-color: #eff6ec !important;
}

.border-darker-yellow {
  border-color: #483206 !important;
}

.border-dark-yellow {
  border-color: #b5862a !important;
}

.border-yellow {
  border-color: #f2b63f !important;
}

.border-light-yellow {
  border-color: #f5cd78 !important;
}

.border-lighter-yellow {
  border-color: #f8ecc5 !important;
}

.border-lightest-yellow {
  border-color: #faf9e7 !important;
}

.border-beige {
  border-color: #dbd3c9 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-white-opacity-02 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.border-white-opacity-03 {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.border-white-opacity-05 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.border-white-opacity-07 {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.border-lightest-grey {
  border-color: #f3f3f3 !important;
}

.border-lighter-grey {
  border-color: #ddd !important;
}

.border-light-grey {
  border-color: #bbb !important;
}

.border-grey {
  border-color: #8e8e8e !important;
}

.border-dark-grey {
  border-color: #646464 !important;
}

.border-darker-grey {
  border-color: #444 !important;
}

.border-darkest-grey {
  border-color: #222 !important;
}

.border-black {
  border-color: #000 !important;
}

.border-link--hover {
  border-color: #008fce !important;
  border-color: var(--txt-link--hover) !important;
}

.border-transparent {
  border-color: transparent !important;
}

.border-clear {
  border-color: #fff !important;
  border-color: var(--border-clear) !important;
}

.border-lightest {
  border-color: #f3f3f3 !important;
  border-color: var(--border-lightest) !important;
}

.border-lighter {
  border-color: #ddd !important;
  border-color: var(--border-lighter) !important;
}

.border-light {
  border-color: #bbb !important;
  border-color: var(--border-light) !important;
}

.border-normal {
  border-color: #8e8e8e !important;
  border-color: var(--border-grey) !important;
}

.border-dark {
  border-color: #646464 !important;
  border-color: var(--border-dark) !important;
}

.border-darker {
  border-color: #444 !important;
  border-color: var(--border-darker) !important;
}

.border-darkest {
  border-color: #222 !important;
  border-color: var(--border-darkest) !important;
}

.border-opaque {
  border-color: #000 !important;
  border-color: var(--border-opaque) !important;
}

a:hover .hover\:border-red {
  border-color: #f12b3b !important;
}

a:hover .hover\:border-dark-red {
  border-color: #d2212f !important;
}

a:hover .hover\:border-dark-blue {
  border-color: #0273aa !important;
}

a:hover .hover\:border-darker-blue {
  border-color: #063b63 !important;
}

a:hover .hover\:border-blue {
  border-color: #008fce !important;
}

a:hover .hover\:border-light-blue {
  border-color: #4ba6ce !important;
}

a:hover .hover\:border-lighter-blue {
  border-color: #c4e5f4 !important;
}

a:hover .hover\:border-lightest-blue {
  border-color: #f1f7fa !important;
}

a:hover .hover\:border-turquoise {
  border-color: #86c6bb !important;
}

a:hover .hover\:border-light-turquoise {
  border-color: #a0d1c9 !important;
}

a:hover .hover\:border-lightest-turquoise {
  border-color: #eff4f3 !important;
}

a:hover .hover\:border-darker-green {
  border-color: #2f4f21 !important;
}

a:hover .hover\:border-dark-green {
  border-color: #456f32 !important;
}

a:hover .hover\:border-green {
  border-color: #66a54a !important;
}

a:hover .hover\:border-light-green {
  border-color: #77b65b !important;
}

a:hover .hover\:border-lighter-green {
  border-color: #c9e4bc !important;
}

a:hover .hover\:border-lightest-green {
  border-color: #eff6ec !important;
}

a:hover .hover\:border-darker-yellow {
  border-color: #483206 !important;
}

a:hover .hover\:border-dark-yellow {
  border-color: #b5862a !important;
}

a:hover .hover\:border-yellow {
  border-color: #f2b63f !important;
}

a:hover .hover\:border-light-yellow {
  border-color: #f5cd78 !important;
}

a:hover .hover\:border-lighter-yellow {
  border-color: #f8ecc5 !important;
}

a:hover .hover\:border-lightest-yellow {
  border-color: #faf9e7 !important;
}

a:hover .hover\:border-beige {
  border-color: #dbd3c9 !important;
}

a:hover .hover\:border-white {
  border-color: #fff !important;
}

a:hover .hover\:border-white-opacity-02 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

a:hover .hover\:border-white-opacity-03 {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

a:hover .hover\:border-white-opacity-05 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

a:hover .hover\:border-white-opacity-07 {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

a:hover .hover\:border-lightest-grey {
  border-color: #f3f3f3 !important;
}

a:hover .hover\:border-lighter-grey {
  border-color: #ddd !important;
}

a:hover .hover\:border-light-grey {
  border-color: #bbb !important;
}

a:hover .hover\:border-grey {
  border-color: #8e8e8e !important;
}

a:hover .hover\:border-dark-grey {
  border-color: #646464 !important;
}

a:hover .hover\:border-darker-grey {
  border-color: #444 !important;
}

a:hover .hover\:border-darkest-grey {
  border-color: #222 !important;
}

a:hover .hover\:border-black {
  border-color: #000 !important;
}

a:hover .hover\:border-link--hover {
  border-color: #008fce !important;
  border-color: var(--txt-link--hover) !important;
}

a:hover .hover\:border-transparent {
  border-color: transparent !important;
}

a:hover .hover\:border-clear {
  border-color: #fff !important;
  border-color: var(--border-clear) !important;
}

a:hover .hover\:border-lightest {
  border-color: #f3f3f3 !important;
  border-color: var(--border-lightest) !important;
}

a:hover .hover\:border-lighter {
  border-color: #ddd !important;
  border-color: var(--border-lighter) !important;
}

a:hover .hover\:border-light {
  border-color: #bbb !important;
  border-color: var(--border-light) !important;
}

a:hover .hover\:border-normal {
  border-color: #8e8e8e !important;
  border-color: var(--border-grey) !important;
}

a:hover .hover\:border-dark {
  border-color: #646464 !important;
  border-color: var(--border-dark) !important;
}

a:hover .hover\:border-darker {
  border-color: #444 !important;
  border-color: var(--border-darker) !important;
}

a:hover .hover\:border-darkest {
  border-color: #222 !important;
  border-color: var(--border-darkest) !important;
}

a:hover .hover\:border-opaque {
  border-color: #000 !important;
  border-color: var(--border-opaque) !important;
}

button:hover .hover\:border-red {
  border-color: #f12b3b !important;
}

button:hover .hover\:border-dark-red {
  border-color: #d2212f !important;
}

button:hover .hover\:border-dark-blue {
  border-color: #0273aa !important;
}

button:hover .hover\:border-darker-blue {
  border-color: #063b63 !important;
}

button:hover .hover\:border-blue {
  border-color: #008fce !important;
}

button:hover .hover\:border-light-blue {
  border-color: #4ba6ce !important;
}

button:hover .hover\:border-lighter-blue {
  border-color: #c4e5f4 !important;
}

button:hover .hover\:border-lightest-blue {
  border-color: #f1f7fa !important;
}

button:hover .hover\:border-turquoise {
  border-color: #86c6bb !important;
}

button:hover .hover\:border-light-turquoise {
  border-color: #a0d1c9 !important;
}

button:hover .hover\:border-lightest-turquoise {
  border-color: #eff4f3 !important;
}

button:hover .hover\:border-darker-green {
  border-color: #2f4f21 !important;
}

button:hover .hover\:border-dark-green {
  border-color: #456f32 !important;
}

button:hover .hover\:border-green {
  border-color: #66a54a !important;
}

button:hover .hover\:border-light-green {
  border-color: #77b65b !important;
}

button:hover .hover\:border-lighter-green {
  border-color: #c9e4bc !important;
}

button:hover .hover\:border-lightest-green {
  border-color: #eff6ec !important;
}

button:hover .hover\:border-darker-yellow {
  border-color: #483206 !important;
}

button:hover .hover\:border-dark-yellow {
  border-color: #b5862a !important;
}

button:hover .hover\:border-yellow {
  border-color: #f2b63f !important;
}

button:hover .hover\:border-light-yellow {
  border-color: #f5cd78 !important;
}

button:hover .hover\:border-lighter-yellow {
  border-color: #f8ecc5 !important;
}

button:hover .hover\:border-lightest-yellow {
  border-color: #faf9e7 !important;
}

button:hover .hover\:border-beige {
  border-color: #dbd3c9 !important;
}

button:hover .hover\:border-white {
  border-color: #fff !important;
}

button:hover .hover\:border-white-opacity-02 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

button:hover .hover\:border-white-opacity-03 {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

button:hover .hover\:border-white-opacity-05 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

button:hover .hover\:border-white-opacity-07 {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

button:hover .hover\:border-lightest-grey {
  border-color: #f3f3f3 !important;
}

button:hover .hover\:border-lighter-grey {
  border-color: #ddd !important;
}

button:hover .hover\:border-light-grey {
  border-color: #bbb !important;
}

button:hover .hover\:border-grey {
  border-color: #8e8e8e !important;
}

button:hover .hover\:border-dark-grey {
  border-color: #646464 !important;
}

button:hover .hover\:border-darker-grey {
  border-color: #444 !important;
}

button:hover .hover\:border-darkest-grey {
  border-color: #222 !important;
}

button:hover .hover\:border-black {
  border-color: #000 !important;
}

button:hover .hover\:border-link--hover {
  border-color: #008fce !important;
  border-color: var(--txt-link--hover) !important;
}

button:hover .hover\:border-transparent {
  border-color: transparent !important;
}

button:hover .hover\:border-clear {
  border-color: #fff !important;
  border-color: var(--border-clear) !important;
}

button:hover .hover\:border-lightest {
  border-color: #f3f3f3 !important;
  border-color: var(--border-lightest) !important;
}

button:hover .hover\:border-lighter {
  border-color: #ddd !important;
  border-color: var(--border-lighter) !important;
}

button:hover .hover\:border-light {
  border-color: #bbb !important;
  border-color: var(--border-light) !important;
}

button:hover .hover\:border-normal {
  border-color: #8e8e8e !important;
  border-color: var(--border-grey) !important;
}

button:hover .hover\:border-dark {
  border-color: #646464 !important;
  border-color: var(--border-dark) !important;
}

button:hover .hover\:border-darker {
  border-color: #444 !important;
  border-color: var(--border-darker) !important;
}

button:hover .hover\:border-darkest {
  border-color: #222 !important;
  border-color: var(--border-darkest) !important;
}

button:hover .hover\:border-opaque {
  border-color: #000 !important;
  border-color: var(--border-opaque) !important;
}

.btn:hover .hover\:border-red {
  border-color: #f12b3b !important;
}

.btn:hover .hover\:border-dark-red {
  border-color: #d2212f !important;
}

.btn:hover .hover\:border-dark-blue {
  border-color: #0273aa !important;
}

.btn:hover .hover\:border-darker-blue {
  border-color: #063b63 !important;
}

.btn:hover .hover\:border-blue {
  border-color: #008fce !important;
}

.btn:hover .hover\:border-light-blue {
  border-color: #4ba6ce !important;
}

.btn:hover .hover\:border-lighter-blue {
  border-color: #c4e5f4 !important;
}

.btn:hover .hover\:border-lightest-blue {
  border-color: #f1f7fa !important;
}

.btn:hover .hover\:border-turquoise {
  border-color: #86c6bb !important;
}

.btn:hover .hover\:border-light-turquoise {
  border-color: #a0d1c9 !important;
}

.btn:hover .hover\:border-lightest-turquoise {
  border-color: #eff4f3 !important;
}

.btn:hover .hover\:border-darker-green {
  border-color: #2f4f21 !important;
}

.btn:hover .hover\:border-dark-green {
  border-color: #456f32 !important;
}

.btn:hover .hover\:border-green {
  border-color: #66a54a !important;
}

.btn:hover .hover\:border-light-green {
  border-color: #77b65b !important;
}

.btn:hover .hover\:border-lighter-green {
  border-color: #c9e4bc !important;
}

.btn:hover .hover\:border-lightest-green {
  border-color: #eff6ec !important;
}

.btn:hover .hover\:border-darker-yellow {
  border-color: #483206 !important;
}

.btn:hover .hover\:border-dark-yellow {
  border-color: #b5862a !important;
}

.btn:hover .hover\:border-yellow {
  border-color: #f2b63f !important;
}

.btn:hover .hover\:border-light-yellow {
  border-color: #f5cd78 !important;
}

.btn:hover .hover\:border-lighter-yellow {
  border-color: #f8ecc5 !important;
}

.btn:hover .hover\:border-lightest-yellow {
  border-color: #faf9e7 !important;
}

.btn:hover .hover\:border-beige {
  border-color: #dbd3c9 !important;
}

.btn:hover .hover\:border-white {
  border-color: #fff !important;
}

.btn:hover .hover\:border-white-opacity-02 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.btn:hover .hover\:border-white-opacity-03 {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.btn:hover .hover\:border-white-opacity-05 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.btn:hover .hover\:border-white-opacity-07 {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.btn:hover .hover\:border-lightest-grey {
  border-color: #f3f3f3 !important;
}

.btn:hover .hover\:border-lighter-grey {
  border-color: #ddd !important;
}

.btn:hover .hover\:border-light-grey {
  border-color: #bbb !important;
}

.btn:hover .hover\:border-grey {
  border-color: #8e8e8e !important;
}

.btn:hover .hover\:border-dark-grey {
  border-color: #646464 !important;
}

.btn:hover .hover\:border-darker-grey {
  border-color: #444 !important;
}

.btn:hover .hover\:border-darkest-grey {
  border-color: #222 !important;
}

.btn:hover .hover\:border-black {
  border-color: #000 !important;
}

.btn:hover .hover\:border-link--hover {
  border-color: #008fce !important;
  border-color: var(--txt-link--hover) !important;
}

.btn:hover .hover\:border-transparent {
  border-color: transparent !important;
}

.btn:hover .hover\:border-clear {
  border-color: #fff !important;
  border-color: var(--border-clear) !important;
}

.btn:hover .hover\:border-lightest {
  border-color: #f3f3f3 !important;
  border-color: var(--border-lightest) !important;
}

.btn:hover .hover\:border-lighter {
  border-color: #ddd !important;
  border-color: var(--border-lighter) !important;
}

.btn:hover .hover\:border-light {
  border-color: #bbb !important;
  border-color: var(--border-light) !important;
}

.btn:hover .hover\:border-normal {
  border-color: #8e8e8e !important;
  border-color: var(--border-grey) !important;
}

.btn:hover .hover\:border-dark {
  border-color: #646464 !important;
  border-color: var(--border-dark) !important;
}

.btn:hover .hover\:border-darker {
  border-color: #444 !important;
  border-color: var(--border-darker) !important;
}

.btn:hover .hover\:border-darkest {
  border-color: #222 !important;
  border-color: var(--border-darkest) !important;
}

.btn:hover .hover\:border-opaque {
  border-color: #000 !important;
  border-color: var(--border-opaque) !important;
}

input:hover .hover\:border-red {
  border-color: #f12b3b !important;
}

input:hover .hover\:border-dark-red {
  border-color: #d2212f !important;
}

input:hover .hover\:border-dark-blue {
  border-color: #0273aa !important;
}

input:hover .hover\:border-darker-blue {
  border-color: #063b63 !important;
}

input:hover .hover\:border-blue {
  border-color: #008fce !important;
}

input:hover .hover\:border-light-blue {
  border-color: #4ba6ce !important;
}

input:hover .hover\:border-lighter-blue {
  border-color: #c4e5f4 !important;
}

input:hover .hover\:border-lightest-blue {
  border-color: #f1f7fa !important;
}

input:hover .hover\:border-turquoise {
  border-color: #86c6bb !important;
}

input:hover .hover\:border-light-turquoise {
  border-color: #a0d1c9 !important;
}

input:hover .hover\:border-lightest-turquoise {
  border-color: #eff4f3 !important;
}

input:hover .hover\:border-darker-green {
  border-color: #2f4f21 !important;
}

input:hover .hover\:border-dark-green {
  border-color: #456f32 !important;
}

input:hover .hover\:border-green {
  border-color: #66a54a !important;
}

input:hover .hover\:border-light-green {
  border-color: #77b65b !important;
}

input:hover .hover\:border-lighter-green {
  border-color: #c9e4bc !important;
}

input:hover .hover\:border-lightest-green {
  border-color: #eff6ec !important;
}

input:hover .hover\:border-darker-yellow {
  border-color: #483206 !important;
}

input:hover .hover\:border-dark-yellow {
  border-color: #b5862a !important;
}

input:hover .hover\:border-yellow {
  border-color: #f2b63f !important;
}

input:hover .hover\:border-light-yellow {
  border-color: #f5cd78 !important;
}

input:hover .hover\:border-lighter-yellow {
  border-color: #f8ecc5 !important;
}

input:hover .hover\:border-lightest-yellow {
  border-color: #faf9e7 !important;
}

input:hover .hover\:border-beige {
  border-color: #dbd3c9 !important;
}

input:hover .hover\:border-white {
  border-color: #fff !important;
}

input:hover .hover\:border-white-opacity-02 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

input:hover .hover\:border-white-opacity-03 {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

input:hover .hover\:border-white-opacity-05 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

input:hover .hover\:border-white-opacity-07 {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

input:hover .hover\:border-lightest-grey {
  border-color: #f3f3f3 !important;
}

input:hover .hover\:border-lighter-grey {
  border-color: #ddd !important;
}

input:hover .hover\:border-light-grey {
  border-color: #bbb !important;
}

input:hover .hover\:border-grey {
  border-color: #8e8e8e !important;
}

input:hover .hover\:border-dark-grey {
  border-color: #646464 !important;
}

input:hover .hover\:border-darker-grey {
  border-color: #444 !important;
}

input:hover .hover\:border-darkest-grey {
  border-color: #222 !important;
}

input:hover .hover\:border-black {
  border-color: #000 !important;
}

input:hover .hover\:border-link--hover {
  border-color: #008fce !important;
  border-color: var(--txt-link--hover) !important;
}

input:hover .hover\:border-transparent {
  border-color: transparent !important;
}

input:hover .hover\:border-clear {
  border-color: #fff !important;
  border-color: var(--border-clear) !important;
}

input:hover .hover\:border-lightest {
  border-color: #f3f3f3 !important;
  border-color: var(--border-lightest) !important;
}

input:hover .hover\:border-lighter {
  border-color: #ddd !important;
  border-color: var(--border-lighter) !important;
}

input:hover .hover\:border-light {
  border-color: #bbb !important;
  border-color: var(--border-light) !important;
}

input:hover .hover\:border-normal {
  border-color: #8e8e8e !important;
  border-color: var(--border-grey) !important;
}

input:hover .hover\:border-dark {
  border-color: #646464 !important;
  border-color: var(--border-dark) !important;
}

input:hover .hover\:border-darker {
  border-color: #444 !important;
  border-color: var(--border-darker) !important;
}

input:hover .hover\:border-darkest {
  border-color: #222 !important;
  border-color: var(--border-darkest) !important;
}

input:hover .hover\:border-opaque {
  border-color: #000 !important;
  border-color: var(--border-opaque) !important;
}

.hover\:border-red:hover {
  border-color: #f12b3b !important;
}

.hover\:border-dark-red:hover {
  border-color: #d2212f !important;
}

.hover\:border-dark-blue:hover {
  border-color: #0273aa !important;
}

.hover\:border-darker-blue:hover {
  border-color: #063b63 !important;
}

.hover\:border-blue:hover {
  border-color: #008fce !important;
}

.hover\:border-light-blue:hover {
  border-color: #4ba6ce !important;
}

.hover\:border-lighter-blue:hover {
  border-color: #c4e5f4 !important;
}

.hover\:border-lightest-blue:hover {
  border-color: #f1f7fa !important;
}

.hover\:border-turquoise:hover {
  border-color: #86c6bb !important;
}

.hover\:border-light-turquoise:hover {
  border-color: #a0d1c9 !important;
}

.hover\:border-lightest-turquoise:hover {
  border-color: #eff4f3 !important;
}

.hover\:border-darker-green:hover {
  border-color: #2f4f21 !important;
}

.hover\:border-dark-green:hover {
  border-color: #456f32 !important;
}

.hover\:border-green:hover {
  border-color: #66a54a !important;
}

.hover\:border-light-green:hover {
  border-color: #77b65b !important;
}

.hover\:border-lighter-green:hover {
  border-color: #c9e4bc !important;
}

.hover\:border-lightest-green:hover {
  border-color: #eff6ec !important;
}

.hover\:border-darker-yellow:hover {
  border-color: #483206 !important;
}

.hover\:border-dark-yellow:hover {
  border-color: #b5862a !important;
}

.hover\:border-yellow:hover {
  border-color: #f2b63f !important;
}

.hover\:border-light-yellow:hover {
  border-color: #f5cd78 !important;
}

.hover\:border-lighter-yellow:hover {
  border-color: #f8ecc5 !important;
}

.hover\:border-lightest-yellow:hover {
  border-color: #faf9e7 !important;
}

.hover\:border-beige:hover {
  border-color: #dbd3c9 !important;
}

.hover\:border-white:hover {
  border-color: #fff !important;
}

.hover\:border-white-opacity-02:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.hover\:border-white-opacity-03:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.hover\:border-white-opacity-05:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.hover\:border-white-opacity-07:hover {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.hover\:border-lightest-grey:hover {
  border-color: #f3f3f3 !important;
}

.hover\:border-lighter-grey:hover {
  border-color: #ddd !important;
}

.hover\:border-light-grey:hover {
  border-color: #bbb !important;
}

.hover\:border-grey:hover {
  border-color: #8e8e8e !important;
}

.hover\:border-dark-grey:hover {
  border-color: #646464 !important;
}

.hover\:border-darker-grey:hover {
  border-color: #444 !important;
}

.hover\:border-darkest-grey:hover {
  border-color: #222 !important;
}

.hover\:border-black:hover {
  border-color: #000 !important;
}

.hover\:border-link--hover:hover {
  border-color: #008fce !important;
  border-color: var(--txt-link--hover) !important;
}

.hover\:border-transparent:hover {
  border-color: transparent !important;
}

.hover\:border-clear:hover {
  border-color: #fff !important;
  border-color: var(--border-clear) !important;
}

.hover\:border-lightest:hover {
  border-color: #f3f3f3 !important;
  border-color: var(--border-lightest) !important;
}

.hover\:border-lighter:hover {
  border-color: #ddd !important;
  border-color: var(--border-lighter) !important;
}

.hover\:border-light:hover {
  border-color: #bbb !important;
  border-color: var(--border-light) !important;
}

.hover\:border-normal:hover {
  border-color: #8e8e8e !important;
  border-color: var(--border-grey) !important;
}

.hover\:border-dark:hover {
  border-color: #646464 !important;
  border-color: var(--border-dark) !important;
}

.hover\:border-darker:hover {
  border-color: #444 !important;
  border-color: var(--border-darker) !important;
}

.hover\:border-darkest:hover {
  border-color: #222 !important;
  border-color: var(--border-darkest) !important;
}

.hover\:border-opaque:hover {
  border-color: #000 !important;
  border-color: var(--border-opaque) !important;
}

.border-red\:hover:hover {
  border-color: #f12b3b !important;
}

.border-dark-red\:hover:hover {
  border-color: #d2212f !important;
}

.border-dark-blue\:hover:hover {
  border-color: #0273aa !important;
}

.border-darker-blue\:hover:hover {
  border-color: #063b63 !important;
}

.border-blue\:hover:hover {
  border-color: #008fce !important;
}

.border-light-blue\:hover:hover {
  border-color: #4ba6ce !important;
}

.border-lighter-blue\:hover:hover {
  border-color: #c4e5f4 !important;
}

.border-lightest-blue\:hover:hover {
  border-color: #f1f7fa !important;
}

.border-turquoise\:hover:hover {
  border-color: #86c6bb !important;
}

.border-light-turquoise\:hover:hover {
  border-color: #a0d1c9 !important;
}

.border-lightest-turquoise\:hover:hover {
  border-color: #eff4f3 !important;
}

.border-darker-green\:hover:hover {
  border-color: #2f4f21 !important;
}

.border-dark-green\:hover:hover {
  border-color: #456f32 !important;
}

.border-green\:hover:hover {
  border-color: #66a54a !important;
}

.border-light-green\:hover:hover {
  border-color: #77b65b !important;
}

.border-lighter-green\:hover:hover {
  border-color: #c9e4bc !important;
}

.border-lightest-green\:hover:hover {
  border-color: #eff6ec !important;
}

.border-darker-yellow\:hover:hover {
  border-color: #483206 !important;
}

.border-dark-yellow\:hover:hover {
  border-color: #b5862a !important;
}

.border-yellow\:hover:hover {
  border-color: #f2b63f !important;
}

.border-light-yellow\:hover:hover {
  border-color: #f5cd78 !important;
}

.border-lighter-yellow\:hover:hover {
  border-color: #f8ecc5 !important;
}

.border-lightest-yellow\:hover:hover {
  border-color: #faf9e7 !important;
}

.border-beige\:hover:hover {
  border-color: #dbd3c9 !important;
}

.border-white\:hover:hover {
  border-color: #fff !important;
}

.border-white-opacity-02\:hover:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.border-white-opacity-03\:hover:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.border-white-opacity-05\:hover:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.border-white-opacity-07\:hover:hover {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.border-lightest-grey\:hover:hover {
  border-color: #f3f3f3 !important;
}

.border-lighter-grey\:hover:hover {
  border-color: #ddd !important;
}

.border-light-grey\:hover:hover {
  border-color: #bbb !important;
}

.border-grey\:hover:hover {
  border-color: #8e8e8e !important;
}

.border-dark-grey\:hover:hover {
  border-color: #646464 !important;
}

.border-darker-grey\:hover:hover {
  border-color: #444 !important;
}

.border-darkest-grey\:hover:hover {
  border-color: #222 !important;
}

.border-black\:hover:hover {
  border-color: #000 !important;
}

.border-link--hover\:hover:hover {
  border-color: #008fce !important;
  border-color: var(--txt-link--hover) !important;
}

.border-transparent\:hover:hover {
  border-color: transparent !important;
}

.border-clear\:hover:hover {
  border-color: #fff !important;
  border-color: var(--border-clear) !important;
}

.border-lightest\:hover:hover {
  border-color: #f3f3f3 !important;
  border-color: var(--border-lightest) !important;
}

.border-lighter\:hover:hover {
  border-color: #ddd !important;
  border-color: var(--border-lighter) !important;
}

.border-light\:hover:hover {
  border-color: #bbb !important;
  border-color: var(--border-light) !important;
}

.border-normal\:hover:hover {
  border-color: #8e8e8e !important;
  border-color: var(--border-grey) !important;
}

.border-dark\:hover:hover {
  border-color: #646464 !important;
  border-color: var(--border-dark) !important;
}

.border-darker\:hover:hover {
  border-color: #444 !important;
  border-color: var(--border-darker) !important;
}

.border-darkest\:hover:hover {
  border-color: #222 !important;
  border-color: var(--border-darkest) !important;
}

.border-opaque\:hover:hover {
  border-color: #000 !important;
  border-color: var(--border-opaque) !important;
}

@media screen and (min-width: 360px) {
  .xs\:border-red {
    border-color: #f12b3b !important;
  }
  .xs\:border-dark-red {
    border-color: #d2212f !important;
  }
  .xs\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .xs\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .xs\:border-blue {
    border-color: #008fce !important;
  }
  .xs\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .xs\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .xs\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .xs\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .xs\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .xs\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .xs\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .xs\:border-dark-green {
    border-color: #456f32 !important;
  }
  .xs\:border-green {
    border-color: #66a54a !important;
  }
  .xs\:border-light-green {
    border-color: #77b65b !important;
  }
  .xs\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .xs\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .xs\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .xs\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .xs\:border-yellow {
    border-color: #f2b63f !important;
  }
  .xs\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .xs\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .xs\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .xs\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .xs\:border-white {
    border-color: #fff !important;
  }
  .xs\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .xs\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .xs\:border-light-grey {
    border-color: #bbb !important;
  }
  .xs\:border-grey {
    border-color: #8e8e8e !important;
  }
  .xs\:border-dark-grey {
    border-color: #646464 !important;
  }
  .xs\:border-darker-grey {
    border-color: #444 !important;
  }
  .xs\:border-darkest-grey {
    border-color: #222 !important;
  }
  .xs\:border-black {
    border-color: #000 !important;
  }
  .xs\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .xs\:border-transparent {
    border-color: transparent !important;
  }
  .xs\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .xs\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .xs\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .xs\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .xs\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .xs\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .xs\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .xs\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .xs\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  a:hover .xs\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  a:hover .xs\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  a:hover .xs\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  a:hover .xs\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  a:hover .xs\:hover\:border-blue {
    border-color: #008fce !important;
  }
  a:hover .xs\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  a:hover .xs\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  a:hover .xs\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  a:hover .xs\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  a:hover .xs\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  a:hover .xs\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  a:hover .xs\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  a:hover .xs\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  a:hover .xs\:hover\:border-green {
    border-color: #66a54a !important;
  }
  a:hover .xs\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  a:hover .xs\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  a:hover .xs\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  a:hover .xs\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  a:hover .xs\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  a:hover .xs\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  a:hover .xs\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  a:hover .xs\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  a:hover .xs\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  a:hover .xs\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  a:hover .xs\:hover\:border-white {
    border-color: #fff !important;
  }
  a:hover .xs\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .xs\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .xs\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .xs\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .xs\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  a:hover .xs\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  a:hover .xs\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  a:hover .xs\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  a:hover .xs\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  a:hover .xs\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  a:hover .xs\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  a:hover .xs\:hover\:border-black {
    border-color: #000 !important;
  }
  a:hover .xs\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  a:hover .xs\:hover\:border-transparent {
    border-color: transparent !important;
  }
  a:hover .xs\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  a:hover .xs\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  a:hover .xs\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  a:hover .xs\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  a:hover .xs\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  a:hover .xs\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  a:hover .xs\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  a:hover .xs\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  a:hover .xs\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  button:hover .xs\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  button:hover .xs\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  button:hover .xs\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  button:hover .xs\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  button:hover .xs\:hover\:border-blue {
    border-color: #008fce !important;
  }
  button:hover .xs\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  button:hover .xs\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  button:hover .xs\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  button:hover .xs\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  button:hover .xs\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  button:hover .xs\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  button:hover .xs\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  button:hover .xs\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  button:hover .xs\:hover\:border-green {
    border-color: #66a54a !important;
  }
  button:hover .xs\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  button:hover .xs\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  button:hover .xs\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  button:hover .xs\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  button:hover .xs\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  button:hover .xs\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  button:hover .xs\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  button:hover .xs\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  button:hover .xs\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  button:hover .xs\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  button:hover .xs\:hover\:border-white {
    border-color: #fff !important;
  }
  button:hover .xs\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .xs\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .xs\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .xs\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .xs\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  button:hover .xs\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  button:hover .xs\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  button:hover .xs\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  button:hover .xs\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  button:hover .xs\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  button:hover .xs\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  button:hover .xs\:hover\:border-black {
    border-color: #000 !important;
  }
  button:hover .xs\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  button:hover .xs\:hover\:border-transparent {
    border-color: transparent !important;
  }
  button:hover .xs\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  button:hover .xs\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  button:hover .xs\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  button:hover .xs\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  button:hover .xs\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  button:hover .xs\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  button:hover .xs\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  button:hover .xs\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  button:hover .xs\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .btn:hover .xs\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  .btn:hover .xs\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  .btn:hover .xs\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .btn:hover .xs\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .btn:hover .xs\:hover\:border-blue {
    border-color: #008fce !important;
  }
  .btn:hover .xs\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .btn:hover .xs\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .btn:hover .xs\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .btn:hover .xs\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .btn:hover .xs\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .btn:hover .xs\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .btn:hover .xs\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .btn:hover .xs\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  .btn:hover .xs\:hover\:border-green {
    border-color: #66a54a !important;
  }
  .btn:hover .xs\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  .btn:hover .xs\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .btn:hover .xs\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .btn:hover .xs\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .btn:hover .xs\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .btn:hover .xs\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  .btn:hover .xs\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .btn:hover .xs\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .btn:hover .xs\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .btn:hover .xs\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .btn:hover .xs\:hover\:border-white {
    border-color: #fff !important;
  }
  .btn:hover .xs\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .xs\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .xs\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .xs\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .xs\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .btn:hover .xs\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .btn:hover .xs\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  .btn:hover .xs\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  .btn:hover .xs\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  .btn:hover .xs\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  .btn:hover .xs\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  .btn:hover .xs\:hover\:border-black {
    border-color: #000 !important;
  }
  .btn:hover .xs\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .btn:hover .xs\:hover\:border-transparent {
    border-color: transparent !important;
  }
  .btn:hover .xs\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .btn:hover .xs\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .btn:hover .xs\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .btn:hover .xs\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .btn:hover .xs\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .btn:hover .xs\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .btn:hover .xs\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .btn:hover .xs\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .btn:hover .xs\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  input:hover .xs\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  input:hover .xs\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  input:hover .xs\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  input:hover .xs\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  input:hover .xs\:hover\:border-blue {
    border-color: #008fce !important;
  }
  input:hover .xs\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  input:hover .xs\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  input:hover .xs\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  input:hover .xs\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  input:hover .xs\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  input:hover .xs\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  input:hover .xs\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  input:hover .xs\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  input:hover .xs\:hover\:border-green {
    border-color: #66a54a !important;
  }
  input:hover .xs\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  input:hover .xs\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  input:hover .xs\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  input:hover .xs\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  input:hover .xs\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  input:hover .xs\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  input:hover .xs\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  input:hover .xs\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  input:hover .xs\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  input:hover .xs\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  input:hover .xs\:hover\:border-white {
    border-color: #fff !important;
  }
  input:hover .xs\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .xs\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .xs\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .xs\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .xs\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  input:hover .xs\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  input:hover .xs\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  input:hover .xs\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  input:hover .xs\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  input:hover .xs\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  input:hover .xs\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  input:hover .xs\:hover\:border-black {
    border-color: #000 !important;
  }
  input:hover .xs\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  input:hover .xs\:hover\:border-transparent {
    border-color: transparent !important;
  }
  input:hover .xs\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  input:hover .xs\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  input:hover .xs\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  input:hover .xs\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  input:hover .xs\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  input:hover .xs\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  input:hover .xs\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  input:hover .xs\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  input:hover .xs\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .xs\:hover\:border-red:hover {
    border-color: #f12b3b !important;
  }
  .xs\:hover\:border-dark-red:hover {
    border-color: #d2212f !important;
  }
  .xs\:hover\:border-dark-blue:hover {
    border-color: #0273aa !important;
  }
  .xs\:hover\:border-darker-blue:hover {
    border-color: #063b63 !important;
  }
  .xs\:hover\:border-blue:hover {
    border-color: #008fce !important;
  }
  .xs\:hover\:border-light-blue:hover {
    border-color: #4ba6ce !important;
  }
  .xs\:hover\:border-lighter-blue:hover {
    border-color: #c4e5f4 !important;
  }
  .xs\:hover\:border-lightest-blue:hover {
    border-color: #f1f7fa !important;
  }
  .xs\:hover\:border-turquoise:hover {
    border-color: #86c6bb !important;
  }
  .xs\:hover\:border-light-turquoise:hover {
    border-color: #a0d1c9 !important;
  }
  .xs\:hover\:border-lightest-turquoise:hover {
    border-color: #eff4f3 !important;
  }
  .xs\:hover\:border-darker-green:hover {
    border-color: #2f4f21 !important;
  }
  .xs\:hover\:border-dark-green:hover {
    border-color: #456f32 !important;
  }
  .xs\:hover\:border-green:hover {
    border-color: #66a54a !important;
  }
  .xs\:hover\:border-light-green:hover {
    border-color: #77b65b !important;
  }
  .xs\:hover\:border-lighter-green:hover {
    border-color: #c9e4bc !important;
  }
  .xs\:hover\:border-lightest-green:hover {
    border-color: #eff6ec !important;
  }
  .xs\:hover\:border-darker-yellow:hover {
    border-color: #483206 !important;
  }
  .xs\:hover\:border-dark-yellow:hover {
    border-color: #b5862a !important;
  }
  .xs\:hover\:border-yellow:hover {
    border-color: #f2b63f !important;
  }
  .xs\:hover\:border-light-yellow:hover {
    border-color: #f5cd78 !important;
  }
  .xs\:hover\:border-lighter-yellow:hover {
    border-color: #f8ecc5 !important;
  }
  .xs\:hover\:border-lightest-yellow:hover {
    border-color: #faf9e7 !important;
  }
  .xs\:hover\:border-beige:hover {
    border-color: #dbd3c9 !important;
  }
  .xs\:hover\:border-white:hover {
    border-color: #fff !important;
  }
  .xs\:hover\:border-white-opacity-02:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:hover\:border-white-opacity-03:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:hover\:border-white-opacity-05:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:hover\:border-white-opacity-07:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:hover\:border-lightest-grey:hover {
    border-color: #f3f3f3 !important;
  }
  .xs\:hover\:border-lighter-grey:hover {
    border-color: #ddd !important;
  }
  .xs\:hover\:border-light-grey:hover {
    border-color: #bbb !important;
  }
  .xs\:hover\:border-grey:hover {
    border-color: #8e8e8e !important;
  }
  .xs\:hover\:border-dark-grey:hover {
    border-color: #646464 !important;
  }
  .xs\:hover\:border-darker-grey:hover {
    border-color: #444 !important;
  }
  .xs\:hover\:border-darkest-grey:hover {
    border-color: #222 !important;
  }
  .xs\:hover\:border-black:hover {
    border-color: #000 !important;
  }
  .xs\:hover\:border-link--hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .xs\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }
  .xs\:hover\:border-clear:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .xs\:hover\:border-lightest:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .xs\:hover\:border-lighter:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .xs\:hover\:border-light:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .xs\:hover\:border-normal:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .xs\:hover\:border-dark:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .xs\:hover\:border-darker:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .xs\:hover\:border-darkest:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .xs\:hover\:border-opaque:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .xs\:border-red\:hover:hover {
    border-color: #f12b3b !important;
  }
  .xs\:border-dark-red\:hover:hover {
    border-color: #d2212f !important;
  }
  .xs\:border-dark-blue\:hover:hover {
    border-color: #0273aa !important;
  }
  .xs\:border-darker-blue\:hover:hover {
    border-color: #063b63 !important;
  }
  .xs\:border-blue\:hover:hover {
    border-color: #008fce !important;
  }
  .xs\:border-light-blue\:hover:hover {
    border-color: #4ba6ce !important;
  }
  .xs\:border-lighter-blue\:hover:hover {
    border-color: #c4e5f4 !important;
  }
  .xs\:border-lightest-blue\:hover:hover {
    border-color: #f1f7fa !important;
  }
  .xs\:border-turquoise\:hover:hover {
    border-color: #86c6bb !important;
  }
  .xs\:border-light-turquoise\:hover:hover {
    border-color: #a0d1c9 !important;
  }
  .xs\:border-lightest-turquoise\:hover:hover {
    border-color: #eff4f3 !important;
  }
  .xs\:border-darker-green\:hover:hover {
    border-color: #2f4f21 !important;
  }
  .xs\:border-dark-green\:hover:hover {
    border-color: #456f32 !important;
  }
  .xs\:border-green\:hover:hover {
    border-color: #66a54a !important;
  }
  .xs\:border-light-green\:hover:hover {
    border-color: #77b65b !important;
  }
  .xs\:border-lighter-green\:hover:hover {
    border-color: #c9e4bc !important;
  }
  .xs\:border-lightest-green\:hover:hover {
    border-color: #eff6ec !important;
  }
  .xs\:border-darker-yellow\:hover:hover {
    border-color: #483206 !important;
  }
  .xs\:border-dark-yellow\:hover:hover {
    border-color: #b5862a !important;
  }
  .xs\:border-yellow\:hover:hover {
    border-color: #f2b63f !important;
  }
  .xs\:border-light-yellow\:hover:hover {
    border-color: #f5cd78 !important;
  }
  .xs\:border-lighter-yellow\:hover:hover {
    border-color: #f8ecc5 !important;
  }
  .xs\:border-lightest-yellow\:hover:hover {
    border-color: #faf9e7 !important;
  }
  .xs\:border-beige\:hover:hover {
    border-color: #dbd3c9 !important;
  }
  .xs\:border-white\:hover:hover {
    border-color: #fff !important;
  }
  .xs\:border-white-opacity-02\:hover:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xs\:border-white-opacity-03\:hover:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xs\:border-white-opacity-05\:hover:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xs\:border-white-opacity-07\:hover:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xs\:border-lightest-grey\:hover:hover {
    border-color: #f3f3f3 !important;
  }
  .xs\:border-lighter-grey\:hover:hover {
    border-color: #ddd !important;
  }
  .xs\:border-light-grey\:hover:hover {
    border-color: #bbb !important;
  }
  .xs\:border-grey\:hover:hover {
    border-color: #8e8e8e !important;
  }
  .xs\:border-dark-grey\:hover:hover {
    border-color: #646464 !important;
  }
  .xs\:border-darker-grey\:hover:hover {
    border-color: #444 !important;
  }
  .xs\:border-darkest-grey\:hover:hover {
    border-color: #222 !important;
  }
  .xs\:border-black\:hover:hover {
    border-color: #000 !important;
  }
  .xs\:border-link--hover\:hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .xs\:border-transparent\:hover:hover {
    border-color: transparent !important;
  }
  .xs\:border-clear\:hover:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .xs\:border-lightest\:hover:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .xs\:border-lighter\:hover:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .xs\:border-light\:hover:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .xs\:border-normal\:hover:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .xs\:border-dark\:hover:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .xs\:border-darker\:hover:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .xs\:border-darkest\:hover:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .xs\:border-opaque\:hover:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:border-red {
    border-color: #f12b3b !important;
  }
  .sm\:border-dark-red {
    border-color: #d2212f !important;
  }
  .sm\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .sm\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .sm\:border-blue {
    border-color: #008fce !important;
  }
  .sm\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .sm\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .sm\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .sm\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .sm\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .sm\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .sm\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .sm\:border-dark-green {
    border-color: #456f32 !important;
  }
  .sm\:border-green {
    border-color: #66a54a !important;
  }
  .sm\:border-light-green {
    border-color: #77b65b !important;
  }
  .sm\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .sm\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .sm\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .sm\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .sm\:border-yellow {
    border-color: #f2b63f !important;
  }
  .sm\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .sm\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .sm\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .sm\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .sm\:border-white {
    border-color: #fff !important;
  }
  .sm\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .sm\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .sm\:border-light-grey {
    border-color: #bbb !important;
  }
  .sm\:border-grey {
    border-color: #8e8e8e !important;
  }
  .sm\:border-dark-grey {
    border-color: #646464 !important;
  }
  .sm\:border-darker-grey {
    border-color: #444 !important;
  }
  .sm\:border-darkest-grey {
    border-color: #222 !important;
  }
  .sm\:border-black {
    border-color: #000 !important;
  }
  .sm\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .sm\:border-transparent {
    border-color: transparent !important;
  }
  .sm\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .sm\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .sm\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .sm\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .sm\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .sm\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .sm\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .sm\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .sm\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  a:hover .sm\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  a:hover .sm\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  a:hover .sm\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  a:hover .sm\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  a:hover .sm\:hover\:border-blue {
    border-color: #008fce !important;
  }
  a:hover .sm\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  a:hover .sm\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  a:hover .sm\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  a:hover .sm\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  a:hover .sm\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  a:hover .sm\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  a:hover .sm\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  a:hover .sm\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  a:hover .sm\:hover\:border-green {
    border-color: #66a54a !important;
  }
  a:hover .sm\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  a:hover .sm\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  a:hover .sm\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  a:hover .sm\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  a:hover .sm\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  a:hover .sm\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  a:hover .sm\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  a:hover .sm\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  a:hover .sm\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  a:hover .sm\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  a:hover .sm\:hover\:border-white {
    border-color: #fff !important;
  }
  a:hover .sm\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .sm\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .sm\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .sm\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .sm\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  a:hover .sm\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  a:hover .sm\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  a:hover .sm\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  a:hover .sm\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  a:hover .sm\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  a:hover .sm\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  a:hover .sm\:hover\:border-black {
    border-color: #000 !important;
  }
  a:hover .sm\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  a:hover .sm\:hover\:border-transparent {
    border-color: transparent !important;
  }
  a:hover .sm\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  a:hover .sm\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  a:hover .sm\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  a:hover .sm\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  a:hover .sm\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  a:hover .sm\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  a:hover .sm\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  a:hover .sm\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  a:hover .sm\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  button:hover .sm\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  button:hover .sm\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  button:hover .sm\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  button:hover .sm\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  button:hover .sm\:hover\:border-blue {
    border-color: #008fce !important;
  }
  button:hover .sm\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  button:hover .sm\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  button:hover .sm\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  button:hover .sm\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  button:hover .sm\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  button:hover .sm\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  button:hover .sm\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  button:hover .sm\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  button:hover .sm\:hover\:border-green {
    border-color: #66a54a !important;
  }
  button:hover .sm\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  button:hover .sm\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  button:hover .sm\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  button:hover .sm\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  button:hover .sm\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  button:hover .sm\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  button:hover .sm\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  button:hover .sm\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  button:hover .sm\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  button:hover .sm\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  button:hover .sm\:hover\:border-white {
    border-color: #fff !important;
  }
  button:hover .sm\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .sm\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .sm\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .sm\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .sm\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  button:hover .sm\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  button:hover .sm\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  button:hover .sm\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  button:hover .sm\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  button:hover .sm\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  button:hover .sm\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  button:hover .sm\:hover\:border-black {
    border-color: #000 !important;
  }
  button:hover .sm\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  button:hover .sm\:hover\:border-transparent {
    border-color: transparent !important;
  }
  button:hover .sm\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  button:hover .sm\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  button:hover .sm\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  button:hover .sm\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  button:hover .sm\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  button:hover .sm\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  button:hover .sm\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  button:hover .sm\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  button:hover .sm\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .btn:hover .sm\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  .btn:hover .sm\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  .btn:hover .sm\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .btn:hover .sm\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .btn:hover .sm\:hover\:border-blue {
    border-color: #008fce !important;
  }
  .btn:hover .sm\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .btn:hover .sm\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .btn:hover .sm\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .btn:hover .sm\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .btn:hover .sm\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .btn:hover .sm\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .btn:hover .sm\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .btn:hover .sm\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  .btn:hover .sm\:hover\:border-green {
    border-color: #66a54a !important;
  }
  .btn:hover .sm\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  .btn:hover .sm\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .btn:hover .sm\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .btn:hover .sm\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .btn:hover .sm\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .btn:hover .sm\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  .btn:hover .sm\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .btn:hover .sm\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .btn:hover .sm\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .btn:hover .sm\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .btn:hover .sm\:hover\:border-white {
    border-color: #fff !important;
  }
  .btn:hover .sm\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .sm\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .sm\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .sm\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .sm\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .btn:hover .sm\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .btn:hover .sm\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  .btn:hover .sm\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  .btn:hover .sm\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  .btn:hover .sm\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  .btn:hover .sm\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  .btn:hover .sm\:hover\:border-black {
    border-color: #000 !important;
  }
  .btn:hover .sm\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .btn:hover .sm\:hover\:border-transparent {
    border-color: transparent !important;
  }
  .btn:hover .sm\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .btn:hover .sm\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .btn:hover .sm\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .btn:hover .sm\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .btn:hover .sm\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .btn:hover .sm\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .btn:hover .sm\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .btn:hover .sm\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .btn:hover .sm\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  input:hover .sm\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  input:hover .sm\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  input:hover .sm\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  input:hover .sm\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  input:hover .sm\:hover\:border-blue {
    border-color: #008fce !important;
  }
  input:hover .sm\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  input:hover .sm\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  input:hover .sm\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  input:hover .sm\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  input:hover .sm\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  input:hover .sm\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  input:hover .sm\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  input:hover .sm\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  input:hover .sm\:hover\:border-green {
    border-color: #66a54a !important;
  }
  input:hover .sm\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  input:hover .sm\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  input:hover .sm\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  input:hover .sm\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  input:hover .sm\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  input:hover .sm\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  input:hover .sm\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  input:hover .sm\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  input:hover .sm\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  input:hover .sm\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  input:hover .sm\:hover\:border-white {
    border-color: #fff !important;
  }
  input:hover .sm\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .sm\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .sm\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .sm\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .sm\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  input:hover .sm\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  input:hover .sm\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  input:hover .sm\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  input:hover .sm\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  input:hover .sm\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  input:hover .sm\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  input:hover .sm\:hover\:border-black {
    border-color: #000 !important;
  }
  input:hover .sm\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  input:hover .sm\:hover\:border-transparent {
    border-color: transparent !important;
  }
  input:hover .sm\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  input:hover .sm\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  input:hover .sm\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  input:hover .sm\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  input:hover .sm\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  input:hover .sm\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  input:hover .sm\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  input:hover .sm\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  input:hover .sm\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .sm\:hover\:border-red:hover {
    border-color: #f12b3b !important;
  }
  .sm\:hover\:border-dark-red:hover {
    border-color: #d2212f !important;
  }
  .sm\:hover\:border-dark-blue:hover {
    border-color: #0273aa !important;
  }
  .sm\:hover\:border-darker-blue:hover {
    border-color: #063b63 !important;
  }
  .sm\:hover\:border-blue:hover {
    border-color: #008fce !important;
  }
  .sm\:hover\:border-light-blue:hover {
    border-color: #4ba6ce !important;
  }
  .sm\:hover\:border-lighter-blue:hover {
    border-color: #c4e5f4 !important;
  }
  .sm\:hover\:border-lightest-blue:hover {
    border-color: #f1f7fa !important;
  }
  .sm\:hover\:border-turquoise:hover {
    border-color: #86c6bb !important;
  }
  .sm\:hover\:border-light-turquoise:hover {
    border-color: #a0d1c9 !important;
  }
  .sm\:hover\:border-lightest-turquoise:hover {
    border-color: #eff4f3 !important;
  }
  .sm\:hover\:border-darker-green:hover {
    border-color: #2f4f21 !important;
  }
  .sm\:hover\:border-dark-green:hover {
    border-color: #456f32 !important;
  }
  .sm\:hover\:border-green:hover {
    border-color: #66a54a !important;
  }
  .sm\:hover\:border-light-green:hover {
    border-color: #77b65b !important;
  }
  .sm\:hover\:border-lighter-green:hover {
    border-color: #c9e4bc !important;
  }
  .sm\:hover\:border-lightest-green:hover {
    border-color: #eff6ec !important;
  }
  .sm\:hover\:border-darker-yellow:hover {
    border-color: #483206 !important;
  }
  .sm\:hover\:border-dark-yellow:hover {
    border-color: #b5862a !important;
  }
  .sm\:hover\:border-yellow:hover {
    border-color: #f2b63f !important;
  }
  .sm\:hover\:border-light-yellow:hover {
    border-color: #f5cd78 !important;
  }
  .sm\:hover\:border-lighter-yellow:hover {
    border-color: #f8ecc5 !important;
  }
  .sm\:hover\:border-lightest-yellow:hover {
    border-color: #faf9e7 !important;
  }
  .sm\:hover\:border-beige:hover {
    border-color: #dbd3c9 !important;
  }
  .sm\:hover\:border-white:hover {
    border-color: #fff !important;
  }
  .sm\:hover\:border-white-opacity-02:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:hover\:border-white-opacity-03:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:hover\:border-white-opacity-05:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:hover\:border-white-opacity-07:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:hover\:border-lightest-grey:hover {
    border-color: #f3f3f3 !important;
  }
  .sm\:hover\:border-lighter-grey:hover {
    border-color: #ddd !important;
  }
  .sm\:hover\:border-light-grey:hover {
    border-color: #bbb !important;
  }
  .sm\:hover\:border-grey:hover {
    border-color: #8e8e8e !important;
  }
  .sm\:hover\:border-dark-grey:hover {
    border-color: #646464 !important;
  }
  .sm\:hover\:border-darker-grey:hover {
    border-color: #444 !important;
  }
  .sm\:hover\:border-darkest-grey:hover {
    border-color: #222 !important;
  }
  .sm\:hover\:border-black:hover {
    border-color: #000 !important;
  }
  .sm\:hover\:border-link--hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .sm\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }
  .sm\:hover\:border-clear:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .sm\:hover\:border-lightest:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .sm\:hover\:border-lighter:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .sm\:hover\:border-light:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .sm\:hover\:border-normal:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .sm\:hover\:border-dark:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .sm\:hover\:border-darker:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .sm\:hover\:border-darkest:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .sm\:hover\:border-opaque:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .sm\:border-red\:hover:hover {
    border-color: #f12b3b !important;
  }
  .sm\:border-dark-red\:hover:hover {
    border-color: #d2212f !important;
  }
  .sm\:border-dark-blue\:hover:hover {
    border-color: #0273aa !important;
  }
  .sm\:border-darker-blue\:hover:hover {
    border-color: #063b63 !important;
  }
  .sm\:border-blue\:hover:hover {
    border-color: #008fce !important;
  }
  .sm\:border-light-blue\:hover:hover {
    border-color: #4ba6ce !important;
  }
  .sm\:border-lighter-blue\:hover:hover {
    border-color: #c4e5f4 !important;
  }
  .sm\:border-lightest-blue\:hover:hover {
    border-color: #f1f7fa !important;
  }
  .sm\:border-turquoise\:hover:hover {
    border-color: #86c6bb !important;
  }
  .sm\:border-light-turquoise\:hover:hover {
    border-color: #a0d1c9 !important;
  }
  .sm\:border-lightest-turquoise\:hover:hover {
    border-color: #eff4f3 !important;
  }
  .sm\:border-darker-green\:hover:hover {
    border-color: #2f4f21 !important;
  }
  .sm\:border-dark-green\:hover:hover {
    border-color: #456f32 !important;
  }
  .sm\:border-green\:hover:hover {
    border-color: #66a54a !important;
  }
  .sm\:border-light-green\:hover:hover {
    border-color: #77b65b !important;
  }
  .sm\:border-lighter-green\:hover:hover {
    border-color: #c9e4bc !important;
  }
  .sm\:border-lightest-green\:hover:hover {
    border-color: #eff6ec !important;
  }
  .sm\:border-darker-yellow\:hover:hover {
    border-color: #483206 !important;
  }
  .sm\:border-dark-yellow\:hover:hover {
    border-color: #b5862a !important;
  }
  .sm\:border-yellow\:hover:hover {
    border-color: #f2b63f !important;
  }
  .sm\:border-light-yellow\:hover:hover {
    border-color: #f5cd78 !important;
  }
  .sm\:border-lighter-yellow\:hover:hover {
    border-color: #f8ecc5 !important;
  }
  .sm\:border-lightest-yellow\:hover:hover {
    border-color: #faf9e7 !important;
  }
  .sm\:border-beige\:hover:hover {
    border-color: #dbd3c9 !important;
  }
  .sm\:border-white\:hover:hover {
    border-color: #fff !important;
  }
  .sm\:border-white-opacity-02\:hover:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .sm\:border-white-opacity-03\:hover:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .sm\:border-white-opacity-05\:hover:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .sm\:border-white-opacity-07\:hover:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .sm\:border-lightest-grey\:hover:hover {
    border-color: #f3f3f3 !important;
  }
  .sm\:border-lighter-grey\:hover:hover {
    border-color: #ddd !important;
  }
  .sm\:border-light-grey\:hover:hover {
    border-color: #bbb !important;
  }
  .sm\:border-grey\:hover:hover {
    border-color: #8e8e8e !important;
  }
  .sm\:border-dark-grey\:hover:hover {
    border-color: #646464 !important;
  }
  .sm\:border-darker-grey\:hover:hover {
    border-color: #444 !important;
  }
  .sm\:border-darkest-grey\:hover:hover {
    border-color: #222 !important;
  }
  .sm\:border-black\:hover:hover {
    border-color: #000 !important;
  }
  .sm\:border-link--hover\:hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .sm\:border-transparent\:hover:hover {
    border-color: transparent !important;
  }
  .sm\:border-clear\:hover:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .sm\:border-lightest\:hover:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .sm\:border-lighter\:hover:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .sm\:border-light\:hover:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .sm\:border-normal\:hover:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .sm\:border-dark\:hover:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .sm\:border-darker\:hover:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .sm\:border-darkest\:hover:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .sm\:border-opaque\:hover:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:border-red {
    border-color: #f12b3b !important;
  }
  .md\:border-dark-red {
    border-color: #d2212f !important;
  }
  .md\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .md\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .md\:border-blue {
    border-color: #008fce !important;
  }
  .md\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .md\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .md\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .md\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .md\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .md\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .md\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .md\:border-dark-green {
    border-color: #456f32 !important;
  }
  .md\:border-green {
    border-color: #66a54a !important;
  }
  .md\:border-light-green {
    border-color: #77b65b !important;
  }
  .md\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .md\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .md\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .md\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .md\:border-yellow {
    border-color: #f2b63f !important;
  }
  .md\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .md\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .md\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .md\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .md\:border-white {
    border-color: #fff !important;
  }
  .md\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .md\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .md\:border-light-grey {
    border-color: #bbb !important;
  }
  .md\:border-grey {
    border-color: #8e8e8e !important;
  }
  .md\:border-dark-grey {
    border-color: #646464 !important;
  }
  .md\:border-darker-grey {
    border-color: #444 !important;
  }
  .md\:border-darkest-grey {
    border-color: #222 !important;
  }
  .md\:border-black {
    border-color: #000 !important;
  }
  .md\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .md\:border-transparent {
    border-color: transparent !important;
  }
  .md\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .md\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .md\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .md\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .md\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .md\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .md\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .md\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .md\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  a:hover .md\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  a:hover .md\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  a:hover .md\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  a:hover .md\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  a:hover .md\:hover\:border-blue {
    border-color: #008fce !important;
  }
  a:hover .md\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  a:hover .md\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  a:hover .md\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  a:hover .md\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  a:hover .md\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  a:hover .md\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  a:hover .md\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  a:hover .md\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  a:hover .md\:hover\:border-green {
    border-color: #66a54a !important;
  }
  a:hover .md\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  a:hover .md\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  a:hover .md\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  a:hover .md\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  a:hover .md\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  a:hover .md\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  a:hover .md\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  a:hover .md\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  a:hover .md\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  a:hover .md\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  a:hover .md\:hover\:border-white {
    border-color: #fff !important;
  }
  a:hover .md\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .md\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .md\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .md\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .md\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  a:hover .md\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  a:hover .md\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  a:hover .md\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  a:hover .md\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  a:hover .md\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  a:hover .md\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  a:hover .md\:hover\:border-black {
    border-color: #000 !important;
  }
  a:hover .md\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  a:hover .md\:hover\:border-transparent {
    border-color: transparent !important;
  }
  a:hover .md\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  a:hover .md\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  a:hover .md\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  a:hover .md\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  a:hover .md\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  a:hover .md\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  a:hover .md\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  a:hover .md\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  a:hover .md\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  button:hover .md\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  button:hover .md\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  button:hover .md\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  button:hover .md\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  button:hover .md\:hover\:border-blue {
    border-color: #008fce !important;
  }
  button:hover .md\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  button:hover .md\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  button:hover .md\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  button:hover .md\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  button:hover .md\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  button:hover .md\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  button:hover .md\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  button:hover .md\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  button:hover .md\:hover\:border-green {
    border-color: #66a54a !important;
  }
  button:hover .md\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  button:hover .md\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  button:hover .md\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  button:hover .md\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  button:hover .md\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  button:hover .md\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  button:hover .md\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  button:hover .md\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  button:hover .md\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  button:hover .md\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  button:hover .md\:hover\:border-white {
    border-color: #fff !important;
  }
  button:hover .md\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .md\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .md\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .md\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .md\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  button:hover .md\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  button:hover .md\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  button:hover .md\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  button:hover .md\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  button:hover .md\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  button:hover .md\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  button:hover .md\:hover\:border-black {
    border-color: #000 !important;
  }
  button:hover .md\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  button:hover .md\:hover\:border-transparent {
    border-color: transparent !important;
  }
  button:hover .md\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  button:hover .md\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  button:hover .md\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  button:hover .md\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  button:hover .md\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  button:hover .md\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  button:hover .md\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  button:hover .md\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  button:hover .md\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .btn:hover .md\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  .btn:hover .md\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  .btn:hover .md\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .btn:hover .md\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .btn:hover .md\:hover\:border-blue {
    border-color: #008fce !important;
  }
  .btn:hover .md\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .btn:hover .md\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .btn:hover .md\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .btn:hover .md\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .btn:hover .md\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .btn:hover .md\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .btn:hover .md\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .btn:hover .md\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  .btn:hover .md\:hover\:border-green {
    border-color: #66a54a !important;
  }
  .btn:hover .md\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  .btn:hover .md\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .btn:hover .md\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .btn:hover .md\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .btn:hover .md\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .btn:hover .md\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  .btn:hover .md\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .btn:hover .md\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .btn:hover .md\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .btn:hover .md\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .btn:hover .md\:hover\:border-white {
    border-color: #fff !important;
  }
  .btn:hover .md\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .md\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .md\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .md\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .md\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .btn:hover .md\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .btn:hover .md\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  .btn:hover .md\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  .btn:hover .md\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  .btn:hover .md\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  .btn:hover .md\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  .btn:hover .md\:hover\:border-black {
    border-color: #000 !important;
  }
  .btn:hover .md\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .btn:hover .md\:hover\:border-transparent {
    border-color: transparent !important;
  }
  .btn:hover .md\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .btn:hover .md\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .btn:hover .md\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .btn:hover .md\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .btn:hover .md\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .btn:hover .md\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .btn:hover .md\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .btn:hover .md\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .btn:hover .md\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  input:hover .md\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  input:hover .md\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  input:hover .md\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  input:hover .md\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  input:hover .md\:hover\:border-blue {
    border-color: #008fce !important;
  }
  input:hover .md\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  input:hover .md\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  input:hover .md\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  input:hover .md\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  input:hover .md\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  input:hover .md\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  input:hover .md\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  input:hover .md\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  input:hover .md\:hover\:border-green {
    border-color: #66a54a !important;
  }
  input:hover .md\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  input:hover .md\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  input:hover .md\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  input:hover .md\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  input:hover .md\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  input:hover .md\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  input:hover .md\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  input:hover .md\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  input:hover .md\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  input:hover .md\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  input:hover .md\:hover\:border-white {
    border-color: #fff !important;
  }
  input:hover .md\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .md\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .md\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .md\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .md\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  input:hover .md\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  input:hover .md\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  input:hover .md\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  input:hover .md\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  input:hover .md\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  input:hover .md\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  input:hover .md\:hover\:border-black {
    border-color: #000 !important;
  }
  input:hover .md\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  input:hover .md\:hover\:border-transparent {
    border-color: transparent !important;
  }
  input:hover .md\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  input:hover .md\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  input:hover .md\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  input:hover .md\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  input:hover .md\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  input:hover .md\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  input:hover .md\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  input:hover .md\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  input:hover .md\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .md\:hover\:border-red:hover {
    border-color: #f12b3b !important;
  }
  .md\:hover\:border-dark-red:hover {
    border-color: #d2212f !important;
  }
  .md\:hover\:border-dark-blue:hover {
    border-color: #0273aa !important;
  }
  .md\:hover\:border-darker-blue:hover {
    border-color: #063b63 !important;
  }
  .md\:hover\:border-blue:hover {
    border-color: #008fce !important;
  }
  .md\:hover\:border-light-blue:hover {
    border-color: #4ba6ce !important;
  }
  .md\:hover\:border-lighter-blue:hover {
    border-color: #c4e5f4 !important;
  }
  .md\:hover\:border-lightest-blue:hover {
    border-color: #f1f7fa !important;
  }
  .md\:hover\:border-turquoise:hover {
    border-color: #86c6bb !important;
  }
  .md\:hover\:border-light-turquoise:hover {
    border-color: #a0d1c9 !important;
  }
  .md\:hover\:border-lightest-turquoise:hover {
    border-color: #eff4f3 !important;
  }
  .md\:hover\:border-darker-green:hover {
    border-color: #2f4f21 !important;
  }
  .md\:hover\:border-dark-green:hover {
    border-color: #456f32 !important;
  }
  .md\:hover\:border-green:hover {
    border-color: #66a54a !important;
  }
  .md\:hover\:border-light-green:hover {
    border-color: #77b65b !important;
  }
  .md\:hover\:border-lighter-green:hover {
    border-color: #c9e4bc !important;
  }
  .md\:hover\:border-lightest-green:hover {
    border-color: #eff6ec !important;
  }
  .md\:hover\:border-darker-yellow:hover {
    border-color: #483206 !important;
  }
  .md\:hover\:border-dark-yellow:hover {
    border-color: #b5862a !important;
  }
  .md\:hover\:border-yellow:hover {
    border-color: #f2b63f !important;
  }
  .md\:hover\:border-light-yellow:hover {
    border-color: #f5cd78 !important;
  }
  .md\:hover\:border-lighter-yellow:hover {
    border-color: #f8ecc5 !important;
  }
  .md\:hover\:border-lightest-yellow:hover {
    border-color: #faf9e7 !important;
  }
  .md\:hover\:border-beige:hover {
    border-color: #dbd3c9 !important;
  }
  .md\:hover\:border-white:hover {
    border-color: #fff !important;
  }
  .md\:hover\:border-white-opacity-02:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:hover\:border-white-opacity-03:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:hover\:border-white-opacity-05:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:hover\:border-white-opacity-07:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:hover\:border-lightest-grey:hover {
    border-color: #f3f3f3 !important;
  }
  .md\:hover\:border-lighter-grey:hover {
    border-color: #ddd !important;
  }
  .md\:hover\:border-light-grey:hover {
    border-color: #bbb !important;
  }
  .md\:hover\:border-grey:hover {
    border-color: #8e8e8e !important;
  }
  .md\:hover\:border-dark-grey:hover {
    border-color: #646464 !important;
  }
  .md\:hover\:border-darker-grey:hover {
    border-color: #444 !important;
  }
  .md\:hover\:border-darkest-grey:hover {
    border-color: #222 !important;
  }
  .md\:hover\:border-black:hover {
    border-color: #000 !important;
  }
  .md\:hover\:border-link--hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .md\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }
  .md\:hover\:border-clear:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .md\:hover\:border-lightest:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .md\:hover\:border-lighter:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .md\:hover\:border-light:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .md\:hover\:border-normal:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .md\:hover\:border-dark:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .md\:hover\:border-darker:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .md\:hover\:border-darkest:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .md\:hover\:border-opaque:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .md\:border-red\:hover:hover {
    border-color: #f12b3b !important;
  }
  .md\:border-dark-red\:hover:hover {
    border-color: #d2212f !important;
  }
  .md\:border-dark-blue\:hover:hover {
    border-color: #0273aa !important;
  }
  .md\:border-darker-blue\:hover:hover {
    border-color: #063b63 !important;
  }
  .md\:border-blue\:hover:hover {
    border-color: #008fce !important;
  }
  .md\:border-light-blue\:hover:hover {
    border-color: #4ba6ce !important;
  }
  .md\:border-lighter-blue\:hover:hover {
    border-color: #c4e5f4 !important;
  }
  .md\:border-lightest-blue\:hover:hover {
    border-color: #f1f7fa !important;
  }
  .md\:border-turquoise\:hover:hover {
    border-color: #86c6bb !important;
  }
  .md\:border-light-turquoise\:hover:hover {
    border-color: #a0d1c9 !important;
  }
  .md\:border-lightest-turquoise\:hover:hover {
    border-color: #eff4f3 !important;
  }
  .md\:border-darker-green\:hover:hover {
    border-color: #2f4f21 !important;
  }
  .md\:border-dark-green\:hover:hover {
    border-color: #456f32 !important;
  }
  .md\:border-green\:hover:hover {
    border-color: #66a54a !important;
  }
  .md\:border-light-green\:hover:hover {
    border-color: #77b65b !important;
  }
  .md\:border-lighter-green\:hover:hover {
    border-color: #c9e4bc !important;
  }
  .md\:border-lightest-green\:hover:hover {
    border-color: #eff6ec !important;
  }
  .md\:border-darker-yellow\:hover:hover {
    border-color: #483206 !important;
  }
  .md\:border-dark-yellow\:hover:hover {
    border-color: #b5862a !important;
  }
  .md\:border-yellow\:hover:hover {
    border-color: #f2b63f !important;
  }
  .md\:border-light-yellow\:hover:hover {
    border-color: #f5cd78 !important;
  }
  .md\:border-lighter-yellow\:hover:hover {
    border-color: #f8ecc5 !important;
  }
  .md\:border-lightest-yellow\:hover:hover {
    border-color: #faf9e7 !important;
  }
  .md\:border-beige\:hover:hover {
    border-color: #dbd3c9 !important;
  }
  .md\:border-white\:hover:hover {
    border-color: #fff !important;
  }
  .md\:border-white-opacity-02\:hover:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .md\:border-white-opacity-03\:hover:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .md\:border-white-opacity-05\:hover:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .md\:border-white-opacity-07\:hover:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .md\:border-lightest-grey\:hover:hover {
    border-color: #f3f3f3 !important;
  }
  .md\:border-lighter-grey\:hover:hover {
    border-color: #ddd !important;
  }
  .md\:border-light-grey\:hover:hover {
    border-color: #bbb !important;
  }
  .md\:border-grey\:hover:hover {
    border-color: #8e8e8e !important;
  }
  .md\:border-dark-grey\:hover:hover {
    border-color: #646464 !important;
  }
  .md\:border-darker-grey\:hover:hover {
    border-color: #444 !important;
  }
  .md\:border-darkest-grey\:hover:hover {
    border-color: #222 !important;
  }
  .md\:border-black\:hover:hover {
    border-color: #000 !important;
  }
  .md\:border-link--hover\:hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .md\:border-transparent\:hover:hover {
    border-color: transparent !important;
  }
  .md\:border-clear\:hover:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .md\:border-lightest\:hover:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .md\:border-lighter\:hover:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .md\:border-light\:hover:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .md\:border-normal\:hover:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .md\:border-dark\:hover:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .md\:border-darker\:hover:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .md\:border-darkest\:hover:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .md\:border-opaque\:hover:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:border-red {
    border-color: #f12b3b !important;
  }
  .lg\:border-dark-red {
    border-color: #d2212f !important;
  }
  .lg\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .lg\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .lg\:border-blue {
    border-color: #008fce !important;
  }
  .lg\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .lg\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .lg\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .lg\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .lg\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .lg\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .lg\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .lg\:border-dark-green {
    border-color: #456f32 !important;
  }
  .lg\:border-green {
    border-color: #66a54a !important;
  }
  .lg\:border-light-green {
    border-color: #77b65b !important;
  }
  .lg\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .lg\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .lg\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .lg\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .lg\:border-yellow {
    border-color: #f2b63f !important;
  }
  .lg\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .lg\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .lg\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .lg\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .lg\:border-white {
    border-color: #fff !important;
  }
  .lg\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .lg\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .lg\:border-light-grey {
    border-color: #bbb !important;
  }
  .lg\:border-grey {
    border-color: #8e8e8e !important;
  }
  .lg\:border-dark-grey {
    border-color: #646464 !important;
  }
  .lg\:border-darker-grey {
    border-color: #444 !important;
  }
  .lg\:border-darkest-grey {
    border-color: #222 !important;
  }
  .lg\:border-black {
    border-color: #000 !important;
  }
  .lg\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .lg\:border-transparent {
    border-color: transparent !important;
  }
  .lg\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .lg\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .lg\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .lg\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .lg\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .lg\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .lg\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .lg\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .lg\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  a:hover .lg\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  a:hover .lg\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  a:hover .lg\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  a:hover .lg\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  a:hover .lg\:hover\:border-blue {
    border-color: #008fce !important;
  }
  a:hover .lg\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  a:hover .lg\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  a:hover .lg\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  a:hover .lg\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  a:hover .lg\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  a:hover .lg\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  a:hover .lg\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  a:hover .lg\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  a:hover .lg\:hover\:border-green {
    border-color: #66a54a !important;
  }
  a:hover .lg\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  a:hover .lg\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  a:hover .lg\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  a:hover .lg\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  a:hover .lg\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  a:hover .lg\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  a:hover .lg\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  a:hover .lg\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  a:hover .lg\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  a:hover .lg\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  a:hover .lg\:hover\:border-white {
    border-color: #fff !important;
  }
  a:hover .lg\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .lg\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .lg\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .lg\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .lg\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  a:hover .lg\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  a:hover .lg\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  a:hover .lg\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  a:hover .lg\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  a:hover .lg\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  a:hover .lg\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  a:hover .lg\:hover\:border-black {
    border-color: #000 !important;
  }
  a:hover .lg\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  a:hover .lg\:hover\:border-transparent {
    border-color: transparent !important;
  }
  a:hover .lg\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  a:hover .lg\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  a:hover .lg\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  a:hover .lg\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  a:hover .lg\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  a:hover .lg\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  a:hover .lg\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  a:hover .lg\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  a:hover .lg\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  button:hover .lg\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  button:hover .lg\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  button:hover .lg\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  button:hover .lg\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  button:hover .lg\:hover\:border-blue {
    border-color: #008fce !important;
  }
  button:hover .lg\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  button:hover .lg\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  button:hover .lg\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  button:hover .lg\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  button:hover .lg\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  button:hover .lg\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  button:hover .lg\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  button:hover .lg\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  button:hover .lg\:hover\:border-green {
    border-color: #66a54a !important;
  }
  button:hover .lg\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  button:hover .lg\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  button:hover .lg\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  button:hover .lg\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  button:hover .lg\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  button:hover .lg\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  button:hover .lg\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  button:hover .lg\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  button:hover .lg\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  button:hover .lg\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  button:hover .lg\:hover\:border-white {
    border-color: #fff !important;
  }
  button:hover .lg\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .lg\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .lg\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .lg\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .lg\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  button:hover .lg\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  button:hover .lg\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  button:hover .lg\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  button:hover .lg\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  button:hover .lg\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  button:hover .lg\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  button:hover .lg\:hover\:border-black {
    border-color: #000 !important;
  }
  button:hover .lg\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  button:hover .lg\:hover\:border-transparent {
    border-color: transparent !important;
  }
  button:hover .lg\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  button:hover .lg\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  button:hover .lg\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  button:hover .lg\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  button:hover .lg\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  button:hover .lg\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  button:hover .lg\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  button:hover .lg\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  button:hover .lg\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .btn:hover .lg\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  .btn:hover .lg\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  .btn:hover .lg\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .btn:hover .lg\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .btn:hover .lg\:hover\:border-blue {
    border-color: #008fce !important;
  }
  .btn:hover .lg\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .btn:hover .lg\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .btn:hover .lg\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .btn:hover .lg\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .btn:hover .lg\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .btn:hover .lg\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .btn:hover .lg\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .btn:hover .lg\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  .btn:hover .lg\:hover\:border-green {
    border-color: #66a54a !important;
  }
  .btn:hover .lg\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  .btn:hover .lg\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .btn:hover .lg\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .btn:hover .lg\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .btn:hover .lg\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .btn:hover .lg\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  .btn:hover .lg\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .btn:hover .lg\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .btn:hover .lg\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .btn:hover .lg\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .btn:hover .lg\:hover\:border-white {
    border-color: #fff !important;
  }
  .btn:hover .lg\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .lg\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .lg\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .lg\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .lg\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .btn:hover .lg\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .btn:hover .lg\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  .btn:hover .lg\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  .btn:hover .lg\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  .btn:hover .lg\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  .btn:hover .lg\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  .btn:hover .lg\:hover\:border-black {
    border-color: #000 !important;
  }
  .btn:hover .lg\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .btn:hover .lg\:hover\:border-transparent {
    border-color: transparent !important;
  }
  .btn:hover .lg\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .btn:hover .lg\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .btn:hover .lg\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .btn:hover .lg\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .btn:hover .lg\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .btn:hover .lg\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .btn:hover .lg\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .btn:hover .lg\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .btn:hover .lg\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  input:hover .lg\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  input:hover .lg\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  input:hover .lg\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  input:hover .lg\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  input:hover .lg\:hover\:border-blue {
    border-color: #008fce !important;
  }
  input:hover .lg\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  input:hover .lg\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  input:hover .lg\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  input:hover .lg\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  input:hover .lg\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  input:hover .lg\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  input:hover .lg\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  input:hover .lg\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  input:hover .lg\:hover\:border-green {
    border-color: #66a54a !important;
  }
  input:hover .lg\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  input:hover .lg\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  input:hover .lg\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  input:hover .lg\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  input:hover .lg\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  input:hover .lg\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  input:hover .lg\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  input:hover .lg\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  input:hover .lg\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  input:hover .lg\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  input:hover .lg\:hover\:border-white {
    border-color: #fff !important;
  }
  input:hover .lg\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .lg\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .lg\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .lg\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .lg\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  input:hover .lg\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  input:hover .lg\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  input:hover .lg\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  input:hover .lg\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  input:hover .lg\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  input:hover .lg\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  input:hover .lg\:hover\:border-black {
    border-color: #000 !important;
  }
  input:hover .lg\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  input:hover .lg\:hover\:border-transparent {
    border-color: transparent !important;
  }
  input:hover .lg\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  input:hover .lg\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  input:hover .lg\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  input:hover .lg\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  input:hover .lg\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  input:hover .lg\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  input:hover .lg\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  input:hover .lg\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  input:hover .lg\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .lg\:hover\:border-red:hover {
    border-color: #f12b3b !important;
  }
  .lg\:hover\:border-dark-red:hover {
    border-color: #d2212f !important;
  }
  .lg\:hover\:border-dark-blue:hover {
    border-color: #0273aa !important;
  }
  .lg\:hover\:border-darker-blue:hover {
    border-color: #063b63 !important;
  }
  .lg\:hover\:border-blue:hover {
    border-color: #008fce !important;
  }
  .lg\:hover\:border-light-blue:hover {
    border-color: #4ba6ce !important;
  }
  .lg\:hover\:border-lighter-blue:hover {
    border-color: #c4e5f4 !important;
  }
  .lg\:hover\:border-lightest-blue:hover {
    border-color: #f1f7fa !important;
  }
  .lg\:hover\:border-turquoise:hover {
    border-color: #86c6bb !important;
  }
  .lg\:hover\:border-light-turquoise:hover {
    border-color: #a0d1c9 !important;
  }
  .lg\:hover\:border-lightest-turquoise:hover {
    border-color: #eff4f3 !important;
  }
  .lg\:hover\:border-darker-green:hover {
    border-color: #2f4f21 !important;
  }
  .lg\:hover\:border-dark-green:hover {
    border-color: #456f32 !important;
  }
  .lg\:hover\:border-green:hover {
    border-color: #66a54a !important;
  }
  .lg\:hover\:border-light-green:hover {
    border-color: #77b65b !important;
  }
  .lg\:hover\:border-lighter-green:hover {
    border-color: #c9e4bc !important;
  }
  .lg\:hover\:border-lightest-green:hover {
    border-color: #eff6ec !important;
  }
  .lg\:hover\:border-darker-yellow:hover {
    border-color: #483206 !important;
  }
  .lg\:hover\:border-dark-yellow:hover {
    border-color: #b5862a !important;
  }
  .lg\:hover\:border-yellow:hover {
    border-color: #f2b63f !important;
  }
  .lg\:hover\:border-light-yellow:hover {
    border-color: #f5cd78 !important;
  }
  .lg\:hover\:border-lighter-yellow:hover {
    border-color: #f8ecc5 !important;
  }
  .lg\:hover\:border-lightest-yellow:hover {
    border-color: #faf9e7 !important;
  }
  .lg\:hover\:border-beige:hover {
    border-color: #dbd3c9 !important;
  }
  .lg\:hover\:border-white:hover {
    border-color: #fff !important;
  }
  .lg\:hover\:border-white-opacity-02:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:hover\:border-white-opacity-03:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:hover\:border-white-opacity-05:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:hover\:border-white-opacity-07:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:hover\:border-lightest-grey:hover {
    border-color: #f3f3f3 !important;
  }
  .lg\:hover\:border-lighter-grey:hover {
    border-color: #ddd !important;
  }
  .lg\:hover\:border-light-grey:hover {
    border-color: #bbb !important;
  }
  .lg\:hover\:border-grey:hover {
    border-color: #8e8e8e !important;
  }
  .lg\:hover\:border-dark-grey:hover {
    border-color: #646464 !important;
  }
  .lg\:hover\:border-darker-grey:hover {
    border-color: #444 !important;
  }
  .lg\:hover\:border-darkest-grey:hover {
    border-color: #222 !important;
  }
  .lg\:hover\:border-black:hover {
    border-color: #000 !important;
  }
  .lg\:hover\:border-link--hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .lg\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }
  .lg\:hover\:border-clear:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .lg\:hover\:border-lightest:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .lg\:hover\:border-lighter:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .lg\:hover\:border-light:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .lg\:hover\:border-normal:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .lg\:hover\:border-dark:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .lg\:hover\:border-darker:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .lg\:hover\:border-darkest:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .lg\:hover\:border-opaque:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .lg\:border-red\:hover:hover {
    border-color: #f12b3b !important;
  }
  .lg\:border-dark-red\:hover:hover {
    border-color: #d2212f !important;
  }
  .lg\:border-dark-blue\:hover:hover {
    border-color: #0273aa !important;
  }
  .lg\:border-darker-blue\:hover:hover {
    border-color: #063b63 !important;
  }
  .lg\:border-blue\:hover:hover {
    border-color: #008fce !important;
  }
  .lg\:border-light-blue\:hover:hover {
    border-color: #4ba6ce !important;
  }
  .lg\:border-lighter-blue\:hover:hover {
    border-color: #c4e5f4 !important;
  }
  .lg\:border-lightest-blue\:hover:hover {
    border-color: #f1f7fa !important;
  }
  .lg\:border-turquoise\:hover:hover {
    border-color: #86c6bb !important;
  }
  .lg\:border-light-turquoise\:hover:hover {
    border-color: #a0d1c9 !important;
  }
  .lg\:border-lightest-turquoise\:hover:hover {
    border-color: #eff4f3 !important;
  }
  .lg\:border-darker-green\:hover:hover {
    border-color: #2f4f21 !important;
  }
  .lg\:border-dark-green\:hover:hover {
    border-color: #456f32 !important;
  }
  .lg\:border-green\:hover:hover {
    border-color: #66a54a !important;
  }
  .lg\:border-light-green\:hover:hover {
    border-color: #77b65b !important;
  }
  .lg\:border-lighter-green\:hover:hover {
    border-color: #c9e4bc !important;
  }
  .lg\:border-lightest-green\:hover:hover {
    border-color: #eff6ec !important;
  }
  .lg\:border-darker-yellow\:hover:hover {
    border-color: #483206 !important;
  }
  .lg\:border-dark-yellow\:hover:hover {
    border-color: #b5862a !important;
  }
  .lg\:border-yellow\:hover:hover {
    border-color: #f2b63f !important;
  }
  .lg\:border-light-yellow\:hover:hover {
    border-color: #f5cd78 !important;
  }
  .lg\:border-lighter-yellow\:hover:hover {
    border-color: #f8ecc5 !important;
  }
  .lg\:border-lightest-yellow\:hover:hover {
    border-color: #faf9e7 !important;
  }
  .lg\:border-beige\:hover:hover {
    border-color: #dbd3c9 !important;
  }
  .lg\:border-white\:hover:hover {
    border-color: #fff !important;
  }
  .lg\:border-white-opacity-02\:hover:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lg\:border-white-opacity-03\:hover:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .lg\:border-white-opacity-05\:hover:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .lg\:border-white-opacity-07\:hover:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .lg\:border-lightest-grey\:hover:hover {
    border-color: #f3f3f3 !important;
  }
  .lg\:border-lighter-grey\:hover:hover {
    border-color: #ddd !important;
  }
  .lg\:border-light-grey\:hover:hover {
    border-color: #bbb !important;
  }
  .lg\:border-grey\:hover:hover {
    border-color: #8e8e8e !important;
  }
  .lg\:border-dark-grey\:hover:hover {
    border-color: #646464 !important;
  }
  .lg\:border-darker-grey\:hover:hover {
    border-color: #444 !important;
  }
  .lg\:border-darkest-grey\:hover:hover {
    border-color: #222 !important;
  }
  .lg\:border-black\:hover:hover {
    border-color: #000 !important;
  }
  .lg\:border-link--hover\:hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .lg\:border-transparent\:hover:hover {
    border-color: transparent !important;
  }
  .lg\:border-clear\:hover:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .lg\:border-lightest\:hover:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .lg\:border-lighter\:hover:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .lg\:border-light\:hover:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .lg\:border-normal\:hover:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .lg\:border-dark\:hover:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .lg\:border-darker\:hover:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .lg\:border-darkest\:hover:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .lg\:border-opaque\:hover:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:border-red {
    border-color: #f12b3b !important;
  }
  .xl\:border-dark-red {
    border-color: #d2212f !important;
  }
  .xl\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .xl\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .xl\:border-blue {
    border-color: #008fce !important;
  }
  .xl\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .xl\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .xl\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .xl\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .xl\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .xl\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .xl\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .xl\:border-dark-green {
    border-color: #456f32 !important;
  }
  .xl\:border-green {
    border-color: #66a54a !important;
  }
  .xl\:border-light-green {
    border-color: #77b65b !important;
  }
  .xl\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .xl\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .xl\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .xl\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .xl\:border-yellow {
    border-color: #f2b63f !important;
  }
  .xl\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .xl\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .xl\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .xl\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .xl\:border-white {
    border-color: #fff !important;
  }
  .xl\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .xl\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .xl\:border-light-grey {
    border-color: #bbb !important;
  }
  .xl\:border-grey {
    border-color: #8e8e8e !important;
  }
  .xl\:border-dark-grey {
    border-color: #646464 !important;
  }
  .xl\:border-darker-grey {
    border-color: #444 !important;
  }
  .xl\:border-darkest-grey {
    border-color: #222 !important;
  }
  .xl\:border-black {
    border-color: #000 !important;
  }
  .xl\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .xl\:border-transparent {
    border-color: transparent !important;
  }
  .xl\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .xl\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .xl\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .xl\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .xl\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .xl\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .xl\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .xl\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .xl\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  a:hover .xl\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  a:hover .xl\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  a:hover .xl\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  a:hover .xl\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  a:hover .xl\:hover\:border-blue {
    border-color: #008fce !important;
  }
  a:hover .xl\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  a:hover .xl\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  a:hover .xl\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  a:hover .xl\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  a:hover .xl\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  a:hover .xl\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  a:hover .xl\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  a:hover .xl\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  a:hover .xl\:hover\:border-green {
    border-color: #66a54a !important;
  }
  a:hover .xl\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  a:hover .xl\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  a:hover .xl\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  a:hover .xl\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  a:hover .xl\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  a:hover .xl\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  a:hover .xl\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  a:hover .xl\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  a:hover .xl\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  a:hover .xl\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  a:hover .xl\:hover\:border-white {
    border-color: #fff !important;
  }
  a:hover .xl\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .xl\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .xl\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .xl\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .xl\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  a:hover .xl\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  a:hover .xl\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  a:hover .xl\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  a:hover .xl\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  a:hover .xl\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  a:hover .xl\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  a:hover .xl\:hover\:border-black {
    border-color: #000 !important;
  }
  a:hover .xl\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  a:hover .xl\:hover\:border-transparent {
    border-color: transparent !important;
  }
  a:hover .xl\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  a:hover .xl\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  a:hover .xl\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  a:hover .xl\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  a:hover .xl\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  a:hover .xl\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  a:hover .xl\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  a:hover .xl\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  a:hover .xl\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  button:hover .xl\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  button:hover .xl\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  button:hover .xl\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  button:hover .xl\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  button:hover .xl\:hover\:border-blue {
    border-color: #008fce !important;
  }
  button:hover .xl\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  button:hover .xl\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  button:hover .xl\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  button:hover .xl\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  button:hover .xl\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  button:hover .xl\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  button:hover .xl\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  button:hover .xl\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  button:hover .xl\:hover\:border-green {
    border-color: #66a54a !important;
  }
  button:hover .xl\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  button:hover .xl\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  button:hover .xl\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  button:hover .xl\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  button:hover .xl\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  button:hover .xl\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  button:hover .xl\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  button:hover .xl\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  button:hover .xl\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  button:hover .xl\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  button:hover .xl\:hover\:border-white {
    border-color: #fff !important;
  }
  button:hover .xl\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .xl\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .xl\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .xl\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .xl\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  button:hover .xl\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  button:hover .xl\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  button:hover .xl\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  button:hover .xl\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  button:hover .xl\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  button:hover .xl\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  button:hover .xl\:hover\:border-black {
    border-color: #000 !important;
  }
  button:hover .xl\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  button:hover .xl\:hover\:border-transparent {
    border-color: transparent !important;
  }
  button:hover .xl\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  button:hover .xl\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  button:hover .xl\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  button:hover .xl\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  button:hover .xl\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  button:hover .xl\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  button:hover .xl\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  button:hover .xl\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  button:hover .xl\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .btn:hover .xl\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  .btn:hover .xl\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  .btn:hover .xl\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .btn:hover .xl\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .btn:hover .xl\:hover\:border-blue {
    border-color: #008fce !important;
  }
  .btn:hover .xl\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .btn:hover .xl\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .btn:hover .xl\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .btn:hover .xl\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .btn:hover .xl\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .btn:hover .xl\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .btn:hover .xl\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .btn:hover .xl\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  .btn:hover .xl\:hover\:border-green {
    border-color: #66a54a !important;
  }
  .btn:hover .xl\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  .btn:hover .xl\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .btn:hover .xl\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .btn:hover .xl\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .btn:hover .xl\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .btn:hover .xl\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  .btn:hover .xl\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .btn:hover .xl\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .btn:hover .xl\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .btn:hover .xl\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .btn:hover .xl\:hover\:border-white {
    border-color: #fff !important;
  }
  .btn:hover .xl\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .xl\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .xl\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .xl\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .xl\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .btn:hover .xl\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .btn:hover .xl\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  .btn:hover .xl\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  .btn:hover .xl\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  .btn:hover .xl\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  .btn:hover .xl\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  .btn:hover .xl\:hover\:border-black {
    border-color: #000 !important;
  }
  .btn:hover .xl\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .btn:hover .xl\:hover\:border-transparent {
    border-color: transparent !important;
  }
  .btn:hover .xl\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .btn:hover .xl\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .btn:hover .xl\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .btn:hover .xl\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .btn:hover .xl\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .btn:hover .xl\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .btn:hover .xl\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .btn:hover .xl\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .btn:hover .xl\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  input:hover .xl\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  input:hover .xl\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  input:hover .xl\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  input:hover .xl\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  input:hover .xl\:hover\:border-blue {
    border-color: #008fce !important;
  }
  input:hover .xl\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  input:hover .xl\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  input:hover .xl\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  input:hover .xl\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  input:hover .xl\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  input:hover .xl\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  input:hover .xl\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  input:hover .xl\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  input:hover .xl\:hover\:border-green {
    border-color: #66a54a !important;
  }
  input:hover .xl\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  input:hover .xl\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  input:hover .xl\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  input:hover .xl\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  input:hover .xl\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  input:hover .xl\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  input:hover .xl\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  input:hover .xl\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  input:hover .xl\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  input:hover .xl\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  input:hover .xl\:hover\:border-white {
    border-color: #fff !important;
  }
  input:hover .xl\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .xl\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .xl\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .xl\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .xl\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  input:hover .xl\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  input:hover .xl\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  input:hover .xl\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  input:hover .xl\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  input:hover .xl\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  input:hover .xl\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  input:hover .xl\:hover\:border-black {
    border-color: #000 !important;
  }
  input:hover .xl\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  input:hover .xl\:hover\:border-transparent {
    border-color: transparent !important;
  }
  input:hover .xl\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  input:hover .xl\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  input:hover .xl\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  input:hover .xl\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  input:hover .xl\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  input:hover .xl\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  input:hover .xl\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  input:hover .xl\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  input:hover .xl\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .xl\:hover\:border-red:hover {
    border-color: #f12b3b !important;
  }
  .xl\:hover\:border-dark-red:hover {
    border-color: #d2212f !important;
  }
  .xl\:hover\:border-dark-blue:hover {
    border-color: #0273aa !important;
  }
  .xl\:hover\:border-darker-blue:hover {
    border-color: #063b63 !important;
  }
  .xl\:hover\:border-blue:hover {
    border-color: #008fce !important;
  }
  .xl\:hover\:border-light-blue:hover {
    border-color: #4ba6ce !important;
  }
  .xl\:hover\:border-lighter-blue:hover {
    border-color: #c4e5f4 !important;
  }
  .xl\:hover\:border-lightest-blue:hover {
    border-color: #f1f7fa !important;
  }
  .xl\:hover\:border-turquoise:hover {
    border-color: #86c6bb !important;
  }
  .xl\:hover\:border-light-turquoise:hover {
    border-color: #a0d1c9 !important;
  }
  .xl\:hover\:border-lightest-turquoise:hover {
    border-color: #eff4f3 !important;
  }
  .xl\:hover\:border-darker-green:hover {
    border-color: #2f4f21 !important;
  }
  .xl\:hover\:border-dark-green:hover {
    border-color: #456f32 !important;
  }
  .xl\:hover\:border-green:hover {
    border-color: #66a54a !important;
  }
  .xl\:hover\:border-light-green:hover {
    border-color: #77b65b !important;
  }
  .xl\:hover\:border-lighter-green:hover {
    border-color: #c9e4bc !important;
  }
  .xl\:hover\:border-lightest-green:hover {
    border-color: #eff6ec !important;
  }
  .xl\:hover\:border-darker-yellow:hover {
    border-color: #483206 !important;
  }
  .xl\:hover\:border-dark-yellow:hover {
    border-color: #b5862a !important;
  }
  .xl\:hover\:border-yellow:hover {
    border-color: #f2b63f !important;
  }
  .xl\:hover\:border-light-yellow:hover {
    border-color: #f5cd78 !important;
  }
  .xl\:hover\:border-lighter-yellow:hover {
    border-color: #f8ecc5 !important;
  }
  .xl\:hover\:border-lightest-yellow:hover {
    border-color: #faf9e7 !important;
  }
  .xl\:hover\:border-beige:hover {
    border-color: #dbd3c9 !important;
  }
  .xl\:hover\:border-white:hover {
    border-color: #fff !important;
  }
  .xl\:hover\:border-white-opacity-02:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:hover\:border-white-opacity-03:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:hover\:border-white-opacity-05:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:hover\:border-white-opacity-07:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:hover\:border-lightest-grey:hover {
    border-color: #f3f3f3 !important;
  }
  .xl\:hover\:border-lighter-grey:hover {
    border-color: #ddd !important;
  }
  .xl\:hover\:border-light-grey:hover {
    border-color: #bbb !important;
  }
  .xl\:hover\:border-grey:hover {
    border-color: #8e8e8e !important;
  }
  .xl\:hover\:border-dark-grey:hover {
    border-color: #646464 !important;
  }
  .xl\:hover\:border-darker-grey:hover {
    border-color: #444 !important;
  }
  .xl\:hover\:border-darkest-grey:hover {
    border-color: #222 !important;
  }
  .xl\:hover\:border-black:hover {
    border-color: #000 !important;
  }
  .xl\:hover\:border-link--hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .xl\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }
  .xl\:hover\:border-clear:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .xl\:hover\:border-lightest:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .xl\:hover\:border-lighter:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .xl\:hover\:border-light:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .xl\:hover\:border-normal:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .xl\:hover\:border-dark:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .xl\:hover\:border-darker:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .xl\:hover\:border-darkest:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .xl\:hover\:border-opaque:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .xl\:border-red\:hover:hover {
    border-color: #f12b3b !important;
  }
  .xl\:border-dark-red\:hover:hover {
    border-color: #d2212f !important;
  }
  .xl\:border-dark-blue\:hover:hover {
    border-color: #0273aa !important;
  }
  .xl\:border-darker-blue\:hover:hover {
    border-color: #063b63 !important;
  }
  .xl\:border-blue\:hover:hover {
    border-color: #008fce !important;
  }
  .xl\:border-light-blue\:hover:hover {
    border-color: #4ba6ce !important;
  }
  .xl\:border-lighter-blue\:hover:hover {
    border-color: #c4e5f4 !important;
  }
  .xl\:border-lightest-blue\:hover:hover {
    border-color: #f1f7fa !important;
  }
  .xl\:border-turquoise\:hover:hover {
    border-color: #86c6bb !important;
  }
  .xl\:border-light-turquoise\:hover:hover {
    border-color: #a0d1c9 !important;
  }
  .xl\:border-lightest-turquoise\:hover:hover {
    border-color: #eff4f3 !important;
  }
  .xl\:border-darker-green\:hover:hover {
    border-color: #2f4f21 !important;
  }
  .xl\:border-dark-green\:hover:hover {
    border-color: #456f32 !important;
  }
  .xl\:border-green\:hover:hover {
    border-color: #66a54a !important;
  }
  .xl\:border-light-green\:hover:hover {
    border-color: #77b65b !important;
  }
  .xl\:border-lighter-green\:hover:hover {
    border-color: #c9e4bc !important;
  }
  .xl\:border-lightest-green\:hover:hover {
    border-color: #eff6ec !important;
  }
  .xl\:border-darker-yellow\:hover:hover {
    border-color: #483206 !important;
  }
  .xl\:border-dark-yellow\:hover:hover {
    border-color: #b5862a !important;
  }
  .xl\:border-yellow\:hover:hover {
    border-color: #f2b63f !important;
  }
  .xl\:border-light-yellow\:hover:hover {
    border-color: #f5cd78 !important;
  }
  .xl\:border-lighter-yellow\:hover:hover {
    border-color: #f8ecc5 !important;
  }
  .xl\:border-lightest-yellow\:hover:hover {
    border-color: #faf9e7 !important;
  }
  .xl\:border-beige\:hover:hover {
    border-color: #dbd3c9 !important;
  }
  .xl\:border-white\:hover:hover {
    border-color: #fff !important;
  }
  .xl\:border-white-opacity-02\:hover:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xl\:border-white-opacity-03\:hover:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xl\:border-white-opacity-05\:hover:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xl\:border-white-opacity-07\:hover:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xl\:border-lightest-grey\:hover:hover {
    border-color: #f3f3f3 !important;
  }
  .xl\:border-lighter-grey\:hover:hover {
    border-color: #ddd !important;
  }
  .xl\:border-light-grey\:hover:hover {
    border-color: #bbb !important;
  }
  .xl\:border-grey\:hover:hover {
    border-color: #8e8e8e !important;
  }
  .xl\:border-dark-grey\:hover:hover {
    border-color: #646464 !important;
  }
  .xl\:border-darker-grey\:hover:hover {
    border-color: #444 !important;
  }
  .xl\:border-darkest-grey\:hover:hover {
    border-color: #222 !important;
  }
  .xl\:border-black\:hover:hover {
    border-color: #000 !important;
  }
  .xl\:border-link--hover\:hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .xl\:border-transparent\:hover:hover {
    border-color: transparent !important;
  }
  .xl\:border-clear\:hover:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .xl\:border-lightest\:hover:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .xl\:border-lighter\:hover:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .xl\:border-light\:hover:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .xl\:border-normal\:hover:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .xl\:border-dark\:hover:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .xl\:border-darker\:hover:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .xl\:border-darkest\:hover:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .xl\:border-opaque\:hover:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:border-red {
    border-color: #f12b3b !important;
  }
  .xxl\:border-dark-red {
    border-color: #d2212f !important;
  }
  .xxl\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .xxl\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .xxl\:border-blue {
    border-color: #008fce !important;
  }
  .xxl\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .xxl\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .xxl\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .xxl\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .xxl\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .xxl\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .xxl\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .xxl\:border-dark-green {
    border-color: #456f32 !important;
  }
  .xxl\:border-green {
    border-color: #66a54a !important;
  }
  .xxl\:border-light-green {
    border-color: #77b65b !important;
  }
  .xxl\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .xxl\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .xxl\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .xxl\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .xxl\:border-yellow {
    border-color: #f2b63f !important;
  }
  .xxl\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .xxl\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .xxl\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .xxl\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .xxl\:border-white {
    border-color: #fff !important;
  }
  .xxl\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .xxl\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .xxl\:border-light-grey {
    border-color: #bbb !important;
  }
  .xxl\:border-grey {
    border-color: #8e8e8e !important;
  }
  .xxl\:border-dark-grey {
    border-color: #646464 !important;
  }
  .xxl\:border-darker-grey {
    border-color: #444 !important;
  }
  .xxl\:border-darkest-grey {
    border-color: #222 !important;
  }
  .xxl\:border-black {
    border-color: #000 !important;
  }
  .xxl\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .xxl\:border-transparent {
    border-color: transparent !important;
  }
  .xxl\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .xxl\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .xxl\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .xxl\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .xxl\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .xxl\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .xxl\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .xxl\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .xxl\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  a:hover .xxl\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  a:hover .xxl\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  a:hover .xxl\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  a:hover .xxl\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  a:hover .xxl\:hover\:border-blue {
    border-color: #008fce !important;
  }
  a:hover .xxl\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  a:hover .xxl\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  a:hover .xxl\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  a:hover .xxl\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  a:hover .xxl\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  a:hover .xxl\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  a:hover .xxl\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  a:hover .xxl\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  a:hover .xxl\:hover\:border-green {
    border-color: #66a54a !important;
  }
  a:hover .xxl\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  a:hover .xxl\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  a:hover .xxl\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  a:hover .xxl\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  a:hover .xxl\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  a:hover .xxl\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  a:hover .xxl\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  a:hover .xxl\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  a:hover .xxl\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  a:hover .xxl\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  a:hover .xxl\:hover\:border-white {
    border-color: #fff !important;
  }
  a:hover .xxl\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .xxl\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .xxl\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .xxl\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .xxl\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  a:hover .xxl\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  a:hover .xxl\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  a:hover .xxl\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  a:hover .xxl\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  a:hover .xxl\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  a:hover .xxl\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  a:hover .xxl\:hover\:border-black {
    border-color: #000 !important;
  }
  a:hover .xxl\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  a:hover .xxl\:hover\:border-transparent {
    border-color: transparent !important;
  }
  a:hover .xxl\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  a:hover .xxl\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  a:hover .xxl\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  a:hover .xxl\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  a:hover .xxl\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  a:hover .xxl\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  a:hover .xxl\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  a:hover .xxl\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  a:hover .xxl\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  button:hover .xxl\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  button:hover .xxl\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  button:hover .xxl\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  button:hover .xxl\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  button:hover .xxl\:hover\:border-blue {
    border-color: #008fce !important;
  }
  button:hover .xxl\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  button:hover .xxl\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  button:hover .xxl\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  button:hover .xxl\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  button:hover .xxl\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  button:hover .xxl\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  button:hover .xxl\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  button:hover .xxl\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  button:hover .xxl\:hover\:border-green {
    border-color: #66a54a !important;
  }
  button:hover .xxl\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  button:hover .xxl\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  button:hover .xxl\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  button:hover .xxl\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  button:hover .xxl\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  button:hover .xxl\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  button:hover .xxl\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  button:hover .xxl\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  button:hover .xxl\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  button:hover .xxl\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  button:hover .xxl\:hover\:border-white {
    border-color: #fff !important;
  }
  button:hover .xxl\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .xxl\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .xxl\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .xxl\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .xxl\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  button:hover .xxl\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  button:hover .xxl\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  button:hover .xxl\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  button:hover .xxl\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  button:hover .xxl\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  button:hover .xxl\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  button:hover .xxl\:hover\:border-black {
    border-color: #000 !important;
  }
  button:hover .xxl\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  button:hover .xxl\:hover\:border-transparent {
    border-color: transparent !important;
  }
  button:hover .xxl\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  button:hover .xxl\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  button:hover .xxl\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  button:hover .xxl\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  button:hover .xxl\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  button:hover .xxl\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  button:hover .xxl\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  button:hover .xxl\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  button:hover .xxl\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .btn:hover .xxl\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  .btn:hover .xxl\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  .btn:hover .xxl\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .btn:hover .xxl\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .btn:hover .xxl\:hover\:border-blue {
    border-color: #008fce !important;
  }
  .btn:hover .xxl\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .btn:hover .xxl\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .btn:hover .xxl\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .btn:hover .xxl\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .btn:hover .xxl\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .btn:hover .xxl\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .btn:hover .xxl\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .btn:hover .xxl\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  .btn:hover .xxl\:hover\:border-green {
    border-color: #66a54a !important;
  }
  .btn:hover .xxl\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  .btn:hover .xxl\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .btn:hover .xxl\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .btn:hover .xxl\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .btn:hover .xxl\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .btn:hover .xxl\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  .btn:hover .xxl\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .btn:hover .xxl\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .btn:hover .xxl\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .btn:hover .xxl\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .btn:hover .xxl\:hover\:border-white {
    border-color: #fff !important;
  }
  .btn:hover .xxl\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .xxl\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .xxl\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .xxl\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .xxl\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .btn:hover .xxl\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .btn:hover .xxl\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  .btn:hover .xxl\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  .btn:hover .xxl\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  .btn:hover .xxl\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  .btn:hover .xxl\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  .btn:hover .xxl\:hover\:border-black {
    border-color: #000 !important;
  }
  .btn:hover .xxl\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .btn:hover .xxl\:hover\:border-transparent {
    border-color: transparent !important;
  }
  .btn:hover .xxl\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .btn:hover .xxl\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .btn:hover .xxl\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .btn:hover .xxl\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .btn:hover .xxl\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .btn:hover .xxl\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .btn:hover .xxl\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .btn:hover .xxl\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .btn:hover .xxl\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  input:hover .xxl\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  input:hover .xxl\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  input:hover .xxl\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  input:hover .xxl\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  input:hover .xxl\:hover\:border-blue {
    border-color: #008fce !important;
  }
  input:hover .xxl\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  input:hover .xxl\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  input:hover .xxl\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  input:hover .xxl\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  input:hover .xxl\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  input:hover .xxl\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  input:hover .xxl\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  input:hover .xxl\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  input:hover .xxl\:hover\:border-green {
    border-color: #66a54a !important;
  }
  input:hover .xxl\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  input:hover .xxl\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  input:hover .xxl\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  input:hover .xxl\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  input:hover .xxl\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  input:hover .xxl\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  input:hover .xxl\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  input:hover .xxl\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  input:hover .xxl\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  input:hover .xxl\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  input:hover .xxl\:hover\:border-white {
    border-color: #fff !important;
  }
  input:hover .xxl\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .xxl\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .xxl\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .xxl\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .xxl\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  input:hover .xxl\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  input:hover .xxl\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  input:hover .xxl\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  input:hover .xxl\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  input:hover .xxl\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  input:hover .xxl\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  input:hover .xxl\:hover\:border-black {
    border-color: #000 !important;
  }
  input:hover .xxl\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  input:hover .xxl\:hover\:border-transparent {
    border-color: transparent !important;
  }
  input:hover .xxl\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  input:hover .xxl\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  input:hover .xxl\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  input:hover .xxl\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  input:hover .xxl\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  input:hover .xxl\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  input:hover .xxl\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  input:hover .xxl\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  input:hover .xxl\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .xxl\:hover\:border-red:hover {
    border-color: #f12b3b !important;
  }
  .xxl\:hover\:border-dark-red:hover {
    border-color: #d2212f !important;
  }
  .xxl\:hover\:border-dark-blue:hover {
    border-color: #0273aa !important;
  }
  .xxl\:hover\:border-darker-blue:hover {
    border-color: #063b63 !important;
  }
  .xxl\:hover\:border-blue:hover {
    border-color: #008fce !important;
  }
  .xxl\:hover\:border-light-blue:hover {
    border-color: #4ba6ce !important;
  }
  .xxl\:hover\:border-lighter-blue:hover {
    border-color: #c4e5f4 !important;
  }
  .xxl\:hover\:border-lightest-blue:hover {
    border-color: #f1f7fa !important;
  }
  .xxl\:hover\:border-turquoise:hover {
    border-color: #86c6bb !important;
  }
  .xxl\:hover\:border-light-turquoise:hover {
    border-color: #a0d1c9 !important;
  }
  .xxl\:hover\:border-lightest-turquoise:hover {
    border-color: #eff4f3 !important;
  }
  .xxl\:hover\:border-darker-green:hover {
    border-color: #2f4f21 !important;
  }
  .xxl\:hover\:border-dark-green:hover {
    border-color: #456f32 !important;
  }
  .xxl\:hover\:border-green:hover {
    border-color: #66a54a !important;
  }
  .xxl\:hover\:border-light-green:hover {
    border-color: #77b65b !important;
  }
  .xxl\:hover\:border-lighter-green:hover {
    border-color: #c9e4bc !important;
  }
  .xxl\:hover\:border-lightest-green:hover {
    border-color: #eff6ec !important;
  }
  .xxl\:hover\:border-darker-yellow:hover {
    border-color: #483206 !important;
  }
  .xxl\:hover\:border-dark-yellow:hover {
    border-color: #b5862a !important;
  }
  .xxl\:hover\:border-yellow:hover {
    border-color: #f2b63f !important;
  }
  .xxl\:hover\:border-light-yellow:hover {
    border-color: #f5cd78 !important;
  }
  .xxl\:hover\:border-lighter-yellow:hover {
    border-color: #f8ecc5 !important;
  }
  .xxl\:hover\:border-lightest-yellow:hover {
    border-color: #faf9e7 !important;
  }
  .xxl\:hover\:border-beige:hover {
    border-color: #dbd3c9 !important;
  }
  .xxl\:hover\:border-white:hover {
    border-color: #fff !important;
  }
  .xxl\:hover\:border-white-opacity-02:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:hover\:border-white-opacity-03:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:hover\:border-white-opacity-05:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:hover\:border-white-opacity-07:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:hover\:border-lightest-grey:hover {
    border-color: #f3f3f3 !important;
  }
  .xxl\:hover\:border-lighter-grey:hover {
    border-color: #ddd !important;
  }
  .xxl\:hover\:border-light-grey:hover {
    border-color: #bbb !important;
  }
  .xxl\:hover\:border-grey:hover {
    border-color: #8e8e8e !important;
  }
  .xxl\:hover\:border-dark-grey:hover {
    border-color: #646464 !important;
  }
  .xxl\:hover\:border-darker-grey:hover {
    border-color: #444 !important;
  }
  .xxl\:hover\:border-darkest-grey:hover {
    border-color: #222 !important;
  }
  .xxl\:hover\:border-black:hover {
    border-color: #000 !important;
  }
  .xxl\:hover\:border-link--hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .xxl\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }
  .xxl\:hover\:border-clear:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .xxl\:hover\:border-lightest:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .xxl\:hover\:border-lighter:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .xxl\:hover\:border-light:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .xxl\:hover\:border-normal:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .xxl\:hover\:border-dark:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .xxl\:hover\:border-darker:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .xxl\:hover\:border-darkest:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .xxl\:hover\:border-opaque:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .xxl\:border-red\:hover:hover {
    border-color: #f12b3b !important;
  }
  .xxl\:border-dark-red\:hover:hover {
    border-color: #d2212f !important;
  }
  .xxl\:border-dark-blue\:hover:hover {
    border-color: #0273aa !important;
  }
  .xxl\:border-darker-blue\:hover:hover {
    border-color: #063b63 !important;
  }
  .xxl\:border-blue\:hover:hover {
    border-color: #008fce !important;
  }
  .xxl\:border-light-blue\:hover:hover {
    border-color: #4ba6ce !important;
  }
  .xxl\:border-lighter-blue\:hover:hover {
    border-color: #c4e5f4 !important;
  }
  .xxl\:border-lightest-blue\:hover:hover {
    border-color: #f1f7fa !important;
  }
  .xxl\:border-turquoise\:hover:hover {
    border-color: #86c6bb !important;
  }
  .xxl\:border-light-turquoise\:hover:hover {
    border-color: #a0d1c9 !important;
  }
  .xxl\:border-lightest-turquoise\:hover:hover {
    border-color: #eff4f3 !important;
  }
  .xxl\:border-darker-green\:hover:hover {
    border-color: #2f4f21 !important;
  }
  .xxl\:border-dark-green\:hover:hover {
    border-color: #456f32 !important;
  }
  .xxl\:border-green\:hover:hover {
    border-color: #66a54a !important;
  }
  .xxl\:border-light-green\:hover:hover {
    border-color: #77b65b !important;
  }
  .xxl\:border-lighter-green\:hover:hover {
    border-color: #c9e4bc !important;
  }
  .xxl\:border-lightest-green\:hover:hover {
    border-color: #eff6ec !important;
  }
  .xxl\:border-darker-yellow\:hover:hover {
    border-color: #483206 !important;
  }
  .xxl\:border-dark-yellow\:hover:hover {
    border-color: #b5862a !important;
  }
  .xxl\:border-yellow\:hover:hover {
    border-color: #f2b63f !important;
  }
  .xxl\:border-light-yellow\:hover:hover {
    border-color: #f5cd78 !important;
  }
  .xxl\:border-lighter-yellow\:hover:hover {
    border-color: #f8ecc5 !important;
  }
  .xxl\:border-lightest-yellow\:hover:hover {
    border-color: #faf9e7 !important;
  }
  .xxl\:border-beige\:hover:hover {
    border-color: #dbd3c9 !important;
  }
  .xxl\:border-white\:hover:hover {
    border-color: #fff !important;
  }
  .xxl\:border-white-opacity-02\:hover:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .xxl\:border-white-opacity-03\:hover:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .xxl\:border-white-opacity-05\:hover:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .xxl\:border-white-opacity-07\:hover:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .xxl\:border-lightest-grey\:hover:hover {
    border-color: #f3f3f3 !important;
  }
  .xxl\:border-lighter-grey\:hover:hover {
    border-color: #ddd !important;
  }
  .xxl\:border-light-grey\:hover:hover {
    border-color: #bbb !important;
  }
  .xxl\:border-grey\:hover:hover {
    border-color: #8e8e8e !important;
  }
  .xxl\:border-dark-grey\:hover:hover {
    border-color: #646464 !important;
  }
  .xxl\:border-darker-grey\:hover:hover {
    border-color: #444 !important;
  }
  .xxl\:border-darkest-grey\:hover:hover {
    border-color: #222 !important;
  }
  .xxl\:border-black\:hover:hover {
    border-color: #000 !important;
  }
  .xxl\:border-link--hover\:hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .xxl\:border-transparent\:hover:hover {
    border-color: transparent !important;
  }
  .xxl\:border-clear\:hover:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .xxl\:border-lightest\:hover:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .xxl\:border-lighter\:hover:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .xxl\:border-light\:hover:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .xxl\:border-normal\:hover:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .xxl\:border-dark\:hover:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .xxl\:border-darker\:hover:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .xxl\:border-darkest\:hover:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .xxl\:border-opaque\:hover:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:border-red {
    border-color: #f12b3b !important;
  }
  .max\:border-dark-red {
    border-color: #d2212f !important;
  }
  .max\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .max\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .max\:border-blue {
    border-color: #008fce !important;
  }
  .max\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .max\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .max\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .max\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .max\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .max\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .max\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .max\:border-dark-green {
    border-color: #456f32 !important;
  }
  .max\:border-green {
    border-color: #66a54a !important;
  }
  .max\:border-light-green {
    border-color: #77b65b !important;
  }
  .max\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .max\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .max\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .max\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .max\:border-yellow {
    border-color: #f2b63f !important;
  }
  .max\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .max\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .max\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .max\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .max\:border-white {
    border-color: #fff !important;
  }
  .max\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .max\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .max\:border-light-grey {
    border-color: #bbb !important;
  }
  .max\:border-grey {
    border-color: #8e8e8e !important;
  }
  .max\:border-dark-grey {
    border-color: #646464 !important;
  }
  .max\:border-darker-grey {
    border-color: #444 !important;
  }
  .max\:border-darkest-grey {
    border-color: #222 !important;
  }
  .max\:border-black {
    border-color: #000 !important;
  }
  .max\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .max\:border-transparent {
    border-color: transparent !important;
  }
  .max\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .max\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .max\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .max\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .max\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .max\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .max\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .max\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .max\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  a:hover .max\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  a:hover .max\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  a:hover .max\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  a:hover .max\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  a:hover .max\:hover\:border-blue {
    border-color: #008fce !important;
  }
  a:hover .max\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  a:hover .max\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  a:hover .max\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  a:hover .max\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  a:hover .max\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  a:hover .max\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  a:hover .max\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  a:hover .max\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  a:hover .max\:hover\:border-green {
    border-color: #66a54a !important;
  }
  a:hover .max\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  a:hover .max\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  a:hover .max\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  a:hover .max\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  a:hover .max\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  a:hover .max\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  a:hover .max\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  a:hover .max\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  a:hover .max\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  a:hover .max\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  a:hover .max\:hover\:border-white {
    border-color: #fff !important;
  }
  a:hover .max\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  a:hover .max\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  a:hover .max\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  a:hover .max\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  a:hover .max\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  a:hover .max\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  a:hover .max\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  a:hover .max\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  a:hover .max\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  a:hover .max\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  a:hover .max\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  a:hover .max\:hover\:border-black {
    border-color: #000 !important;
  }
  a:hover .max\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  a:hover .max\:hover\:border-transparent {
    border-color: transparent !important;
  }
  a:hover .max\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  a:hover .max\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  a:hover .max\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  a:hover .max\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  a:hover .max\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  a:hover .max\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  a:hover .max\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  a:hover .max\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  a:hover .max\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  button:hover .max\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  button:hover .max\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  button:hover .max\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  button:hover .max\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  button:hover .max\:hover\:border-blue {
    border-color: #008fce !important;
  }
  button:hover .max\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  button:hover .max\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  button:hover .max\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  button:hover .max\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  button:hover .max\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  button:hover .max\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  button:hover .max\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  button:hover .max\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  button:hover .max\:hover\:border-green {
    border-color: #66a54a !important;
  }
  button:hover .max\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  button:hover .max\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  button:hover .max\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  button:hover .max\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  button:hover .max\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  button:hover .max\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  button:hover .max\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  button:hover .max\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  button:hover .max\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  button:hover .max\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  button:hover .max\:hover\:border-white {
    border-color: #fff !important;
  }
  button:hover .max\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  button:hover .max\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  button:hover .max\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  button:hover .max\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  button:hover .max\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  button:hover .max\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  button:hover .max\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  button:hover .max\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  button:hover .max\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  button:hover .max\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  button:hover .max\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  button:hover .max\:hover\:border-black {
    border-color: #000 !important;
  }
  button:hover .max\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  button:hover .max\:hover\:border-transparent {
    border-color: transparent !important;
  }
  button:hover .max\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  button:hover .max\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  button:hover .max\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  button:hover .max\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  button:hover .max\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  button:hover .max\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  button:hover .max\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  button:hover .max\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  button:hover .max\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .btn:hover .max\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  .btn:hover .max\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  .btn:hover .max\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  .btn:hover .max\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  .btn:hover .max\:hover\:border-blue {
    border-color: #008fce !important;
  }
  .btn:hover .max\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  .btn:hover .max\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  .btn:hover .max\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  .btn:hover .max\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  .btn:hover .max\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  .btn:hover .max\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  .btn:hover .max\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  .btn:hover .max\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  .btn:hover .max\:hover\:border-green {
    border-color: #66a54a !important;
  }
  .btn:hover .max\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  .btn:hover .max\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  .btn:hover .max\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  .btn:hover .max\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  .btn:hover .max\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  .btn:hover .max\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  .btn:hover .max\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  .btn:hover .max\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  .btn:hover .max\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  .btn:hover .max\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  .btn:hover .max\:hover\:border-white {
    border-color: #fff !important;
  }
  .btn:hover .max\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .btn:hover .max\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .btn:hover .max\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .btn:hover .max\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .btn:hover .max\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  .btn:hover .max\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  .btn:hover .max\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  .btn:hover .max\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  .btn:hover .max\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  .btn:hover .max\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  .btn:hover .max\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  .btn:hover .max\:hover\:border-black {
    border-color: #000 !important;
  }
  .btn:hover .max\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .btn:hover .max\:hover\:border-transparent {
    border-color: transparent !important;
  }
  .btn:hover .max\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .btn:hover .max\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .btn:hover .max\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .btn:hover .max\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .btn:hover .max\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .btn:hover .max\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .btn:hover .max\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .btn:hover .max\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .btn:hover .max\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  input:hover .max\:hover\:border-red {
    border-color: #f12b3b !important;
  }
  input:hover .max\:hover\:border-dark-red {
    border-color: #d2212f !important;
  }
  input:hover .max\:hover\:border-dark-blue {
    border-color: #0273aa !important;
  }
  input:hover .max\:hover\:border-darker-blue {
    border-color: #063b63 !important;
  }
  input:hover .max\:hover\:border-blue {
    border-color: #008fce !important;
  }
  input:hover .max\:hover\:border-light-blue {
    border-color: #4ba6ce !important;
  }
  input:hover .max\:hover\:border-lighter-blue {
    border-color: #c4e5f4 !important;
  }
  input:hover .max\:hover\:border-lightest-blue {
    border-color: #f1f7fa !important;
  }
  input:hover .max\:hover\:border-turquoise {
    border-color: #86c6bb !important;
  }
  input:hover .max\:hover\:border-light-turquoise {
    border-color: #a0d1c9 !important;
  }
  input:hover .max\:hover\:border-lightest-turquoise {
    border-color: #eff4f3 !important;
  }
  input:hover .max\:hover\:border-darker-green {
    border-color: #2f4f21 !important;
  }
  input:hover .max\:hover\:border-dark-green {
    border-color: #456f32 !important;
  }
  input:hover .max\:hover\:border-green {
    border-color: #66a54a !important;
  }
  input:hover .max\:hover\:border-light-green {
    border-color: #77b65b !important;
  }
  input:hover .max\:hover\:border-lighter-green {
    border-color: #c9e4bc !important;
  }
  input:hover .max\:hover\:border-lightest-green {
    border-color: #eff6ec !important;
  }
  input:hover .max\:hover\:border-darker-yellow {
    border-color: #483206 !important;
  }
  input:hover .max\:hover\:border-dark-yellow {
    border-color: #b5862a !important;
  }
  input:hover .max\:hover\:border-yellow {
    border-color: #f2b63f !important;
  }
  input:hover .max\:hover\:border-light-yellow {
    border-color: #f5cd78 !important;
  }
  input:hover .max\:hover\:border-lighter-yellow {
    border-color: #f8ecc5 !important;
  }
  input:hover .max\:hover\:border-lightest-yellow {
    border-color: #faf9e7 !important;
  }
  input:hover .max\:hover\:border-beige {
    border-color: #dbd3c9 !important;
  }
  input:hover .max\:hover\:border-white {
    border-color: #fff !important;
  }
  input:hover .max\:hover\:border-white-opacity-02 {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  input:hover .max\:hover\:border-white-opacity-03 {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  input:hover .max\:hover\:border-white-opacity-05 {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  input:hover .max\:hover\:border-white-opacity-07 {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  input:hover .max\:hover\:border-lightest-grey {
    border-color: #f3f3f3 !important;
  }
  input:hover .max\:hover\:border-lighter-grey {
    border-color: #ddd !important;
  }
  input:hover .max\:hover\:border-light-grey {
    border-color: #bbb !important;
  }
  input:hover .max\:hover\:border-grey {
    border-color: #8e8e8e !important;
  }
  input:hover .max\:hover\:border-dark-grey {
    border-color: #646464 !important;
  }
  input:hover .max\:hover\:border-darker-grey {
    border-color: #444 !important;
  }
  input:hover .max\:hover\:border-darkest-grey {
    border-color: #222 !important;
  }
  input:hover .max\:hover\:border-black {
    border-color: #000 !important;
  }
  input:hover .max\:hover\:border-link--hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  input:hover .max\:hover\:border-transparent {
    border-color: transparent !important;
  }
  input:hover .max\:hover\:border-clear {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  input:hover .max\:hover\:border-lightest {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  input:hover .max\:hover\:border-lighter {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  input:hover .max\:hover\:border-light {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  input:hover .max\:hover\:border-normal {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  input:hover .max\:hover\:border-dark {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  input:hover .max\:hover\:border-darker {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  input:hover .max\:hover\:border-darkest {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  input:hover .max\:hover\:border-opaque {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .max\:hover\:border-red:hover {
    border-color: #f12b3b !important;
  }
  .max\:hover\:border-dark-red:hover {
    border-color: #d2212f !important;
  }
  .max\:hover\:border-dark-blue:hover {
    border-color: #0273aa !important;
  }
  .max\:hover\:border-darker-blue:hover {
    border-color: #063b63 !important;
  }
  .max\:hover\:border-blue:hover {
    border-color: #008fce !important;
  }
  .max\:hover\:border-light-blue:hover {
    border-color: #4ba6ce !important;
  }
  .max\:hover\:border-lighter-blue:hover {
    border-color: #c4e5f4 !important;
  }
  .max\:hover\:border-lightest-blue:hover {
    border-color: #f1f7fa !important;
  }
  .max\:hover\:border-turquoise:hover {
    border-color: #86c6bb !important;
  }
  .max\:hover\:border-light-turquoise:hover {
    border-color: #a0d1c9 !important;
  }
  .max\:hover\:border-lightest-turquoise:hover {
    border-color: #eff4f3 !important;
  }
  .max\:hover\:border-darker-green:hover {
    border-color: #2f4f21 !important;
  }
  .max\:hover\:border-dark-green:hover {
    border-color: #456f32 !important;
  }
  .max\:hover\:border-green:hover {
    border-color: #66a54a !important;
  }
  .max\:hover\:border-light-green:hover {
    border-color: #77b65b !important;
  }
  .max\:hover\:border-lighter-green:hover {
    border-color: #c9e4bc !important;
  }
  .max\:hover\:border-lightest-green:hover {
    border-color: #eff6ec !important;
  }
  .max\:hover\:border-darker-yellow:hover {
    border-color: #483206 !important;
  }
  .max\:hover\:border-dark-yellow:hover {
    border-color: #b5862a !important;
  }
  .max\:hover\:border-yellow:hover {
    border-color: #f2b63f !important;
  }
  .max\:hover\:border-light-yellow:hover {
    border-color: #f5cd78 !important;
  }
  .max\:hover\:border-lighter-yellow:hover {
    border-color: #f8ecc5 !important;
  }
  .max\:hover\:border-lightest-yellow:hover {
    border-color: #faf9e7 !important;
  }
  .max\:hover\:border-beige:hover {
    border-color: #dbd3c9 !important;
  }
  .max\:hover\:border-white:hover {
    border-color: #fff !important;
  }
  .max\:hover\:border-white-opacity-02:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:hover\:border-white-opacity-03:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:hover\:border-white-opacity-05:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:hover\:border-white-opacity-07:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:hover\:border-lightest-grey:hover {
    border-color: #f3f3f3 !important;
  }
  .max\:hover\:border-lighter-grey:hover {
    border-color: #ddd !important;
  }
  .max\:hover\:border-light-grey:hover {
    border-color: #bbb !important;
  }
  .max\:hover\:border-grey:hover {
    border-color: #8e8e8e !important;
  }
  .max\:hover\:border-dark-grey:hover {
    border-color: #646464 !important;
  }
  .max\:hover\:border-darker-grey:hover {
    border-color: #444 !important;
  }
  .max\:hover\:border-darkest-grey:hover {
    border-color: #222 !important;
  }
  .max\:hover\:border-black:hover {
    border-color: #000 !important;
  }
  .max\:hover\:border-link--hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .max\:hover\:border-transparent:hover {
    border-color: transparent !important;
  }
  .max\:hover\:border-clear:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .max\:hover\:border-lightest:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .max\:hover\:border-lighter:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .max\:hover\:border-light:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .max\:hover\:border-normal:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .max\:hover\:border-dark:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .max\:hover\:border-darker:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .max\:hover\:border-darkest:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .max\:hover\:border-opaque:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
  .max\:border-red\:hover:hover {
    border-color: #f12b3b !important;
  }
  .max\:border-dark-red\:hover:hover {
    border-color: #d2212f !important;
  }
  .max\:border-dark-blue\:hover:hover {
    border-color: #0273aa !important;
  }
  .max\:border-darker-blue\:hover:hover {
    border-color: #063b63 !important;
  }
  .max\:border-blue\:hover:hover {
    border-color: #008fce !important;
  }
  .max\:border-light-blue\:hover:hover {
    border-color: #4ba6ce !important;
  }
  .max\:border-lighter-blue\:hover:hover {
    border-color: #c4e5f4 !important;
  }
  .max\:border-lightest-blue\:hover:hover {
    border-color: #f1f7fa !important;
  }
  .max\:border-turquoise\:hover:hover {
    border-color: #86c6bb !important;
  }
  .max\:border-light-turquoise\:hover:hover {
    border-color: #a0d1c9 !important;
  }
  .max\:border-lightest-turquoise\:hover:hover {
    border-color: #eff4f3 !important;
  }
  .max\:border-darker-green\:hover:hover {
    border-color: #2f4f21 !important;
  }
  .max\:border-dark-green\:hover:hover {
    border-color: #456f32 !important;
  }
  .max\:border-green\:hover:hover {
    border-color: #66a54a !important;
  }
  .max\:border-light-green\:hover:hover {
    border-color: #77b65b !important;
  }
  .max\:border-lighter-green\:hover:hover {
    border-color: #c9e4bc !important;
  }
  .max\:border-lightest-green\:hover:hover {
    border-color: #eff6ec !important;
  }
  .max\:border-darker-yellow\:hover:hover {
    border-color: #483206 !important;
  }
  .max\:border-dark-yellow\:hover:hover {
    border-color: #b5862a !important;
  }
  .max\:border-yellow\:hover:hover {
    border-color: #f2b63f !important;
  }
  .max\:border-light-yellow\:hover:hover {
    border-color: #f5cd78 !important;
  }
  .max\:border-lighter-yellow\:hover:hover {
    border-color: #f8ecc5 !important;
  }
  .max\:border-lightest-yellow\:hover:hover {
    border-color: #faf9e7 !important;
  }
  .max\:border-beige\:hover:hover {
    border-color: #dbd3c9 !important;
  }
  .max\:border-white\:hover:hover {
    border-color: #fff !important;
  }
  .max\:border-white-opacity-02\:hover:hover {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .max\:border-white-opacity-03\:hover:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .max\:border-white-opacity-05\:hover:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
  }
  .max\:border-white-opacity-07\:hover:hover {
    border-color: rgba(255, 255, 255, 0.7) !important;
  }
  .max\:border-lightest-grey\:hover:hover {
    border-color: #f3f3f3 !important;
  }
  .max\:border-lighter-grey\:hover:hover {
    border-color: #ddd !important;
  }
  .max\:border-light-grey\:hover:hover {
    border-color: #bbb !important;
  }
  .max\:border-grey\:hover:hover {
    border-color: #8e8e8e !important;
  }
  .max\:border-dark-grey\:hover:hover {
    border-color: #646464 !important;
  }
  .max\:border-darker-grey\:hover:hover {
    border-color: #444 !important;
  }
  .max\:border-darkest-grey\:hover:hover {
    border-color: #222 !important;
  }
  .max\:border-black\:hover:hover {
    border-color: #000 !important;
  }
  .max\:border-link--hover\:hover:hover {
    border-color: #008fce !important;
    border-color: var(--txt-link--hover) !important;
  }
  .max\:border-transparent\:hover:hover {
    border-color: transparent !important;
  }
  .max\:border-clear\:hover:hover {
    border-color: #fff !important;
    border-color: var(--border-clear) !important;
  }
  .max\:border-lightest\:hover:hover {
    border-color: #f3f3f3 !important;
    border-color: var(--border-lightest) !important;
  }
  .max\:border-lighter\:hover:hover {
    border-color: #ddd !important;
    border-color: var(--border-lighter) !important;
  }
  .max\:border-light\:hover:hover {
    border-color: #bbb !important;
    border-color: var(--border-light) !important;
  }
  .max\:border-normal\:hover:hover {
    border-color: #8e8e8e !important;
    border-color: var(--border-grey) !important;
  }
  .max\:border-dark\:hover:hover {
    border-color: #646464 !important;
    border-color: var(--border-dark) !important;
  }
  .max\:border-darker\:hover:hover {
    border-color: #444 !important;
    border-color: var(--border-darker) !important;
  }
  .max\:border-darkest\:hover:hover {
    border-color: #222 !important;
    border-color: var(--border-darkest) !important;
  }
  .max\:border-opaque\:hover:hover {
    border-color: #000 !important;
    border-color: var(--border-opaque) !important;
  }
}
/* OPACITY */
/*
.opacity-0 { opacity: 0; }
.opacity-03 { opacity: .3; }
.opacity-05 { opacity: .5; }
.opacity-07 { opacity: .7; }
.opacity-1 { opacity: 1; }*/
.opacity-0 {
  opacity: 0 !important;
}

.opacity-01 {
  opacity: 0.1 !important;
}

.opacity-02 {
  opacity: 0.2 !important;
}

.opacity-03 {
  opacity: 0.3 !important;
}

.opacity-05 {
  opacity: 0.5 !important;
}

.opacity-06 {
  opacity: 0.6 !important;
}

.opacity-07 {
  opacity: 0.7 !important;
}

.opacity-08 {
  opacity: 0.8 !important;
}

.opacity-09 {
  opacity: 0.9 !important;
}

.opacity-1 {
  opacity: 1 !important;
}

@media screen and (min-width: 360px) {
  .xs\:opacity-0 {
    opacity: 0 !important;
  }
  .xs\:opacity-01 {
    opacity: 0.1 !important;
  }
  .xs\:opacity-02 {
    opacity: 0.2 !important;
  }
  .xs\:opacity-03 {
    opacity: 0.3 !important;
  }
  .xs\:opacity-05 {
    opacity: 0.5 !important;
  }
  .xs\:opacity-06 {
    opacity: 0.6 !important;
  }
  .xs\:opacity-07 {
    opacity: 0.7 !important;
  }
  .xs\:opacity-08 {
    opacity: 0.8 !important;
  }
  .xs\:opacity-09 {
    opacity: 0.9 !important;
  }
  .xs\:opacity-1 {
    opacity: 1 !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:opacity-0 {
    opacity: 0 !important;
  }
  .sm\:opacity-01 {
    opacity: 0.1 !important;
  }
  .sm\:opacity-02 {
    opacity: 0.2 !important;
  }
  .sm\:opacity-03 {
    opacity: 0.3 !important;
  }
  .sm\:opacity-05 {
    opacity: 0.5 !important;
  }
  .sm\:opacity-06 {
    opacity: 0.6 !important;
  }
  .sm\:opacity-07 {
    opacity: 0.7 !important;
  }
  .sm\:opacity-08 {
    opacity: 0.8 !important;
  }
  .sm\:opacity-09 {
    opacity: 0.9 !important;
  }
  .sm\:opacity-1 {
    opacity: 1 !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:opacity-0 {
    opacity: 0 !important;
  }
  .md\:opacity-01 {
    opacity: 0.1 !important;
  }
  .md\:opacity-02 {
    opacity: 0.2 !important;
  }
  .md\:opacity-03 {
    opacity: 0.3 !important;
  }
  .md\:opacity-05 {
    opacity: 0.5 !important;
  }
  .md\:opacity-06 {
    opacity: 0.6 !important;
  }
  .md\:opacity-07 {
    opacity: 0.7 !important;
  }
  .md\:opacity-08 {
    opacity: 0.8 !important;
  }
  .md\:opacity-09 {
    opacity: 0.9 !important;
  }
  .md\:opacity-1 {
    opacity: 1 !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:opacity-0 {
    opacity: 0 !important;
  }
  .lg\:opacity-01 {
    opacity: 0.1 !important;
  }
  .lg\:opacity-02 {
    opacity: 0.2 !important;
  }
  .lg\:opacity-03 {
    opacity: 0.3 !important;
  }
  .lg\:opacity-05 {
    opacity: 0.5 !important;
  }
  .lg\:opacity-06 {
    opacity: 0.6 !important;
  }
  .lg\:opacity-07 {
    opacity: 0.7 !important;
  }
  .lg\:opacity-08 {
    opacity: 0.8 !important;
  }
  .lg\:opacity-09 {
    opacity: 0.9 !important;
  }
  .lg\:opacity-1 {
    opacity: 1 !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:opacity-0 {
    opacity: 0 !important;
  }
  .xl\:opacity-01 {
    opacity: 0.1 !important;
  }
  .xl\:opacity-02 {
    opacity: 0.2 !important;
  }
  .xl\:opacity-03 {
    opacity: 0.3 !important;
  }
  .xl\:opacity-05 {
    opacity: 0.5 !important;
  }
  .xl\:opacity-06 {
    opacity: 0.6 !important;
  }
  .xl\:opacity-07 {
    opacity: 0.7 !important;
  }
  .xl\:opacity-08 {
    opacity: 0.8 !important;
  }
  .xl\:opacity-09 {
    opacity: 0.9 !important;
  }
  .xl\:opacity-1 {
    opacity: 1 !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:opacity-0 {
    opacity: 0 !important;
  }
  .xxl\:opacity-01 {
    opacity: 0.1 !important;
  }
  .xxl\:opacity-02 {
    opacity: 0.2 !important;
  }
  .xxl\:opacity-03 {
    opacity: 0.3 !important;
  }
  .xxl\:opacity-05 {
    opacity: 0.5 !important;
  }
  .xxl\:opacity-06 {
    opacity: 0.6 !important;
  }
  .xxl\:opacity-07 {
    opacity: 0.7 !important;
  }
  .xxl\:opacity-08 {
    opacity: 0.8 !important;
  }
  .xxl\:opacity-09 {
    opacity: 0.9 !important;
  }
  .xxl\:opacity-1 {
    opacity: 1 !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:opacity-0 {
    opacity: 0 !important;
  }
  .max\:opacity-01 {
    opacity: 0.1 !important;
  }
  .max\:opacity-02 {
    opacity: 0.2 !important;
  }
  .max\:opacity-03 {
    opacity: 0.3 !important;
  }
  .max\:opacity-05 {
    opacity: 0.5 !important;
  }
  .max\:opacity-06 {
    opacity: 0.6 !important;
  }
  .max\:opacity-07 {
    opacity: 0.7 !important;
  }
  .max\:opacity-08 {
    opacity: 0.8 !important;
  }
  .max\:opacity-09 {
    opacity: 0.9 !important;
  }
  .max\:opacity-1 {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 420px) {
  .max-sm\:opacity-1 {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 650px) {
  .max-md\:opacity-1 {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 950px) {
  .max-lg\:opacity-1 {
    opacity: 1 !important;
  }
}
/* FADES */
.fade--inset,
.fade\:before:before,
.fade--left\:before,
.fade\:after:after,
.fade--bottom\:after:after,
.fade--right\:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  pointer-events: none;
}

.fade\:before:before,
.fade--left\:before:before,
.fade\:after:after,
.fade--right\:after:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
}

.fade\:before:before,
.fade--white\:before:before,
.fade--white-solid\:before:before {
  top: 0;
  left: 0;
  right: 0;
  height: 2rem;
  background: linear-gradient(top, transparent, rgba(0, 0, 0, 0.3)); /* Standard syntax */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent); /* IE ? */
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.3), transparent); /* IE 11 */
}

.fade--white\:before:before {
  background: linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3)); /* Standard syntax */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)); /* IE ? */
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)); /* IE 11 */
}

.fade--white-solid\:before:before {
  background: linear-gradient(top, rgba(255, 255, 255, 0), #fff); /* Standard syntax */
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0)); /* IE ? */
  background: -ms-linear-gradient(top, #fff, rgba(255, 255, 255, 0)); /* IE 11 */
}

.fade--left\:before:before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 2rem;
  background: linear-gradient(left, transparent, rgba(0, 0, 0, 0.3)); /* Standard syntax */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent); /* IE ? */
  background: -ms-linear-gradient(left, rgba(0, 0, 0, 0.3), transparent); /* IE 11 */
}

.fade\:after:after,
.fade-solid\:after:after,
.fade-solid-dark\:after:after,
.fade--white\:after:after,
.fade--white-solid\:after:after,
.fade--lightest-grey-solid\:after:after,
.fade--lightest-grey-solid\:after:after {
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2rem;
  opacity: 1;
  transition: opacity 300ms;
  background: linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.3)); /* Standard syntax */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent); /* IE ? */
  background: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.3), transparent); /* IE 11 */
}

.fade-solid\:after:after {
  background: linear-gradient(bottom, rgba(0, 0, 0, 0), #000); /* Standard syntax */
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); /* IE ? */
  background: -ms-linear-gradient(bottom, #000, rgba(0, 0, 0, 0)); /* IE 11 */
}

.fade-solid-dark\:after:after {
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); /* IE ? */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.8) 70%, #000 100%); /* Standard syntax */
  background: -ms-linear-gradient(bottom, #000, rgba(0, 0, 0, 0)); /* IE 11 */
}

.fade--white\:after:after {
  background: linear-gradient(bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3)); /* Standard syntax */
  background: linear-gradient(to top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)); /* IE ? */
  background: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)); /* IE 11 */
}

.fade--white-solid\:after:after {
  background: linear-gradient(bottom, rgba(255, 255, 255, 0), #fff); /* Standard syntax */
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0)); /* IE ? */
  background: -ms-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0)); /* IE 11 */
}

.fade--lightest-grey-solid\:after:after {
  background: linear-gradient(bottom, rgba(243, 243, 243, 0), #f3f3f3); /* Standard syntax */
  background: linear-gradient(to top, #f3f3f3, rgba(243, 243, 243, 0)); /* IE ? */
  background: -ms-linear-gradient(bottom, #f3f3f3, rgba(243, 243, 243, 0)); /* IE 11 */
}

.fade--right\:after:after {
  top: 0;
  bottom: 0;
  right: 0;
  width: 2rem;
  background: linear-gradient(right, transparent, rgba(0, 0, 0, 0.3)); /* Standard syntax */
  background: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent); /* IE ? */
  background: -ms-linear-gradient(right, rgba(0, 0, 0, 0.3), transparent); /* IE 11 */
}

.fade--hide\:after:after {
  opacity: 0;
}

.fade--none\:after:after {
  display: none !important;
}

.fade--inset {
  box-shadow: inset 0px -50px 100px 50px #fff;
  width: auto;
  right: 0;
}

@media screen and (min-width: 420px) {
  .sm\:fade--inset,
  .sm\:fade\:before:before,
  .sm\:fade\:after:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    pointer-events: none;
  }
  .sm\:fade\:before:before,
  .sm\:fade\:after:after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
  }
  .sm\:fade\:after:after {
    top: auto;
  }
  .sm\:fade-solid\:after:after {
    background: linear-gradient(bottom, rgba(0, 0, 0, 0), #000); /* Standard syntax */
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); /* IE ? */
    background: -ms-linear-gradient(bottom, #000, rgba(0, 0, 0, 0)); /* IE 11 */
  }
  .sm\:fade-solid-dark\:after:after {
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); /* IE ? */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 10%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.8) 70%, #000 100%); /* Standard syntax */
    background: -ms-linear-gradient(bottom, #000, rgba(0, 0, 0, 0)); /* IE 11 */
  }
  .sm\:fade--white-solid\:after:after {
    background: linear-gradient(bottom, rgba(255, 255, 255, 0), #fff); /* Standard syntax */
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0)); /* IE ? */
    background: -ms-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0)); /* IE 11 */
  }
  .sm\:fade--hide\:after:after {
    opacity: 0;
  }
  .sm\:fade--none\:after:after {
    display: none !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:fade\:after:after {
    top: auto;
  }
  .md\:fade--white-solid\:after:after {
    background: linear-gradient(bottom, rgba(255, 255, 255, 0), #fff); /* Standard syntax */
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0)); /* IE ? */
    background: -ms-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0)); /* IE 11 */
  }
  .md\:fade--hide\:after:after {
    opacity: 0;
  }
  .md\:fade--none\:after:after {
    display: none !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:fade\:after:after {
    top: auto;
  }
  .lg\:fade--white-solid\:after:after {
    background: linear-gradient(bottom, rgba(255, 255, 255, 0), #fff); /* Standard syntax */
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0)); /* IE ? */
    background: -ms-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0)); /* IE 11 */
  }
  .lg\:fade--hide\:after:after {
    opacity: 0;
  }
  .lg\:fade--none\:after:after {
    display: none !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:fade\:after:after {
    top: auto;
  }
  .xl\:fade--white-solid\:after:after {
    background: linear-gradient(bottom, rgba(255, 255, 255, 0), #fff); /* Standard syntax */
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0)); /* IE ? */
    background: -ms-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0)); /* IE 11 */
  }
  .xl\:fade--hide\:after:after {
    opacity: 0;
  }
  .xl\:fade--none\:after:after {
    display: none !important;
  }
}
/* IE11 hack */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .theme-grey {
    background-color: #fff;
  }
  .theme-grey.bg-lightest, .theme-grey .bg-lightest {
    background-color: #f3f3f3 !important;
  }
  .theme-grey.bg-normal, .theme-grey .bg-normal {
    background-color: #8e8e8e !important;
  }
  .theme-grey.txt-lighter, .theme-grey .txt-lighter {
    color: #ddd !important;
  }
  .theme-turquiose {
    background-color: #eff4f3;
  }
  .theme-turquiose.bg-lightest, .theme-turquiose .bg-lightest {
    background-color: #eff4f3 !important;
  }
  .theme-turquiose.bg-normal, .theme-turquiose .bg-normal {
    background-color: #86c6bb !important;
  }
  .theme-turquiose.txt-lighter, .theme-turquiose .txt-lighter {
    color: #ddd !important;
  }
  .theme-blue {
    background-color: #f1f7fa;
  }
  .theme-blue.bg-lightest, .theme-blue .bg-lightest {
    background-color: #f1f7fa !important;
  }
  .theme-blue.bg-normal, .theme-blue .bg-normal {
    background-color: #008fce !important;
  }
  .theme-blue.txt-lighter, .theme-blue .txt-lighter {
    color: #008fce !important;
  }
  .theme-yellow {
    background-color: #faf9e7;
  }
  .theme-yellow.bg-lightest, .theme-yellow .bg-lightest {
    background-color: #faf9e7 !important;
  }
  .theme-yellow.bg-normal, .theme-yellow .bg-normal {
    background-color: #f2b63f !important;
  }
  .theme-yellow.txt-lighter, .theme-yellow .txt-lighter {
    color: #b5862a !important;
  }
  .theme-green {
    background-color: #eff6ec;
  }
  .theme-green.bg-lightest, .theme-green .bg-lightest {
    background-color: #eff6ec !important;
  }
  .theme-green.bg-normal, .theme-green .bg-normal {
    background-color: #66a54a !important;
  }
  .theme-green.txt-lighter, .theme-green .txt-lighter {
    color: #66a54a !important;
  }
  .theme-red {
    background-color: #f5f0f0;
  }
  .theme-red.bg-lightest, .theme-red .bg-lightest {
    background-color: #f5f0f0 !important;
  }
  .theme-red.bg-normal, .theme-red .bg-normal {
    background-color: #f12b3b !important;
  }
  .theme-red.txt-lighter, .theme-red .txt-lighter {
    color: #f12b3b !important;
  }
}
label {
  color: #8e8e8e;
  color: var(--txt-darkest);
}

label:hover {
  color: #008fce;
  color: var(--txt-link--hover);
}

form label {
  display: block;
  margin-top: 1rem;
  text-transform: uppercase;
}

button,
input,
select,
textarea {
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

input:not([type=button]):not([type=submit]):not(.btn) {
  background-color: #bbb;
  background-color: var(--bg-lightest);
  padding: 0.4em 0.5em 0.35em;
}

.select-container,
.input-container,
select,
button,
input,
input[type=button],
input[type=submit],
.btn {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 4px;
  padding: 0.4em 0.5em 0.45em;
  cursor: pointer;
  line-height: 1.5;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
}

.select-container:hover,
.input-container:hover,
select:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover,
textarea:hover,
.btn:hover {
  text-decoration: none !important;
}
.select-container:first-child,
.input-container:first-child,
select:first-child,
button:first-child,
input[type=button]:first-child,
input[type=submit]:first-child,
textarea:first-child,
.btn:first-child {
  margin-top: 0;
}
.select-container:last-child,
.input-container:last-child,
select:last-child,
button:last-child,
input[type=button]:last-child,
input[type=submit]:last-child,
textarea:last-child,
.btn:last-child {
  margin-bottom: 0;
}
.select-container:not(.icon):not(.btn--no-icon):after,
.input-container:not(.icon):not(.btn--no-icon):after,
select:not(.icon):not(.btn--no-icon):after,
button:not(.icon):not(.btn--no-icon):after,
input[type=button]:not(.icon):not(.btn--no-icon):after,
input[type=submit]:not(.icon):not(.btn--no-icon):after,
textarea:not(.icon):not(.btn--no-icon):after,
.btn:not(.icon):not(.btn--no-icon):after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -0.225em;
  width: 1.5em;
  background: transparent url("../img/icon-arrow-down-black.svg") no-repeat center center;
  background-size: contain;
  transform-origin: center center;
  transform: rotate(-90deg);
  height: 0.45em;
}

/*
.input-container:after,
input:not([type=button]):not([type=submit]):after {
	display: none !important;
}*/
.select-container:not(.icon):not(.btn--no-icon):after {
  transform: none;
}

button:not(.btn--outline),
input[type=button]:not(.btn--outline),
input[type=submit]:not(.btn--outline),
.btn:not(.btn--outline) {
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}

select {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

textarea {
  width: 100%;
  min-height: 5em;
}

.btn {
  display: inline-block;
  min-width: 10em;
  width: 70%;
  max-width: 17em;
  text-align: center;
  padding-right: 1.3em;
}
.btn--big {
  padding: 1em 2.5em 1em 1.75em;
}
.btn--big:not(.icon):not(.btn--no-icon):after {
  right: 0.85em;
}
.btn--down:not(.icon):not(.btn--no-icon):after {
  transform: rotate(0);
}
.btn--full {
  display: block;
  width: auto;
  min-width: 0;
  max-width: none;
}
.btn--inline-big {
  padding-right: 3em;
  min-width: 15em;
}
.btn--flat {
  border-bottom-color: transparent !important;
}
.btn--round {
  border-radius: 2rem;
}
.btn--outline {
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
}
.btn--outline, .btn--outline.border-green {
  color: #66a54a;
}
.btn--outline:not(.icon):after, .btn--outline.border-green:not(.icon):after {
  background-image: url("../img/icon-arrow-down-green.svg");
}
.btn--flat, .btn--flat.bg-green {
  border-color: #66a54a;
  color: #fff;
}
.btn--flat:not(.icon):after, .btn--flat.bg-green:not(.icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
a:hover .btn--flat, a:hover .btn--flat.bg-green, .btn--flat:hover, .btn--flat.bg-green:hover {
  background-color: #77b65b !important;
  border-color: #77b65b;
}
.btn--flat.bg-white {
  background-color: #fff;
  border-color: #fff;
  color: #fff;
}
.btn--flat.bg-white:not(.icon):after {
  background-image: url("../img/icon-arrow-down-blue.svg");
}
a:hover .btn--flat.bg-white, .btn--flat.bg-white:hover {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3;
  color: #222;
}
a:hover .btn--flat.bg-white:not(.icon):after, .btn--flat.bg-white:hover:not(.icon):after {
  background-image: url("../img/icon-arrow-down-black.svg");
}
.btn--flat.bg-blue {
  background-color: #008fce;
  border-color: #008fce;
  color: #fff;
}
.btn--flat.bg-blue:not(.icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
a:hover .btn--flat.bg-blue, .btn--flat.bg-blue:hover {
  background-color: #0273aa !important;
  border-color: #0273aa;
  color: #fff;
}
a:hover .btn--flat.bg-blue:not(.icon):after, .btn--flat.bg-blue:hover:not(.icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
.btn--flat.bg-red {
  background-color: #f12b3b;
  border-color: #f12b3b;
  color: #fff;
}
.btn--flat.bg-red:not(.icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
a:hover .btn--flat.bg-red, .btn--flat.bg-red:hover {
  background-color: #d2212f !important;
  border-color: #d2212f;
  color: #fff;
}
a:hover .btn--flat.bg-red:not(.icon):after, .btn--flat.bg-red:hover:not(.icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
.btn--flat.bg-darkest-grey {
  background-color: #222 !important;
  border-color: #222;
  color: #fff;
}
.btn--flat.bg-darkest-grey:not(.icon):not(.btn--no-icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
a:hover .btn--flat.border-darkest-grey, .btn--flat.border-darkest-grey:hover {
  background-color: #8e8e8e !important;
  border-color: #8e8e8e;
}
a:hover .btn--flat.border-darkest-grey:not(.icon):not(.btn--no-icon):after, .btn--flat.border-darkest-grey:hover:not(.icon):not(.btn--no-icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
a:hover .btn--outline, .btn--outline:hover, a:hover .btn--outline.border-green, .btn--outline.border-green:hover {
  background-color: #66a54a;
  border-color: #66a54a;
  color: #fff;
}
a:hover .btn--outline:not(.icon):not(.btn--no-icon):after, .btn--outline:hover:not(.icon):not(.btn--no-icon):after, a:hover .btn--outline.border-green:not(.icon):not(.btn--no-icon):after, .btn--outline.border-green:hover:not(.icon):not(.btn--no-icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
.btn--outline.border-white {
  color: #fff;
}
.btn--outline.border-white:not(.icon):not(.btn--no-icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
a:hover .btn--outline.border-white, .btn--outline.border-white:hover {
  background-color: #fff;
  border-color: #fff;
  color: #222;
}
a:hover .btn--outline.border-white:not(.icon):not(.btn--no-icon):after, .btn--outline.border-white:hover:not(.icon):not(.btn--no-icon):after {
  background-image: url("../img/icon-arrow-down-black.svg");
}
.btn--outline.border-darkest-grey {
  color: #222;
}
.btn--outline.border-darkest-grey:not(.icon):not(.btn--no-icon):after {
  background-image: url("../img/icon-arrow-down-black.svg");
}
a:hover .btn--outline.border-darkest-grey, .btn--outline.border-darkest-grey:hover {
  background-color: #222;
  border-color: #222;
  color: #fff;
}
a:hover .btn--outline.border-darkest-grey:not(.icon):after, .btn--outline.border-darkest-grey:hover:not(.icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
.btn--outline.border-blue {
  color: #008fce !important;
}
.btn--outline.border-blue:not(.icon):not(.btn--no-icon):after {
  background-image: url("../img/icon-arrow-down-blue.svg");
}
a:hover .btn--outline.border-blue, .btn--outline.border-blue:hover {
  background-color: #008fce;
  border-color: #008fce;
  color: #fff !important;
}
a:hover .btn--outline.border-blue:not(.icon):not(.btn--no-icon):after, .btn--outline.border-blue:hover:not(.icon):not(.btn--no-icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}
.btn--flat[disabled=disabled], .btn--flat[disabled=disabled]:hover {
  background-color: #ddd !important;
  border-color: transparent !important;
  cursor: auto;
}
.btn--flat[disabled=disabled]:not(.icon):after, .btn--flat[disabled=disabled]:hover:not(.icon):after {
  background-image: url("../img/icon-arrow-down-white.svg");
}

.select-container,
.input-container {
  display: flex;
  position: relative;
  width: 100%;
  line-height: 1.5;
}
.select-container > *,
.input-container > * {
  height: 100%;
  line-height: 1.5;
  padding: 0.4em 0.5em 0.45em;
  margin-top: 0;
  margin-bottom: 0;
}
.select-container select, .select-container input,
.input-container select,
.input-container input {
  flex-grow: 3;
  background-color: transparent;
  text-overflow: ellipsis;
  max-width: none;
}
.select-container button.icon,
.input-container button.icon {
  outline: none;
  background-color: transparent;
  border: none;
  height: auto;
  padding: 0;
  order: 3;
  padding: 0.3em;
  margin: 0.1em 0.5em 0;
}
.select-container button.icon + input,
.input-container button.icon + input {
  padding-right: 0;
}

.select-container {
  padding: 0;
}
.select-container:hover > *:not(select) {
  color: #008fce;
}
.select-container > *:not(select), .select-container:after {
  pointer-events: none;
}

.input-container {
  background-color: #f3f3f3;
  box-shadow: 0 1px 0.2rem rgba(0, 0, 0, 0.2) inset;
}
.input-container--soft {
  box-shadow: 0 0.2rem 0.75rem rgba(0, 0, 0, 0.1) inset;
}
.input-container--flat {
  box-shadow: none;
}

/* BOX SHADOW */
.box-blurry {
  background-color: rgba(0, 0, 0, 0.7);
  background-color: color-mix(in srgb, var(--bg-opaque) 70%, transparent);
  box-shadow: 0 0 2rem 2rem rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 2rem 2rem color-mix(in srgb, var(--bg-opaque) 70%, transparent);
}

.box-shadow--hover.box-shadow--before:before, .box-shadow--hover.box-shadow--after:after, .box-shadow--hover:not(.box-shadow--before) {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3) !important;
  transition: box-shadow 300ms;
  transform: translate3d(0, 0, 0);
}
.box-shadow--hover.box-shadow--normal, .box-shadow--normal {
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
}
.box-shadow--hover.box-shadow--big, .box-shadow--big {
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.3) !important;
}
.box-shadow--hover.box-shadow--big-dark, .box-shadow--big-dark {
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.7) !important;
}
.box-shadow--hover.box-shadow--small, .box-shadow--small {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.3) !important;
}
.box-shadow--hover.box-shadow--sharp, .box-shadow--sharp {
  box-shadow: 0 0.2rem 0.75rem rgba(0, 0, 0, 0.1) !important;
}
.box-shadow--hover.box-shadow--sharper, .box-shadow--sharper {
  box-shadow: 0 0.025rem 0.15rem rgba(0, 0, 0, 0.2) !important;
}
.box-shadow--hover:not(.box-shadow--before):not(.box-shadow--after):hover {
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
  z-index: 1;
}
.box-shadow--hover.box-shadow--normal:not(.box-shadow--before):not(.box-shadow--after):hover {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.3) !important;
  z-index: 1;
}
.box-shadow--before:before, .box-shadow--after:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.box-shadow--scroll\:before, .box-shadow--scroll\:after, .box-shadow--after, .box-shadow--before {
  position: relative;
  box-shadow: none;
}
.box-shadow--scroll\:before:hover, .box-shadow--scroll\:after:hover, .box-shadow--after:hover, .box-shadow--before:hover {
  z-index: 1;
}
.box-shadow--before--white:not(.box-shadow--hover):before, .box-shadow--after--white:not(.box-shadow--hover):after {
  box-shadow: 0 0 1rem 2rem #fff;
  background-color: #fff;
}
.box-shadow--before:not(.box-shadow--hover):before, .box-shadow--after:not(.box-shadow--hover):after {
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3);
}
.box-shadow--scroll\:before.box-shadow--hover:hover:before, .box-shadow--scroll\:after.box-shadow--hover:hover:after, .box-shadow--before.box-shadow--hover:hover:before, .box-shadow--after.box-shadow--hover:hover:after {
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
}
.box-shadow--before.box-shadow--after.box-shadow--hover:hover:after {
  box-shadow: 0 0.2rem 0.75rem rgba(0, 0, 0, 0.1) !important;
}

.box-shadow {
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
}

.box-shadow--below {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05) !important;
}

.box-shadow--above {
  box-shadow: 0 -1rem 1rem rgba(0, 0, 0, 0.05) !important;
}

.box-shadow--none {
  box-shadow: none !important;
}

.box-shadow--scroll-clear\:before:before, .box-shadow--scroll-clear\:after:after, .box-shadow--scroll\:before:before, .box-shadow--scroll\:after:after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 2rem !important;
  bottom: 2rem !important;
  z-index: 1 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-shadow: 0 0 0.75rem 0.75rem var(--bg-lightest) !important;
  background-color: var(--bg-lightest) !important;
  width: 0.75rem !important;
}

.box-shadow--scroll-clear\:before:before, .box-shadow--scroll-clear\:after:after {
  box-shadow: 0 0 0.75rem 0.75rem var(--bg-clear) !important;
  background-color: var(--bg-clear) !important;
}

.box-shadow--scroll-clear\:before:before, .box-shadow--scroll\:before:before {
  right: 100% !important;
}

.box-shadow--scroll-clear\:after:after, .box-shadow--scroll\:after:after {
  left: 100% !important;
}

@media screen and (min-width: 360px) {
  .xs\:box-shadow {
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
  }
  .xs\:box-shadow--below {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .xs\:box-shadow--above {
    box-shadow: 0 -1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .xs\:box-shadow--none {
    box-shadow: none !important;
  }
  .xs\:box-shadow--scroll-clear\:before:before, .xs\:box-shadow--scroll-clear\:after:after, .xs\:box-shadow--scroll\:before:before, .xs\:box-shadow--scroll\:after:after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 2rem !important;
    bottom: 2rem !important;
    z-index: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-lightest) !important;
    background-color: var(--bg-lightest) !important;
    width: 0.75rem !important;
  }
  .xs\:box-shadow--scroll-clear\:before:before, .xs\:box-shadow--scroll-clear\:after:after {
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-clear) !important;
    background-color: var(--bg-clear) !important;
  }
  .xs\:box-shadow--scroll-clear\:before:before, .xs\:box-shadow--scroll\:before:before {
    right: 100% !important;
  }
  .xs\:box-shadow--scroll-clear\:after:after, .xs\:box-shadow--scroll\:after:after {
    left: 100% !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:box-shadow {
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
  }
  .sm\:box-shadow--below {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .sm\:box-shadow--above {
    box-shadow: 0 -1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .sm\:box-shadow--none {
    box-shadow: none !important;
  }
  .sm\:box-shadow--scroll-clear\:before:before, .sm\:box-shadow--scroll-clear\:after:after, .sm\:box-shadow--scroll\:before:before, .sm\:box-shadow--scroll\:after:after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 2rem !important;
    bottom: 2rem !important;
    z-index: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-lightest) !important;
    background-color: var(--bg-lightest) !important;
    width: 0.75rem !important;
  }
  .sm\:box-shadow--scroll-clear\:before:before, .sm\:box-shadow--scroll-clear\:after:after {
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-clear) !important;
    background-color: var(--bg-clear) !important;
  }
  .sm\:box-shadow--scroll-clear\:before:before, .sm\:box-shadow--scroll\:before:before {
    right: 100% !important;
  }
  .sm\:box-shadow--scroll-clear\:after:after, .sm\:box-shadow--scroll\:after:after {
    left: 100% !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:box-shadow {
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
  }
  .md\:box-shadow--below {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .md\:box-shadow--above {
    box-shadow: 0 -1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .md\:box-shadow--none {
    box-shadow: none !important;
  }
  .md\:box-shadow--scroll-clear\:before:before, .md\:box-shadow--scroll-clear\:after:after, .md\:box-shadow--scroll\:before:before, .md\:box-shadow--scroll\:after:after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 2rem !important;
    bottom: 2rem !important;
    z-index: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-lightest) !important;
    background-color: var(--bg-lightest) !important;
    width: 0.75rem !important;
  }
  .md\:box-shadow--scroll-clear\:before:before, .md\:box-shadow--scroll-clear\:after:after {
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-clear) !important;
    background-color: var(--bg-clear) !important;
  }
  .md\:box-shadow--scroll-clear\:before:before, .md\:box-shadow--scroll\:before:before {
    right: 100% !important;
  }
  .md\:box-shadow--scroll-clear\:after:after, .md\:box-shadow--scroll\:after:after {
    left: 100% !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:box-shadow {
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
  }
  .lg\:box-shadow--below {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .lg\:box-shadow--above {
    box-shadow: 0 -1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .lg\:box-shadow--none {
    box-shadow: none !important;
  }
  .lg\:box-shadow--scroll-clear\:before:before, .lg\:box-shadow--scroll-clear\:after:after, .lg\:box-shadow--scroll\:before:before, .lg\:box-shadow--scroll\:after:after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 2rem !important;
    bottom: 2rem !important;
    z-index: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-lightest) !important;
    background-color: var(--bg-lightest) !important;
    width: 0.75rem !important;
  }
  .lg\:box-shadow--scroll-clear\:before:before, .lg\:box-shadow--scroll-clear\:after:after {
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-clear) !important;
    background-color: var(--bg-clear) !important;
  }
  .lg\:box-shadow--scroll-clear\:before:before, .lg\:box-shadow--scroll\:before:before {
    right: 100% !important;
  }
  .lg\:box-shadow--scroll-clear\:after:after, .lg\:box-shadow--scroll\:after:after {
    left: 100% !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:box-shadow {
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
  }
  .xl\:box-shadow--below {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .xl\:box-shadow--above {
    box-shadow: 0 -1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .xl\:box-shadow--none {
    box-shadow: none !important;
  }
  .xl\:box-shadow--scroll-clear\:before:before, .xl\:box-shadow--scroll-clear\:after:after, .xl\:box-shadow--scroll\:before:before, .xl\:box-shadow--scroll\:after:after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 2rem !important;
    bottom: 2rem !important;
    z-index: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-lightest) !important;
    background-color: var(--bg-lightest) !important;
    width: 0.75rem !important;
  }
  .xl\:box-shadow--scroll-clear\:before:before, .xl\:box-shadow--scroll-clear\:after:after {
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-clear) !important;
    background-color: var(--bg-clear) !important;
  }
  .xl\:box-shadow--scroll-clear\:before:before, .xl\:box-shadow--scroll\:before:before {
    right: 100% !important;
  }
  .xl\:box-shadow--scroll-clear\:after:after, .xl\:box-shadow--scroll\:after:after {
    left: 100% !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:box-shadow {
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
  }
  .xxl\:box-shadow--below {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .xxl\:box-shadow--above {
    box-shadow: 0 -1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .xxl\:box-shadow--none {
    box-shadow: none !important;
  }
  .xxl\:box-shadow--scroll-clear\:before:before, .xxl\:box-shadow--scroll-clear\:after:after, .xxl\:box-shadow--scroll\:before:before, .xxl\:box-shadow--scroll\:after:after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 2rem !important;
    bottom: 2rem !important;
    z-index: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-lightest) !important;
    background-color: var(--bg-lightest) !important;
    width: 0.75rem !important;
  }
  .xxl\:box-shadow--scroll-clear\:before:before, .xxl\:box-shadow--scroll-clear\:after:after {
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-clear) !important;
    background-color: var(--bg-clear) !important;
  }
  .xxl\:box-shadow--scroll-clear\:before:before, .xxl\:box-shadow--scroll\:before:before {
    right: 100% !important;
  }
  .xxl\:box-shadow--scroll-clear\:after:after, .xxl\:box-shadow--scroll\:after:after {
    left: 100% !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:box-shadow {
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3) !important;
  }
  .max\:box-shadow--below {
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .max\:box-shadow--above {
    box-shadow: 0 -1rem 1rem rgba(0, 0, 0, 0.05) !important;
  }
  .max\:box-shadow--none {
    box-shadow: none !important;
  }
  .max\:box-shadow--scroll-clear\:before:before, .max\:box-shadow--scroll-clear\:after:after, .max\:box-shadow--scroll\:before:before, .max\:box-shadow--scroll\:after:after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 2rem !important;
    bottom: 2rem !important;
    z-index: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-lightest) !important;
    background-color: var(--bg-lightest) !important;
    width: 0.75rem !important;
  }
  .max\:box-shadow--scroll-clear\:before:before, .max\:box-shadow--scroll-clear\:after:after {
    box-shadow: 0 0 0.75rem 0.75rem var(--bg-clear) !important;
    background-color: var(--bg-clear) !important;
  }
  .max\:box-shadow--scroll-clear\:before:before, .max\:box-shadow--scroll\:before:before {
    right: 100% !important;
  }
  .max\:box-shadow--scroll-clear\:after:after, .max\:box-shadow--scroll\:after:after {
    left: 100% !important;
  }
}
.font-fam-hdl,
h1, h2, h3, h4 {
  font-family: "Klint LT W02 Regular", Tahoma, Helvetica, sans-serif !important;
  font-weight: 300 !important;
}

.font-fam-display,
h5, h6 {
  font-family: "Klint LT W02 Regular", Tahoma, Helvetica, sans-serif !important;
  font-weight: 300 !important;
}

.font-fam-regular {
  font-family: Arial, sans-serif !important;
  font-weight: 300 !important;
}

.font-fam-hdl.bold,
.font-fam-hdl .bold,
.font-fam-display.bold,
.font-fam-display .bold,
h1.bold, h2.bold, h3.bold, h4.bold {
  font-family: "Klint LT W01 Bold", Tahoma, Helvetica, sans-serif !important;
  font-weight: 300 !important;
}

/* Font size */
.font-sz-0, .font-sz-1, .font-sz-2, .font-sz-3, .font-sz-4, .font-sz-5, .font-sz-6, .font-sz-7,
h1, h2, h3, h4, h5, h6 {
  min-height: 0vw;
  line-height: 1.25;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.font-sz-0:first-child, .font-sz-1:first-child, .font-sz-2:first-child, .font-sz-3:first-child, .font-sz-4:first-child, .font-sz-5:first-child, .font-sz-6:first-child, .font-sz-7:first-child,
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

.font-sz-0, .font-sz-1, .font-sz-2, .font-sz-3,
h1, h2, h3 {
  letter-spacing: -0.025em;
}

.font-sz-billboard {
  margin-left: -0.04em;
  line-height: 1.1;
  font-size: 36.3123944414px;
  /* Width factor * Height factor = 1 */
}
.font-sz-billboard {
  font-size: 36.3123944414px;
}
@media screen and (min-width: 360px) {
  .font-sz-billboard {
    font-size: calc(36.3123944414px + 75.1388611618 * (0.65 * (100vw - 360px) / 1480 + 0px)) !important;
  }
}
@media screen and (min-width: 1840px) {
  .font-sz-billboard {
    font-size: calc(36.3123944414px + 75.1388611618 * ((0.65px) + 0px)) !important;
  }
}
@media screen and (min-height: 460px) {
  .font-sz-billboard {
    font-size: calc(36.3123944414px + 75.1388611618 * (0px + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-height: 720px) {
  .font-sz-billboard {
    font-size: calc(36.3123944414px + 75.1388611618 * (0px + (0.35px))) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 460px) {
  .font-sz-billboard {
    font-size: calc(36.3123944414px + 75.1388611618 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 460px) {
  .font-sz-billboard {
    font-size: calc(36.3123944414px + 75.1388611618 * ((0.65px) + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 720px) {
  .font-sz-billboard {
    font-size: calc(36.3123944414px + 75.1388611618 * (0.65 * (100vw - 360px) / 1480 + (0.35px))) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 720px) {
  .font-sz-billboard {
    font-size: 111.4512556032px !important;
  }
}

.font-sz-0 {
  margin-left: -0.04em;
  line-height: 1.1;
  font-size: 30.01024334px;
  /* Width factor * Height factor = 1 */
}
.font-sz-0 {
  font-size: 30.01024334px;
}
@media screen and (min-width: 360px) {
  .font-sz-0 {
    font-size: calc(30.01024334px + 47.38646194 * (0.65 * (100vw - 360px) / 1480 + 0px)) !important;
  }
}
@media screen and (min-width: 1840px) {
  .font-sz-0 {
    font-size: calc(30.01024334px + 47.38646194 * ((0.65px) + 0px)) !important;
  }
}
@media screen and (min-height: 460px) {
  .font-sz-0 {
    font-size: calc(30.01024334px + 47.38646194 * (0px + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-height: 720px) {
  .font-sz-0 {
    font-size: calc(30.01024334px + 47.38646194 * (0px + (0.35px))) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 460px) {
  .font-sz-0 {
    font-size: calc(30.01024334px + 47.38646194 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 460px) {
  .font-sz-0 {
    font-size: calc(30.01024334px + 47.38646194 * ((0.65px) + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 720px) {
  .font-sz-0 {
    font-size: calc(30.01024334px + 47.38646194 * (0.65 * (100vw - 360px) / 1480 + (0.35px))) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 720px) {
  .font-sz-0 {
    font-size: 77.39670528px !important;
  }
}

.font-sz-1,
h1 {
  margin-left: -0.04em;
  font-size: 22.54714px;
  /* Width factor * Height factor = 1 */
}
.font-sz-1,
h1 {
  font-size: 22.54714px;
}
@media screen and (min-width: 360px) {
  .font-sz-1,
  h1 {
    font-size: calc(22.54714px + 22.24262 * (0.65 * (100vw - 360px) / 1480 + 0px)) !important;
  }
}
@media screen and (min-width: 1840px) {
  .font-sz-1,
  h1 {
    font-size: calc(22.54714px + 22.24262 * ((0.65px) + 0px)) !important;
  }
}
@media screen and (min-height: 460px) {
  .font-sz-1,
  h1 {
    font-size: calc(22.54714px + 22.24262 * (0px + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-height: 720px) {
  .font-sz-1,
  h1 {
    font-size: calc(22.54714px + 22.24262 * (0px + (0.35px))) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 460px) {
  .font-sz-1,
  h1 {
    font-size: calc(22.54714px + 22.24262 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 460px) {
  .font-sz-1,
  h1 {
    font-size: calc(22.54714px + 22.24262 * ((0.65px) + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 720px) {
  .font-sz-1,
  h1 {
    font-size: calc(22.54714px + 22.24262 * (0.65 * (100vw - 360px) / 1480 + (0.35px))) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 720px) {
  .font-sz-1,
  h1 {
    font-size: 44.78976px !important;
  }
}

/*@include fluid-type_v2((
	'.font-sz-1':'',
	'h1':''
), $grid-br-xs, $grid-max-width, $font_mod_min*$font_mod_min*$font_mod_min *$font_size_min, $font_mod_max*$font_mod_max*$font_mod_max*$font_mod_max *$font_size_max, $mediasizes);
*/
.font-sz-2,
h2 {
  margin-left: -0.02em;
  font-size: 20.4974px;
  /* Width factor * Height factor = 1 */
}
.font-sz-2,
h2 {
  font-size: 20.4974px;
}
@media screen and (min-width: 360px) {
  .font-sz-2,
  h2 {
    font-size: calc(20.4974px + 16.8274 * (0.65 * (100vw - 360px) / 1480 + 0px)) !important;
  }
}
@media screen and (min-width: 1840px) {
  .font-sz-2,
  h2 {
    font-size: calc(20.4974px + 16.8274 * ((0.65px) + 0px)) !important;
  }
}
@media screen and (min-height: 460px) {
  .font-sz-2,
  h2 {
    font-size: calc(20.4974px + 16.8274 * (0px + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-height: 720px) {
  .font-sz-2,
  h2 {
    font-size: calc(20.4974px + 16.8274 * (0px + (0.35px))) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 460px) {
  .font-sz-2,
  h2 {
    font-size: calc(20.4974px + 16.8274 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 460px) {
  .font-sz-2,
  h2 {
    font-size: calc(20.4974px + 16.8274 * ((0.65px) + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 720px) {
  .font-sz-2,
  h2 {
    font-size: calc(20.4974px + 16.8274 * (0.65 * (100vw - 360px) / 1480 + (0.35px))) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 720px) {
  .font-sz-2,
  h2 {
    font-size: 37.3248px !important;
  }
}

.font-sz-3,
h3 {
  font-size: 18.634px;
  /* Width factor * Height factor = 1 */
}
.font-sz-3,
h3 {
  font-size: 18.634px;
}
@media screen and (min-width: 360px) {
  .font-sz-3,
  h3 {
    font-size: calc(18.634px + 12.47 * (0.65 * (100vw - 360px) / 1480 + 0px)) !important;
  }
}
@media screen and (min-width: 1840px) {
  .font-sz-3,
  h3 {
    font-size: calc(18.634px + 12.47 * ((0.65px) + 0px)) !important;
  }
}
@media screen and (min-height: 460px) {
  .font-sz-3,
  h3 {
    font-size: calc(18.634px + 12.47 * (0px + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-height: 720px) {
  .font-sz-3,
  h3 {
    font-size: calc(18.634px + 12.47 * (0px + (0.35px))) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 460px) {
  .font-sz-3,
  h3 {
    font-size: calc(18.634px + 12.47 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 460px) {
  .font-sz-3,
  h3 {
    font-size: calc(18.634px + 12.47 * ((0.65px) + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 720px) {
  .font-sz-3,
  h3 {
    font-size: calc(18.634px + 12.47 * (0.65 * (100vw - 360px) / 1480 + (0.35px))) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 720px) {
  .font-sz-3,
  h3 {
    font-size: 31.104px !important;
  }
}

.font-sz-4,
h4 {
  font-size: 16.94px;
  /* Width factor * Height factor = 1 */
}
.font-sz-4,
h4 {
  font-size: 16.94px;
}
@media screen and (min-width: 360px) {
  .font-sz-4,
  h4 {
    font-size: calc(16.94px + 8.98 * (0.65 * (100vw - 360px) / 1480 + 0px)) !important;
  }
}
@media screen and (min-width: 1840px) {
  .font-sz-4,
  h4 {
    font-size: calc(16.94px + 8.98 * ((0.65px) + 0px)) !important;
  }
}
@media screen and (min-height: 460px) {
  .font-sz-4,
  h4 {
    font-size: calc(16.94px + 8.98 * (0px + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-height: 720px) {
  .font-sz-4,
  h4 {
    font-size: calc(16.94px + 8.98 * (0px + (0.35px))) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 460px) {
  .font-sz-4,
  h4 {
    font-size: calc(16.94px + 8.98 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 460px) {
  .font-sz-4,
  h4 {
    font-size: calc(16.94px + 8.98 * ((0.65px) + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 720px) {
  .font-sz-4,
  h4 {
    font-size: calc(16.94px + 8.98 * (0.65 * (100vw - 360px) / 1480 + (0.35px))) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 720px) {
  .font-sz-4,
  h4 {
    font-size: 25.92px !important;
  }
}

.font-sz-5, .font-sz-6,
h5, h6 {
  font-size: 15.4px;
  /* Width factor * Height factor = 1 */
}
.font-sz-5, .font-sz-6,
h5, h6 {
  font-size: 15.4px;
}
@media screen and (min-width: 360px) {
  .font-sz-5, .font-sz-6,
  h5, h6 {
    font-size: calc(15.4px + 6.2 * (0.65 * (100vw - 360px) / 1480 + 0px)) !important;
  }
}
@media screen and (min-width: 1840px) {
  .font-sz-5, .font-sz-6,
  h5, h6 {
    font-size: calc(15.4px + 6.2 * ((0.65px) + 0px)) !important;
  }
}
@media screen and (min-height: 460px) {
  .font-sz-5, .font-sz-6,
  h5, h6 {
    font-size: calc(15.4px + 6.2 * (0px + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-height: 720px) {
  .font-sz-5, .font-sz-6,
  h5, h6 {
    font-size: calc(15.4px + 6.2 * (0px + (0.35px))) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 460px) {
  .font-sz-5, .font-sz-6,
  h5, h6 {
    font-size: calc(15.4px + 6.2 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 460px) {
  .font-sz-5, .font-sz-6,
  h5, h6 {
    font-size: calc(15.4px + 6.2 * ((0.65px) + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 720px) {
  .font-sz-5, .font-sz-6,
  h5, h6 {
    font-size: calc(15.4px + 6.2 * (0.65 * (100vw - 360px) / 1480 + (0.35px))) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 720px) {
  .font-sz-5, .font-sz-6,
  h5, h6 {
    font-size: 21.6px !important;
  }
}

.font-sz-body,
body > * {
  font-size: 14px;
  /* Width factor * Height factor = 1 */
}
.font-sz-body,
body > * {
  font-size: 14px;
}
@media screen and (min-width: 360px) {
  .font-sz-body,
  body > * {
    font-size: calc(14px + 4 * (0.65 * (100vw - 360px) / 1480 + 0px)) !important;
  }
}
@media screen and (min-width: 1840px) {
  .font-sz-body,
  body > * {
    font-size: calc(14px + 4 * ((0.65px) + 0px)) !important;
  }
}
@media screen and (min-height: 460px) {
  .font-sz-body,
  body > * {
    font-size: calc(14px + 4 * (0px + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-height: 720px) {
  .font-sz-body,
  body > * {
    font-size: calc(14px + 4 * (0px + (0.35px))) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 460px) {
  .font-sz-body,
  body > * {
    font-size: calc(14px + 4 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 460px) {
  .font-sz-body,
  body > * {
    font-size: calc(14px + 4 * ((0.65px) + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 720px) {
  .font-sz-body,
  body > * {
    font-size: calc(14px + 4 * (0.65 * (100vw - 360px) / 1480 + (0.35px))) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 720px) {
  .font-sz-body,
  body > * {
    font-size: 18px !important;
  }
}

@media screen and (min-width: 1840px) {
  .lg\:font-sz-body {
    font-size: 16.6px !important;
  }
}
@media screen and (min-width: 950px) and (min-height: 460px) {
  .lg\:font-sz-body {
    font-size: calc(14px + 4 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 460px) {
  .lg\:font-sz-body {
    font-size: calc(14px + 4 * (0.65px + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 950px) and (min-height: 720px) {
  .lg\:font-sz-body {
    font-size: calc(14px + 4 * (0.65 * (100vw - 360px) / 1480 + 0.35px)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 720px) {
  .lg\:font-sz-body {
    font-size: 18px !important;
  }
}
.font-sz-7 {
  font-size: 1rem !important;
}

.font-sz-8 {
  font-size: 0.8rem !important;
}

.font-sz-9 {
  font-size: 0.7rem;
}

.font-sz-min {
  font-size: 14px;
}

.smaller {
  font-size: 0.826446281em;
}

.small {
  font-size: 0.9090909091em;
}

.big {
  font-size: 1.1em;
}

.bigger {
  font-size: 1.21em;
}

strong,
.bold,
.weight-bold {
  font-weight: 600;
}

.weight-normal {
  font-weight: normal !important;
}

/*@function strip-unit($value) {
	@return math.div($value, ($value * 0 + 1));
}*/
@media screen and (max-width: 420px) {
  .xs\:font-sz-0 {
    margin-left: -0.04em;
    font-size: 45.01536501px !important;
  }
  .xs\:font-sz-1 {
    margin-left: -0.02em;
    font-size: 33.82071px !important;
  }
  .xs\:font-sz-2 {
    margin-left: -0.02em;
    font-size: 30.7461px !important;
  }
  .xs\:font-sz-3 {
    font-size: 27.951px !important;
  }
  .xs\:font-sz-7 {
    font-size: 1rem !important;
  }
  .xs\:font-sz-8 {
    font-size: 0.8rem !important;
  }
  .xs\:font-sz-9 {
    font-size: 0.7rem !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:font-sz-0 {
    margin-left: -0.04em;
    font-size: 45.01536501px !important;
  }
  .lg\:font-sz-1 {
    margin-left: -0.02em;
    font-size: 33.82071px !important;
  }
  .lg\:font-sz-2 {
    margin-left: -0.02em;
    font-size: 30.7461px !important;
  }
  .lg\:font-sz-3 {
    font-size: 27.951px !important;
  }
  .lg\:font-sz-4 {
    font-size: 25.41px !important;
  }
  .lg\:font-sz-5,
  .lg\:font-sz-6 {
    font-size: 23.1px !important;
  }
  .lg\:font-sz-7 {
    font-size: 1rem !important;
  }
  .lg\:font-sz-8 {
    font-size: 0.8rem !important;
  }
  .lg\:font-sz-9 {
    font-size: 0.7rem !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:font-sz-0 {
    margin-left: -0.04em;
    font-size: 45.01536501px !important;
  }
  .xl\:font-sz-1 {
    margin-left: -0.02em;
    font-size: 33.82071px !important;
  }
  .xl\:font-sz-2 {
    margin-left: -0.02em;
    font-size: 30.7461px !important;
  }
  .xl\:font-sz-3 {
    font-size: 27.951px !important;
  }
  .xl\:font-sz-4 {
    font-size: 25.41px !important;
  }
  .xl\:font-sz-5,
  .xl\:font-sz-6 {
    font-size: 23.1px !important;
  }
  .xl\:font-sz-7 {
    font-size: 1rem !important;
  }
  .xl\:font-sz-8 {
    font-size: 0.8rem !important;
  }
  .xl\:font-sz-9 {
    font-size: 0.7rem !important;
  }
}
/* IMAGES */
img {
  vertical-align: middle;
  width: 100%;
}

.bg-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-size: cover;
}
.bg-img--hover-zoom {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scale(1, 1) translate3d(0px, 0px, 0px);
  transition: transform 300ms ease-out;
}
a:hover .bg-img--hover-zoom, .bg-img--hover-zoom:hover {
  transform: scale(1.05, 1.05) translate3d(0px, 0px, 0px);
}
.bg-img--none {
  background-image: none !important;
}

.video-container.contain iframe,
.video-container.contain video,
.video-container.contain object,
.video-container.contain embed,
.contain:not(picture),
picture.contain img,
.video-container.cover iframe,
.video-container.cover video,
.video-container.cover object,
.video-container.cover embed,
.cover:not(picture),
picture.cover img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100.5%; /* .5 to avoid visible pixel line at edge */
  height: 100.5%; /* .5 to avoid visible pixel line at edge */
}

.cover:not(picture):not(.video-container),
.video-container.cover iframe,
.video-container.cover video,
.video-container.cover object,
.video-container.cover embed,
picture.cover img {
  object-fit: cover;
  object-position: center center;
}

.contain:not(picture):not(.video-container),
.video-container.contain iframe,
.video-container.contain video,
.video-container.contain object,
.video-container.contain embed,
picture.contain img {
  object-fit: contain;
  object-position: center center;
}

.scale-down:not(picture):not(.video-container),
.video-container.scale-down iframe,
.video-container.scale-down video,
.video-container.scale-down object,
.video-container.scale-down embed,
picture.scale-down img {
  object-fit: scale-down;
  object-position: center center;
}

.pos-left,
.pos-left iframe,
.pos-left img,
.pos-left video,
.pos-left object,
.pos-left embed {
  object-position: 20% center !important;
}

.pos-left-edge,
.pos-left-edge iframe,
.pos-left-edge img,
.pos-left-edge video,
.pos-left-edge object,
.pos-left-edge embed {
  object-position: left center !important;
}

.pos-right,
.pos-right iframe,
.pos-right img,
.pos-right video,
.pos-right object,
.pos-right embed {
  object-position: 80% center !important;
}

.pos-right-edge,
.pos-right-edge iframe,
.pos-right-edge img,
.pos-right-edge video,
.pos-right-edge object,
.pos-right-edge embed {
  object-position: right center !important;
}

picture.scale-down,
picture.cover,
picture.contain {
  position: relative;
}

.contain:not(picture) picture.contain img {
  object-fit: contain;
  object-position: center center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.video-container.cover {
  position: relative;
  max-width: none !important;
  width: auto;
  height: auto;
}

.video-container.cover iframe,
.ie .video-container.cover video,
.ie .video-container.cover object,
.ie .video-container.cover embed {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  width: 177.77777778vh; /* 100 * 16 / 9 */
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw; /* 100 * 9 / 16 */
}

/*
@include responsive(('w-'), '', ('':''), (
	'1\\/2 .video-container.cover video': (
		width: 88.88888888vh, /* 100 * 16 / 9 / 2 */ /*
min-height: 28.125vw /* 100 * 9 / 16 / 2 */ /*
),
'1\\/3 .video-container.cover video': (
	width: 59.259259vh, /* 100 * 16 / 9 / 3 */ /*
min-height: 18.75vw /* 100 * 9 / 16 / 3 */ /*
),
'1\\/4 .video-container.cover video': (
	width: 44.44444425vh, /* 100 * 16 / 9 / 4 */ /*
min-height: 14.0625vw /* 100 * 9 / 16 / 4 */ /*
	),
), $mediasizes);

*/
/*
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
*/
ul,
ol {
  margin: 0;
  padding: 0 0 0 1.2em;
}
ul li,
ol li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
ul.liy-0 li,
ol.liy-0 li {
  margin-top: 0;
  margin-bottom: 0;
}
ul.liy-1 li,
ol.liy-1 li {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
ul.liy-2 li,
ol.liy-2 li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
ul.liy-3 li,
ol.liy-3 li {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
ul.liy-4 li,
ol.liy-4 li {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
ul.liy-5 li,
ol.liy-5 li {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
ul.liy-6 li,
ol.liy-6 li {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
ul li:first-child,
ol li:first-child {
  margin-top: 0;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

ul {
  list-style: disc;
}

.list-none,
ul.tab,
ol {
  list-style: none;
  padding: 0;
}

.list-disc {
  list-style-type: disc;
}

.list-circle {
  list-style-type: circle;
}

.list-decimal {
  list-style-type: decimal;
}

ul.icon-checkmark {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.icon-checkmark li {
  display: inline-flex;
  margin-bottom: 1rem;
  width: 100%;
}
ul.icon-checkmark li:before {
  content: "";
  flex-shrink: 0 !important;
  text-align: center;
  margin-right: 0.9em;
  width: 1.35em;
  height: 1.5em;
  background-image: url("../img/icon-checkmark-blue.svg");
  background-color: transparent !important;
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}
ul.icon-checkmark li > * {
  margin-top: 0.25rem;
}

ol {
  position: relative;
  counter-reset: ol-counter;
}
ol li {
  counter-increment: ol-counter;
  display: flex;
  margin-bottom: 1rem;
}
ol li:before {
  content: counter(ol-counter);
  flex-shrink: 0 !important;
  text-align: center;
  margin-right: 0.5em;
  margin-top: -0.1em;
  line-height: 1.75;
  width: 1.75em;
  height: 1.75em;
  background-color: #f3f3f3;
  background-color: var(--bg-lightest);
  color: #646464;
  color: var(--txt-dark);
  border-radius: 1em;
}
ol li > * {
  margin-top: 0.25rem;
}

.bg-lighter ol > li:before {
  background-color: #f3f3f3;
  background-color: var(--bg-lightest);
  color: #444;
  color: var(--txt-darker);
}

.bg-lightest ol > li:before {
  background-color: #fff;
  background-color: var(--bg-clear);
  color: #646464;
  color: var(--bg-dark);
}

.bg-clear ol > li:before {
  background-color: #f3f3f3;
  background-color: var(--bg-lightest);
  color: #646464;
  color: var(--txt-dark);
}

ul:not(.icon-checkmark):not(.list-none) {
  position: relative;
  list-style: none;
  padding-left: 0;
}
ul:not(.icon-checkmark):not(.list-none) li {
  padding-left: 2.25em;
}
ul:not(.icon-checkmark):not(.list-none) li:before {
  content: "";
  position: absolute;
  left: 0.45em;
  margin-top: 0.35em;
  width: 0.8em;
  height: 0.8em;
  background-color: #ddd;
  background-color: var(--bg-lighter);
  border-radius: 1em;
}

.bg-lighter ul > li:before {
  background-color: #f3f3f3;
  background-color: var(--bg-lightest);
}

.bg-lightest ul > li:before {
  background-color: #fff;
  background-color: var(--bg-light);
}

.bg-clear ul > li:before {
  background-color: #ddd;
  background-color: var(--bg-lighter);
}

table {
  width: 100%;
  border: none;
  text-align: left;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

tbody > tr {
  border-bottom: 1px solid #ddd;
}

tbody > tr:first-child {
  border-top: 1px solid #ddd;
}

thead + tbody > tr:first-child {
  border-top: none;
}

.bar {
  position: relative;
  width: 100%;
  height: 0.5rem;
  background-color: #f3f3f3;
}
.bar--progress {
  position: absolute;
  display: block;
  width: 0;
  height: 100%;
  background-color: #77b65b;
  transition: width 300ms ease-in-out;
}

.stars,
.stars > *,
.stars--bg-transparent:before,
.stars--white:before {
  background: transparent url("../img/icon-stars-lg.svg") no-repeat bottom left;
  overflow: hidden;
}

.theme-green .stars,
.theme-green .stars > *,
.stars--green,
.stars--green > * {
  background: transparent url("../img/icon-stars-lg-green.svg") no-repeat bottom left;
  overflow: hidden;
}

.stars--white,
.stars--bg-transparent {
  position: relative;
  background: none;
}

.stars--bg-transparent:before,
.stars--white:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.25;
}

.stars, .stars--bg-transparent:before {
  background-position: 0.1rem top !important;
}

.stars > * {
  background-position: 0.1rem bottom !important;
}

.stars--big, .stars--big.stars--bg-transparent:before {
  background-position: 0.15rem top !important;
}

.stars--big > * {
  background-position: 0.15rem bottom !important;
}

.stars, .stars > *, .stars--white:before, .stars--bg-transparent:before {
  background-size: 10.8rem 4.45rem !important;
  width: 11rem !important;
  height: 1.9rem !important;
}

.stars--big, .stars--big > *, .stars--big.stars--bg-transparent:before, .stars--big.stars--white:before {
  background-size: 16.2rem 6.63rem !important;
  width: 16.5rem !important;
  height: 2.85rem !important;
}

@media screen and (min-width: 360px) {
  .xs\:stars, .xs\:stars--bg-transparent:before {
    background-position: 0.1rem top !important;
  }
  .xs\:stars > * {
    background-position: 0.1rem bottom !important;
  }
  .xs\:stars--big, .xs\:stars--big.stars--bg-transparent:before {
    background-position: 0.15rem top !important;
  }
  .xs\:stars--big > * {
    background-position: 0.15rem bottom !important;
  }
  .xs\:stars, .xs\:stars > *, .xs\:stars--white:before, .xs\:stars--bg-transparent:before {
    background-size: 10.8rem 4.45rem !important;
    width: 11rem !important;
    height: 1.9rem !important;
  }
  .xs\:stars--big, .xs\:stars--big > *, .xs\:stars--big.stars--bg-transparent:before, .xs\:stars--big.stars--white:before {
    background-size: 16.2rem 6.63rem !important;
    width: 16.5rem !important;
    height: 2.85rem !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:stars, .sm\:stars--bg-transparent:before {
    background-position: 0.1rem top !important;
  }
  .sm\:stars > * {
    background-position: 0.1rem bottom !important;
  }
  .sm\:stars--big, .sm\:stars--big.stars--bg-transparent:before {
    background-position: 0.15rem top !important;
  }
  .sm\:stars--big > * {
    background-position: 0.15rem bottom !important;
  }
  .sm\:stars, .sm\:stars > *, .sm\:stars--white:before, .sm\:stars--bg-transparent:before {
    background-size: 10.8rem 4.45rem !important;
    width: 11rem !important;
    height: 1.9rem !important;
  }
  .sm\:stars--big, .sm\:stars--big > *, .sm\:stars--big.stars--bg-transparent:before, .sm\:stars--big.stars--white:before {
    background-size: 16.2rem 6.63rem !important;
    width: 16.5rem !important;
    height: 2.85rem !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:stars, .md\:stars--bg-transparent:before {
    background-position: 0.1rem top !important;
  }
  .md\:stars > * {
    background-position: 0.1rem bottom !important;
  }
  .md\:stars--big, .md\:stars--big.stars--bg-transparent:before {
    background-position: 0.15rem top !important;
  }
  .md\:stars--big > * {
    background-position: 0.15rem bottom !important;
  }
  .md\:stars, .md\:stars > *, .md\:stars--white:before, .md\:stars--bg-transparent:before {
    background-size: 10.8rem 4.45rem !important;
    width: 11rem !important;
    height: 1.9rem !important;
  }
  .md\:stars--big, .md\:stars--big > *, .md\:stars--big.stars--bg-transparent:before, .md\:stars--big.stars--white:before {
    background-size: 16.2rem 6.63rem !important;
    width: 16.5rem !important;
    height: 2.85rem !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:stars, .lg\:stars--bg-transparent:before {
    background-position: 0.1rem top !important;
  }
  .lg\:stars > * {
    background-position: 0.1rem bottom !important;
  }
  .lg\:stars--big, .lg\:stars--big.stars--bg-transparent:before {
    background-position: 0.15rem top !important;
  }
  .lg\:stars--big > * {
    background-position: 0.15rem bottom !important;
  }
  .lg\:stars, .lg\:stars > *, .lg\:stars--white:before, .lg\:stars--bg-transparent:before {
    background-size: 10.8rem 4.45rem !important;
    width: 11rem !important;
    height: 1.9rem !important;
  }
  .lg\:stars--big, .lg\:stars--big > *, .lg\:stars--big.stars--bg-transparent:before, .lg\:stars--big.stars--white:before {
    background-size: 16.2rem 6.63rem !important;
    width: 16.5rem !important;
    height: 2.85rem !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:stars, .xl\:stars--bg-transparent:before {
    background-position: 0.1rem top !important;
  }
  .xl\:stars > * {
    background-position: 0.1rem bottom !important;
  }
  .xl\:stars--big, .xl\:stars--big.stars--bg-transparent:before {
    background-position: 0.15rem top !important;
  }
  .xl\:stars--big > * {
    background-position: 0.15rem bottom !important;
  }
  .xl\:stars, .xl\:stars > *, .xl\:stars--white:before, .xl\:stars--bg-transparent:before {
    background-size: 10.8rem 4.45rem !important;
    width: 11rem !important;
    height: 1.9rem !important;
  }
  .xl\:stars--big, .xl\:stars--big > *, .xl\:stars--big.stars--bg-transparent:before, .xl\:stars--big.stars--white:before {
    background-size: 16.2rem 6.63rem !important;
    width: 16.5rem !important;
    height: 2.85rem !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:stars, .xxl\:stars--bg-transparent:before {
    background-position: 0.1rem top !important;
  }
  .xxl\:stars > * {
    background-position: 0.1rem bottom !important;
  }
  .xxl\:stars--big, .xxl\:stars--big.stars--bg-transparent:before {
    background-position: 0.15rem top !important;
  }
  .xxl\:stars--big > * {
    background-position: 0.15rem bottom !important;
  }
  .xxl\:stars, .xxl\:stars > *, .xxl\:stars--white:before, .xxl\:stars--bg-transparent:before {
    background-size: 10.8rem 4.45rem !important;
    width: 11rem !important;
    height: 1.9rem !important;
  }
  .xxl\:stars--big, .xxl\:stars--big > *, .xxl\:stars--big.stars--bg-transparent:before, .xxl\:stars--big.stars--white:before {
    background-size: 16.2rem 6.63rem !important;
    width: 16.5rem !important;
    height: 2.85rem !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:stars, .max\:stars--bg-transparent:before {
    background-position: 0.1rem top !important;
  }
  .max\:stars > * {
    background-position: 0.1rem bottom !important;
  }
  .max\:stars--big, .max\:stars--big.stars--bg-transparent:before {
    background-position: 0.15rem top !important;
  }
  .max\:stars--big > * {
    background-position: 0.15rem bottom !important;
  }
  .max\:stars, .max\:stars > *, .max\:stars--white:before, .max\:stars--bg-transparent:before {
    background-size: 10.8rem 4.45rem !important;
    width: 11rem !important;
    height: 1.9rem !important;
  }
  .max\:stars--big, .max\:stars--big > *, .max\:stars--big.stars--bg-transparent:before, .max\:stars--big.stars--white:before {
    background-size: 16.2rem 6.63rem !important;
    width: 16.5rem !important;
    height: 2.85rem !important;
  }
}
.transition--max-h--show {
  max-height: 300em !important;
}

.transition-none {
  transition: none !important;
}

@media screen and (min-width: 420px) {
  .sm\:transition-none {
    transition: none !important;
  }
}
@media screen and (max-width: 420px) {
  .max-sm\:transition-none {
    transition: none !important;
  }
}
/* After rest, as i.e. max height from grid should be overruled */
/* iOS horizontal scroll hack */
body {
  max-width: calc(100vw - 2px);
}

/* IE11 flex box hack */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie-min-h-s8 {
    min-height: 2em !important;
  }
  .ie-min-h-s16 {
    min-height: 4em !important;
  }
  .ie-min-h-s40 {
    min-height: 10em !important;
  }
  .ie-min-h-s56 {
    min-height: 14em !important;
  }
  .ie-min-h-s72 {
    min-height: 18em !important;
  }
}
/* base */
* {
  box-sizing: border-box;
}

body {
  background-color: #f3f3f3;
  color: #222;
  font-family: Arial, sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.5;
  overflow-y: scroll;
}

.link,
a {
  color: #008fce;
  color: var(--txt-link);
  text-decoration: none;
  cursor: pointer;
}
.link:hover .underline, .link:not(.decoration-none):not(.btn):hover,
a:hover .underline,
a:not(.decoration-none):not(.btn):hover {
  text-decoration: underline;
}
.link.hover-color:hover, .link:hover .hover-color,
a.hover-color:hover,
a:hover .hover-color {
  color: #008fce !important;
  color: var(--txt-link--hover) !important;
}
.link.hover-bg:hover, .link:hover .hover-bg,
a.hover-bg:hover,
a:hover .hover-bg {
  background-color: #008fce !important;
  background-color: var(--txt-link--hover) !important;
}

a:hover .link {
  text-decoration: underline;
}

p {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.image,
img.float-left,
img.left,
img.float-right,
img.right {
  width: auto !important;
  max-width: 49% !important;
}

.image.right,
.image.float-right,
img.float-left,
img.left,
img.float-right,
img.right {
  float: right;
  clear: right;
  margin: 0 0 1rem 0.5rem;
}

.image,
img.float-left,
img.left {
  float: left;
  clear: left;
  margin: 0 1rem 1rem 0;
}

.image {
  position: relative !important;
  left: auto !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  display: inline-block !important;
}

.image img {
  width: auto !important;
  border-radius: 0 !important;
}

img.fullwidth {
  float: none !important;
  clear: both !important;
}

.image.headline-follows {
  margin-top: 2rem;
}

.ti-wings {
  position: absolute;
  width: 100%;
  height: 0;
  padding-bottom: 7.9%;
  bottom: 0;
  overflow: hidden;
}
.ti-wings:before, .ti-wings:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  z-index: 1;
  padding-bottom: 100%;
  background-color: #fff;
  background-color: var(--bg-default);
}
.ti-wings:before {
  right: 75%;
  transform-origin: top right;
  transform: rotate(-6deg);
}
.ti-wings:after {
  left: 25%;
  transform-origin: top left;
  transform: rotate(6deg);
}
.ti-wings.ti-wings-flipped:before {
  right: 25%;
}
.ti-wings.ti-wings-flipped:after {
  left: 75%;
}
.ti-wings > * {
  position: absolute;
  max-width: 60%;
  bottom: 0;
  z-index: 2;
}
.ti-wings--top {
  bottom: auto;
  top: 0;
}
.ti-wings--top:before {
  bottom: 100%;
  transform-origin: bottom right;
  transform: rotate(-6deg);
}
.ti-wings--top:after {
  bottom: 100%;
  transform-origin: bottom left;
  transform: rotate(6deg);
}
.ti-wings--top > * {
  top: 0;
}
.ti-wings--right, .ti-wings--left {
  height: 100%;
  width: auto;
  padding: 0;
  aspect-ratio: 1/11;
  right: 0;
}
.ti-wings--right:before, .ti-wings--right:after, .ti-wings--left:before, .ti-wings--left:after {
  right: auto;
  left: 0;
  height: 100%;
  bottom: auto;
}
.ti-wings--right:before, .ti-wings--left:before {
  top: 75%;
  transform-origin: top left;
}
.ti-wings--right:after, .ti-wings--left:after {
  bottom: 25%;
  transform-origin: bottom left;
}
.ti-wings--left {
  right: auto;
  left: 0;
}
.ti-wings--left:before {
  transform-origin: top right;
  transform: rotate(6deg);
}
.ti-wings--left:after {
  transform-origin: bottom right;
  transform: rotate(-6deg);
}

.show-when-el-out-of-view,
.show-when-top-teaser-hidden {
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}

.no-js .show-when-el-out-of-view,
.show-when-el-out-of-view.show,
.no-js .show-when-top-teaser-hidden,
.show-when-top-teaser-hidden.show {
  opacity: 1;
  pointer-events: all;
}

.panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.3);
  background-color: #fff;
  padding: 0.5rem 0 0;
}

.panel > *:first-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  max-width: 1840px;
  max-width: calc(1840px + 1rem);
}

.panel > * > * {
  flex-grow: 0;
}

.panel > * > *:first-child {
  width: 100%;
  flex-grow: 1;
}

.panel > * > *:first-child h4 {
  margin-bottom: 0;
}

.panel--btn-container {
  width: 100%;
}
.panel--btn-container .btn {
  padding: 0.55em 1.5em 0.35em 0.75em;
}
.panel--btn-container .btn:after {
  right: 0.25rem !important;
}

.panel-help-container > *:last-child {
  display: none;
}
.panel-help-container > *:last-child h5 {
  display: none;
  width: 80%;
}
.panel-help-container .ti-foldout {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.panel ul.icon-checkmark li:before {
  width: 0.9em;
  height: 0.9em;
  margin-bottom: 0.1em;
}
.panel .tisl--content {
  display: flex;
  align-items: center;
  text-align: center;
}
.panel .tisl--content > * {
  display: block;
  width: 100%;
  flex-shrink: 0;
}

.ti-btn-help > *,
.panel > *:not(.panel-help-container),
.container-panel {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.ml-cw-9 {
  margin-left: calc(50vw - 28rem + 0.5rem);
}

.mr-cw-9 {
  margin-right: calc(50vw - 28rem + 0.5rem);
}

.ml-cw-full {
  margin-left: calc(1rem);
}

.container-panel .xs\:min-w-full {
  width: 360px !important;
}

.container-overflow-panel--indent {
  display: inline-block;
}

@media (hover: hover) {
  .container-overflow-panel .overflow-x-auto {
    overflow-x: hidden;
  }
}
.ti-btn-help {
  display: block;
  z-index: 999;
}
.ti-btn-help > .btn {
  /*display: block !important;*/
  display: flex !important;
  align-items: center !important;
  justify-content: center;
  position: relative !important;
  padding: 0.5rem 0 0.5rem 0.5rem !important;
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
  border: 0 !important;
  text-align: center !important;
}
.ti-btn-help > .btn:hover {
  background-color: transparent !important;
}
.ti-btn-help > *:after {
  display: inline-block !important;
  position: relative !important;
  vertical-align: middle;
  transform: rotate(180deg) !important;
  right: 0 !important;
  top: 0 !important;
}

.ti-btn-help > *:not(:hover):not(.icon):after {
  background-image: url("../img/icon-arrow-down-blue.svg");
}

.ti-btn-help > .ti-foldout:last-child {
  width: auto !important;
}

@media screen and (min-width: 360px) {
  .panel {
    padding: 0.5rem 0 2.4em;
    display: flex;
  }
  .panel > *:first-child {
    flex-grow: 1;
  }
  .ti-btn-help {
    margin-top: 1em;
    margin-right: 0.5em;
  }
  .panel-help-container > *:last-child {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 650px) {
  .ti-btn-help > .btn {
    font-family: Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
  }
  .ti-btn-help > .btn:after {
    display: none;
  }
}
@media screen and (min-width: 420px) {
  .panel {
    display: block;
    padding-bottom: 0;
  }
  .panel--btn-container {
    width: 40% !important;
  }
  .panel-help-container {
    display: flex;
    flex-direction: row-reverse;
    margin: 0.5rem 0 0;
  }
  .panel-help-container > *:last-child {
    position: relative;
    padding-top: 0.5rem !important;
    width: 69%;
  }
  .ti-btn-help {
    margin: 0;
  }
  .ti-btn-help:hover {
    background-color: #c4e5f4;
  }
  .panel > *:first-child,
  .container-panel,
  .sm\:container-panel {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .ml-cw-9 {
    margin-left: calc(50vw - 28rem + 0.5rem);
  }
  .mr-cw-9 {
    margin-right: calc(50vw - 28rem + 0.5rem);
  }
  .container-panel .xs\:min-w-full {
    width: 100% !important;
  }
}
@media screen and (min-width: 420px) and (max-height: 50vw) {
  .panel\:block {
    display: block !important;
  }
  .panel\:flex-col {
    flex-direction: column !important;
  }
  .panel\:w-full {
    width: 100% !important;
  }
  .panel {
    left: auto;
    top: 0;
    right: 0;
    width: 31%;
    width: calc(30% + 0.5rem);
    display: flex;
    flex-direction: column;
  }
  .panel *:first-child {
    align-items: end;
  }
  .panel > * > *,
  .panel > * > *:last-child {
    width: auto;
  }
  .panel .tisl--content > * {
    display: inline-block !important;
    white-space: normal;
    line-height: 1.1;
    padding: 0 0.5rem 0.25rem 2.25em !important;
    text-align: left;
  }
  .panel .tisl--content > * > * {
    display: inline !important;
  }
  .panel .tisl--content > *:before {
    margin-right: 0.4em;
    vertical-align: top;
    margin-left: -1.75em;
  }
  .panel-help-container {
    display: block;
  }
  .ti-btn-help {
    width: 100%;
  }
  .ti-btn-help > .btn:after {
    margin-top: 0;
    transform: rotate(0deg) !important;
  }
  .container-panel,
  .sm\:container-panel {
    padding-right: 30% !important;
    padding-right: calc(30% + 1rem) !important;
  }
  .container-panel .sm\:min-w-full {
    width: 420px !important;
  }
  .mr-cw-9 {
    margin-right: calc(30vw + 2rem);
  }
}
@media screen and (min-width: 650px) {
  .panel {
    top: auto;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    box-shadow: none;
    background-color: transparent;
  }
  .panel > *:first-child {
    align-items: end;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    z-index: 20;
    margin-right: 0.5rem;
  }
  .panel > *:first-child,
  .panel-help-container > * {
    background-color: #fff;
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.3);
    top: auto;
    width: 100%;
  }
  .panel-help-container {
    flex-direction: column;
    width: 33.33333%;
    margin-top: 0;
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.3);
  }
  .panel-help-container > * {
    box-shadow: none;
  }
  .panel-help-container > *:last-child {
    padding: 0 !important;
    width: auto;
  }
  .panel-help-container .ti-foldout {
    left: auto;
    transition: box-shadow 300ms 50ms, opacity 200ms, transform 200ms ease-out;
    transform: translate3d(26em, 0, 0);
  }
  .panel-help-container .ti-foldout:last-child {
    width: 26em !important;
    opacity: 0;
  }
  .panel-help-container .ti-foldout.ti-foldout--open.ti-details--xl {
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.3);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .ti-btn-help {
    width: 28%;
    border: 0;
    border-bottom: 1px solid #4ba6ce;
  }
  .ti-btn-help > .btn {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .panel .tisl--content > * {
    text-align: center;
    padding-right: 1rem !important;
  }
  .panel .tisl--content > *:before {
    margin-right: 0.5em;
  }
  .panel > *:first-child,
  .container-panel,
  .sm\:container-panel,
  .md\:container-panel {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .ml-cw-9 {
    margin-left: calc(50vw - 28rem + 0.5rem);
  }
  .mr-cw-9 {
    margin-right: calc(50vw - 28rem + 0.5rem);
  }
  .container-panel .sm\:min-w-full {
    width: 100% !important;
  }
}
@media screen and (min-width: 650px) and (max-height: 50vw) {
  .panel {
    position: sticky;
    right: 0;
    left: 100vw;
    top: 0.5rem;
    margin-right: 0.5rem;
    width: 30%;
    width: calc(30% + 1rem);
    height: 0;
    flex-direction: column;
    padding: 0;
  }
  .panel > *:first-child {
    padding: 0.5rem;
  }
  .panel > *:first-child,
  .panel-help-container > * {
    margin-right: 0;
  }
  .panel--btn-container {
    margin-top: 0.5rem;
  }
  .panel-help-container {
    width: auto;
    margin-top: 0.75rem;
  }
  .panel .tisl--content > * {
    padding: 0.5rem 1em 0.5rem 2.5em !important;
    display: block !important;
    text-align: center !important;
    line-height: 1.5;
  }
  .panel ul.icon-checkmark li > * {
    margin-top: 0;
    margin-left: 0.5em;
  }
  .container-panel,
  .sm\:container-panel,
  .md\:container-panel {
    padding-right: 30% !important;
    padding-right: calc(30% + 2rem) !important;
  }
  .container-panel .sm\:min-w-full {
    width: 420px !important;
  }
  .container-panel .md\:min-w-full {
    width: 650px !important;
  }
  .mr-cw-9 {
    margin-right: calc(30vw + 3rem);
  }
}
@media screen and (min-width: 950px) {
  .panel-help-container {
    width: 28%;
  }
  .ml-cw-9 {
    margin-left: calc(50vw - 28rem + 1rem);
  }
  .mr-cw-9 {
    margin-right: calc(50vw - 28rem + 1rem);
  }
  .container-panel .sm\:min-w-full,
  .container-panel .md\:min-w-full {
    width: 100% !important;
  }
}
@media screen and (min-width: 950px) and (min-height: 54em) {
  .panel-help-container .ti-foldout {
    position: absolute;
    top: auto;
    left: auto;
    bottom: 100%;
    margin-bottom: 20px;
    transform: translate3d(0, 3rem, 0);
    overflow-x: hidden !important;
    will-change: transform, opacity, box-shadow;
  }
  .panel-help-container .ti-foldout.ti-foldout--open.ti-details--xl {
    height: 45em;
    max-height: 80vh !important;
  }
}
@media screen and (min-width: 950px) and (max-height: 50vw) {
  .panel {
    width: 25.5%;
    width: calc(25% + 1rem);
  }
  .panel-help-container {
    width: auto;
  }
  .panel-help-container .ti-foldout {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    transform: translate3d(26em, 0, 0);
  }
  .panel-help-container .ti-foldout.ti-foldout--open.ti-details--xl {
    height: auto;
    max-height: none !important;
  }
  .container-panel,
  .sm\:container-panel,
  .md\:container-panel,
  .lg\:container-panel {
    padding-right: 25% !important;
    padding-right: calc(25% + 2rem) !important;
  }
  .container-panel .sm\:min-w-full {
    width: 420px !important;
  }
  .container-panel .md\:min-w-full {
    width: 650px !important;
  }
  .container-panel .lg\:min-w-full {
    width: 950px !important;
  }
  .mr-cw-9 {
    margin-right: calc(62.5vw - 28rem + 2rem);
  }
}
@media screen and (max-height: 50vw) and (min-height: 26em) {
  .panel-help-container {
    box-shadow: none;
  }
  .panel-help-container > * {
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.3);
  }
  .panel-help-container > *:last-child {
    margin-top: 0.75rem !important;
    padding: 0.75rem 0.5rem 0.5rem !important;
  }
  .panel-help-container > *:last-child > * {
    max-width: 18em;
    margin: 0 auto;
  }
  .panel-help-container > *:last-child .tisl--content {
    display: block;
    transform: none !important;
    transition: none !important;
  }
  .panel-help-container > *:last-child .tisl--content > * {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    line-height: 1.1;
    text-align: left !important;
  }
}
@media screen and (max-height: 50vw) and (min-height: 29em) {
  .panel-help-container > *:last-child {
    padding-top: 1rem !important;
    padding-bottom: 0.75rem !important;
  }
  .panel-help-container > *:last-child h5 {
    display: block !important;
    padding-left: 0.5rem;
  }
}
/*

@media screen and (min-height: 50vw) and (min-width: $grid-br-xl) {
	.panel {
		& h4,
		& .font-sz-4 {
			font-size: calc((math.pow($font_mod_min, 3) *$font_size_min) + 8.98 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
		}
		& .font-sz-5 {
			font-size: calc((math.pow($font_mod_min, 2) *$font_size_min) + 8.98 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
		}
		& .btn {
			font-size: calc(($font_mod_min *$font_size_min *0.8) + 8.98 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
		}
		& .font-sz-8 {
			font-size: $font_size_normal !important;
		}
	}
}
@media screen and (max-height: 50vw) and (min-height: 34em) and (min-width: $grid-br-xl) {
	.panel--btn-container {
		margin-top: $padding-3 !important;
	}

	.panel {
		& h4,
		& .font-sz-4 {
			font-size: calc((math.pow($font_mod_min, 3) *$font_size_min) + 8.98 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
		}
		& .font-sz-5 {
			font-size: calc((math.pow($font_mod_min, 2) *$font_size_min) + 8.98 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
		}
		& .btn {
			font-size: calc(($font_mod_min *$font_size_min *0.8) + 8.98 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
		}
		& .font-sz-8 {
			font-size: $font_size_normal !important;
		}
	}
}
*/
@media screen and (max-height: 50vw) and (min-height: 31em) and (min-width: 1840px) {
  .panel-help-container {
    margin-top: 1.5rem;
  }
  .panel-help-container > *:last-child {
    margin-top: 1.5rem !important;
  }
}
@media screen and (min-width: 1100px) {
  .panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .panel > *:first-child {
    padding-bottom: 1rem;
    margin-right: 1rem;
  }
  .panel-help-container {
    max-width: 18em;
  }
  .panel-help-container > *:last-child h5 {
    width: auto;
  }
  .panel > *:first-child,
  .container-panel,
  .sm\:container-panel,
  .md\:container-panel,
  .lg\:container-panel,
  .xl\:container-panel {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .ml-cw-9 {
    margin-left: calc(50vw - 28rem + 1rem);
  }
  .mr-cw-9 {
    margin-right: calc(50vw - 28rem + 1rem);
  }
  .container-panel .sm\:min-w-full,
  .container-panel .md\:min-w-full,
  .container-panel .lg\:min-w-full {
    width: 100% !important;
  }
}
@media screen and (min-width: 1100px) and (max-height: 50vw) {
  .panel {
    top: 1rem;
    width: 22%;
    width: calc(22% + 1rem);
    margin-right: 1rem;
  }
  .panel > *:first-child {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .panel-help-container {
    max-width: none;
  }
  .container-panel,
  .sm\:container-panel,
  .md\:container-panel,
  .lg\:container-panel,
  .xl\:container-panel {
    padding-right: 22% !important;
    padding-right: calc(22% + 3rem) !important;
  }
  .container-panel .sm\:min-w-full {
    width: 420px !important;
  }
  .container-panel .md\:min-w-full {
    width: 650px !important;
  }
  .container-panel .lg\:min-w-full {
    width: 950px !important;
  }
  .container-panel .xl\:min-w-full {
    width: 1100px !important;
  }
  .mr-cw-9 {
    margin-right: calc(61vw - 28rem + 2rem);
  }
}
@media screen and (min-width: 1400px) {
  .panel {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }
  .panel > *:first-child {
    margin-right: 1.5rem;
  }
  .container-panel,
  .sm\:container-panel,
  .md\:container-panel,
  .lg\:container-panel,
  .xl\:container-panel {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .ml-cw-9 {
    margin-left: calc(50vw - 28rem + 3rem);
  }
  .mr-cw-9 {
    margin-right: calc(50vw - 28rem + 3rem);
  }
  .container-panel .sm\:min-w-full,
  .container-panel .md\:min-w-full,
  .container-panel .lg\:min-w-full,
  .container-panel .xl\:min-w-full {
    width: 100% !important;
  }
  .ti-btn-help {
    width: 15%;
  }
}
@media screen and (min-width: 1400px) and (max-height: 50vw) {
  .panel {
    width: 22%;
    top: 2rem;
    margin-right: 2rem;
  }
  .container-panel,
  .sm\:container-panel,
  .md\:container-panel,
  .lg\:container-panel,
  .xl\:container-panel {
    padding-right: 22% !important;
    padding-right: calc(22% + 3rem) !important;
  }
  .container-panel .sm\:min-w-full {
    width: 420px !important;
  }
  .container-panel .md\:min-w-full {
    width: 650px !important;
  }
  .container-panel .lg\:min-w-full {
    width: 950px !important;
  }
  .container-panel .xl\:min-w-full {
    width: 1100px !important;
  }
  .container-panel .xxl\:min-w-full {
    width: 1400px !important;
  }
  .mr-cw-9 {
    margin-right: calc(61vw - 28rem + 2rem);
  }
}
@media screen and (min-width: 1840px) {
  .container-panel,
  .sm\:container-panel,
  .md\:container-panel,
  .lg\:container-panel,
  .xl\:container-panel {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .ml-cw-9 {
    margin-left: calc(50vw - 28rem + 2rem);
  }
  .mr-cw-9 {
    margin-right: calc(50vw - 28rem + 2rem);
  }
  .container-panel .sm\:min-w-full,
  .container-panel .md\:min-w-full,
  .container-panel .lg\:min-w-full,
  .container-panel .xl\:min-w-full,
  .container-panel .xxl\:min-w-full {
    width: 100% !important;
  }
  .ti-btn-help {
    width: 18%;
  }
}
@media screen and (min-width: 1840px) and (max-height: 50vw) {
  .panel {
    margin-left: calc(50vw + 404.8px + 5rem);
    margin-right: 2rem;
    width: 22%;
    top: 2rem;
  }
  .container-panel .sm\:min-w-full {
    width: 420px !important;
  }
  .container-panel .md\:min-w-full {
    width: 650px !important;
  }
  .container-panel .lg\:min-w-full {
    width: 950px !important;
  }
  .container-panel .xl\:min-w-full {
    width: 1100px !important;
  }
  .container-panel .xxl\:min-w-full {
    width: 1400px !important;
  }
  .ml-cw-9 {
    margin-left: calc(50vw - 920px + (1435.2px - 56rem) / 2 - 3rem);
  }
  .mr-cw-9 {
    margin-right: calc(50vw - 920px + (1435.2px - 56rem) / 2 + 404.8px - 3rem);
  }
}
/* IE11 hack */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .panel .ti-btn-help {
    min-width: 9.3em !important;
  }
}
.ti-line--highlight,
.ti-line\:before,
.ti-line\:after {
  position: relative;
}

.ti-line--highlight:before,
.ti-line\:before:before,
.ti-line\:after:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 6rem;
  height: 0.5rem;
  margin-left: -3rem;
  background-color: #f12b3b;
  bottom: -2rem;
}

.ti-line--left.ti-line\:before:before,
.ti-line--left.ti-line\:after:after {
  left: 0;
  margin-left: 0;
}

.ti-line--right.ti-line\:before:before,
.ti-line--right.ti-line\:after:after {
  left: auto;
  right: 0;
  margin-left: 0;
}

.ti-line--highlight:before {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: auto;
  top: 100%;
}

.ti-line--highlight.ti-line--thin:before,
.ti-line--thin\:before:before,
.ti-line--thin\:after:after {
  height: 0.25rem;
}

.author {
  padding-top: 1rem;
  display: block;
}

blockquote {
  position: relative;
  margin: 0;
  background-color: transparent !important;
  /*background-color: $color-white;
  background-color: var(--bg-clear);
  padding: $blockquote-padding-y $blockquote-padding-x;
  text-align: center;*/
  text-align: left;
  padding: 0;
  padding-top: 3em;
  color: #8e8e8e;
  color: var(--txt-normal);
  z-index: 0;
  /*&:after,
  &.with-author > .author:after {
  	content: "\201C";
  	bottom: -$padding-1-em;
  	right: $padding-3;
  }

  &.with-author:after { display: none; }
  &.with-author > .author:after {
  	bottom: 100%;
  	margin-bottom: -.9em;
  	margin-right: -$blockquote-padding-x;
  	font-size: 7.7777em;
  }*/
}
blockquote:before, blockquote:after, blockquote.with-author > .author:after {
  position: absolute;
  font-size: 9.2em;
  line-height: 1;
  color: #f12b3b;
  color: var(--txt-highlight);
  color: #0273aa !important;
  z-index: -1;
  font-family: "Klint LT W02 Regular", Tahoma, Helvetica, sans-serif;
  font-weight: 300;
  color: #008fce;
}
blockquote:before {
  content: "";
  background: transparent url("../img/icon-quotemark-lg-blue.svg") no-repeat center center;
  background-size: 100%;
  background-size: contain;
  /*content: "\201E"; /* "\201D"; Using the upper version, which is incorrect in danish, as it is decor and not used on the same line */
  /*top: -0.5em;
  top: -.73em;	/* development environment */
  /*left: $padding-2;*/
  /*left: -.06em;*/
  top: 0;
  left: -0.02em;
}
blockquote > .author {
  position: relative;
  color: #222;
  color: var(--txt-darkest);
}

.blockquote--red:before {
  background-image: url("../img/icon-quotemark-lg-red.svg");
}

/* TI uses different fonts with slightly different line heights... hack to alleviate that */
.ti-env blockquote:before {
  top: -0.67em; /* teknologisk.dk */
}

/* IE11 hack */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  blockquote:before, blockquote:after, blockquote.with-author > .author:after {
    font-size: 9.2rem;
  }
}
.ti-dropdown {
  -webkit-user-select: none;
  user-select: none;
  line-height: 1.1;
  display: inline-block;
}
.ti-dropdown.disabled button {
  color: #bbb !important;
  border-color: #bbb !important;
  cursor: default;
}
.ti-dropdown.disabled button .icon {
  opacity: 0.5;
}
.ti-dropdown.disabled button.ti-dropdown--summary:after {
  background-image: url("../img/icon-arrow-down-grey.svg") !important;
}
.ti-dropdown button {
  color: #222;
  outline: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  width: auto;
  border: none;
}
.ti-dropdown button:hover {
  color: #008fce;
}
.ti-dropdown--label {
  padding: 1rem 1rem 0 1rem !important;
}
.ti-dropdown--tag-toggle {
  padding: 0 !important;
  white-space: nowrap;
  /*
  & > input[type=radio] {
  	display: none;

  	& ~ * {
  		color: $color-link;
  		color: var(--txt-link);
  	}

  	&:checked {
  		& ~ * {
  			color: $color-black;
  			color: var(--txt-opaque);
  		}
  	}
  }
  */
}
.ti-dropdown--tag-toggle > label {
  display: block;
  padding: 0.25rem 2.5em 0.25rem 1rem;
}
.ti-dropdown--tag-toggle > label:hover, .ti-dropdown--tag-toggle > input[type=radio]:hover ~ *, .ti-dropdown--tag-toggle > input[type=checkbox]:hover ~ * {
  color: #008fce;
  color: var(--txt-link-hover);
  cursor: pointer;
}
.ti-dropdown--tag-toggle > input[type=radio], .ti-dropdown--tag-toggle > input[type=checkbox] {
  background-color: transparent !important;
  background-image: url("../img/icon-checkmark-darkgrey.svg");
  opacity: 0;
  transform: rotate(-45deg);
  transform-origin: center center;
  transition: opacity 150ms, transform 150ms ease-in-out;
  border-radius: 0 !important; /* type=radio fix */
  width: 0.9em;
  position: absolute;
  top: 0.375rem;
  right: 0.75rem;
  margin: 0;
}
.ti-dropdown--tag-toggle > input[type=radio] ~ *, .ti-dropdown--tag-toggle > input[type=checkbox] ~ * {
  color: #008fce;
  color: var(--txt-link);
}
.ti-dropdown--tag-toggle > input[type=radio]:checked, .ti-dropdown--tag-toggle > input[type=checkbox]:checked {
  opacity: 1;
  transform: rotate(0);
}
.ti-dropdown--tag-toggle > input[type=radio]:checked:not([type=radio]):hover, .ti-dropdown--tag-toggle > input[type=checkbox]:checked:not([type=radio]):hover {
  background-image: url("../img/icon-close-blue.svg");
}
.ti-dropdown--tag-toggle > input[type=radio]:checked ~ *, .ti-dropdown--tag-toggle > input[type=checkbox]:checked ~ * {
  color: #000;
  color: var(--txt-opaque);
}
.ti-dropdown li:first-child > .ti-dropdown--tag-toggle {
  margin-top: 1em;
}
.ti-dropdown li:last-child > .ti-dropdown--tag-toggle {
  margin-bottom: 1em;
}
.ti-dropdown input[type=radio].disabled ~ *, .ti-dropdown input[type=radio].disabled ~ * *, .ti-dropdown input[type=checkbox].disabled ~ *, .ti-dropdown input[type=checkbox].disabled ~ * * {
  color: #bbb !important;
}
.ti-dropdown input[type=radio].disabled:not(:checked), .ti-dropdown input[type=checkbox].disabled:not(:checked) {
  pointer-events: none !important;
}
.ti-dropdown input[type=radio].disabled:not(:checked) ~ *, .ti-dropdown input[type=checkbox].disabled:not(:checked) ~ * {
  pointer-events: none !important;
}
.ti-dropdown input[type=radio].disabled:checked, .ti-dropdown input[type=checkbox].disabled:checked {
  opacity: 0.4 !important;
}
.ti-dropdown--summary {
  font-size: 1em;
}
.ti-dropdown--summary:after, .ti-dropdown--content li > div button:after {
  content: "" !important;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  margin-top: 0 !important;
  display: inline-block !important;
  width: 0.66em !important;
  height: 0.66em !important;
  vertical-align: middle !important;
  margin-left: 0.3em !important;
  background: transparent url("../img/icon-arrow-down-black.svg") no-repeat center center !important;
  background-size: contain !important;
  transform-origin: 46% 54% !important;
  transform: rotate(0deg) !important;
  transition: transform 150ms ease-in-out;
}
.ti-dropdown--content li > div button:after {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  right: 50% !important;
  width: 0.9em !important;
  margin-right: -0.45em !important;
  height: auto !important;
  background-image: url("../img/icon-arrow-down-blue.svg") !important;
  transform-origin: 46% center !important;
}
.ti-dropdown--content li li > div button:after {
  width: 0.7em !important;
  margin-right: -0.35em !important;
  transform-origin: center center !important;
}
.ti-dropdown--summary:hover:after, .ti-dropdown--title:hover:after {
  background-image: url("../img/icon-arrow-down-blue.svg") !important;
}
.ti-dropdown--content li > div button:hover:after {
  background-image: url("../img/icon-arrow-down-black.svg") !important;
}
.ti-dropdown--open > .ti-dropdown--summary:after {
  transform: rotate(-180deg) !important;
  margin-bottom: 0.2em !important;
}
.ti-dropdown--content li.ti-dropdown--open > div button:after {
  transform: rotate(-180deg) !important;
}
.ti-dropdown--content {
  visibility: hidden;
  position: absolute;
  max-width: 23em;
  max-height: 0;
  background-color: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: box-shadow 300ms 50ms, opacity 200ms, transform 200ms ease-out, max-height 0ms;
  transform: translateY(1rem);
  overflow: hidden;
}
.ti-dropdown--content.ti-dropdown--open {
  visibility: visible;
  opacity: 1;
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3);
  z-index: 3000;
  overflow-y: auto;
  overscroll-behavior: contain;
  max-height: 60vh;
  /*max-height: 100000000em;*/
  transform: translateY(0);
}
.ti-dropdown--content ul {
  list-style: none;
  margin: 0 !important;
  padding-left: 1rem !important;
  width: 100%;
}
.ti-dropdown--content ul li {
  padding-left: 0 !important;
}
.ti-dropdown--content ul li:before {
  display: none;
}
.ti-dropdown--content ul li > div {
  position: relative;
  padding: 0.5rem 2.5em 0.5rem 1rem;
  color: #8e8e8e;
  vertical-align: top;
  transition: padding-top 300ms, padding-bottom 300ms;
}
.ti-dropdown--content ul li > div div {
  display: inline;
}
.ti-dropdown--content ul li > div a, .ti-dropdown--content ul li > div button {
  cursor: pointer;
}
.ti-dropdown--content ul li > div a:hover {
  text-decoration: underline;
}
.ti-dropdown--content ul li li > div {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.ti-dropdown--content ul li.ti-dropdown--open > div {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #f3f3f3;
}
.ti-dropdown--content ul li li:first-child > div, .ti-dropdown--content ul li.ti-dropdown--open + li > div {
  padding-top: 0.5rem;
}
.ti-dropdown--content ul li li:last-child > div {
  padding-bottom: 0.5rem;
}
.ti-dropdown--content ul li > div button {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 2.5em !important;
  overflow: hidden !important;
  text-indent: -999em !important;
}
.ti-dropdown--content > ul {
  padding-left: 0 !important;
}
.ti-dropdown--content > ul > li:last-child > div {
  padding-bottom: 1rem;
}
.ti-dropdown--content li > div + ul {
  overflow: hidden;
  max-height: 0;
  transition: max-height 200ms;
}
.ti-dropdown--content li.ti-dropdown--open > ul {
  max-height: 5000px;
  border-bottom: 1px solid #f3f3f3;
}

@media screen and (max-width: 650px) {
  .md\:ti-dropdown-max-expand {
    display: block !important;
    /*		& .ti-dropdown--summary:after {
    			display: none;
    		}*/
  }
  .md\:ti-dropdown-max-expand .ti-dropdown--content {
    visibility: visible !important;
    opacity: 1 !important;
    /*display: block !important;*/
    position: relative !important;
    display: block !important;
    box-shadow: none !important;
    overflow: hidden !important;
    max-height: 0 !important;
    transition: max-height 300ms ease-in-out, transform 300ms ease-out;
  }
  .md\:ti-dropdown-max-expand .ti-dropdown--content.ti-dropdown--open {
    max-height: 20rem !important;
    max-height: 60vh !important;
    overflow: hidden !important;
    overscroll-behavior: auto;
  }
  .md\:ti-dropdown-max-expand .ti-dropdown--content.ti-dropdown--open > * {
    overflow-y: auto;
    max-height: 60vh;
    overscroll-behavior: contain;
  }
}
.ti-filter--template {
  display: none !important;
}
.ti-filter--items {
  margin: 0;
  padding: 0;
}
.ti-filter--bubbles {
  -webkit-user-select: none;
  user-select: none;
}
.ti-filter--bubbles .ti-pill {
  margin-right: 0.5rem;
}
.ti-filter--bubbles .ti-pill .ti-filter-ignore {
  display: none !important;
}
.ti-filter--bubbles:empty + .ti-pill {
  display: none !important;
}

.ti-dropdown--filter {
  margin: 0.25rem 1rem 0.25rem 0.25rem;
}
.ti-dropdown--filter > button {
  font-family: "Klint LT W02 Regular", Tahoma, Helvetica, sans-serif;
}
.ti-dropdown--filter.ti-dropdown--open ~ .ti-dropdown--filter .ti-dropdown--content {
  display: none !important;
}

.ti-filter--buttons {
  display: none !important;
}

.ti-filter--count:empty {
  display: none !important;
}

.disabled[data-filterlistid] {
  color: #bbb !important;
  /*background-color: $color-lightest-grey !important;*/
}
.disabled[data-filterlistid] button {
  opacity: 0.3;
  /*pointer-events: none;*/
}

@media screen and (max-width: 650px) {
  .ti-filter--container > .ti-foldout--summary {
    max-height: 3em;
  }
  .ti-filter--container > .ti-foldout--summary .icon {
    transition: transform 200ms ease-in-out;
  }
  .ti-foldout--open > .ti-filter--container {
    height: calc(100vh - 0.25rem) !important;
    overflow-y: auto;
    padding-bottom: 2rem;
    /* Together with overflow: hidden, height: 100vh; on body and HTML this avoids scroll of contnet */
    position: fixed;
    width: 100vw;
    top: 0;
    bottom: 0;
  }
  .ti-foldout--open > .ti-filter--container > .ti-foldout--summary .icon {
    transform: rotate(-180deg);
  }
  .ti-foldout--open > .ti-filter--container + .ti-filter--buttons {
    position: fixed;
    display: flex !important;
  }
  .ti-filter--buttons {
    display: none;
    flex-direction: row;
  }
  .ti-filter--buttons button {
    border: none !important;
    background-color: transparent;
    margin: 0;
  }
  .ti-filter--buttons button:hover {
    color: #008fce;
  }
  .ti-dropdown--filter {
    border-top: 1px solid #ddd;
    padding: 0 0.5rem !important;
    margin: 0 !important;
    overflow: hidden;
  }
  .ti-dropdown--filter + *:not(.ti-dropdown--filter) {
    border-top: 1px solid #ddd;
    padding: 0.5rem !important;
    margin: 0 !important;
  }
  .ti-dropdown--filter .ti-dropdown--summary {
    padding: 1rem 0 !important;
  }
  .ti-dropdown--filter .ti-dropdown--summary .icon {
    width: 2rem !important;
    margin-right: 0.25rem !important;
  }
  .ti-dropdown--filter .ti-dropdown--content {
    max-width: none !important;
    width: 100% !important;
    margin-top: 0 !important;
  }
  .ti-dropdown--filter .ti-dropdown--content > * {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .ti-dropdown--filter .ti-dropdown--content > * li > *, .ti-dropdown--filter .ti-dropdown--content > * li > .ti-dropdown--tag-toggle label {
    padding-left: 0 !important;
  }
  .ti-dropdown--filter .ti-dropdown--content > .sticky {
    display: none !important;
  }
}
@media screen and (max-width: 360px) {
  .ti-dropdown--filter .ti-dropdown--content > * {
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }
}
/* CLOSE */
a.close {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 30px;
  height: 30px;
  z-index: 60;
  cursor: pointer;
}

details > summary:before,
details > summary:after,
a.close:before,
a.close:after {
  content: "";
  width: 26px;
  height: 3px;
  position: absolute;
  top: 50%;
  /*margin-top: -12px;*/
  opacity: 0;
  background-color: #000;
  -moz-transition: opacity 300ms, -moz-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  will-change: opacity, transform;
}

a.close:not(.close--nodelay):before,
a.close:not(.close--nodelay):after {
  -moz-transition: opacity 300ms, -moz-transform 300ms 300ms;
  transition: opacity 300ms, transform 300ms 300ms;
}

a.close:hover:before,
a.close:hover:after,
details > summary:hover:before,
details > summary:hover:after {
  background-color: #008fce;
}

details > summary:before,
a.close:before {
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

details[open] > summary:before,
.ti-foldout--open a.close:before {
  opacity: 1;
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

details[open] > summary:after,
.ti-foldout--open a.close:after {
  opacity: 1;
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* DETAILS */
details {
  position: relative;
  width: 100%;
}

details > summary {
  cursor: pointer;
  display: block;
  padding: 0.25rem 3rem 0.25rem 1rem;
  border-left: 0.375rem solid #f12b3b;
  list-style-type: none;
}

details > * {
  padding-right: 3rem;
}

details.small-line > summary {
  padding-left: 1.375rem;
  border-left: none;
}

details.small-line:before {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 1.5em;
  background-color: #f12b3b;
}

details > summary:not(:last-child):hover {
  color: #008fce;
}

details > summary::-webkit-details-marker {
  display: none;
}

details > summary::marker {
  display: none;
}

details > summary:active,
details > summary:focus {
  outline: 0;
}

details > summary:before,
details > summary:after {
  display: block;
  top: calc(1em + 0.25rem);
  width: 1em;
  height: 0.1325em;
  margin-top: -0.5em;
  right: 0.05em;
  opacity: 1;
  pointer-events: none;
}

details:not(:first-child) {
  margin-top: 1rem;
}

details[open] > summary {
  margin-bottom: 1rem;
}

summary.close-t-3:before,
summary.close-t-3:after {
  top: calc(1.5em + 0.25rem);
}

summary:last-child {
  cursor: auto;
}

summary:last-child:before,
summary:last-child:after {
  display: none;
}

/* DETAILS FOLDOUT */
.ti-foldout {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  -moz-transition: max-height 400ms ease-in-out, padding 300ms ease-in-out;
  transition: max-height 400ms ease-in-out, padding 300ms ease-in-out;
  max-height: 0;
}
.ti-foldout--preview:after, .ti-foldout--preview-lg:after, .ti-foldout--preview-xl:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(bottom, rgba(243, 243, 243, 0), #f3f3f3); /* Standard syntax */
  background: linear-gradient(to top, #f3f3f3, rgba(243, 243, 243, 0)); /* IE ? */
  background: -ms-linear-gradient(bottom, #f3f3f3, rgba(243, 243, 243, 0)); /* IE 11 */
  transition: opacity 300ms;
  will-change: opacity;
  z-index: 0;
  pointer-events: none;
}
.ti-foldout--preview.ti-foldout--open:after, .ti-foldout--preview-lg.ti-foldout--open:after, .ti-foldout--preview-xl.ti-foldout--open:after {
  opacity: 0;
}
.ti-foldout--preview {
  max-height: 5em;
}
.ti-foldout--preview-lg, .ti-foldout.ti-foldout--open {
  max-height: 20em !important;
}
.ti-foldout.ti-foldout--open.ti-details--xs {
  max-height: 10em !important;
}
.ti-foldout--preview-xl, .ti-foldout.ti-foldout--open.ti-details--sm {
  max-height: 40em !important;
}
.ti-foldout.ti-foldout--open.ti-details--xl {
  max-height: 100em !important;
}
.ti-foldout.ti-foldout--open.ti-details--xxl {
  max-height: 1400em !important;
}
.ti-foldout-container {
  position: relative;
}
.ti-foldout-container > .ti-foldout--summary {
  position: absolute;
  bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.ti-foldout--opened.ti-foldout--preview:after, .ti-foldout--opened.ti-foldout--preview-lg:after, .ti-foldout--open .ti-foldout--hide-on-open, .ti-foldout--open ~ .ti-foldout--hide-on-open {
  display: none;
}

/*
@include responsive(('ti-foldout'), '', ('':''), (
	('',
	 '--closed'): ( max-height: 0 ),
	('--preview-lg',
	 '.ti-foldout--open',
	 '--force-open',
	 '--closed.ti-foldout--open'): ( max-height: 20em ),
	('--preview-sm',
	 '--open.ti-details--xs',
	 '--force-open.ti-details--xs',
	 '--closed.ti-foldout--open.ti-details--xs'): ( max-height: 10em ),
	('--open.ti-details--sm',
	 '--force-open.ti-details--sm',
	 '--closed.ti-foldout--open.ti-details--sm'): ( max-height: 40em ),
	('--open.ti-details--lg',
	 '--force-open.ti-details--lg',
	 '--closed.ti-foldout--open.ti-details--lg'): ( max-height: 70em ),
	('--preview-xl',
	 '--open.ti-details--xl',
	 '--force-open.ti-details--xl',
	 '--closed.ti-foldout--open.ti-details--xl'): ( max-height: 100em ),
	('--open.ti-details--xxl',
	 '--force-open.ti-details--xxl',
	 '--closed.ti-foldout--open.ti-details--xxl'): ( max-height: 1400em )
), $mediasizes);

*/
.theme-turquoise .ti-foldout--preview:after, .theme-turquoise .ti-foldout--preview-lg:after {
  background: linear-gradient(bottom, rgba(243, 243, 243, 0), #eff4f3); /* Standard syntax */
  background: linear-gradient(to top, #eff4f3, rgba(243, 243, 243, 0)); /* IE ? */
  background: -ms-linear-gradient(bottom, #eff4f3, rgba(243, 243, 243, 0)); /* IE 11 */
}

.theme-default .ti-foldout--preview:after, .theme-default .ti-foldout--preview-lg:after {
  background: linear-gradient(bottom, rgba(255, 255, 255, 0), #fff); /* Standard syntax */
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0)); /* IE ? */
  background: -ms-linear-gradient(bottom, #fff, rgba(255, 255, 255, 0)); /* IE 11 */
}

.js .ti-foldout:not(.ti-foldout--open):not(.ti-foldout--preview) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.no-js .ti-foldout {
  max-height: none !important;
}

.no-js .ti-foldout--hide-no-js {
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.no-js .ti-foldout--summary, .no-js .ti-foldout--preview:after, .no-js .ti-foldout--preview-lg:after {
  display: none;
}

@media screen and (max-width: 650px) {
  .ti-mobile-ignore-scroll {
    height: 100% !important;
    height: 100vh !important;
    height: calc(var(--vh, 1vh) * 100) !important;
    overscroll-behavior-y: none;
    overflow: hidden;
  }
}
/* reset of list items */
ul.tab > li {
  padding-left: 0 !important;
}
ul.tab > li:before {
  display: none !important;
}

/* Tabs */
select.tab ~ .tabs-content > .tab,
.select-container.tab ~ .tabs-content > .tab {
  display: none;
}

.no-js select.tab {
  pointer-events: none;
}

.no-js select.tab ~ .tabs-content > .tab:nth-of-type(20n+1),
.no-js .select-container.tab ~ .tabs-content > .tab:nth-of-type(20n+1),
select.tab[data-tab=""] ~ .tabs-content > .tab:nth-of-type(20n+1),
select.tab[data-tab=tab1] ~ .tabs-content > .tab:nth-of-type(20n+1),
select.tab[data-tab=tab2] ~ .tabs-content > .tab:nth-of-type(20n+2),
select.tab[data-tab=tab3] ~ .tabs-content > .tab:nth-of-type(20n+3),
select.tab[data-tab=tab4] ~ .tabs-content > .tab:nth-of-type(20n+4),
select.tab[data-tab=tab5] ~ .tabs-content > .tab:nth-of-type(20n+5),
select.tab[data-tab=tab6] ~ .tabs-content > .tab:nth-of-type(20n+5),
select.tab[data-tab=tab7] ~ .tabs-content > .tab:nth-of-type(20n+6),
.select-container.tab[data-tab=""] ~ .tabs-content > .tab:nth-of-type(20n+1),
.select-container.tab[data-tab=tab1] ~ .tabs-content > .tab:nth-of-type(20n+1),
.select-container.tab[data-tab=tab2] ~ .tabs-content > .tab:nth-of-type(20n+2),
.select-container.tab[data-tab=tab3] ~ .tabs-content > .tab:nth-of-type(20n+3),
.select-container.tab[data-tab=tab4] ~ .tabs-content > .tab:nth-of-type(20n+4),
.select-container.tab[data-tab=tab5] ~ .tabs-content > .tab:nth-of-type(20n+5),
.select-container.tab[data-tab=tab6] ~ .tabs-content > .tab:nth-of-type(20n+6),
.select-container.tab[data-tab=tab7] ~ .tabs-content > .tab:nth-of-type(20n+7) {
  display: block !important;
}

input[type=radio].tab + label {
  cursor: pointer;
}

input[type=radio].tab:checked + label {
  color: #f12b3b;
  padding-bottom: 0.5rem;
  border-bottom: 0.375rem solid #f12b3b;
}

input[type=radio].tab,
input[type=radio].tab ~ .tabs-content > .tab {
  display: none;
}

input[type=radio].tab:nth-of-type(20n+0):checked ~ .tabs-content > .tab:nth-of-type(20n+0),
input[type=radio].tab:nth-of-type(20n+1):checked ~ .tabs-content > .tab:nth-of-type(20n+1),
input[type=radio].tab:nth-of-type(20n+2):checked ~ .tabs-content > .tab:nth-of-type(20n+2),
input[type=radio].tab:nth-of-type(20n+3):checked ~ .tabs-content > .tab:nth-of-type(20n+3),
input[type=radio].tab:nth-of-type(20n+4):checked ~ .tabs-content > .tab:nth-of-type(20n+4),
input[type=radio].tab:nth-of-type(20n+5):checked ~ .tabs-content > .tab:nth-of-type(20n+5),
input[type=radio].tab:nth-of-type(20n+6):checked ~ .tabs-content > .tab:nth-of-type(20n+6),
input[type=radio].tab:nth-of-type(20n+7):checked ~ .tabs-content > .tab:nth-of-type(20n+7) {
  display: block !important;
}

.tab--label-content--show-when-selected,
input[type=radio].tab.tab--hide-other-options ~ label,
.tab-show\:slidedown {
  display: block;
  overflow: hidden;
  transition: max-height 300ms ease-in, padding 300ms;
  will-change: max-height;
}

input[type=radio].tab:not(:checked) + label .tab-show\:slidedown,
.tab--label-content--show-when-selected,
input[type=radio].tab.tab--hide-other-options.unchecked + label,
input[type=radio].tab.tab--hide-other-options:checked ~ label ~ label {
  max-height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: none !important;
  pointer-events: none !important;
}

.tab--slidedown-on-show,
input[type=radio].tab.tab--hide-other-options:not(.unchecked) + label,
input[type=radio].tab:checked + label .tab--label-content--show-when-selected,
input[type=radio].tab.tab--hide-other-options:checked + label {
  max-height: 30em;
}

input[type=radio].tab + label .tab--rotate-180deg-on-show,
input[type=radio].tab:checked + label .tab-show\:rotate--180deg {
  transition: transform 300ms ease-in-out;
}

input[type=radio].tab:checked + label .tab--rotate-180deg-on-show,
input[type=radio].tab:checked + label .tab-show\:rotate--180deg {
  transform: rotate(-180deg);
}

input[type=radio].tab:checked + label .tab-show\:absolute {
  position: absolute !important;
}

input[type=radio].tab:checked + label .tab-show\:top-0 {
  top: 0 !important;
}

input[type=radio].tab:checked + label .tab-show\:left-0 {
  left: 0 !important;
}

input[type=radio].tab:checked + label .tab-show\:right-0 {
  right: 0 !important;
}

input[type=radio].tab:checked + label .tab-show\:hide {
  display: none !important;
}

input[type=radio].tab:checked ~ .tab-show\:border-none,
input[type=radio].tab:checked + label .tab-show\:border-none {
  border: none !important;
}

input[type=radio].tab:checked + label .tab-show\:my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

input[type=radio].tab:checked + label .tab-show\:mt-3 {
  margin-top: 1rem !important;
}

input[type=radio].tab:checked + label .tab-show\:mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

input[type=radio].tab:checked + label .tab-show\:px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

input[type=radio].tab:checked + label .tab-show\:align-center {
  text-align: center !important;
}

input[type=radio].tab:checked + label .tab-show\:max-w-2 {
  max-width: 20rem !important;
}

input[type=radio].tab:checked ~ .tab--hide-any-selected {
  display: none;
}

input[type=radio].tab:checked + label .tab-show\:font-sz-2 {
  margin-left: -0.02em;
  font-size: 20.4974px;
  /* Width factor * Height factor = 1 */
}
input[type=radio].tab:checked + label .tab-show\:font-sz-2 {
  font-size: 20.4974px;
}
@media screen and (min-width: 360px) {
  input[type=radio].tab:checked + label .tab-show\:font-sz-2 {
    font-size: calc(20.4974px + 16.8274 * (0.65 * (100vw - 360px) / 1480 + 0px)) !important;
  }
}
@media screen and (min-width: 1840px) {
  input[type=radio].tab:checked + label .tab-show\:font-sz-2 {
    font-size: calc(20.4974px + 16.8274 * ((0.65px) + 0px)) !important;
  }
}
@media screen and (min-height: 460px) {
  input[type=radio].tab:checked + label .tab-show\:font-sz-2 {
    font-size: calc(20.4974px + 16.8274 * (0px + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-height: 720px) {
  input[type=radio].tab:checked + label .tab-show\:font-sz-2 {
    font-size: calc(20.4974px + 16.8274 * (0px + (0.35px))) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 460px) {
  input[type=radio].tab:checked + label .tab-show\:font-sz-2 {
    font-size: calc(20.4974px + 16.8274 * (0.65 * (100vw - 360px) / 1480 + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 460px) {
  input[type=radio].tab:checked + label .tab-show\:font-sz-2 {
    font-size: calc(20.4974px + 16.8274 * ((0.65px) + 0.35 * (100vh - 460px) / 260)) !important;
  }
}
@media screen and (min-width: 360px) and (min-height: 720px) {
  input[type=radio].tab:checked + label .tab-show\:font-sz-2 {
    font-size: calc(20.4974px + 16.8274 * (0.65 * (100vw - 360px) / 1480 + (0.35px))) !important;
  }
}
@media screen and (min-width: 1840px) and (min-height: 720px) {
  input[type=radio].tab:checked + label .tab-show\:font-sz-2 {
    font-size: 37.3248px !important;
  }
}

@media screen and (min-width: 950px) {
  input[type=radio].tab:checked + label .lg\:tab-show\:font-sz-0 {
    margin-left: -0.04em;
    font-size: 45.01536501px !important;
  }
  input[type=radio].tab:checked + label .lg\:tab-show\:font-sz-1 {
    margin-left: -0.02em;
    font-size: 33.82071px !important;
  }
  input[type=radio].tab:checked + label .lg\:tab-show\:font-sz-2 {
    margin-left: -0.02em;
    font-size: 30.7461px !important;
  }
  input[type=radio].tab:checked + label .lg\:tab-show\:font-sz-3 {
    font-size: 27.951px !important;
  }
  input[type=radio].tab:checked + label .lg\:tab-show\:font-sz-4 {
    font-size: 25.41px !important;
  }
  input[type=radio].tab:checked + label .lg\:tab-show\:font-sz-5,
  input[type=radio].tab:checked + label .lg\:tab-show\:font-sz-6 {
    font-size: 23.1px !important;
  }
  input[type=radio].tab:checked + label .lg\:tab-show\:font-sz-7 {
    font-size: 1rem !important;
  }
  input[type=radio].tab:checked + label .lg\:tab-show\:font-sz-8 {
    font-size: 0.8rem !important;
  }
  input[type=radio].tab:checked + label .lg\:tab-show\:font-sz-9 {
    font-size: 0.7rem !important;
  }
}
/* 1.75 */
/* 3 */
input[type=radio].tisl--button:not([type=button]):not([type=submit]):not(.btn) {
  border: none;
  padding: 0;
  width: 1.75rem;
  height: 1.75rem;
  transition: width 150ms ease-in-out, transform 150ms ease-in-out;
  background-image: none !important;
  background-color: transparent;
  position: absolute;
  z-index: 2;
}
input[type=radio].tisl--button:after {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  border-radius: 9999px;
  background-color: #ddd;
  background-color: var(--bg-lighter);
  transition: background-color 150ms;
}
input[type=radio].tisl--button:hover:after {
  background-color: #008fce;
  background-color: var(--bg-highlight);
}
input[type=radio].tisl--button:not([type=button]):not([type=submit]):not(.btn):checked {
  width: 3rem;
}
input[type=radio].tisl--button:checked {
  background-image: none;
}
input[type=radio].tisl--button:checked:after {
  background-color: #008fce;
  background-color: var(--bg-normal);
}

.tisl--container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.tisl--content {
  height: 100%;
  transition: transform 300ms ease-out;
  white-space: nowrap;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  user-select: none;
  /*	pointer-events: none; */
  /* short for adding a bigger touch area, if the slides content doesn't fill out the entire height */
  /* Instead of using flex */
  /* Remember to add z-0 on the .tisl or .tisl-container to surface the radio buttons */
}
.tisl--content > * {
  display: inline-block;
  white-space: normal;
  vertical-align: top;
  width: 100%;
  min-height: 100%;
}
.tisl--content a {
  -webkit-user-select: auto;
  -webkit-user-drag: auto;
  user-select: auto;
  pointer-events: auto;
}
.tisl--content--dragarea\:before {
  /*
  & > * {
  	z-index: 1;
  }*/
}
.tisl--content--dragarea\:before:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1000em;
  right: 0;
  z-index: 0;
}

/* Use instead of tisl-content */
.tisl--content--rotate {
  height: 100%;
  transition: transform 300ms ease-out;
  transform-origin: 50% 54.5%;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  user-select: none;
  /*	pointer-events: none; */
}
.tisl--content--rotate a, .tisl--content--rotate label {
  -webkit-user-select: auto;
  /*-webkit-user-drag: auto;*/
  user-select: auto;
  pointer-events: auto;
  cursor: pointer;
}
.tisl--content--rotate--keep-horizontal {
  transition: all 300ms ease-out;
  transform-origin: center center;
}

.tisl--button:nth-of-type(5n+1):checked ~ .tisl .tisl--content--rotate {
  transform: rotate(72deg);
}

.tisl--button:nth-of-type(5n+2):checked ~ .tisl .tisl--content--rotate {
  transform: rotate(0deg);
}

.tisl--button:nth-of-type(5n+3):checked ~ .tisl .tisl--content--rotate {
  transform: rotate(-72deg);
}

.tisl--button:nth-of-type(5n+4):checked ~ .tisl .tisl--content--rotate {
  transform: rotate(-144deg);
}

.tisl--button:nth-of-type(5n+5):checked ~ .tisl .tisl--content--rotate {
  transform: rotate(-216deg);
}

.tisl--button:nth-of-type(5n+1):checked ~ .tisl .tisl--content--rotate .tisl--content--rotate--keep-horizontal {
  transform: rotate(-72deg);
}

.tisl--button:nth-of-type(5n+2):checked ~ .tisl .tisl--content--rotate .tisl--content--rotate--keep-horizontal {
  transform: rotate(0deg);
}

.tisl--button:nth-of-type(5n+3):checked ~ .tisl .tisl--content--rotate .tisl--content--rotate--keep-horizontal {
  transform: rotate(72deg);
}

.tisl--button:nth-of-type(5n+4):checked ~ .tisl .tisl--content--rotate .tisl--content--rotate--keep-horizontal {
  transform: rotate(144deg);
}

.tisl--button:nth-of-type(5n+5):checked ~ .tisl .tisl--content--rotate .tisl--content--rotate--keep-horizontal {
  transform: rotate(216deg);
}

.tisl--content--rotate--keep-horizontal {
  opacity: 0.25;
}

.tisl--button:nth-of-type(5n+1):checked ~ .tisl .tisl--content--rotate .tisl--content--rotate--keep-horizontal:nth-child(5n+1),
.tisl--button:nth-of-type(5n+2):checked ~ .tisl .tisl--content--rotate .tisl--content--rotate--keep-horizontal:nth-child(5n+2),
.tisl--button:nth-of-type(5n+3):checked ~ .tisl .tisl--content--rotate .tisl--content--rotate--keep-horizontal:nth-child(5n+3),
.tisl--button:nth-of-type(5n+4):checked ~ .tisl .tisl--content--rotate .tisl--content--rotate--keep-horizontal:nth-child(5n+4),
.tisl--button:nth-of-type(5n+5):checked ~ .tisl .tisl--content--rotate .tisl--content--rotate--keep-horizontal:nth-child(5n+5) {
  opacity: 1;
}

/* Use instead of tisl-content */
.tisl--content--zoomfade,
.tisl--content--zoomfade--staggered-subcontent {
  width: 100%;
  height: 100%;
  contain: paint;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  user-select: none;
  /*	pointer-events: none; */
}
.tisl--content--zoomfade > *,
.tisl--content--zoomfade--staggered-subcontent > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.tisl--content--zoomfade a, .tisl--content--zoomfade label,
.tisl--content--zoomfade--staggered-subcontent a,
.tisl--content--zoomfade--staggered-subcontent label {
  -webkit-user-select: auto;
  /*-webkit-user-drag: auto;*/
  user-select: auto;
  pointer-events: auto;
  cursor: pointer;
}

.tisl--content--zoomfade > *, .tisl--content--zoomfade--staggered-subcontent > * > *, .tisl--content-item--zoomfade {
  transition: transform 500ms ease-out, opacity 400ms;
  transform-origin: 50% 44.5%;
  transform-style: preserve-3d;
  perspective: 400;
  opacity: 0;
  z-index: 0;
}
.tisl--content--zoomfade > *, .tisl--content-item--zoomfade {
  transform: perspective(400px) translate3d(0, 0, 140px) rotateX(0deg) !important;
}
.tisl--content--zoomfade--staggered-subcontent > * > * {
  transform: perspective(400px) translate3d(0, 40px, 140px) rotateX(15deg);
}

.tisl--content--zoomfade--staggered-subcontent > * > *:nth-child(5n+2) {
  transition-delay: 200ms;
}

.tisl--content--zoomfade--staggered-subcontent > * > *:nth-child(5n+3) {
  transition-delay: 380ms;
}

.tisl--content--zoomfade--staggered-subcontent > * > *:nth-child(5n+4) {
  transition-delay: 540ms;
}

.tisl--content--zoomfade--staggered-subcontent > * > *:nth-child(5n+5) {
  transition-delay: 680ms;
}

.tisl--button:nth-of-type(20n+1):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+1),
.tisl--button:nth-of-type(20n+2):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+2),
.tisl--button:nth-of-type(20n+3):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+3),
.tisl--button:nth-of-type(20n+4):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+4),
.tisl--button:nth-of-type(20n+5):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+5),
.tisl--button:nth-of-type(20n+6):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+6),
.tisl--button:nth-of-type(20n+7):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+7),
.tisl--button:nth-of-type(20n+8):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+8),
.tisl--button:nth-of-type(20n+9):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+9),
.tisl--button:nth-of-type(20n+10):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+10),
.tisl--button:nth-of-type(20n+11):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+11),
.tisl--button:nth-of-type(20n+12):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+12),
.tisl--button:nth-of-type(20n+13):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+13),
.tisl--button:nth-of-type(20n+14):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+14),
.tisl--button:nth-of-type(20n+15):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+15),
.tisl--button:nth-of-type(20n+16):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+16),
.tisl--button:nth-of-type(20n+17):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+17),
.tisl--button:nth-of-type(20n+18):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+18),
.tisl--button:nth-of-type(20n+19):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+19),
.tisl--button:nth-of-type(20n+20):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+20),
.tisl--button:nth-of-type(20n+1):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+1) > *,
.tisl--button:nth-of-type(20n+2):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+2) > *,
.tisl--button:nth-of-type(20n+3):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+3) > *,
.tisl--button:nth-of-type(20n+4):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+4) > *,
.tisl--button:nth-of-type(20n+5):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+5) > *,
.tisl--button:nth-of-type(20n+6):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+6) > *,
.tisl--button:nth-of-type(20n+7):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+7) > *,
.tisl--button:nth-of-type(20n+8):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+8) > *,
.tisl--button:nth-of-type(20n+9):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+9) > *,
.tisl--button:nth-of-type(20n+10):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+10) > *,
.tisl--button:nth-of-type(20n+11):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+11) > *,
.tisl--button:nth-of-type(20n+12):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+12) > *,
.tisl--button:nth-of-type(20n+13):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+13) > *,
.tisl--button:nth-of-type(20n+14):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+14) > *,
.tisl--button:nth-of-type(20n+15):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+15) > *,
.tisl--button:nth-of-type(20n+16):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+16) > *,
.tisl--button:nth-of-type(20n+17):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+17) > *,
.tisl--button:nth-of-type(20n+18):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+18) > *,
.tisl--button:nth-of-type(20n+19):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+19) > *,
.tisl--button:nth-of-type(20n+20):checked ~ .tisl .tisl--content--zoomfade--staggered-subcontent > *:nth-child(20n+20) > * {
  transform: perspective(400px) translate3d(0, 0, 0) rotateX(0deg) !important;
  opacity: 1;
  z-index: 1;
}

/*
.tisl--button:nth-of-type(20n+1):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+2),
.tisl--button:nth-of-type(20n+2):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+3),
.tisl--button:nth-of-type(20n+3):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+4),
.tisl--button:nth-of-type(20n+4):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+5),
.tisl--button:nth-of-type(20n+5):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+6),
.tisl--button:nth-of-type(20n+6):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+7),
.tisl--button:nth-of-type(20n+7):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+8),
.tisl--button:nth-of-type(20n+8):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+9),
.tisl--button:nth-of-type(20n+9):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+10),
.tisl--button:nth-of-type(20n+10):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+11),
.tisl--button:nth-of-type(20n+11):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+12),
.tisl--button:nth-of-type(20n+12):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+13),
.tisl--button:nth-of-type(20n+13):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+14),
.tisl--button:nth-of-type(20n+14):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+15),
.tisl--button:nth-of-type(20n+15):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+16),
.tisl--button:nth-of-type(20n+16):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+17),
.tisl--button:nth-of-type(20n+17):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+18),
.tisl--button:nth-of-type(20n+18):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+19),
.tisl--button:nth-of-type(20n+19):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+20),
.tisl--button:nth-of-type(20n+20):checked ~ .tisl .tisl--content--zoomfade > *:nth-child(20n+1) {
	transform: perspective(400px) translate3d(0,0,250px) rotateX(-30deg);
}
*/
/*
input[type=radio].tisl--button:nth-of-type(10n+1) { transform: translateX(-.25rem); }
input[type=radio].tisl--button:nth-of-type(10n+2) { transform: translateX(1.25rem); }
input[type=radio].tisl--button:nth-of-type(10n+3) { transform: translateX(2.75rem); }
*/
input[type=radio].tisl--button:first-of-type:last-of-type {
  display: none;
}

/*
input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+2) { transform: translateX(3rem); }
input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+3) { transform: translateX(4.5rem); }
input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+0) { transform: translateX(15rem); }


input[type=radio].tisl--button:nth-of-type(10n+1):checked ~ .tisl .tisl--content { transform: translateX(0); }
input[type=radio].tisl--button:nth-of-type(10n+2):checked ~ .tisl .tisl--content { transform: translateX(-100%); }
input[type=radio].tisl--button:nth-of-type(10n+3):checked ~ .tisl .tisl--content { transform: translateX(-200%); }
input[type=radio].tisl--button:nth-of-type(10n+4):checked ~ .tisl .tisl--content { transform: translateX(-300%); }


*/
/*
input[type=radio].tisl--button:nth-of-type(10n+1):checked ~ .tisl .tisl--content > *:nth-child(10+1),
input[type=radio].tisl--button:nth-of-type(10n+1):checked ~ .tisl .tisl--content > *:nth-child(10+2),
input[type=radio].tisl--button:nth-of-type(10n+1):checked ~ .tisl .tisl--content > *:nth-child(10+3) { opacity: 1; }*/
input[type=radio].tisl--button:nth-of-type(10n+1) {
  transform: translateX(-0.5rem);
}

input[type=radio].tisl--button:nth-of-type(10n+1):checked ~ .tisl .tisl--content {
  transform: translateX(0%);
}

input[type=radio].tisl--button:nth-of-type(10n+2) {
  transform: translateX(1.25rem);
}

input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+2) {
  transform: translateX(2.5rem);
}

input[type=radio].tisl--button:nth-of-type(10n+2):checked ~ .tisl .tisl--content {
  transform: translateX(-100%);
}

input[type=radio].tisl--button:nth-of-type(10n+3) {
  transform: translateX(3rem);
}

input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+3) {
  transform: translateX(4.25rem);
}

input[type=radio].tisl--button:nth-of-type(10n+3):checked ~ .tisl .tisl--content {
  transform: translateX(-200%);
}

input[type=radio].tisl--button:nth-of-type(10n+4) {
  transform: translateX(4.75rem);
}

input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+4) {
  transform: translateX(6rem);
}

input[type=radio].tisl--button:nth-of-type(10n+4):checked ~ .tisl .tisl--content {
  transform: translateX(-300%);
}

input[type=radio].tisl--button:nth-of-type(10n+5) {
  transform: translateX(6.5rem);
}

input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+5) {
  transform: translateX(7.75rem);
}

input[type=radio].tisl--button:nth-of-type(10n+5):checked ~ .tisl .tisl--content {
  transform: translateX(-400%);
}

input[type=radio].tisl--button:nth-of-type(10n+6) {
  transform: translateX(8.25rem);
}

input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+6) {
  transform: translateX(9.5rem);
}

input[type=radio].tisl--button:nth-of-type(10n+6):checked ~ .tisl .tisl--content {
  transform: translateX(-500%);
}

input[type=radio].tisl--button:nth-of-type(10n+7) {
  transform: translateX(10rem);
}

input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+7) {
  transform: translateX(11.25rem);
}

input[type=radio].tisl--button:nth-of-type(10n+7):checked ~ .tisl .tisl--content {
  transform: translateX(-600%);
}

input[type=radio].tisl--button:nth-of-type(10n+8) {
  transform: translateX(11.75rem);
}

input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+8) {
  transform: translateX(13rem);
}

input[type=radio].tisl--button:nth-of-type(10n+8):checked ~ .tisl .tisl--content {
  transform: translateX(-700%);
}

input[type=radio].tisl--button:nth-of-type(10n+9) {
  transform: translateX(13.5rem);
}

input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+9) {
  transform: translateX(14.75rem);
}

input[type=radio].tisl--button:nth-of-type(10n+9):checked ~ .tisl .tisl--content {
  transform: translateX(-800%);
}

input[type=radio].tisl--button:nth-of-type(10n+0) {
  transform: translateX(15.25rem);
}

input[type=radio].tisl--button:checked ~ input[type=radio].tisl--button:nth-of-type(10n+0) {
  transform: translateX(16.5rem);
}

input[type=radio].tisl--button:nth-of-type(10n+0):checked ~ .tisl .tisl--content {
  transform: translateX(-900%);
}

.tisl--arrow-style input[type=radio]:not([type=submit]):not([type=checkbox]).tisl--button:not(.btn) {
  width: 3rem !important;
  height: 5rem !important;
  margin: -2.5rem 0 0 !important;
  border-radius: none !important;
}
.tisl--arrow-style input[type=radio]:not([type=submit]):not([type=checkbox]).tisl--button:not(.btn):after {
  background-image: url("../img/icon-arrow-down-black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 65%;
  transform: rotate(-90deg);
  background-color: transparent !important;
}
.tisl--arrow-style input[type=radio]:not([type=submit]):not([type=checkbox]).tisl--button:not(.btn):active:after, .tisl--arrow-style input[type=radio]:not([type=submit]):not([type=checkbox]).tisl--button:not(.btn):hover:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
  background-color: transparent !important;
}

.tisl--w-1\/1 .tisl--content > * {
  min-width: 100% !important;
  max-width: 100% !important;
}

.tisl--w-1\/2 .tisl--content > * {
  min-width: 50% !important;
  max-width: 50% !important;
}

.tisl--w-1\/1 .tisl--content, .tisl--w-1\/2 .tisl--content {
  display: flex !important;
  flex-direction: row !important;
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.tisl--w-1\/1 .tisl--content > *, .tisl--w-1\/2 .tisl--content > * {
  flex: 1 0 !important;
  width: 0 !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(1n), .tisl--w-1\/2 .tisl--button:nth-of-type(1n) {
  display: none !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(1n+1), .tisl--w-1\/2 .tisl--button:nth-of-type(2n+1) {
  display: block !important;
}

.tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(3), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(3) {
  transform: translateX(1.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(3), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(3), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(3), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(5) {
  transform: translateX(2.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(4), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(4), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(4), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(7) {
  transform: translateX(4.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(5), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(5), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(9) {
  transform: translateX(5.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(6), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(6), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(6), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(11) {
  transform: translateX(7.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(7), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(7), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(13) {
  transform: translateX(8.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(8), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(8), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(8), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(15), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(15) {
  transform: translateX(10.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(9), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(9), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(17) {
  transform: translateX(11.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(10), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(10), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(10), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(19) {
  transform: translateX(13.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(11), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(11), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(21) {
  transform: translateX(14.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(12), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(12), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(12), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(23), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(23) {
  transform: translateX(16.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(13):checked ~ .tisl--button:nth-of-type(13), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(13), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(24):checked ~ .tisl--button:nth-of-type(25), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(25) {
  transform: translateX(17.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(14), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(13):checked ~ .tisl--button:nth-of-type(14), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(14) {
  transform: translateX(19.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(15), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(15), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(15) {
  transform: translateX(20.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(16), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(16) {
  transform: translateX(22.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(17), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(17) {
  transform: translateX(23.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(18), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(18), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(18) {
  transform: translateX(25.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(19), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(19) {
  transform: translateX(26.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(20), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(20), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(20) {
  transform: translateX(28.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(21):checked ~ .tisl--button:nth-of-type(21), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(21) {
  transform: translateX(29.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(22), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(21):checked ~ .tisl--button:nth-of-type(22), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(22) {
  transform: translateX(31.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(23):checked ~ .tisl--button:nth-of-type(23), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(23), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(23) {
  transform: translateX(32.75rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(24):checked ~ .tisl--button:nth-of-type(24), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(23):checked ~ .tisl--button:nth-of-type(24), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(24) {
  transform: translateX(34.25rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(25):checked ~ .tisl--button:nth-of-type(25), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(24):checked ~ .tisl--button:nth-of-type(25), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(25) {
  transform: translateX(35.75rem) !important;
}

.tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(3) {
  transform: translateX(3rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(3), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(5) {
  transform: translateX(4.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(4), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(7) {
  transform: translateX(6rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(5), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(9) {
  transform: translateX(7.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(6), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(11) {
  transform: translateX(9rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(7), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(13) {
  transform: translateX(10.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(8), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(15) {
  transform: translateX(12rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(9), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(17) {
  transform: translateX(13.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(10), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(19) {
  transform: translateX(15rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(11), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(21) {
  transform: translateX(16.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(12), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(23) {
  transform: translateX(18rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(13), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(25) {
  transform: translateX(19.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(14) {
  transform: translateX(21rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(15) {
  transform: translateX(22.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(16) {
  transform: translateX(24rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(17) {
  transform: translateX(25.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(18) {
  transform: translateX(27rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(19) {
  transform: translateX(28.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(20) {
  transform: translateX(30rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(21) {
  transform: translateX(31.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(22) {
  transform: translateX(33rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(23) {
  transform: translateX(34.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(24) {
  transform: translateX(36rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(25) {
  transform: translateX(37.5rem) !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n+2):checked ~ .tisl--button:nth-of-type(1n+2), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n+1):checked ~ .tisl--button:nth-of-type(1n+2), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(2n+2):checked ~ .tisl--button:nth-of-type(2n+3) {
  width: 1.75rem !important;
}

.tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n):checked, .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(2), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(1), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(3), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(4), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(6), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(8), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(10), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(12), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(13):checked ~ .tisl--button:nth-of-type(14), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(15), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(18), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(20), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(21):checked ~ .tisl--button:nth-of-type(22), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(23), .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(1), .tisl--w-1\/1:not(.tisl--arrow-style) .tisl--button:nth-of-type(23):checked ~ .tisl--button:nth-of-type(24), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n):checked, .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(2), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(2), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(3), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(2), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(2), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(2), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(1), .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(2), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(15), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21), .tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(23) {
  width: 3.5rem !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(1n):checked:after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):nth-last-of-type(2):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(3):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(4):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(6):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(8):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(10):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(12):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(13):checked ~ .tisl--button:nth-of-type(14):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(15):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(18):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(20):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(21):checked ~ .tisl--button:nth-of-type(22):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(23):after, .tisl--w-1\/1 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(1):after, .tisl--w-1\/1 .tisl--button:nth-of-type(23):checked ~ .tisl--button:nth-of-type(24):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1n):checked:after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(3):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(1):after, .tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(2):after, .tisl--w-1\/2 .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13):after, .tisl--w-1\/2 .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(15):after, .tisl--w-1\/2 .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17):after, .tisl--w-1\/2 .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19):after, .tisl--w-1\/2 .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21):after, .tisl--w-1\/2 .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(23):after {
  background-color: var(--bg-normal) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(1):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(1):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(0%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(2):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(2):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(3):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-100%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(3):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(4):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(5):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-200%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(4):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(6):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(7):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-300%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(5):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(8):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(9):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-400%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(6):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(10):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(11):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-500%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(7):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(12):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(13):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-600%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(8):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(14):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(15):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-700%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(9):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(16):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(17):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-800%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(10):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(18):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(19):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-900%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(11):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(20):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(21):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-1000%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(12):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(22):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(23):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-1100%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(13):checked ~ .tisl .tisl--container .tisl--content, .tisl--w-1\/2 .tisl--button:nth-of-type(24):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-1200%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(14):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-1300%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(15):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-1400%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(16):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-1500%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(17):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-1600%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(18):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-1700%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(19):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-1800%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(20):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-1900%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(21):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-2000%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(22):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-2100%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(23):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-2200%) !important;
}

.tisl--w-1\/1 .tisl--button:nth-of-type(24):checked ~ .tisl .tisl--container .tisl--content {
  transform: translateX(-2300%) !important;
}

.tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(1n):checked, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(1n):checked ~ .tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(2):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(2) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(2):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(2) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(3) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(3):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(3) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(4) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(4):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(4) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(5) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(5):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(5) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(6) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(6):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(6) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(7) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(7):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(7) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(8) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(8):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(8) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(9) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(9):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(9) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(10) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(10):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(10) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(11) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(11):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(11) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(12) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(12):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(12) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(14) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(14):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(14) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(15) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(15):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(15) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(16) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(16):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(16) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(17) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(17):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(17) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(18) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(18):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(18) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(19) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(19):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(19) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(20) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(20):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(20) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(21) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(21):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(21) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(22) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(22):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(22) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(23) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(23):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(23):not(:checked) ~ .tisl--button:nth-of-type(24):nth-last-of-type(1), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(24):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(25):nth-last-of-type(2):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1n):checked, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1n):checked ~ .tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(2n+1)):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(3) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(3):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(5) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(5):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(5) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(7) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(7):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(7) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(9) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(9):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(9) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(11) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(11):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(11) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(15) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(15):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(15) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(17) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(17):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(17) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(19) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(19):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(19) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(21) ~ input[type=radio].tisl--button:nth-of-type(1n), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(21):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(1), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(2), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(23):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(25):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button {
  display: none !important;
}

.tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(2):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(2) ~ input[type=radio].tisl--button:nth-of-type(3), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(2):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(3):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(2) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(3) ~ input[type=radio].tisl--button:nth-of-type(4), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(3):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(4):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(3) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(4) ~ input[type=radio].tisl--button:nth-of-type(5), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(4):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(5):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(4) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(5) ~ input[type=radio].tisl--button:nth-of-type(6), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(5):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(6):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(5) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(6) ~ input[type=radio].tisl--button:nth-of-type(7), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(6):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(7):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(6) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(7) ~ input[type=radio].tisl--button:nth-of-type(8), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(7):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(8):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(7) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(8) ~ input[type=radio].tisl--button:nth-of-type(9), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(8):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(9):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(8) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(9) ~ input[type=radio].tisl--button:nth-of-type(10), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(9):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(10):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(9) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(10) ~ input[type=radio].tisl--button:nth-of-type(11), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(10):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(11):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(10) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(11) ~ input[type=radio].tisl--button:nth-of-type(12), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(11):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(12):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(11) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(12) ~ input[type=radio].tisl--button:nth-of-type(13), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(12):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(13):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(12) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(14), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(14):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(14) ~ input[type=radio].tisl--button:nth-of-type(15), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(14):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(15):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(14) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(15) ~ input[type=radio].tisl--button:nth-of-type(16), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(15):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(16):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(15) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(16) ~ input[type=radio].tisl--button:nth-of-type(17), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(16):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(17):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(16) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(17) ~ input[type=radio].tisl--button:nth-of-type(18), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(17):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(18):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(17) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(18) ~ input[type=radio].tisl--button:nth-of-type(19), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(18):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(19):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(18) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(19) ~ input[type=radio].tisl--button:nth-of-type(20), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(19):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(20):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(19) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(20) ~ input[type=radio].tisl--button:nth-of-type(21), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(20):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(21):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(20) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(21) ~ input[type=radio].tisl--button:nth-of-type(22), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(21):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(22):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(21) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(22) ~ input[type=radio].tisl--button:nth-of-type(23), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(22):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(23):not(:checked), .tisl--w-1\/1.tisl--arrow-style .tisl--button:nth-of-type(22) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(23) ~ input[type=radio].tisl--button:nth-of-type(24), .tisl--w-1\/1.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(23):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(24):not(:checked), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(3):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(3) ~ input[type=radio].tisl--button:nth-of-type(5), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(3):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(5):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(5) ~ input[type=radio].tisl--button:nth-of-type(7), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(5):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(7):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(5) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(7) ~ input[type=radio].tisl--button:nth-of-type(9), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(7):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(9):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(7) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(9) ~ input[type=radio].tisl--button:nth-of-type(11), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(9):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(11):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(9) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(11) ~ input[type=radio].tisl--button:nth-of-type(13), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(11):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(13):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(11) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(15), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(15):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(15) ~ input[type=radio].tisl--button:nth-of-type(17), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(15):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(17):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(15) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(17) ~ input[type=radio].tisl--button:nth-of-type(19), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(17):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(19):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(17) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(19) ~ input[type=radio].tisl--button:nth-of-type(21), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(19):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(21):not(:checked), .tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(19) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(21) ~ input[type=radio].tisl--button:nth-of-type(23), .tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(21):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(23):not(:checked) {
  display: block !important;
}

.tisl--arrow-style input[type=radio].tisl--button, .tisl--arrow-style input[type=radio].tisl--button {
  left: -1rem !important;
  top: 50% !important;
  transform: none !important;
}

.tisl--w-1\/1.tisl--arrow-style .tisl--button:checked ~ .tisl--button, .tisl--w-1\/2.tisl--arrow-style .tisl--button:checked ~ .tisl--button {
  left: auto !important;
  right: -1rem !important;
}

.tisl--arrow-style .tisl--button:after, .tisl--arrow-style .tisl--button:after {
  transform: rotate(90deg) !important;
}

.tisl--w-1\/1.tisl--arrow-style .tisl--button:checked ~ .tisl--button:after, .tisl--w-1\/2.tisl--arrow-style .tisl--button:checked ~ .tisl--button:after {
  transform: rotate(-90deg) !important;
}

@media screen and (min-width: 420px) {
  .sm\:tisl--w-1\/2 .tisl--content > * {
    min-width: 50% !important;
    max-width: 50% !important;
  }
  .sm\:tisl--w-1\/3 .tisl--content > * {
    min-width: 33.3333333333% !important;
    max-width: 33.3333333333% !important;
  }
  .sm\:tisl--w-1\/2 .tisl--content, .sm\:tisl--w-1\/3 .tisl--content {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .sm\:tisl--w-1\/2 .tisl--content > *, .sm\:tisl--w-1\/3 .tisl--content > * {
    flex: 1 0 !important;
    width: 0 !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1n) {
    display: none !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(2n+1), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(3n+1) {
    display: block !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(3), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(3), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(4), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(4), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(4) {
    transform: translateX(1.25rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(5), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(7), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(7) {
    transform: translateX(2.75rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(7), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(10), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(10), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(10) {
    transform: translateX(4.25rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(9), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(13) {
    transform: translateX(5.75rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(11), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(16), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(16) {
    transform: translateX(7.25rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(13), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(19), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(19) {
    transform: translateX(8.75rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(15), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(15), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(22), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(21):checked ~ .tisl--button:nth-of-type(22), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(22) {
    transform: translateX(10.25rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(17), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(23):checked ~ .tisl--button:nth-of-type(25), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(24):checked ~ .tisl--button:nth-of-type(25), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(25) {
    transform: translateX(11.75rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(19) {
    transform: translateX(13.25rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(21) {
    transform: translateX(14.75rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(23), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(23) {
    transform: translateX(16.25rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(24):checked ~ .tisl--button:nth-of-type(25), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(25) {
    transform: translateX(17.75rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(3), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(4) {
    transform: translateX(3rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(5), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(7) {
    transform: translateX(4.5rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(7), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(10) {
    transform: translateX(6rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(9), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(13) {
    transform: translateX(7.5rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(11), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(16) {
    transform: translateX(9rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(13), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(19) {
    transform: translateX(10.5rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(15), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(22) {
    transform: translateX(12rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(17), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(25) {
    transform: translateX(13.5rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(19) {
    transform: translateX(15rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(21) {
    transform: translateX(16.5rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(23) {
    transform: translateX(18rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(25) {
    transform: translateX(19.5rem) !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(2n+2):checked ~ .tisl--button:nth-of-type(2n+3), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(3n+2):checked ~ .tisl--button:nth-of-type(3n+4), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(3n+3):checked ~ .tisl--button:nth-of-type(3n+4) {
    width: 1.75rem !important;
  }
  .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n):checked, .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(2), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(2), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(3), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(2), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(2), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(2), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(1), .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(2), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(15), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21), .sm\:tisl--w-1\/2:not(.tisl--arrow-style) .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(23), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n):checked, .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(2), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(3), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(1), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(2), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(3), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(4), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(3), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(4), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(1), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(2), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(3), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(7), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(2), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(3), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(3), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(1), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(2), .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(3), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(10), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(10), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(16), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(19), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(22), .sm\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(21):checked ~ .tisl--button:nth-of-type(22) {
    width: 3.5rem !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1n):checked:after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(3):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(1):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(2):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(15):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21):after, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(23):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1n):checked:after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):nth-last-of-type(2):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):nth-last-of-type(3):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(1):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(2):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(3):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(4):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(3):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(4):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(1):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(2):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(3):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(7):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(2):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(3):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(3):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(1):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(2):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(3):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(10):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(10):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(16):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(19):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(22):after, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(21):checked ~ .tisl--button:nth-of-type(22):after {
    background-color: var(--bg-normal) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(1):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(1):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(2):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(2):nth-last-of-type(2):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(3):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(5):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(5):nth-last-of-type(2):checked ~ .tisl .tisl--content {
    transform: translateX(0%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(2):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(3):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(2):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(3):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(4):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(5):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(5):nth-last-of-type(2):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(6):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(8):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(8):nth-last-of-type(2):checked ~ .tisl .tisl--content {
    transform: translateX(-100%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(4):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(5):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(5):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(6):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(7):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(8):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(8):nth-last-of-type(2):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(9):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(11):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(11):nth-last-of-type(2):checked ~ .tisl .tisl--content {
    transform: translateX(-200%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(6):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(7):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(8):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(9):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(10):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(11):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(11):nth-last-of-type(2):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(12):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(14):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(14):nth-last-of-type(2):checked ~ .tisl .tisl--content {
    transform: translateX(-300%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(8):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(9):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(11):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(12):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(13):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(14):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(14):nth-last-of-type(2):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(15):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(17):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(17):nth-last-of-type(2):checked ~ .tisl .tisl--content {
    transform: translateX(-400%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(10):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(11):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(14):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(15):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(16):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(17):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(17):nth-last-of-type(2):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(18):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(20):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(20):nth-last-of-type(2):checked ~ .tisl .tisl--content {
    transform: translateX(-500%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(12):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(13):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(17):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(18):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(19):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(20):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(20):nth-last-of-type(2):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(21):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(23):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(23):nth-last-of-type(2):checked ~ .tisl .tisl--content {
    transform: translateX(-600%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(14):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(15):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(20):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(21):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(22):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(23):nth-last-of-type(1):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(23):nth-last-of-type(2):checked ~ .tisl .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(24):nth-last-of-type(1):checked ~ .tisl .tisl--content {
    transform: translateX(-700%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(16):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(17):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(23):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/3 .tisl--button:nth-of-type(24):checked ~ .tisl .tisl--container .tisl--content {
    transform: translateX(-800%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(18):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(19):checked ~ .tisl .tisl--container .tisl--content {
    transform: translateX(-900%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(20):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(21):checked ~ .tisl .tisl--container .tisl--content {
    transform: translateX(-1000%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(22):checked ~ .tisl .tisl--container .tisl--content, .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(23):checked ~ .tisl .tisl--container .tisl--content {
    transform: translateX(-1100%) !important;
  }
  .sm\:tisl--w-1\/2 .tisl--button:nth-of-type(24):checked ~ .tisl .tisl--container .tisl--content {
    transform: translateX(-1200%) !important;
  }
  .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1n):checked, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1n):checked ~ .tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(2n+1)):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(3) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(3):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(5) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(5):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(5) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(7) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(7):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(7) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(9) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(9):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(9) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(11) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(11):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(11) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(15):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(15) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(15):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(15) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(17) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(17):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(17) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(19) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(19):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(19) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(21) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(21):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(1), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(23):nth-last-of-type(2), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(23):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(25):nth-last-of-type(3):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1n):checked, .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1n):checked ~ .tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(3n+1)):not(:checked), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(1), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(3n+2)):not(:checked), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(2), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(3), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):nth-last-of-type(1), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):nth-last-of-type(2), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):nth-last-of-type(3), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(4) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(4):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(3), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(7) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(7):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(1), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(2), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(3), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(7) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(10) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(10):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(10) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(2), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(3), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(16) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(16):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(3), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(16) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(19) ~ input[type=radio].tisl--button:nth-of-type(1n), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(19):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(1), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(2), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(3), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(22):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(25):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button {
    display: none !important;
  }
  .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(3):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(3) ~ input[type=radio].tisl--button:nth-of-type(5), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(3):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(5):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(3) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(5) ~ input[type=radio].tisl--button:nth-of-type(7), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(5):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(7):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(5) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(7) ~ input[type=radio].tisl--button:nth-of-type(9), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(7):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(9):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(7) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(9) ~ input[type=radio].tisl--button:nth-of-type(11), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(9):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(11):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(9) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(11) ~ input[type=radio].tisl--button:nth-of-type(13), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(11):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(13):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(11) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(15), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(15):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(15) ~ input[type=radio].tisl--button:nth-of-type(17), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(15):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(17):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(15) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(17) ~ input[type=radio].tisl--button:nth-of-type(19), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(17):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(19):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(17) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(19) ~ input[type=radio].tisl--button:nth-of-type(21), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(19):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(21):not(:checked), .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:nth-of-type(19) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(21) ~ input[type=radio].tisl--button:nth-of-type(23), .sm\:tisl--w-1\/2.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(21):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(23):not(:checked), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(4):not(:checked), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(4) ~ input[type=radio].tisl--button:nth-of-type(7), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(4):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(7):not(:checked), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(7) ~ input[type=radio].tisl--button:nth-of-type(10), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(7):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(10):not(:checked), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(7) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(10) ~ input[type=radio].tisl--button:nth-of-type(13), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(10):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(13):not(:checked), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(10) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(16), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(16):not(:checked), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(16) ~ input[type=radio].tisl--button:nth-of-type(19), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(16):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(19):not(:checked), .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(16) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(19) ~ input[type=radio].tisl--button:nth-of-type(22), .sm\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(19):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(22):not(:checked) {
    display: block !important;
  }
  .sm\:tisl--arrow-style input[type=radio].tisl--button, .sm\:tisl--arrow-style input[type=radio].tisl--button {
    left: -1rem !important;
    top: 50% !important;
    transform: none !important;
  }
  .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:checked ~ .tisl--button, .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:checked ~ .tisl--button {
    left: auto !important;
    right: -1rem !important;
  }
  .sm\:tisl--arrow-style .tisl--button:after, .sm\:tisl--arrow-style .tisl--button:after {
    transform: rotate(90deg) !important;
  }
  .sm\:tisl--w-1\/2.tisl--arrow-style .tisl--button:checked ~ .tisl--button:after, .sm\:tisl--w-1\/3.tisl--arrow-style .tisl--button:checked ~ .tisl--button:after {
    transform: rotate(-90deg) !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:tisl--w-1\/3 .tisl--content > * {
    min-width: 33.3333333333% !important;
    max-width: 33.3333333333% !important;
  }
  .md\:tisl--w-1\/4 .tisl--content > * {
    min-width: 25% !important;
    max-width: 25% !important;
  }
  .md\:tisl--w-1\/3 .tisl--content, .md\:tisl--w-1\/4 .tisl--content {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .md\:tisl--w-1\/3 .tisl--content > *, .md\:tisl--w-1\/4 .tisl--content > * {
    flex: 1 0 !important;
    width: 0 !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1n), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1n) {
    display: none !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(3n+1), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(4n+1) {
    display: block !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(4), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(4), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(4), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(5), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(5), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(5) {
    transform: translateX(1.25rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(7), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(7), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(9), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(9), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(9) {
    transform: translateX(2.75rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(10), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(10), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(10), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(13) {
    transform: translateX(4.25rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(13), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(17), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(17), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(17) {
    transform: translateX(5.75rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(16), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(16), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(21), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(21), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(21) {
    transform: translateX(7.25rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(19), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(19), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(25), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(23):checked ~ .tisl--button:nth-of-type(25), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(24):checked ~ .tisl--button:nth-of-type(25), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(25) {
    transform: translateX(8.75rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(22), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(21):checked ~ .tisl--button:nth-of-type(22), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(22) {
    transform: translateX(10.25rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(23):checked ~ .tisl--button:nth-of-type(25), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(24):checked ~ .tisl--button:nth-of-type(25), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(25) {
    transform: translateX(11.75rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(4), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(5) {
    transform: translateX(3rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(7), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(9) {
    transform: translateX(4.5rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(10), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(13) {
    transform: translateX(6rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(17) {
    transform: translateX(7.5rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(16), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(21) {
    transform: translateX(9rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(19), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(25) {
    transform: translateX(10.5rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(22) {
    transform: translateX(12rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(25) {
    transform: translateX(13.5rem) !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(3n+2):checked ~ .tisl--button:nth-of-type(3n+4), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(3n+3):checked ~ .tisl--button:nth-of-type(3n+4), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(4n+2):checked ~ .tisl--button:nth-of-type(4n+5), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(4n+3):checked ~ .tisl--button:nth-of-type(4n+5), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(4n+4):checked ~ .tisl--button:nth-of-type(4n+5) {
    width: 1.75rem !important;
  }
  .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n):checked, .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(2), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(3), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(1), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(2), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(3), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(4), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(3), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(4), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(1), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(2), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(3), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(7), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(2), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(3), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(3), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(1), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(2), .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(3), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(10), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(10), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(16), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(19), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(22), .md\:tisl--w-1\/3:not(.tisl--arrow-style) .tisl--button:nth-of-type(21):checked ~ .tisl--button:nth-of-type(22), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n):checked, .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(2), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(3), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(4), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(2), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(3), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(4), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(5), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(3), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(4), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(5), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(4), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(3), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(4), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(3), .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(4), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(9), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(9), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(17), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(17), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(21), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(21), .md\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21) {
    width: 3.5rem !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1n):checked:after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):nth-last-of-type(2):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):nth-last-of-type(3):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(1):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(2):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):nth-last-of-type(3):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(4):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(3):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(4):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(1):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(2):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(3):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(7):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(2):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(3):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(7):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(3):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(1):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(2):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(3):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(10):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(10):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(16):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(19):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(19):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(22):after, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(21):checked ~ .tisl--button:nth-of-type(22):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1n):checked:after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):nth-last-of-type(2):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):nth-last-of-type(3):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):nth-last-of-type(4):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(2):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(3):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(4):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(5):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(3):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(4):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(5):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(4):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(3):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(4):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(3):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(4):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(9):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(9):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(13):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(17):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(17):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(21):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(21):after, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21):after {
    background-color: var(--bg-normal) !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(1):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(2):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(2):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(3):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(5):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(5):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(1):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(2):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(2):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(2):nth-last-of-type(3):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(3):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(3):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(4):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(3):checked ~ .tisl .tisl--content {
    transform: translateX(0%) !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(2):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(3):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(4):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(5):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(5):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(6):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(8):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(8):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(2):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(3):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(4):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(5):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(3):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(7):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(7):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(8):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(3):checked ~ .tisl .tisl--content {
    transform: translateX(-100%) !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(5):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(6):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(7):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(8):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(8):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(9):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(11):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(11):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(6):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(7):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(8):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(9):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(3):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(11):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(11):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(12):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(3):checked ~ .tisl .tisl--content {
    transform: translateX(-200%) !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(8):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(9):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(10):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(11):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(11):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(12):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(14):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(14):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(10):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(11):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(12):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(13):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(3):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(15):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(15):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(16):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(3):checked ~ .tisl .tisl--content {
    transform: translateX(-300%) !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(11):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(12):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(13):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(14):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(14):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(15):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(17):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(17):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(14):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(15):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(16):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(17):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(3):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(19):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(19):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(20):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(3):checked ~ .tisl .tisl--content {
    transform: translateX(-400%) !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(14):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(15):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(16):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(17):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(17):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(18):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(20):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(20):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(18):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(19):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(20):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(21):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(3):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(23):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(23):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(24):nth-last-of-type(1):checked ~ .tisl .tisl--content {
    transform: translateX(-500%) !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(17):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(18):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(19):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(20):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(20):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(21):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(23):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(23):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(22):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(23):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/4 .tisl--button:nth-of-type(24):checked ~ .tisl .tisl--container .tisl--content {
    transform: translateX(-600%) !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(20):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(21):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(22):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(23):nth-last-of-type(1):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(23):nth-last-of-type(2):checked ~ .tisl .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(24):nth-last-of-type(1):checked ~ .tisl .tisl--content {
    transform: translateX(-700%) !important;
  }
  .md\:tisl--w-1\/3 .tisl--button:nth-of-type(23):checked ~ .tisl .tisl--container .tisl--content, .md\:tisl--w-1\/3 .tisl--button:nth-of-type(24):checked ~ .tisl .tisl--container .tisl--content {
    transform: translateX(-800%) !important;
  }
  .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1n):checked, .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1n):checked ~ .tisl--button:nth-of-type(1n), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(3n+1)):not(:checked), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(1), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(3n+2)):not(:checked), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(2), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(3), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):nth-last-of-type(1), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):nth-last-of-type(2), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):nth-last-of-type(3), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(4) ~ input[type=radio].tisl--button:nth-of-type(1n), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(4):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(1), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(2), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(7):nth-last-of-type(3), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(7) ~ input[type=radio].tisl--button:nth-of-type(1n), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(7):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(1), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(2), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(10):nth-last-of-type(3), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(7) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(10) ~ input[type=radio].tisl--button:nth-of-type(1n), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(10):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(10) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(1n), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(2), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(3), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(16) ~ input[type=radio].tisl--button:nth-of-type(1n), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(16):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(1), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(2), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(19):nth-last-of-type(3), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(16) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(19) ~ input[type=radio].tisl--button:nth-of-type(1n), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(19):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(1), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(2), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(22):nth-last-of-type(3), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(22):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(25):nth-last-of-type(4):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1n):checked, .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1n):checked ~ .tisl--button:nth-of-type(1n), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(4n+1)):not(:checked), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(1), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(4n+2)):not(:checked), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(2), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(4n+3)):not(:checked), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(3), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(4), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):nth-last-of-type(1), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):nth-last-of-type(2), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):nth-last-of-type(3), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):nth-last-of-type(4), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(5) ~ input[type=radio].tisl--button:nth-of-type(1n), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(5):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(3), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(4), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(9) ~ input[type=radio].tisl--button:nth-of-type(1n), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(9):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(4), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(1n), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(3), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(4), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(17) ~ input[type=radio].tisl--button:nth-of-type(1n), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(17):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(3), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(4), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(21):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(25):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button {
    display: none !important;
  }
  .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(4):not(:checked), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(4) ~ input[type=radio].tisl--button:nth-of-type(7), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(4):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(7):not(:checked), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(4) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(7) ~ input[type=radio].tisl--button:nth-of-type(10), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(7):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(10):not(:checked), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(7) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(10) ~ input[type=radio].tisl--button:nth-of-type(13), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(10):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(13):not(:checked), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(10) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(16), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(16):not(:checked), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(16) ~ input[type=radio].tisl--button:nth-of-type(19), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(16):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(19):not(:checked), .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:nth-of-type(16) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(19) ~ input[type=radio].tisl--button:nth-of-type(22), .md\:tisl--w-1\/3.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(19):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(22):not(:checked), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(5):not(:checked), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(5) ~ input[type=radio].tisl--button:nth-of-type(9), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(5):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(9):not(:checked), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(9) ~ input[type=radio].tisl--button:nth-of-type(13), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(9):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(13):not(:checked), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(17), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(17):not(:checked), .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(17) ~ input[type=radio].tisl--button:nth-of-type(21), .md\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(17):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(21):not(:checked) {
    display: block !important;
  }
  .md\:tisl--arrow-style input[type=radio].tisl--button, .md\:tisl--arrow-style input[type=radio].tisl--button {
    left: -1rem !important;
    top: 50% !important;
    transform: none !important;
  }
  .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:checked ~ .tisl--button, .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:checked ~ .tisl--button {
    left: auto !important;
    right: -1rem !important;
  }
  .md\:tisl--arrow-style .tisl--button:after, .md\:tisl--arrow-style .tisl--button:after {
    transform: rotate(90deg) !important;
  }
  .md\:tisl--w-1\/3.tisl--arrow-style .tisl--button:checked ~ .tisl--button:after, .md\:tisl--w-1\/4.tisl--arrow-style .tisl--button:checked ~ .tisl--button:after {
    transform: rotate(-90deg) !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:tisl--w-1\/4 .tisl--content > * {
    min-width: 25% !important;
    max-width: 25% !important;
  }
  .xl\:tisl--w-1\/4 .tisl--content {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xl\:tisl--w-1\/4 .tisl--content > * {
    flex: 1 0 !important;
    width: 0 !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1n) {
    display: none !important;
  }
  .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(4n+1) {
    display: block !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(5), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(5), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(5) {
    transform: translateX(1.25rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(9), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(9), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(9) {
    transform: translateX(2.75rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(13), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(13) {
    transform: translateX(4.25rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(17), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(17), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(17) {
    transform: translateX(5.75rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(21), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(21), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(21) {
    transform: translateX(7.25rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(22):checked ~ .tisl--button:nth-of-type(25), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(23):checked ~ .tisl--button:nth-of-type(25), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(24):checked ~ .tisl--button:nth-of-type(25), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(25) {
    transform: translateX(8.75rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(5) {
    transform: translateX(3rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(9) {
    transform: translateX(4.5rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(13) {
    transform: translateX(6rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(17) {
    transform: translateX(7.5rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(21) {
    transform: translateX(9rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(25) {
    transform: translateX(10.5rem) !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(4n+2):checked ~ .tisl--button:nth-of-type(4n+5), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(4n+3):checked ~ .tisl--button:nth-of-type(4n+5), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(4n+4):checked ~ .tisl--button:nth-of-type(4n+5) {
    width: 1.75rem !important;
  }
  .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n):checked, .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(2), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(3), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(4), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(2), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(3), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(4), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(5), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(3), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(4), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(5), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(4), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(3), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(4), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(3), .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(4), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(9), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(9), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(13), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(17), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(17), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(21), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(21), .xl\:tisl--w-1\/4:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21) {
    width: 3.5rem !important;
  }
  .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1n):checked:after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):nth-last-of-type(2):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):nth-last-of-type(3):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):nth-last-of-type(4):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(1):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(2):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(3):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):nth-last-of-type(4):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(5):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(3):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(4):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(5):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(4):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(5):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(3):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(4):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(3):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(4):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(6):checked ~ .tisl--button:nth-of-type(9):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(9):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(9):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(13):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(11):checked ~ .tisl--button:nth-of-type(13):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(13):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(17):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(17):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(16):checked ~ .tisl--button:nth-of-type(17):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(21):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(21):after, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21):after {
    background-color: var(--bg-normal) !important;
  }
  .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(1):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(2):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(2):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(2):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(3):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(3):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(4):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(3):checked ~ .tisl .tisl--content {
    transform: translateX(0%) !important;
  }
  .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(2):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(3):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(4):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(5):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(6):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(7):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(7):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(8):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(3):checked ~ .tisl .tisl--content {
    transform: translateX(-100%) !important;
  }
  .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(6):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(7):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(8):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(9):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(10):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(11):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(11):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(12):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(3):checked ~ .tisl .tisl--content {
    transform: translateX(-200%) !important;
  }
  .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(10):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(11):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(12):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(13):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(14):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(15):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(15):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(16):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(3):checked ~ .tisl .tisl--content {
    transform: translateX(-300%) !important;
  }
  .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(14):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(15):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(16):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(17):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(18):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(19):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(19):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(20):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(3):checked ~ .tisl .tisl--content {
    transform: translateX(-400%) !important;
  }
  .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(18):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(19):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(20):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(21):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(22):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(23):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(23):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(24):nth-last-of-type(1):checked ~ .tisl .tisl--content {
    transform: translateX(-500%) !important;
  }
  .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(22):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(23):checked ~ .tisl .tisl--container .tisl--content, .xl\:tisl--w-1\/4 .tisl--button:nth-of-type(24):checked ~ .tisl .tisl--container .tisl--content {
    transform: translateX(-600%) !important;
  }
  .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1n):checked, .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1n):checked ~ .tisl--button:nth-of-type(1n), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(4n+1)):not(:checked), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(1), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(4n+2)):not(:checked), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(2), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(4n+3)):not(:checked), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(3), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(4), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):nth-last-of-type(1), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):nth-last-of-type(2), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):nth-last-of-type(3), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):nth-last-of-type(4), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(5) ~ input[type=radio].tisl--button:nth-of-type(1n), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(5):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(1), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(2), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(3), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(9):nth-last-of-type(4), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(9) ~ input[type=radio].tisl--button:nth-of-type(1n), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(9):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(1), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(2), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(3), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(13):nth-last-of-type(4), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(1n), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(1), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(2), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(3), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(17):nth-last-of-type(4), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(17) ~ input[type=radio].tisl--button:nth-of-type(1n), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(17):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(3), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(4), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(21):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(25):nth-last-of-type(5):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button {
    display: none !important;
  }
  .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(5):not(:checked), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(5) ~ input[type=radio].tisl--button:nth-of-type(9), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(5):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(9):not(:checked), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(5) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(9) ~ input[type=radio].tisl--button:nth-of-type(13), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(9):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(13):not(:checked), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(9) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(13) ~ input[type=radio].tisl--button:nth-of-type(17), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(13):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(17):not(:checked), .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:nth-of-type(13) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(17) ~ input[type=radio].tisl--button:nth-of-type(21), .xl\:tisl--w-1\/4.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(17):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(21):not(:checked) {
    display: block !important;
  }
  .xl\:tisl--arrow-style input[type=radio].tisl--button {
    left: -1rem !important;
    top: 50% !important;
    transform: none !important;
  }
  .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:checked ~ .tisl--button {
    left: auto !important;
    right: -1rem !important;
  }
  .xl\:tisl--arrow-style .tisl--button:after {
    transform: rotate(90deg) !important;
  }
  .xl\:tisl--w-1\/4.tisl--arrow-style .tisl--button:checked ~ .tisl--button:after {
    transform: rotate(-90deg) !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:tisl--w-1\/5 .tisl--content > * {
    min-width: 20% !important;
    max-width: 20% !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--content {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--content > * {
    flex: 1 0 !important;
    width: 0 !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1n) {
    display: none !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(5n+1) {
    display: block !important;
  }
  .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(6), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(6), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(6), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(6), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(6) {
    transform: translateX(1.25rem) !important;
  }
  .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(11), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(11), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(11), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(11) {
    transform: translateX(2.75rem) !important;
  }
  .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(16), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(13):checked ~ .tisl--button:nth-of-type(16), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(16), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(16) {
    transform: translateX(4.25rem) !important;
  }
  .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(21), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(21), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(21), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(21) {
    transform: translateX(5.75rem) !important;
  }
  .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(6) {
    transform: translateX(3rem) !important;
  }
  .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(11) {
    transform: translateX(4.5rem) !important;
  }
  .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(16) {
    transform: translateX(6rem) !important;
  }
  .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:checked ~ .tisl--button:nth-of-type(21) {
    transform: translateX(7.5rem) !important;
  }
  .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(5n+2):checked ~ .tisl--button:nth-of-type(5n+6), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(5n+3):checked ~ .tisl--button:nth-of-type(5n+6), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(5n+4):checked ~ .tisl--button:nth-of-type(5n+6), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(5n+5):checked ~ .tisl--button:nth-of-type(5n+6) {
    width: 1.75rem !important;
  }
  .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(1n):checked, .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(2), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(3), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(4), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(1):nth-last-of-type(5), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(1), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(2), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(3), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(4), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(5), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(6), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(2), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(3), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(4), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(5), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(6), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(2), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(3), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(4), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(5), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(6), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(3), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(4), .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(5), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(6), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(11), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(11), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(11), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(16), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(13):checked ~ .tisl--button:nth-of-type(16), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(16), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(21), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(21), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(21), .xxl\:tisl--w-1\/5:not(.tisl--arrow-style) .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21) {
    width: 3.5rem !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1n):checked:after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):nth-last-of-type(2):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):nth-last-of-type(3):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):nth-last-of-type(4):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):nth-last-of-type(5):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(1):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(2):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(3):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(4):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):nth-last-of-type(5):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(2):checked ~ .tisl--button:nth-of-type(6):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(2):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(3):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(4):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(5):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(3):checked ~ .tisl--button:nth-of-type(6):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(2):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(3):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(4):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(5):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(4):checked ~ .tisl--button:nth-of-type(6):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(3):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(4):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):not(:checked) ~ .tisl--button:nth-of-type(2):not(:checked) ~ .tisl--button:nth-of-type(3):not(:checked) ~ .tisl--button:nth-of-type(4):not(:checked) ~ .tisl--button:nth-of-type(5):not(:checked) ~ .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(7):not(:checked) ~ .tisl--button:nth-of-type(8):not(:checked) ~ .tisl--button:nth-of-type(9):not(:checked) ~ .tisl--button:nth-of-type(10):not(:checked) ~ .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(12):not(:checked) ~ .tisl--button:nth-of-type(13):not(:checked) ~ .tisl--button:nth-of-type(14):not(:checked) ~ .tisl--button:nth-of-type(15):not(:checked) ~ .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(17):not(:checked) ~ .tisl--button:nth-of-type(18):not(:checked) ~ .tisl--button:nth-of-type(19):not(:checked) ~ .tisl--button:nth-of-type(20):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(5):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(5):checked ~ .tisl--button:nth-of-type(6):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(7):checked ~ .tisl--button:nth-of-type(11):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(8):checked ~ .tisl--button:nth-of-type(11):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(9):checked ~ .tisl--button:nth-of-type(11):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(10):checked ~ .tisl--button:nth-of-type(11):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(12):checked ~ .tisl--button:nth-of-type(16):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(13):checked ~ .tisl--button:nth-of-type(16):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(14):checked ~ .tisl--button:nth-of-type(16):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(15):checked ~ .tisl--button:nth-of-type(16):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(17):checked ~ .tisl--button:nth-of-type(21):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(18):checked ~ .tisl--button:nth-of-type(21):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(19):checked ~ .tisl--button:nth-of-type(21):after, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(20):checked ~ .tisl--button:nth-of-type(21):after {
    background-color: var(--bg-normal) !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(1):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(2):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(2):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(2):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(2):nth-last-of-type(4):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(3):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(3):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(3):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(4):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(4):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(5):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(7):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(7):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(7):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(7):nth-last-of-type(4):checked ~ .tisl .tisl--content {
    transform: translateX(0%) !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(2):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(3):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(4):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(5):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(6):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(7):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(7):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(7):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(7):nth-last-of-type(4):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(8):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(8):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(8):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(9):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(9):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(10):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(12):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(12):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(12):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(12):nth-last-of-type(4):checked ~ .tisl .tisl--content {
    transform: translateX(-100%) !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(7):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(8):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(9):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(10):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(11):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(12):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(12):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(12):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(12):nth-last-of-type(4):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(13):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(13):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(13):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(14):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(14):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(15):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(17):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(17):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(17):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(17):nth-last-of-type(4):checked ~ .tisl .tisl--content {
    transform: translateX(-200%) !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(12):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(13):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(14):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(15):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(16):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(17):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(17):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(17):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(17):nth-last-of-type(4):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(18):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(18):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(18):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(19):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(19):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(20):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(22):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(22):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(22):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(22):nth-last-of-type(4):checked ~ .tisl .tisl--content {
    transform: translateX(-300%) !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(17):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(18):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(19):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(20):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(21):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(22):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(22):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(22):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(22):nth-last-of-type(4):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(23):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(23):nth-last-of-type(2):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(23):nth-last-of-type(3):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(24):nth-last-of-type(1):checked ~ .tisl .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(24):nth-last-of-type(2):checked ~ .tisl .tisl--content {
    transform: translateX(-400%) !important;
  }
  .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(22):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(23):checked ~ .tisl .tisl--container .tisl--content, .xxl\:tisl--w-1\/5 .tisl--button:nth-of-type(24):checked ~ .tisl .tisl--container .tisl--content {
    transform: translateX(-500%) !important;
  }
  .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(1n):checked, .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(1n):checked ~ .tisl--button:nth-of-type(1n), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(5n+1)):not(:checked), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(1), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(5n+2)):not(:checked), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(2), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(5n+3)):not(:checked), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(3), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1n):nth-child(1n):checked ~ input[type=radio].tisl--button:not(:nth-of-type(5n+4)):not(:checked), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(4), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(1):nth-last-of-type(5), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6):nth-last-of-type(1), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6):nth-last-of-type(2), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6):nth-last-of-type(3), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6):nth-last-of-type(4), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6):nth-last-of-type(5), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(6) ~ input[type=radio].tisl--button:nth-of-type(1n), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(6):nth-last-of-type(6):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(1), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(2), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(3), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(4), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6):not(:checked) ~ .tisl--button:nth-of-type(11):nth-last-of-type(5), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(11) ~ input[type=radio].tisl--button:nth-of-type(1n), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(11):nth-last-of-type(6):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(1), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(2), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(3), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(4), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(11):not(:checked) ~ .tisl--button:nth-of-type(16):nth-last-of-type(5), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(11) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(16) ~ input[type=radio].tisl--button:nth-of-type(1n), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(16):nth-last-of-type(6):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(1), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(2), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(3), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(4), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(16):not(:checked) ~ .tisl--button:nth-of-type(21):nth-last-of-type(5), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(21):nth-last-of-type(6):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button, .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(26):nth-last-of-type(6):not(:checked) ~ input[type=radio].tisl--button:checked ~ .tisl--button {
    display: none !important;
  }
  .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(1):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(6):not(:checked), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(1) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(6) ~ input[type=radio].tisl--button:nth-of-type(11), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(6):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(11):not(:checked), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(6) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(11) ~ input[type=radio].tisl--button:nth-of-type(16), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(11):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(16):not(:checked), .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:nth-of-type(11) ~ .tisl--button:checked ~ .tisl--button:nth-of-type(16) ~ input[type=radio].tisl--button:nth-of-type(21), .xxl\:tisl--w-1\/5.tisl--arrow-style input[type=radio].tisl--button:nth-of-type(16):nth-child(1n):checked ~ input[type=radio].tisl--button:nth-of-type(21):not(:checked) {
    display: block !important;
  }
  .xxl\:tisl--arrow-style input[type=radio].tisl--button {
    left: -1rem !important;
    top: 50% !important;
    transform: none !important;
  }
  .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:checked ~ .tisl--button {
    left: auto !important;
    right: -1rem !important;
  }
  .xxl\:tisl--arrow-style .tisl--button:after {
    transform: rotate(90deg) !important;
  }
  .xxl\:tisl--w-1\/5.tisl--arrow-style .tisl--button:checked ~ .tisl--button:after {
    transform: rotate(-90deg) !important;
  }
}
/*
@include tislides('tisl', 1, 6, 24, $mediasizes, ( 1: ('xxs'), 2: ('sm'), 3: (), 4:('xl'), 5: ('xxl'), 6: ()));
*/
@media screen and (hover: none) and (min-width: 1px) {
  .tisl--arrow-style input[type=radio].tisl--button:nth-child(1n):nth-of-type(1n):not([type=submit]):not(.btn),
  .tisl--arrow-style input[type=radio].tisl--button:nth-child(1n):nth-of-type(1n):not([type=submit]):not(.btn) ~ input[type=radio].tisl--button:not([type=submit]):not(.btn) {
    display: none !important;
  }
  .tisl--arrow-style .tisl--container {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    box-sizing: content-box;
    width: auto !important;
  }
  .tisl--arrow-style .tisl--container .tisl--content {
    transform: none !important;
  }
  .tisl--arrow-style .tisl--container .tisl--content > * {
    scroll-snap-align: center;
  }
  .tisl--container.pr-0 {
    --tisl-touch-pr: 0rem;
    padding-right: 0 !important;
  }
  .tisl--container.pr-1 {
    --tisl-touch-pr: 0.25rem;
    padding-right: 0 !important;
  }
  .tisl--container,
  .tisl--container.pr-2 {
    --tisl-touch-pr: 0.5rem;
    padding-right: 0 !important;
  }
  .tisl--container.pr-3 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.pr-4 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.pr-5 {
    --tisl-touch-pr: 3rem;
    padding-right: 0 !important;
  }
  .tisl--arrow-style.tisl--w-1\/1 .tisl--content > * {
    min-width: 75% !important;
    max-width: 75% !important;
  }
  .tisl--arrow-style.tisl--w-1\/1 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(75% + var(--tisl-touch-pr)) !important;
    max-width: calc(75% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.tisl--w-1\/2 .tisl--content > * {
    min-width: 45% !important;
    max-width: 45% !important;
  }
  .tisl--arrow-style.tisl--w-1\/2 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(45% + var(--tisl-touch-pr)) !important;
    max-width: calc(45% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.tisl--w-1\/3 .tisl--content > * {
    min-width: 28% !important;
    max-width: 28% !important;
  }
  .tisl--arrow-style.tisl--w-1\/3 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(28% + var(--tisl-touch-pr)) !important;
    max-width: calc(28% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.tisl--w-1\/4 .tisl--content > * {
    min-width: 22% !important;
    max-width: 22% !important;
  }
  .tisl--arrow-style.tisl--w-1\/4 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(22% + var(--tisl-touch-pr)) !important;
    max-width: calc(22% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.tisl--w-1\/5 .tisl--content > * {
    min-width: 17% !important;
    max-width: 17% !important;
  }
  .tisl--arrow-style.tisl--w-1\/5 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(17% + var(--tisl-touch-pr)) !important;
    max-width: calc(17% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.tisl--w-1\/6 .tisl--content > * {
    min-width: 15% !important;
    max-width: 15% !important;
  }
  .tisl--arrow-style.tisl--w-1\/6 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(15% + var(--tisl-touch-pr)) !important;
    max-width: calc(15% + var(--tisl-touch-pr)) !important;
  }
}
@media screen and (hover: none) and (min-width: 360px) {
  .tisl--container.xs\:pr-0 {
    --tisl-touch-pr: 0rem;
    padding-right: 0 !important;
  }
  .tisl--container.xs\:pr-1 {
    --tisl-touch-pr: 0.25rem;
    padding-right: 0 !important;
  }
  .tisl--container.xs\:pr-2 {
    --tisl-touch-pr: 0.5rem;
    padding-right: 0 !important;
  }
  .tisl--container.xs\:pr-3 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.xs\:pr-4 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.xs\:pr-5 {
    --tisl-touch-pr: 3rem;
    padding-right: 0 !important;
  }
  .tisl--arrow-style.xs\:tisl--w-1\/2 .tisl--content > * {
    min-width: 45% !important;
    max-width: 45% !important;
  }
  .tisl--arrow-style.xs\:tisl--w-1\/2 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(45% + var(--tisl-touch-pr)) !important;
    max-width: calc(45% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xs\:tisl--w-1\/3 .tisl--content > * {
    min-width: 28% !important;
    max-width: 28% !important;
  }
  .tisl--arrow-style.xs\:tisl--w-1\/3 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(28% + var(--tisl-touch-pr)) !important;
    max-width: calc(28% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xs\:tisl--w-1\/4 .tisl--content > * {
    min-width: 22% !important;
    max-width: 22% !important;
  }
  .tisl--arrow-style.xs\:tisl--w-1\/4 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(22% + var(--tisl-touch-pr)) !important;
    max-width: calc(22% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xs\:tisl--w-1\/5 .tisl--content > * {
    min-width: 17% !important;
    max-width: 17% !important;
  }
  .tisl--arrow-style.xs\:tisl--w-1\/5 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(17% + var(--tisl-touch-pr)) !important;
    max-width: calc(17% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xs\:tisl--w-1\/6 .tisl--content > * {
    min-width: 15% !important;
    max-width: 15% !important;
  }
  .tisl--arrow-style.xs\:tisl--w-1\/6 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(15% + var(--tisl-touch-pr)) !important;
    max-width: calc(15% + var(--tisl-touch-pr)) !important;
  }
}
@media screen and (hover: none) and (min-width: 420px) {
  .tisl--container.sm\:pr-0 {
    --tisl-touch-pr: 0rem;
    padding-right: 0 !important;
  }
  .tisl--container.sm\:pr-1 {
    --tisl-touch-pr: 0.25rem;
    padding-right: 0 !important;
  }
  .tisl--container.sm\:pr-2 {
    --tisl-touch-pr: 0.5rem;
    padding-right: 0 !important;
  }
  .tisl--container.sm\:pr-3 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.sm\:pr-4 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.sm\:pr-5 {
    --tisl-touch-pr: 3rem;
    padding-right: 0 !important;
  }
  .tisl--arrow-style.sm\:tisl--w-1\/2 .tisl--content > * {
    min-width: 45% !important;
    max-width: 45% !important;
  }
  .tisl--arrow-style.sm\:tisl--w-1\/2 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(45% + var(--tisl-touch-pr)) !important;
    max-width: calc(45% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.sm\:tisl--w-1\/3 .tisl--content > * {
    min-width: 28% !important;
    max-width: 28% !important;
  }
  .tisl--arrow-style.sm\:tisl--w-1\/3 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(28% + var(--tisl-touch-pr)) !important;
    max-width: calc(28% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.sm\:tisl--w-1\/4 .tisl--content > * {
    min-width: 22% !important;
    max-width: 22% !important;
  }
  .tisl--arrow-style.sm\:tisl--w-1\/4 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(22% + var(--tisl-touch-pr)) !important;
    max-width: calc(22% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.sm\:tisl--w-1\/5 .tisl--content > * {
    min-width: 17% !important;
    max-width: 17% !important;
  }
  .tisl--arrow-style.sm\:tisl--w-1\/5 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(17% + var(--tisl-touch-pr)) !important;
    max-width: calc(17% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.sm\:tisl--w-1\/6 .tisl--content > * {
    min-width: 15% !important;
    max-width: 15% !important;
  }
  .tisl--arrow-style.sm\:tisl--w-1\/6 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(15% + var(--tisl-touch-pr)) !important;
    max-width: calc(15% + var(--tisl-touch-pr)) !important;
  }
}
@media screen and (hover: none) and (min-width: 650px) {
  .tisl--container.md\:pr-0 {
    --tisl-touch-pr: 0rem;
    padding-right: 0 !important;
  }
  .tisl--container.md\:pr-1 {
    --tisl-touch-pr: 0.25rem;
    padding-right: 0 !important;
  }
  .tisl--container.md\:pr-2 {
    --tisl-touch-pr: 0.5rem;
    padding-right: 0 !important;
  }
  .tisl--container.md\:pr-3 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.md\:pr-4 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.md\:pr-5 {
    --tisl-touch-pr: 3rem;
    padding-right: 0 !important;
  }
  .tisl--arrow-style.md\:tisl--w-1\/2 .tisl--content > * {
    min-width: 45% !important;
    max-width: 45% !important;
  }
  .tisl--arrow-style.md\:tisl--w-1\/2 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(45% + var(--tisl-touch-pr)) !important;
    max-width: calc(45% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.md\:tisl--w-1\/3 .tisl--content > * {
    min-width: 28% !important;
    max-width: 28% !important;
  }
  .tisl--arrow-style.md\:tisl--w-1\/3 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(28% + var(--tisl-touch-pr)) !important;
    max-width: calc(28% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.md\:tisl--w-1\/4 .tisl--content > * {
    min-width: 22% !important;
    max-width: 22% !important;
  }
  .tisl--arrow-style.md\:tisl--w-1\/4 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(22% + var(--tisl-touch-pr)) !important;
    max-width: calc(22% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.md\:tisl--w-1\/5 .tisl--content > * {
    min-width: 17% !important;
    max-width: 17% !important;
  }
  .tisl--arrow-style.md\:tisl--w-1\/5 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(17% + var(--tisl-touch-pr)) !important;
    max-width: calc(17% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.md\:tisl--w-1\/6 .tisl--content > * {
    min-width: 15% !important;
    max-width: 15% !important;
  }
  .tisl--arrow-style.md\:tisl--w-1\/6 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(15% + var(--tisl-touch-pr)) !important;
    max-width: calc(15% + var(--tisl-touch-pr)) !important;
  }
}
@media screen and (hover: none) and (min-width: 950px) {
  .tisl--container.lg\:pr-0 {
    --tisl-touch-pr: 0rem;
    padding-right: 0 !important;
  }
  .tisl--container.lg\:pr-1 {
    --tisl-touch-pr: 0.25rem;
    padding-right: 0 !important;
  }
  .tisl--container.lg\:pr-2 {
    --tisl-touch-pr: 0.5rem;
    padding-right: 0 !important;
  }
  .tisl--container.lg\:pr-3 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.lg\:pr-4 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.lg\:pr-5 {
    --tisl-touch-pr: 3rem;
    padding-right: 0 !important;
  }
  .tisl--arrow-style.lg\:tisl--w-1\/2 .tisl--content > * {
    min-width: 45% !important;
    max-width: 45% !important;
  }
  .tisl--arrow-style.lg\:tisl--w-1\/2 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(45% + var(--tisl-touch-pr)) !important;
    max-width: calc(45% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.lg\:tisl--w-1\/3 .tisl--content > * {
    min-width: 28% !important;
    max-width: 28% !important;
  }
  .tisl--arrow-style.lg\:tisl--w-1\/3 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(28% + var(--tisl-touch-pr)) !important;
    max-width: calc(28% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.lg\:tisl--w-1\/4 .tisl--content > * {
    min-width: 22% !important;
    max-width: 22% !important;
  }
  .tisl--arrow-style.lg\:tisl--w-1\/4 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(22% + var(--tisl-touch-pr)) !important;
    max-width: calc(22% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.lg\:tisl--w-1\/5 .tisl--content > * {
    min-width: 17% !important;
    max-width: 17% !important;
  }
  .tisl--arrow-style.lg\:tisl--w-1\/5 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(17% + var(--tisl-touch-pr)) !important;
    max-width: calc(17% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.lg\:tisl--w-1\/6 .tisl--content > * {
    min-width: 15% !important;
    max-width: 15% !important;
  }
  .tisl--arrow-style.lg\:tisl--w-1\/6 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(15% + var(--tisl-touch-pr)) !important;
    max-width: calc(15% + var(--tisl-touch-pr)) !important;
  }
}
@media screen and (hover: none) and (min-width: 1100px) {
  .tisl--container.xl\:pr-0 {
    --tisl-touch-pr: 0rem;
    padding-right: 0 !important;
  }
  .tisl--container.xl\:pr-1 {
    --tisl-touch-pr: 0.25rem;
    padding-right: 0 !important;
  }
  .tisl--container.xl\:pr-2 {
    --tisl-touch-pr: 0.5rem;
    padding-right: 0 !important;
  }
  .tisl--container.xl\:pr-3 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.xl\:pr-4 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.xl\:pr-5 {
    --tisl-touch-pr: 3rem;
    padding-right: 0 !important;
  }
  .tisl--arrow-style.xl\:tisl--w-1\/2 .tisl--content > * {
    min-width: 45% !important;
    max-width: 45% !important;
  }
  .tisl--arrow-style.xl\:tisl--w-1\/2 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(45% + var(--tisl-touch-pr)) !important;
    max-width: calc(45% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xl\:tisl--w-1\/3 .tisl--content > * {
    min-width: 28% !important;
    max-width: 28% !important;
  }
  .tisl--arrow-style.xl\:tisl--w-1\/3 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(28% + var(--tisl-touch-pr)) !important;
    max-width: calc(28% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xl\:tisl--w-1\/4 .tisl--content > * {
    min-width: 22% !important;
    max-width: 22% !important;
  }
  .tisl--arrow-style.xl\:tisl--w-1\/4 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(22% + var(--tisl-touch-pr)) !important;
    max-width: calc(22% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xl\:tisl--w-1\/5 .tisl--content > * {
    min-width: 17% !important;
    max-width: 17% !important;
  }
  .tisl--arrow-style.xl\:tisl--w-1\/5 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(17% + var(--tisl-touch-pr)) !important;
    max-width: calc(17% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xl\:tisl--w-1\/6 .tisl--content > * {
    min-width: 15% !important;
    max-width: 15% !important;
  }
  .tisl--arrow-style.xl\:tisl--w-1\/6 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(15% + var(--tisl-touch-pr)) !important;
    max-width: calc(15% + var(--tisl-touch-pr)) !important;
  }
}
@media screen and (hover: none) and (min-width: 1400px) {
  .tisl--container.xxl\:pr-0 {
    --tisl-touch-pr: 0rem;
    padding-right: 0 !important;
  }
  .tisl--container.xxl\:pr-1 {
    --tisl-touch-pr: 0.25rem;
    padding-right: 0 !important;
  }
  .tisl--container.xxl\:pr-2 {
    --tisl-touch-pr: 0.5rem;
    padding-right: 0 !important;
  }
  .tisl--container.xxl\:pr-3 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.xxl\:pr-4 {
    --tisl-touch-pr: 1rem;
    padding-right: 0 !important;
  }
  .tisl--container.xxl\:pr-5 {
    --tisl-touch-pr: 3rem;
    padding-right: 0 !important;
  }
  .tisl--arrow-style.xxl\:tisl--w-1\/2 .tisl--content > * {
    min-width: 45% !important;
    max-width: 45% !important;
  }
  .tisl--arrow-style.xxl\:tisl--w-1\/2 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(45% + var(--tisl-touch-pr)) !important;
    max-width: calc(45% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xxl\:tisl--w-1\/3 .tisl--content > * {
    min-width: 28% !important;
    max-width: 28% !important;
  }
  .tisl--arrow-style.xxl\:tisl--w-1\/3 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(28% + var(--tisl-touch-pr)) !important;
    max-width: calc(28% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xxl\:tisl--w-1\/4 .tisl--content > * {
    min-width: 22% !important;
    max-width: 22% !important;
  }
  .tisl--arrow-style.xxl\:tisl--w-1\/4 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(22% + var(--tisl-touch-pr)) !important;
    max-width: calc(22% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xxl\:tisl--w-1\/5 .tisl--content > * {
    min-width: 17% !important;
    max-width: 17% !important;
  }
  .tisl--arrow-style.xxl\:tisl--w-1\/5 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(17% + var(--tisl-touch-pr)) !important;
    max-width: calc(17% + var(--tisl-touch-pr)) !important;
  }
  .tisl--arrow-style.xxl\:tisl--w-1\/6 .tisl--content > * {
    min-width: 15% !important;
    max-width: 15% !important;
  }
  .tisl--arrow-style.xxl\:tisl--w-1\/6 .tisl--content > *:last-child {
    padding-right: var(--tisl-touch-pr) !important;
    min-width: calc(15% + var(--tisl-touch-pr)) !important;
    max-width: calc(15% + var(--tisl-touch-pr)) !important;
  }
}
/* IE11 hack */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .tisl--arrow-style > input[type=radio] {
    outline: 0;
    border: 1px solid #0ff;
    background-color: #008fce;
  }
  .tisl--arrow-style > input[type=radio]:checked::-ms-check {
    outline: 0;
    border: 1px solid #f0f;
    background-color: #008fce;
  }
}
.ti-input-infobox {
  position: relative;
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle {
  position: relative;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  margin-bottom: 0.2em;
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle:not(.ti-input-infobox--noicon):after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "i";
  font-size: 1em;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  color: var(--txt-clear);
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle:not(.ti-input-infobox--noicon):not(:checked), .ti-input-infobox input[type=checkbox].ti-input-infobox-toggle:not(.ti-input-infobox--noicon):checked {
  background-color: #bbb;
  background-color: var(--bg-light);
  background-image: none;
  border-radius: 100%;
  color: #fff;
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle.txt-dark:not(:checked), .ti-input-infobox input[type=checkbox].ti-input-infobox-toggle.txt-dark:checked {
  background-color: #646464;
  background-color: var(--txt-dark);
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle.txt-normal:not(:checked), .ti-input-infobox input[type=checkbox].ti-input-infobox-toggle.txt-normal:checked {
  background-color: #222;
  background-color: var(--txt-normal);
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle:not(:checked):hover, .ti-input-infobox input[type=checkbox].ti-input-infobox-toggle:checked:hover, .ti-input-infobox input[type=checkbox].ti-input-infobox-toggle.txt-dark:not(:checked):hover, .ti-input-infobox input[type=checkbox].ti-input-infobox-toggle.txt-dark:checked:hover, .ti-input-infobox input[type=checkbox].ti-input-infobox-toggle.txt-normal:not(:checked):hover, .ti-input-infobox input[type=checkbox].ti-input-infobox-toggle.txt-normal:checked:hover {
  background-color: #008fce;
  background-color: var(--txt-link--hover);
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle + .ti-input-infobox-content {
  visibility: hidden;
  position: absolute;
  text-align: center;
  left: 50%;
  width: 14rem;
  max-height: 0;
  margin-top: 0.5rem;
  margin-left: -0.25em;
  background-color: #f3f3f3;
  background-color: var(--bg-lightest);
  color: #646464;
  color: var(--txt-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: box-shadow 300ms 50ms, opacity 200ms, transform 200ms ease-out, max-height 0ms;
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle + .ti-input-infobox-content:before, .ti-input-infobox input[type=checkbox].ti-input-infobox-toggle + .ti-input-infobox-content:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: -0.5rem;
  border-bottom: 0.5rem solid #f3f3f3;
  border-bottom-color: var(--bg-lightest);
  z-index: 10;
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle + .ti-input-infobox-content:before {
  border-left: 0.5rem solid transparent;
  margin-left: -0.5rem;
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle + .ti-input-infobox-content:after {
  border-right: 0.5rem solid transparent;
  margin-right: -0.5rem;
}
.ti-input-infobox input[type=checkbox].ti-input-infobox-toggle:checked + .ti-input-infobox-content {
  visibility: visible;
  max-height: 60em;
  opacity: 1;
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3);
  z-index: 3000;
}

.ti-input-infobox--above .ti-input-infobox-content {
  top: auto !important;
  bottom: 2em !important;
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}

.ti-input-infobox .ti-input-infobox-content, .ti-input-infobox--center .ti-input-infobox-content {
  transform: translateY(1rem) translateX(-50%) !important;
}

.ti-input-infobox--right .ti-input-infobox-content {
  transform: translateY(1rem) translateX(-1.25em) !important;
}

.ti-input-infobox--left .ti-input-infobox-content {
  transform: translateY(1rem) translateX(calc(1.25em - 100%)) !important;
}

.ti-input-infobox--above .ti-input-infobox-content:before, .ti-input-infobox--above .ti-input-infobox-content:after {
  top: auto !important;
  bottom: -0.5rem !important;
  border-bottom: 0 !important;
  border-top: 0.5rem solid #f3f3f3 !important;
  border-top-color: var(--bg-lightest) !important;
}

.ti-input-infobox--center .ti-input-infobox-content:before, .ti-input-infobox--center .ti-input-infobox-content:after {
  left: 50% !important;
  right: auto !important;
}

.ti-input-infobox--right .ti-input-infobox-content:before, .ti-input-infobox--right .ti-input-infobox-content:after {
  left: 1rem !important;
  right: auto !important;
}

.ti-input-infobox--left .ti-input-infobox-content:before, .ti-input-infobox--left .ti-input-infobox-content:after {
  left: auto !important;
  right: 1rem !important;
}

.ti-input-infobox .ti-input-infobox-toggle:checked + .ti-input-infobox-content, .ti-input-infobox--center .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
  transform: translateY(0) translateX(-50%) !important;
}

.ti-input-infobox--right .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
  transform: translateY(0) translateX(-1.25em) !important;
}

.ti-input-infobox--left .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
  transform: translateY(0) translateX(calc(1.25em - 100%)) !important;
}

@media screen and (min-width: 360px) {
  .xs\:ti-input-infobox--above .ti-input-infobox-content {
    top: auto !important;
    bottom: 2em !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
  }
  .xs\:ti-input-infobox .ti-input-infobox-content, .xs\:ti-input-infobox--center .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-50%) !important;
  }
  .xs\:ti-input-infobox--right .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-1.25em) !important;
  }
  .xs\:ti-input-infobox--left .ti-input-infobox-content {
    transform: translateY(1rem) translateX(calc(1.25em - 100%)) !important;
  }
  .xs\:ti-input-infobox--above .ti-input-infobox-content:before, .xs\:ti-input-infobox--above .ti-input-infobox-content:after {
    top: auto !important;
    bottom: -0.5rem !important;
    border-bottom: 0 !important;
    border-top: 0.5rem solid #f3f3f3 !important;
    border-top-color: var(--bg-lightest) !important;
  }
  .xs\:ti-input-infobox--center .ti-input-infobox-content:before, .xs\:ti-input-infobox--center .ti-input-infobox-content:after {
    left: 50% !important;
    right: auto !important;
  }
  .xs\:ti-input-infobox--right .ti-input-infobox-content:before, .xs\:ti-input-infobox--right .ti-input-infobox-content:after {
    left: 1rem !important;
    right: auto !important;
  }
  .xs\:ti-input-infobox--left .ti-input-infobox-content:before, .xs\:ti-input-infobox--left .ti-input-infobox-content:after {
    left: auto !important;
    right: 1rem !important;
  }
  .xs\:ti-input-infobox .ti-input-infobox-toggle:checked + .ti-input-infobox-content, .xs\:ti-input-infobox--center .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-50%) !important;
  }
  .xs\:ti-input-infobox--right .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-1.25em) !important;
  }
  .xs\:ti-input-infobox--left .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(calc(1.25em - 100%)) !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:ti-input-infobox--above .ti-input-infobox-content {
    top: auto !important;
    bottom: 2em !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
  }
  .sm\:ti-input-infobox .ti-input-infobox-content, .sm\:ti-input-infobox--center .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-50%) !important;
  }
  .sm\:ti-input-infobox--right .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-1.25em) !important;
  }
  .sm\:ti-input-infobox--left .ti-input-infobox-content {
    transform: translateY(1rem) translateX(calc(1.25em - 100%)) !important;
  }
  .sm\:ti-input-infobox--above .ti-input-infobox-content:before, .sm\:ti-input-infobox--above .ti-input-infobox-content:after {
    top: auto !important;
    bottom: -0.5rem !important;
    border-bottom: 0 !important;
    border-top: 0.5rem solid #f3f3f3 !important;
    border-top-color: var(--bg-lightest) !important;
  }
  .sm\:ti-input-infobox--center .ti-input-infobox-content:before, .sm\:ti-input-infobox--center .ti-input-infobox-content:after {
    left: 50% !important;
    right: auto !important;
  }
  .sm\:ti-input-infobox--right .ti-input-infobox-content:before, .sm\:ti-input-infobox--right .ti-input-infobox-content:after {
    left: 1rem !important;
    right: auto !important;
  }
  .sm\:ti-input-infobox--left .ti-input-infobox-content:before, .sm\:ti-input-infobox--left .ti-input-infobox-content:after {
    left: auto !important;
    right: 1rem !important;
  }
  .sm\:ti-input-infobox .ti-input-infobox-toggle:checked + .ti-input-infobox-content, .sm\:ti-input-infobox--center .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-50%) !important;
  }
  .sm\:ti-input-infobox--right .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-1.25em) !important;
  }
  .sm\:ti-input-infobox--left .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(calc(1.25em - 100%)) !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:ti-input-infobox--above .ti-input-infobox-content {
    top: auto !important;
    bottom: 2em !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
  }
  .md\:ti-input-infobox .ti-input-infobox-content, .md\:ti-input-infobox--center .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-50%) !important;
  }
  .md\:ti-input-infobox--right .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-1.25em) !important;
  }
  .md\:ti-input-infobox--left .ti-input-infobox-content {
    transform: translateY(1rem) translateX(calc(1.25em - 100%)) !important;
  }
  .md\:ti-input-infobox--above .ti-input-infobox-content:before, .md\:ti-input-infobox--above .ti-input-infobox-content:after {
    top: auto !important;
    bottom: -0.5rem !important;
    border-bottom: 0 !important;
    border-top: 0.5rem solid #f3f3f3 !important;
    border-top-color: var(--bg-lightest) !important;
  }
  .md\:ti-input-infobox--center .ti-input-infobox-content:before, .md\:ti-input-infobox--center .ti-input-infobox-content:after {
    left: 50% !important;
    right: auto !important;
  }
  .md\:ti-input-infobox--right .ti-input-infobox-content:before, .md\:ti-input-infobox--right .ti-input-infobox-content:after {
    left: 1rem !important;
    right: auto !important;
  }
  .md\:ti-input-infobox--left .ti-input-infobox-content:before, .md\:ti-input-infobox--left .ti-input-infobox-content:after {
    left: auto !important;
    right: 1rem !important;
  }
  .md\:ti-input-infobox .ti-input-infobox-toggle:checked + .ti-input-infobox-content, .md\:ti-input-infobox--center .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-50%) !important;
  }
  .md\:ti-input-infobox--right .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-1.25em) !important;
  }
  .md\:ti-input-infobox--left .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(calc(1.25em - 100%)) !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:ti-input-infobox--above .ti-input-infobox-content {
    top: auto !important;
    bottom: 2em !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
  }
  .lg\:ti-input-infobox .ti-input-infobox-content, .lg\:ti-input-infobox--center .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-50%) !important;
  }
  .lg\:ti-input-infobox--right .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-1.25em) !important;
  }
  .lg\:ti-input-infobox--left .ti-input-infobox-content {
    transform: translateY(1rem) translateX(calc(1.25em - 100%)) !important;
  }
  .lg\:ti-input-infobox--above .ti-input-infobox-content:before, .lg\:ti-input-infobox--above .ti-input-infobox-content:after {
    top: auto !important;
    bottom: -0.5rem !important;
    border-bottom: 0 !important;
    border-top: 0.5rem solid #f3f3f3 !important;
    border-top-color: var(--bg-lightest) !important;
  }
  .lg\:ti-input-infobox--center .ti-input-infobox-content:before, .lg\:ti-input-infobox--center .ti-input-infobox-content:after {
    left: 50% !important;
    right: auto !important;
  }
  .lg\:ti-input-infobox--right .ti-input-infobox-content:before, .lg\:ti-input-infobox--right .ti-input-infobox-content:after {
    left: 1rem !important;
    right: auto !important;
  }
  .lg\:ti-input-infobox--left .ti-input-infobox-content:before, .lg\:ti-input-infobox--left .ti-input-infobox-content:after {
    left: auto !important;
    right: 1rem !important;
  }
  .lg\:ti-input-infobox .ti-input-infobox-toggle:checked + .ti-input-infobox-content, .lg\:ti-input-infobox--center .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-50%) !important;
  }
  .lg\:ti-input-infobox--right .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-1.25em) !important;
  }
  .lg\:ti-input-infobox--left .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(calc(1.25em - 100%)) !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:ti-input-infobox--above .ti-input-infobox-content {
    top: auto !important;
    bottom: 2em !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
  }
  .xl\:ti-input-infobox .ti-input-infobox-content, .xl\:ti-input-infobox--center .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-50%) !important;
  }
  .xl\:ti-input-infobox--right .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-1.25em) !important;
  }
  .xl\:ti-input-infobox--left .ti-input-infobox-content {
    transform: translateY(1rem) translateX(calc(1.25em - 100%)) !important;
  }
  .xl\:ti-input-infobox--above .ti-input-infobox-content:before, .xl\:ti-input-infobox--above .ti-input-infobox-content:after {
    top: auto !important;
    bottom: -0.5rem !important;
    border-bottom: 0 !important;
    border-top: 0.5rem solid #f3f3f3 !important;
    border-top-color: var(--bg-lightest) !important;
  }
  .xl\:ti-input-infobox--center .ti-input-infobox-content:before, .xl\:ti-input-infobox--center .ti-input-infobox-content:after {
    left: 50% !important;
    right: auto !important;
  }
  .xl\:ti-input-infobox--right .ti-input-infobox-content:before, .xl\:ti-input-infobox--right .ti-input-infobox-content:after {
    left: 1rem !important;
    right: auto !important;
  }
  .xl\:ti-input-infobox--left .ti-input-infobox-content:before, .xl\:ti-input-infobox--left .ti-input-infobox-content:after {
    left: auto !important;
    right: 1rem !important;
  }
  .xl\:ti-input-infobox .ti-input-infobox-toggle:checked + .ti-input-infobox-content, .xl\:ti-input-infobox--center .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-50%) !important;
  }
  .xl\:ti-input-infobox--right .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-1.25em) !important;
  }
  .xl\:ti-input-infobox--left .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(calc(1.25em - 100%)) !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:ti-input-infobox--above .ti-input-infobox-content {
    top: auto !important;
    bottom: 2em !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
  }
  .xxl\:ti-input-infobox .ti-input-infobox-content, .xxl\:ti-input-infobox--center .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-50%) !important;
  }
  .xxl\:ti-input-infobox--right .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-1.25em) !important;
  }
  .xxl\:ti-input-infobox--left .ti-input-infobox-content {
    transform: translateY(1rem) translateX(calc(1.25em - 100%)) !important;
  }
  .xxl\:ti-input-infobox--above .ti-input-infobox-content:before, .xxl\:ti-input-infobox--above .ti-input-infobox-content:after {
    top: auto !important;
    bottom: -0.5rem !important;
    border-bottom: 0 !important;
    border-top: 0.5rem solid #f3f3f3 !important;
    border-top-color: var(--bg-lightest) !important;
  }
  .xxl\:ti-input-infobox--center .ti-input-infobox-content:before, .xxl\:ti-input-infobox--center .ti-input-infobox-content:after {
    left: 50% !important;
    right: auto !important;
  }
  .xxl\:ti-input-infobox--right .ti-input-infobox-content:before, .xxl\:ti-input-infobox--right .ti-input-infobox-content:after {
    left: 1rem !important;
    right: auto !important;
  }
  .xxl\:ti-input-infobox--left .ti-input-infobox-content:before, .xxl\:ti-input-infobox--left .ti-input-infobox-content:after {
    left: auto !important;
    right: 1rem !important;
  }
  .xxl\:ti-input-infobox .ti-input-infobox-toggle:checked + .ti-input-infobox-content, .xxl\:ti-input-infobox--center .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-50%) !important;
  }
  .xxl\:ti-input-infobox--right .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-1.25em) !important;
  }
  .xxl\:ti-input-infobox--left .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(calc(1.25em - 100%)) !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:ti-input-infobox--above .ti-input-infobox-content {
    top: auto !important;
    bottom: 2em !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
  }
  .max\:ti-input-infobox .ti-input-infobox-content, .max\:ti-input-infobox--center .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-50%) !important;
  }
  .max\:ti-input-infobox--right .ti-input-infobox-content {
    transform: translateY(1rem) translateX(-1.25em) !important;
  }
  .max\:ti-input-infobox--left .ti-input-infobox-content {
    transform: translateY(1rem) translateX(calc(1.25em - 100%)) !important;
  }
  .max\:ti-input-infobox--above .ti-input-infobox-content:before, .max\:ti-input-infobox--above .ti-input-infobox-content:after {
    top: auto !important;
    bottom: -0.5rem !important;
    border-bottom: 0 !important;
    border-top: 0.5rem solid #f3f3f3 !important;
    border-top-color: var(--bg-lightest) !important;
  }
  .max\:ti-input-infobox--center .ti-input-infobox-content:before, .max\:ti-input-infobox--center .ti-input-infobox-content:after {
    left: 50% !important;
    right: auto !important;
  }
  .max\:ti-input-infobox--right .ti-input-infobox-content:before, .max\:ti-input-infobox--right .ti-input-infobox-content:after {
    left: 1rem !important;
    right: auto !important;
  }
  .max\:ti-input-infobox--left .ti-input-infobox-content:before, .max\:ti-input-infobox--left .ti-input-infobox-content:after {
    left: auto !important;
    right: 1rem !important;
  }
  .max\:ti-input-infobox .ti-input-infobox-toggle:checked + .ti-input-infobox-content, .max\:ti-input-infobox--center .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-50%) !important;
  }
  .max\:ti-input-infobox--right .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(-1.25em) !important;
  }
  .max\:ti-input-infobox--left .ti-input-infobox-toggle:checked + .ti-input-infobox-content {
    transform: translateY(0) translateX(calc(1.25em - 100%)) !important;
  }
}
.map {
  display: inline-block;
  position: relative;
  /* map proportions portrait */
}
.map--dk {
  width: 100%;
  height: 0;
  padding: 0 0 119.68% 0;
  /* IE11 Hack for proportional scaling */
}
.map--dk > img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.map > img {
  width: 100%;
}
.map-circle {
  background-color: #8e8e8e;
  color: #fff;
}
.map-pos {
  position: absolute;
}
.map-pos--dk-aarhus {
  left: 43%;
  top: 48%;
}
.map-pos--dk-odense {
  left: 47%;
  top: 75%;
}
.map-pos--dk-taastrup {
  left: 88%;
  top: 65%;
}

.map-circle,
.circle {
  width: 2em;
  height: 2em;
  border-radius: 2em;
  margin-left: -1em;
  margin-top: -1em;
  line-height: 2;
  font-family: "Klint LT W02 Regular", Tahoma, Helvetica, sans-serif;
  font-weight: 300;
  text-align: center;
  font-size: 1rem;
}
.map-circle--bigger,
.circle--bigger {
  font-size: 2rem;
}
.map-circle--big,
.circle--big {
  font-size: 1.2rem;
}
.map-circle--small,
.circle--small {
  font-size: 0.8rem;
}
.map-circle--smaller,
.circle--smaller {
  font-size: 0.5rem;
}

.ti-skill-card {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 0.5rem 0;
  margin: 0.5rem 2rem 0.5rem 0;
  z-index: 0;
}
.ti-skill-card .bar {
  height: 0.25rem;
  transition: height 100ms;
  background-color: #bbb;
}
@media screen and (min-width: 1100px) {
  .ti-skill-card .bar {
    background-color: #f3f3f3;
  }
}
.ti-skill-card:hover {
  text-decoration: none !important;
  z-index: 1;
}
.ti-skill-card--title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ti-skill-card--score {
  position: absolute;
  z-index: -1;
  top: 0;
  padding: 2em 0.5rem 0.5rem;
  left: -0.5rem;
  right: 0;
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  transition: box-shadow 200ms;
}
.ti-skill-card:hover .ti-skill-card--score {
  background-color: #fff;
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.3);
}
.ti-skill-card:hover .ti-skill-card--score .bar {
  height: 0.5rem;
  background-color: #f3f3f3;
}
.ti-skill-card:hover .ti-skill-card--score label {
  display: block;
}
.ti-skill-card--score > div {
  flex: 1 1 0%;
}
.ti-skill-card--score > div:first-child {
  border-right: 0.25rem solid transparent;
}
.ti-skill-card--score > div:first-child .bar--progress {
  right: 0;
}
.ti-skill-card--score > div:last-child {
  border-left: 0.25rem solid transparent;
}
.ti-skill-card--score label {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  color: #8e8e8e;
  text-align: center;
  text-transform: uppercase;
}

.ti-breadcrumb {
  list-style-type: none;
  padding: 0;
  line-height: 1.1;
}

.ti-breadcrumb li {
  display: inline-block;
  margin: 0;
}

.ti-breadcrumb li:before {
  display: none;
}

.ti-breadcrumb a {
  padding-right: 0.9em;
  color: #8e8e8e;
}

.ti-breadcrumb a:hover {
  text-decoration: none !important;
  color: #008fce;
}

.ti-breadcrumb a:after {
  content: "";
  display: inline-block;
  vertical-align: baseline;
  width: 0.65em;
  height: 0.7em;
  margin-left: 0.25em;
  margin-right: -0.9em;
  transform: rotate(-90deg);
  background: transparent url("../img/icon-arrow-down-grey.svg") no-repeat 80% center;
  background-size: contain;
}

.ti-breadcrumb a:hover:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
}

.ti-nav-left {
  list-style-type: none;
  padding: 0 0 0.5rem;
}
.ti-nav-left ul {
  padding: 0 !important;
}
.ti-nav-left li {
  max-width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.ti-nav-left li:before {
  display: none;
}
.ti-nav-left a {
  display: block;
  padding: 0.25rem;
  color: #000;
}
.ti-nav-left a:hover {
  text-decoration: none !important;
  color: #008fce;
}
.ti-nav-left--number {
  color: #8e8e8e;
  color: var(--txt-normal);
  font-weight: normal;
  font-size: 0.8em;
}
.ti-nav-left--selected > ul, .ti-nav-left--selected-group > ul {
  white-space: nowrap;
  overflow: auto;
  padding: 0.25rem 0.5rem 0.5rem !important;
  max-width: 100%;
}
.ti-nav-left--selected > ul > li, .ti-nav-left--selected-group > ul > li {
  max-width: none;
}
.ti-nav-left--selected > .ti-nav-left--headline, .ti-nav-left--selected-group > .ti-nav-left--headline {
  padding: 0.25rem 1rem;
}
.ti-nav-left--selected a, .ti-nav-left--selected-group a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 1.5em;
  border: 2px solid transparent;
  background-color: #f3f3f3;
  background-color: var(--bg-lightest);
  color: #008fce;
  color: var(--txt-link);
}
.ti-nav-left--selected a:hover, .ti-nav-left--selected-group a:hover {
  background-color: var(--txt-link--hover);
  color: var(--txt-clear);
}
.ti-nav-left--selected a:hover .ti-nav-left--number, .ti-nav-left--selected-group a:hover .ti-nav-left--number {
  color: #f1f7fa;
  color: var(--txt-lightest);
}
.ti-nav-left--selected > a, .ti-nav-left--selected-group > a {
  background-color: #222;
  color: #fff;
}
.ti-nav-left--selected-root:not(.ti-nav-left--selected-parent) > a, .ti-nav-left--selected-root:not(.ti-nav-left--selected-parent) > .ti-nav-left--headline, .ti-nav-left--selected-group-root:not(.ti-nav-left--selected-parent) > a, .ti-nav-left--selected-group-root:not(.ti-nav-left--selected-parent) > .ti-nav-left--headline {
  display: none;
}
.ti-nav-left--selected .ti-nav-left--selected > a, .ti-nav-left--selected-group .ti-nav-left--selected > a {
  display: inline-block;
}
.ti-nav-left--selected-parent > a, .ti-nav-left--selected-parent > .ti-nav-left--headline, .ti-nav-left--selected-group-parent > a, .ti-nav-left--selected-group-parent > .ti-nav-left--headline {
  display: inline-block;
  padding: 1rem 1rem;
}
.ti-nav-left--selected-parent > a:before, .ti-nav-left--selected-group-parent > a:before {
  content: "";
  display: inline-block;
  vertical-align: baseline;
  width: 0.65em;
  height: 0.7em;
  margin-right: 0.25em;
  transform: rotate(90deg);
  background: transparent url("../img/icon-arrow-down-grey.svg") no-repeat 80% center;
  background-size: contain;
}
.ti-nav-left--selected-parent > a:hover:before, .ti-nav-left--selected-group-parent > a:hover:before {
  background-image: url("../img/icon-arrow-down-blue.svg");
}
.ti-nav-left--no-courses a {
  /*border: 2px solid $color-lightest-grey;
  border-color: var(--border-lightest);
  background-color: $color-white;
  background-color: var(--bg-clear);*/
  color: #8e8e8e;
  color: var(--txt-normal);
}
.ti-nav-left--no-courses a:hover {
  background-color: #ddd;
  background-color: var(--border-lighter) !important;
  color: #8e8e8e;
  color: var(--txt-normal);
}
.ti-nav-left--no-courses a:hover .ti-nav-left--number {
  color: #8e8e8e;
  color: var(--txt-normal);
}
.ti-nav-left--selected > a, .ti-nav-left--selected-group > a, .ti-nav-left--selected-parent > a, .ti-nav-left li {
  display: none;
}
.ti-nav-left--selected, .ti-nav-left--selected-root, .ti-nav-left--selected-parent, .ti-nav-left--selected-group, .ti-nav-left--selected-group ul li, .ti-nav-left--selected ul li {
  display: inline-block !important;
}

@media screen and (min-width: 420px) {
  .ti-nav-left--selected-group > ul, .ti-nav-left--selected > ul, .ti-nav-left--selected > .ti-nav-left--headline {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .ti-nav-left--selected-group > a, .ti-nav-left--selected-group > .ti-nav-left--headline, .ti-nav-left--selected-parent > a, .ti-nav-left--selected-parent > .ti-nav-left--headline {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media screen and (min-width: 650px) {
  .ti-nav-left--selected-group > ul, .ti-nav-left--selected > ul, .ti-nav-left--selected > .ti-nav-left--headline {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .ti-nav-left--selected-group > a, .ti-nav-left--selected-group > .ti-nav-left--headline, .ti-nav-left--selected-parent > a, .ti-nav-left--selected-parent > .ti-nav-left--headline {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media screen and (min-width: 950px) {
  .ti-nav-left li, .ti-nav-left--selected, .ti-nav-left--selected-root, .ti-nav-left--selected-parent, .ti-nav-left--selected > a, .ti-nav-left--selected-group > a, .ti-nav-left--selected-group ul li, .ti-nav-left--selected-root > a, .ti-nav-left--selected-root > .ti-nav-left--headline, .ti-nav-left--selected ul li {
    display: block !important;
  }
  .ti-nav-left ul {
    padding-left: 0 !important;
    padding-right: 0 !important;
    white-space: normal;
  }
  .ti-nav-left li {
    padding: 0.25rem 0 !important;
    line-height: 1.25;
  }
  .ti-nav-left a, .ti-nav-left .ti-nav-left--headline {
    padding: 0.25rem 0 0.25rem 0 !important;
  }
  .ti-nav-left a {
    background-color: transparent;
    color: var(--txt-opaque);
    border-radius: 0;
    border: none;
    padding: 0.25rem 0 0.25rem 0 !important;
  }
  .ti-nav-left a:hover {
    background-color: transparent;
    color: var(--txt-link--hover);
  }
  .ti-nav-left a:hover .ti-nav-left--number {
    color: #8e8e8e;
    color: var(--txt-normal);
  }
  .ti-nav-left a a {
    padding-left: 2rem !important;
  }
  .ti-nav-left--selected-root > a, .ti-nav-left--selected-root > .ti-nav-left--headline {
    font-family: "Klint LT W02 Regular", Tahoma, Helvetica, sans-serif;
    font-size: 1.2em;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    display: block;
  }
  .ti-nav-left--selected-root.ti-nav-left--selected > a, .ti-nav-left--selected-root.ti-nav-left--selected > .ti-nav-left--headline {
    font-family: "Klint LT W01 Bold", Tahoma, Helvetica, sans-serif !important;
    font-weight: 300 !important;
  }
  .ti-nav-left--selected-root > a + ul, .ti-nav-left--selected-root > .ti-nav-left--headline + ul {
    margin-top: 0.5rem;
  }
  .ti-nav-left--selected.ti-nav-left--selected-root > .ti-nav-left--headline + ul {
    padding-left: 0 !important;
  }
  .ti-nav-left--selected ul, .ti-nav-left--selected-group ul {
    padding-left: 1.5rem !important;
  }
  .ti-nav-left--selected > a, .ti-nav-left--selected:not(.ti-nav-left--selected-root) > .ti-nav-left--headline {
    padding-left: 0.5rem !important;
    margin-left: -0.75rem;
    border-left: 0.25rem solid #f12b3b;
  }
  .ti-nav-left--selected-group > a, .ti-nav-left--selected-group > .ti-nav-left--headline, .ti-nav-left--selected-parent:not(.ti-nav-left--selected-root) > a, .ti-nav-left--selected-parent:not(.ti-nav-left--selected-root) > .ti-nav-left--headline, .ti-nav-left--selected > a {
    font-weight: bold;
  }
  .ti-nav-left--selected-parent > ul {
    padding-left: 0.75rem !important;
  }
  .ti-nav-left--selected-parent > a:before {
    display: none;
  }
  .ti-nav-left--no-courses a {
    color: #ddd;
    color: var(--txt-normal);
  }
  .ti-nav-left--no-courses a:hover {
    background-color: transparent !important;
    color: #f3f3f3;
    color: var(--txt-lightest);
  }
}
/* IE11 hack */
@media all and (min-width: 950px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ti-nav-left a {
    color: #222;
  }
  .ti-nav-left a:hover {
    background-color: transparent;
    color: #008fce;
  }
}
.ti-pill {
  display: inline-block;
  background-color: var(--bg-lightest);
  color: var(--txt-default);
  border-radius: 2em;
  padding: 0 0.5rem;
  margin: 0.25rem 0;
  font-size: 0.85em;
}
.ti-pill i {
  vertical-align: middle;
  margin-top: -0.1em;
}
.ti-pill > i {
  margin-left: 0.25rem;
  margin-right: 0.125rem;
  width: 0.95em !important;
  height: 0.95em !important;
}
.ti-pill > span {
  display: inline !important;
}
.ti-pill > span span {
  display: inline-block;
  padding: 0 0 0 0.5rem;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  margin-top: -2px;
  /*	& ~ span {
  		border-left: 2px solid #fff;
  		padding-left: $padding-2-5;
  	} */
}
.ti-pill > span span button {
  display: inline-block !important;
  margin: 0;
  padding: 0.5rem 0.25rem;
  background: transparent;
  border: none;
  border-radius: 0;
  min-width: 0;
  width: auto;
}
.ti-pill > span span button:hover {
  color: var(--txt-link--hover);
  text-decoration: none !important;
}
.ti-pill > span span button:hover .icon--close:after {
  background-image: url("../img/icon-close-blue.svg");
}
.ti-pill > span span button:not(.icon):after {
  display: none;
}
.ti-pill > span span:first-child {
  padding-left: 0;
}
.ti-pill > span span:last-child {
  border-right: none;
}
.ti-pill > span:first-child > span:first-child {
  padding-left: 0.5rem;
}

/* Countdown */
.countdown i {
  position: relative;
  display: inline-block;
  width: 0.55em;
  height: 0.8em;
  font-style: normal;
  overflow: hidden;
  text-align: left;
}
.countdown i:after {
  position: absolute;
  display: inline-block;
  /*width: 1em;*/
  width: 0.9em;
  line-height: 1em;
  margin-top: -0.05em;
}

.countdown .c-1000000000s:after {
  top: -1em;
}

.countdown .c-100000000s:after {
  top: -2em;
}

.countdown .c-10000000s:after {
  top: -3em;
}

.countdown .c-1000000s:after {
  top: -4em;
}

.countdown .c-100000s:after {
  top: -5em;
}

.countdown .c-10000s:after {
  top: -6em;
}

.countdown .c-1000s:after {
  top: -7em;
}

.countdown .c-100s:after {
  top: -8em;
}

.countdown .c-10s:after {
  top: -9em;
}

.countdown .c-1s:after {
  top: -10em;
}

.countdown.c-1000000000s-0 .c-1000000000s:after {
  content: "9 0";
}

.countdown.c-100000000s-0 .c-100000000s:after {
  content: "8 9 0";
}

.countdown.c-10000000s-0 .c-10000000s:after {
  content: "7 8 9 0";
}

.countdown.c-1000000s-0 .c-1000000s:after {
  content: "6 7 8 9 0";
}

.countdown.c-100000s-0 .c-100000s:after {
  content: "5 6 7 8 9 0";
}

.countdown.c-10000s-0 .c-10000s:after {
  content: "4 5 6 7 8 9 0";
}

.countdown.c-1000s-0 .c-1000s:after {
  content: "3 4 5 6 7 8 9 0";
}

.countdown.c-100s-0 .c-100s:after {
  content: "2 3 4 5 6 7 8 9 0";
}

.countdown.c-10s-0 .c-10s:after {
  content: "1 2 3 4 5 6 7 8 9 0";
}

.countdown.c-1s-0 .c-1s:after {
  content: "0 1 2 3 4 5 6 7 8 9 0";
}

.countdown.c-1000000000s-1 .c-1000000000s:after {
  content: "0 1";
}

.countdown.c-100000000s-1 .c-100000000s:after {
  content: "9 0 1";
}

.countdown.c-10000000s-1 .c-10000000s:after {
  content: "8 9 0 1";
}

.countdown.c-1000000s-1 .c-1000000s:after {
  content: "7 8 9 0 1";
}

.countdown.c-100000s-1 .c-100000s:after {
  content: "6 7 8 9 0 1";
}

.countdown.c-10000s-1 .c-10000s:after {
  content: "5 6 7 8 9 0 1";
}

.countdown.c-1000s-1 .c-1000s:after {
  content: "4 5 6 7 8 9 0 1";
}

.countdown.c-100s-1 .c-100s:after {
  content: "3 4 5 6 7 8 9 0 1";
}

.countdown.c-10s-1 .c-10s:after {
  content: "2 3 4 5 6 7 8 9 0 1";
}

.countdown.c-1s-1 .c-1s:after {
  content: "1 2 3 4 5 6 7 8 9 0 1";
}

.countdown.c-1000000000s-2 .c-1000000000s:after {
  content: "1 2";
}

.countdown.c-100000000s-2 .c-100000000s:after {
  content: "0 1 2";
}

.countdown.c-10000000s-2 .c-10000000s:after {
  content: "9 0 1 2";
}

.countdown.c-1000000s-2 .c-1000000s:after {
  content: "8 9 0 1 2";
}

.countdown.c-100000s-2 .c-100000s:after {
  content: "7 8 9 0 1 2";
}

.countdown.c-10000s-2 .c-10000s:after {
  content: "6 7 8 9 0 1 2";
}

.countdown.c-1000s-2 .c-1000s:after {
  content: "5 6 7 8 9 0 1 2";
}

.countdown.c-100s-2 .c-100s:after {
  content: "4 5 6 7 8 9 0 1 2";
}

.countdown.c-10s-2 .c-10s:after {
  content: "3 4 5 6 7 8 9 0 1 2";
}

.countdown.c-1s-2 .c-1s:after {
  content: "2 3 4 5 6 7 8 9 0 1 2";
}

.countdown.c-1000000000s-3 .c-1000000000s:after {
  content: "2 3";
}

.countdown.c-100000000s-3 .c-100000000s:after {
  content: "1 2 3";
}

.countdown.c-10000000s-3 .c-10000000s:after {
  content: "0 1 2 3";
}

.countdown.c-1000000s-3 .c-1000000s:after {
  content: "9 0 1 2 3";
}

.countdown.c-100000s-3 .c-100000s:after {
  content: "8 9 0 1 2 3";
}

.countdown.c-10000s-3 .c-10000s:after {
  content: "7 8 9 0 1 2 3";
}

.countdown.c-1000s-3 .c-1000s:after {
  content: "6 7 8 9 0 1 2 3";
}

.countdown.c-100s-3 .c-100s:after {
  content: "5 6 7 8 9 0 1 2 3";
}

.countdown.c-10s-3 .c-10s:after {
  content: "4 5 6 7 8 9 0 1 2 3";
}

.countdown.c-1s-3 .c-1s:after {
  content: "3 4 5 6 7 8 9 0 1 2 3";
}

.countdown.c-1000000000s-4 .c-1000000000s:after {
  content: "3 4";
}

.countdown.c-100000000s-4 .c-100000000s:after {
  content: "2 3 4";
}

.countdown.c-10000000s-4 .c-10000000s:after {
  content: "1 2 3 4";
}

.countdown.c-1000000s-4 .c-1000000s:after {
  content: "0 1 2 3 4";
}

.countdown.c-100000s-4 .c-100000s:after {
  content: "9 0 1 2 3 4";
}

.countdown.c-10000s-4 .c-10000s:after {
  content: "8 9 0 1 2 3 4";
}

.countdown.c-1000s-4 .c-1000s:after {
  content: "7 8 9 0 1 2 3 4";
}

.countdown.c-100s-4 .c-100s:after {
  content: "6 7 8 9 0 1 2 3 4";
}

.countdown.c-10s-4 .c-10s:after {
  content: "5 6 7 8 9 0 1 2 3 4";
}

.countdown.c-1s-4 .c-1s:after {
  content: "4 5 6 7 8 9 0 1 2 3 4";
}

.countdown.c-1000000000s-5 .c-1000000000s:after {
  content: "4 5";
}

.countdown.c-100000000s-5 .c-100000000s:after {
  content: "3 4 5";
}

.countdown.c-10000000s-5 .c-10000000s:after {
  content: "2 3 4 5";
}

.countdown.c-1000000s-5 .c-1000000s:after {
  content: "1 2 3 4 5";
}

.countdown.c-100000s-5 .c-100000s:after {
  content: "0 1 2 3 4 5";
}

.countdown.c-10000s-5 .c-10000s:after {
  content: "9 0 1 2 3 4 5";
}

.countdown.c-1000s-5 .c-1000s:after {
  content: "8 9 0 1 2 3 4 5";
}

.countdown.c-100s-5 .c-100s:after {
  content: "7 8 9 0 1 2 3 4 5";
}

.countdown.c-10s-5 .c-10s:after {
  content: "6 7 8 9 0 1 2 3 4 5";
}

.countdown.c-1s-5 .c-1s:after {
  content: "5 6 7 8 9 0 1 2 3 4 5";
}

.countdown.c-1000000000s-6 .c-1000000000s:after {
  content: "5 6";
}

.countdown.c-100000000s-6 .c-100000000s:after {
  content: "4 5 6";
}

.countdown.c-10000000s-6 .c-10000000s:after {
  content: "3 4 5 6";
}

.countdown.c-1000000s-6 .c-1000000s:after {
  content: "2 3 4 5 6";
}

.countdown.c-100000s-6 .c-100000s:after {
  content: "1 2 3 4 5 6";
}

.countdown.c-10000s-6 .c-10000s:after {
  content: "0 1 2 3 4 5 6";
}

.countdown.c-1000s-6 .c-1000s:after {
  content: "9 0 1 2 3 4 5 6";
}

.countdown.c-100s-6 .c-100s:after {
  content: "8 9 0 1 2 3 4 5 6";
}

.countdown.c-10s-6 .c-10s:after {
  content: "7 8 9 0 1 2 3 4 5 6";
}

.countdown.c-1s-6 .c-1s:after {
  content: "6 7 8 9 0 1 2 3 4 5 6";
}

.countdown.c-1000000000s-7 .c-1000000000s:after {
  content: "6 7";
}

.countdown.c-100000000s-7 .c-100000000s:after {
  content: "5 6 7";
}

.countdown.c-10000000s-7 .c-10000000s:after {
  content: "4 5 6 7";
}

.countdown.c-1000000s-7 .c-1000000s:after {
  content: "3 4 5 6 7";
}

.countdown.c-100000s-7 .c-100000s:after {
  content: "2 3 4 5 6 7";
}

.countdown.c-10000s-7 .c-10000s:after {
  content: "1 2 3 4 5 6 7";
}

.countdown.c-1000s-7 .c-1000s:after {
  content: "0 1 2 3 4 5 6 7";
}

.countdown.c-100s-7 .c-100s:after {
  content: "9 0 1 2 3 4 5 6 7";
}

.countdown.c-10s-7 .c-10s:after {
  content: "8 9 0 1 2 3 4 5 6 7";
}

.countdown.c-1s-7 .c-1s:after {
  content: "7 8 9 0 1 2 3 4 5 6 7";
}

.countdown.c-1000000000s-8 .c-1000000000s:after {
  content: "7 8";
}

.countdown.c-100000000s-8 .c-100000000s:after {
  content: "6 7 8";
}

.countdown.c-10000000s-8 .c-10000000s:after {
  content: "5 6 7 8";
}

.countdown.c-1000000s-8 .c-1000000s:after {
  content: "4 5 6 7 8";
}

.countdown.c-100000s-8 .c-100000s:after {
  content: "3 4 5 6 7 8";
}

.countdown.c-10000s-8 .c-10000s:after {
  content: "2 3 4 5 6 7 8";
}

.countdown.c-1000s-8 .c-1000s:after {
  content: "1 2 3 4 5 6 7 8";
}

.countdown.c-100s-8 .c-100s:after {
  content: "0 1 2 3 4 5 6 7 8";
}

.countdown.c-10s-8 .c-10s:after {
  content: "9 0 1 2 3 4 5 6 7 8";
}

.countdown.c-1s-8 .c-1s:after {
  content: "8 9 0 1 2 3 4 5 6 7 8";
}

.countdown.c-1000000000s-9 .c-1000000000s:after {
  content: "8 9";
}

.countdown.c-100000000s-9 .c-100000000s:after {
  content: "7 8 9";
}

.countdown.c-10000000s-9 .c-10000000s:after {
  content: "6 7 8 9";
}

.countdown.c-1000000s-9 .c-1000000s:after {
  content: "5 6 7 8 9";
}

.countdown.c-100000s-9 .c-100000s:after {
  content: "4 5 6 7 8 9";
}

.countdown.c-10000s-9 .c-10000s:after {
  content: "3 4 5 6 7 8 9";
}

.countdown.c-1000s-9 .c-1000s:after {
  content: "2 3 4 5 6 7 8 9";
}

.countdown.c-100s-9 .c-100s:after {
  content: "1 2 3 4 5 6 7 8 9";
}

.countdown.c-10s-9 .c-10s:after {
  content: "0 1 2 3 4 5 6 7 8 9";
}

.countdown.c-1s-9 .c-1s:after {
  content: "9 0 1 2 3 4 5 6 7 8 9";
}

.countdown.visible .c-1000000000s:after {
  animation: numbers-billions-fast 3s;
}

.countdown.visible .c-100000000s:after {
  animation: numbers-hunmillions-fast 3s;
}

.countdown.visible .c-10000000s:after {
  animation: numbers-tenmillions-fast 3s;
}

.countdown.visible .c-1000000s:after {
  animation: numbers-millions-fast 3s;
}

.countdown.visible .c-100000s:after {
  animation: numbers-hunthousands-fast 3s;
}

.countdown.visible .c-10000s:after {
  animation: numbers-tenthousands-fast 3s;
}

.countdown.visible .c-1000s:after {
  animation: numbers-thousands-fast 3s;
}

.countdown.visible .c-100s:after {
  animation: numbers-hundreds-fast 3s;
}

.countdown.visible .c-10s:after {
  animation: numbers-tens-fast 3s;
}

.countdown.visible .c-1s:after {
  animation: numbers-ones-fast 3s;
}

.countdown.add-class-when-el-view.c-1000000000s-1 .c-1000000000s:first-child:after,
.countdown.add-class-when-el-view.c-100000000s-1 .c-100000000s:first-child:after,
.countdown.add-class-when-el-view.c-10000000s-1 .c-10000000s:first-child:after,
.countdown.add-class-when-el-view.c-1000000s-1 .c-1000000s:first-child:after,
.countdown.add-class-when-el-view.c-100000s-1 .c-100000s:first-child:after,
.countdown.add-class-when-el-view.c-10000s-1 .c-10000s:first-child:after,
.countdown.add-class-when-el-view.c-1000s-1 .c-1000s:first-child:after,
.countdown.add-class-when-el-view.c-100s-1 .c-100s:first-child:after,
.countdown.add-class-when-el-view.c-10s-1 .c-10s:first-child:after,
.countdown.add-class-when-el-view.c-1s-1 .c-1s:first-child:after {
  top: 0;
}

.countdown.visible.c-1000000000s-1 .c-1000000000s:first-child:after,
.countdown.visible.c-100000000s-1 .c-100000000s:first-child:after,
.countdown.visible.c-10000000s-1 .c-10000000s:first-child:after,
.countdown.visible.c-1000000s-1 .c-1000000s:first-child:after,
.countdown.visible.c-100000s-1 .c-100000s:first-child:after,
.countdown.visible.c-10000s-1 .c-10000s:first-child:after,
.countdown.visible.c-1000s-1 .c-1000s:first-child:after,
.countdown.visible.c-100s-1 .c-100s:first-child:after,
.countdown.visible.c-10s-1 .c-10s:first-child:after,
.countdown.visible.c-1s-1 .c-1s:first-child:after {
  top: 0;
  content: "1";
  animation-name: numbers-first-digit-fast;
}

li:nth-child(1) .countdown i:nth-last-child(1):after {
  animation-duration: 2s;
}

li:nth-child(1) .countdown i:nth-last-child(2):after {
  animation-duration: 2.2s;
}

li:nth-child(1) .countdown i:nth-last-child(3):after {
  animation-duration: 2.4s;
}

li:nth-child(1) .countdown i:nth-last-child(4):after {
  animation-duration: 2.6s;
}

li:nth-child(1) .countdown i:nth-last-child(5):after {
  animation-duration: 2.8s;
}

li:nth-child(1) .countdown i:nth-last-child(6):after {
  animation-duration: 3s;
}

li:nth-child(1) .countdown i:nth-last-child(7):after {
  animation-duration: 3.2s;
}

li:nth-child(1) .countdown i:nth-last-child(8):after {
  animation-duration: 3.4s;
}

li:nth-child(1) .countdown i:nth-last-child(9):after {
  animation-duration: 3.6s;
}

li:nth-child(1) .countdown i:nth-last-child(10):after {
  animation-duration: 3.8s;
}

li:nth-child(2) .countdown i:nth-last-child(1):after {
  animation-duration: 3s;
}

li:nth-child(2) .countdown i:nth-last-child(2):after {
  animation-duration: 3.2s;
}

li:nth-child(2) .countdown i:nth-last-child(3):after {
  animation-duration: 3.4s;
}

li:nth-child(2) .countdown i:nth-last-child(4):after {
  animation-duration: 3.6s;
}

li:nth-child(2) .countdown i:nth-last-child(5):after {
  animation-duration: 3.8s;
}

li:nth-child(2) .countdown i:nth-last-child(6):after {
  animation-duration: 4s;
}

li:nth-child(2) .countdown i:nth-last-child(7):after {
  animation-duration: 4.2s;
}

li:nth-child(2) .countdown i:nth-last-child(8):after {
  animation-duration: 4.4s;
}

li:nth-child(2) .countdown i:nth-last-child(9):after {
  animation-duration: 4.6s;
}

li:nth-child(2) .countdown i:nth-last-child(10):after {
  animation-duration: 4.8s;
}

.countdown.visible i:nth-child(1):after,
.countdown.visible i:nth-child(2):after,
.countdown.visible i:nth-child(3):after,
.countdown.visible i:nth-child(4):after,
.countdown.visible i:nth-child(5):after,
.countdown.visible i:nth-child(6):after,
.countdown.visible i:nth-child(7):after,
.countdown.visible i:nth-child(8):after,
.countdown.visible i:nth-child(9):after,
.countdown.visible i:nth-child(10):after,
.countdown i:after {
  animation-timing-function: ease-out;
}

@keyframes numbers-first-digit-fast {
  0% {
    top: 1em;
  }
  50% {
    top: 1em;
  }
  100% {
    top: 0em;
  }
}
@keyframes numbers-ones-fast {
  0% {
    top: 0em;
  }
  100% {
    top: -10em;
  }
}
@keyframes numbers-tens-fast {
  0% {
    top: 0em;
  }
  100% {
    top: -9em;
  }
}
@keyframes numbers-hundreds-fast {
  0% {
    top: 0em;
  }
  100% {
    top: -8em;
  }
}
@keyframes numbers-thousands-fast {
  0% {
    top: 0em;
  }
  100% {
    top: -7em;
  }
}
@keyframes numbers-tenthousands-fast {
  0% {
    top: 0em;
  }
  100% {
    top: -6em;
  }
}
@keyframes numbers-hunthousands-fast {
  0% {
    top: 0em;
  }
  100% {
    top: -5em;
  }
}
@keyframes numbers-millions-fast {
  0% {
    top: 0em;
  }
  100% {
    top: -4em;
  }
}
@keyframes numbers-tenmillions-fast {
  0% {
    top: 0em;
  }
  100% {
    top: -3em;
  }
}
@keyframes numbers-hunmillions-fast {
  0% {
    top: 0em;
  }
  100% {
    top: -2em;
  }
}
@keyframes numbers-billions-fast {
  0% {
    top: 0em;
  }
  100% {
    top: -1em;
  }
}
.ti-sticky--container {
  position: relative;
  min-width: 100% !important;
}

@media screen and (min-width: 950px) {
  .ti-sticky--container {
    min-width: 14rem !important;
  }
  .ti-sticky--element {
    padding-right: 2rem;
  }
}
.ti-sticky--animate-y {
  transition: top ease-in-out 300ms;
}

.masonry-vertical-ragged {
  columns: 3 216.6666666667px;
  column-gap: 1rem;
  overflow: hidden; /* Fix for links in columns sometimes interfering with links above the masonry element */
}
.masonry-vertical-ragged > * {
  width: 216.6666666667px;
  margin: 0 1rem 1rem 0;
  display: inline-block;
  width: 100%;
}
.masonry-vertical-ragged > *.box-shadow--before:before, .masonry-vertical-ragged > *.box-shadow--after:after {
  position: fixed;
}

.hileads-form {
  position: relative;
}
.hileads-form .input-container, .hileads-form textarea, .hileads-form input:not([type=button]):not([type=submit]):not(.btn) {
  z-index: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  border-bottom: 0.125rem solid var(--bg-lighter);
  background-color: #fff;
  background-color: var(--bg-default);
}
.hileads-form .input-container {
  border-bottom: none;
  padding: 0;
  margin-top: 1.5em;
}
.hileads-form .input-container:after {
  display: none;
}
.hileads-form .input-container .error {
  top: 100%;
}
.hileads-form .input-container textarea, .hileads-form .input-container input {
  background-color: transparent !important;
}
.hileads-form input:not([type=button]):not([type=submit]):not(.btn), .hileads-form textarea {
  padding: 0.25rem 0.25rem 0.125rem 0;
  transition: border-bottom-color 300ms;
}
.hileads-form input::placeholder {
  visibility: hidden;
}
.hileads-form--valid-right textarea, .hileads-form--valid-right input:not([type=button]):not([type=submit]):not(.btn) {
  border-bottom: none;
  border-right: 0.25rem solid var(--bg-lighter);
  transition: border-right-color 300ms;
}
.hileads-form label {
  text-transform: none;
  position: absolute;
  z-index: -1;
  padding: 0;
  transition: transform 300ms, font-size 300ms;
}
.hileads-form input:focus ~ label, .hileads-form input:valid ~ label, .hileads-form input:invalid:not(:placeholder-shown) ~ label, .hileads-form textarea:focus ~ label, .hileads-form textarea:valid ~ label, .hileads-form textarea:invalid:not(:placeholder-shown) ~ label {
  font-size: 0.75em;
  transform: translateY(-1.2em);
}
.hileads-form .error {
  display: none;
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  height: auto;
  padding: 0.25rem 0.5rem;
  background-color: #f12b3b;
  color: #fff;
  margin-top: 1rem;
}
.hileads-form .error:before, .hileads-form .error:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 20%;
  border-top: 0.5rem solid transparent;
}
.hileads-form .error:before {
  border-right: 0.5rem solid #f12b3b;
}
.hileads-form .error:after {
  margin-left: 0.5rem;
  border-left: 0.5rem solid #f12b3b;
}
.hileads-form.show-errors input:invalid + .error, .hileads-form .show-errors input:invalid + .error, .hileads-form input:invalid.show-errors + .error, .hileads-form input:required:invalid:not(:placeholder-shown):not(:focus) + .error {
  display: block;
}
.hileads-form textarea:focus:not(:valid), .hileads-form input:not([type=button]):not([type=submit]):not(.btn):focus:not(:valid) {
  border-color: var(--bg-light);
}
.hileads-form input:not([type=button]):not([type=submit]):not(.btn):valid, .hileads-form textarea:valid {
  border-color: #66a54a;
}
.hileads-form input:not([type=button]):not([type=submit]):not(.btn):required:invalid:not(:placeholder-shown), .hileads-form textarea:required:invalid:not(:placeholder-shown):not(:focus), .hileads-form.show-errors input:invalid, .hileads-form .show-errors input:invalid, .hileads-form input.show-errors:invalid, .hileads-form.show-errors textarea:invalid, .hileads-form .show-errors textarea:invalid, .hileads-form textarea.show-errors:invalid {
  border-color: #f12b3b;
}

.input-container:nth-child(0) {
  z-index: 20;
}

.input-container:nth-child(1) {
  z-index: 19;
}

.input-container:nth-child(2) {
  z-index: 18;
}

.input-container:nth-child(3) {
  z-index: 17;
}

.input-container:nth-child(4) {
  z-index: 16;
}

.input-container:nth-child(5) {
  z-index: 15;
}

.input-container:nth-child(6) {
  z-index: 14;
}

.input-container:nth-child(7) {
  z-index: 13;
}

.input-container:nth-child(8) {
  z-index: 12;
}

.input-container:nth-child(9) {
  z-index: 11;
}

.input-container:nth-child(10) {
  z-index: 10;
}

.input-container:nth-child(11) {
  z-index: 9;
}

.input-container:nth-child(12) {
  z-index: 8;
}

.input-container:nth-child(13) {
  z-index: 7;
}

.input-container:nth-child(14) {
  z-index: 6;
}

.input-container:nth-child(15) {
  z-index: 5;
}

.input-container:nth-child(16) {
  z-index: 4;
}

.input-container:nth-child(17) {
  z-index: 3;
}

.input-container:nth-child(18) {
  z-index: 2;
}

.input-container:nth-child(19) {
  z-index: 1;
}

input[type=checkbox].hl-input-switch {
  margin: 0.25rem 0.5rem 0.25rem 0;
  vertical-align: middle;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: visible;
  width: 2.5rem;
  height: 1.8em;
  border: none;
  border-radius: 3rem;
}
input[type=checkbox].hl-input-switch:before {
  /*width: 50%;*/
  width: 100%;
  height: 100%;
  /*border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;*/
  transition: background-color 150ms;
  background-color: #ddd;
  border-radius: 1rem;
}
input[type=checkbox].hl-input-switch:after, input[type=checkbox].hl-input-switch:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 40% !important;
}
input[type=checkbox].hl-input-switch:after {
  width: 60%;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: none;
  background-color: #fff;
  border: 1px solid #bbb;
  transition: left 200ms, color 150ms;
  height: 1.4em;
  left: 6%;
  top: 0.1em;
  border-radius: 3rem;
  border-color: #fff;
}
input[type=checkbox].hl-input-switch:after, input[type=checkbox].hl-input-switch:checked:hover:after {
  background-image: url("../img/icon-close-darkgrey.svg");
}
input[type=checkbox].hl-input-switch:checked:after {
  left: 30%;
}
input[type=checkbox].hl-input-switch:checked:after, input[type=checkbox].hl-input-switch:hover:after {
  background-image: url("../img/icon-checkmark-blue.svg");
}
input[type=checkbox].hl-input-switch:checked:before {
  background-color: #66a54a;
}
input[type=checkbox].hl-input-switch.disabled:not(:checked) {
  pointer-events: none !important;
}
input[type=checkbox].hl-input-switch.disabled:not(:checked) ~ * {
  pointer-events: none !important;
}
input[type=checkbox].hl-input-switch.disabled:after {
  background-image: url("../img/icon-close-lightgrey.svg");
}
input[type=checkbox].hl-input-switch.disabled ~ * {
  color: #bbb;
}
input[type=checkbox].hl-input-switch.disabled:checked:after {
  background-image: url("../img/icon-checkmark-lightgrey.svg");
}
input[type=checkbox].hl-input-switch.disabled:checked:before {
  background-color: #c9e4bc;
}

.hl-rangespan {
  position: relative;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container) {
  height: 1.5rem;
  background-color: #ddd;
  overflow: hidden;
  border-radius: 1rem;
  z-index: 0;
  position: relative;
  padding: 2px 1rem;
  box-sizing: content-box;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container) .hl-rangespan--range {
  position: relative;
  height: 100%;
  z-index: -2;
  background: #008fce !important;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container) .hl-rangespan--range:nth-child(2) {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  left: -0.125rem;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input {
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  left: 0.25rem;
  top: 0;
  right: 0.25rem;
  bottom: 0;
  width: calc(100% - 0.25rem - 0.25rem) !important;
  outline: none !important;
  margin: 0 !important;
  padding: 0 !important;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent !important;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input::-webkit-slider-runnable-track {
  width: 100%;
  height: 1.5rem;
  cursor: pointer;
  border-radius: 1rem;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input:focus::-webkit-slider-runnable-track {
  background: transparent !important;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input::-webkit-slider-thumb {
  pointer-events: all;
  position: relative;
  z-index: 1;
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.3);
  background-color: #fff;
  cursor: ew-resize;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input::-moz-range-track {
  position: relative;
  height: 1rem;
  z-index: -1;
  cursor: pointer;
  background: transparent !important;
  border: 0;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input:last-of-type::-moz-range-track {
  -moz-appearance: none;
  background: none transparent !important;
  border: 0;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input[type=range]::-moz-focus-outer {
  border: 0;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input::-moz-range-thumb {
  pointer-events: all;
  position: relative;
  z-index: 10;
  -moz-appearance: none;
  width: 1.5rem;
  cursor: ew-resize;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input::-ms-track {
  width: 100%;
  height: 1.5rem;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input::-ms-fill-lower {
  background: #008fce !important;
  border-radius: 1rem;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input:focus::-ms-fill-lower {
  background: #008fce !important;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input::-ms-fill-upper {
  background: #008fce !important;
  border-radius: 1rem;
}
.hl-rangespan--inputs:not(.hl-rangespan--checkbox-container):not(.hl-rangespan--checkbox-container) input:focus::-ms-fill-upper {
  background: #008fce !important;
}

.hl-rangespan--checkbox-container {
  padding: 0 !important;
}
.hl-rangespan--checkbox-container input {
  display: none;
}
.hl-rangespan--checkbox-container input ~ div > *:before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.5rem;
  right: -0.5rem;
  bottom: 0;
  z-index: -1;
}
.hl-rangespan--checkbox-container input:nth-child(1):checked ~ div > label:nth-of-type(1) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(2):checked ~ div > label:nth-of-type(2) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(3):checked ~ div > label:nth-of-type(3) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(4):checked ~ div > label:nth-of-type(4) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(5):checked ~ div > label:nth-of-type(5) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(6):checked ~ div > label:nth-of-type(6) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(7):checked ~ div > label:nth-of-type(7) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(8):checked ~ div > label:nth-of-type(8) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(9):checked ~ div > label:nth-of-type(9) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(10):checked ~ div > label:nth-of-type(10) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(11):checked ~ div > label:nth-of-type(11) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(12):checked ~ div > label:nth-of-type(12) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(13):checked ~ div > label:nth-of-type(13) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(14):checked ~ div > label:nth-of-type(14) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(15):checked ~ div > label:nth-of-type(15) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(16):checked ~ div > label:nth-of-type(16) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(17):checked ~ div > label:nth-of-type(17) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(18):checked ~ div > label:nth-of-type(18) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(19):checked ~ div > label:nth-of-type(19) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(20):checked ~ div > label:nth-of-type(20) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(21):checked ~ div > label:nth-of-type(21) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(22):checked ~ div > label:nth-of-type(22) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(23):checked ~ div > label:nth-of-type(23) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(24):checked ~ div > label:nth-of-type(24) ~ *:before, .hl-rangespan--checkbox-container input:nth-child(25):checked ~ div > label:nth-of-type(25) ~ *:before {
  background-color: #f1f7fa;
}
.hl-rangespan--checkbox-container input:nth-child(1):checked ~ div > label:nth-of-type(1):before, .hl-rangespan--checkbox-container input:nth-child(2):checked ~ div > label:nth-of-type(2):before, .hl-rangespan--checkbox-container input:nth-child(3):checked ~ div > label:nth-of-type(3):before, .hl-rangespan--checkbox-container input:nth-child(4):checked ~ div > label:nth-of-type(4):before, .hl-rangespan--checkbox-container input:nth-child(5):checked ~ div > label:nth-of-type(5):before, .hl-rangespan--checkbox-container input:nth-child(6):checked ~ div > label:nth-of-type(6):before, .hl-rangespan--checkbox-container input:nth-child(7):checked ~ div > label:nth-of-type(7):before, .hl-rangespan--checkbox-container input:nth-child(8):checked ~ div > label:nth-of-type(8):before, .hl-rangespan--checkbox-container input:nth-child(9):checked ~ div > label:nth-of-type(9):before, .hl-rangespan--checkbox-container input:nth-child(10):checked ~ div > label:nth-of-type(10):before, .hl-rangespan--checkbox-container input:nth-child(11):checked ~ div > label:nth-of-type(11):before, .hl-rangespan--checkbox-container input:nth-child(12):checked ~ div > label:nth-of-type(12):before, .hl-rangespan--checkbox-container input:nth-child(13):checked ~ div > label:nth-of-type(13):before, .hl-rangespan--checkbox-container input:nth-child(14):checked ~ div > label:nth-of-type(14):before, .hl-rangespan--checkbox-container input:nth-child(15):checked ~ div > label:nth-of-type(15):before, .hl-rangespan--checkbox-container input:nth-child(16):checked ~ div > label:nth-of-type(16):before, .hl-rangespan--checkbox-container input:nth-child(17):checked ~ div > label:nth-of-type(17):before, .hl-rangespan--checkbox-container input:nth-child(18):checked ~ div > label:nth-of-type(18):before, .hl-rangespan--checkbox-container input:nth-child(19):checked ~ div > label:nth-of-type(19):before, .hl-rangespan--checkbox-container input:nth-child(20):checked ~ div > label:nth-of-type(20):before, .hl-rangespan--checkbox-container input:nth-child(21):checked ~ div > label:nth-of-type(21):before, .hl-rangespan--checkbox-container input:nth-child(22):checked ~ div > label:nth-of-type(22):before, .hl-rangespan--checkbox-container input:nth-child(23):checked ~ div > label:nth-of-type(23):before, .hl-rangespan--checkbox-container input:nth-child(24):checked ~ div > label:nth-of-type(24):before, .hl-rangespan--checkbox-container input:nth-child(25):checked ~ div > label:nth-of-type(25):before {
  background-color: #008fce !important;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.hl-rangespan--checkbox-container input:nth-child(1):checked ~ div > label:nth-of-type(1), .hl-rangespan--checkbox-container input:nth-child(2):checked ~ div > label:nth-of-type(2), .hl-rangespan--checkbox-container input:nth-child(3):checked ~ div > label:nth-of-type(3), .hl-rangespan--checkbox-container input:nth-child(4):checked ~ div > label:nth-of-type(4), .hl-rangespan--checkbox-container input:nth-child(5):checked ~ div > label:nth-of-type(5), .hl-rangespan--checkbox-container input:nth-child(6):checked ~ div > label:nth-of-type(6), .hl-rangespan--checkbox-container input:nth-child(7):checked ~ div > label:nth-of-type(7), .hl-rangespan--checkbox-container input:nth-child(8):checked ~ div > label:nth-of-type(8), .hl-rangespan--checkbox-container input:nth-child(9):checked ~ div > label:nth-of-type(9), .hl-rangespan--checkbox-container input:nth-child(10):checked ~ div > label:nth-of-type(10), .hl-rangespan--checkbox-container input:nth-child(11):checked ~ div > label:nth-of-type(11), .hl-rangespan--checkbox-container input:nth-child(12):checked ~ div > label:nth-of-type(12), .hl-rangespan--checkbox-container input:nth-child(13):checked ~ div > label:nth-of-type(13), .hl-rangespan--checkbox-container input:nth-child(14):checked ~ div > label:nth-of-type(14), .hl-rangespan--checkbox-container input:nth-child(15):checked ~ div > label:nth-of-type(15), .hl-rangespan--checkbox-container input:nth-child(16):checked ~ div > label:nth-of-type(16), .hl-rangespan--checkbox-container input:nth-child(17):checked ~ div > label:nth-of-type(17), .hl-rangespan--checkbox-container input:nth-child(18):checked ~ div > label:nth-of-type(18), .hl-rangespan--checkbox-container input:nth-child(19):checked ~ div > label:nth-of-type(19), .hl-rangespan--checkbox-container input:nth-child(20):checked ~ div > label:nth-of-type(20), .hl-rangespan--checkbox-container input:nth-child(21):checked ~ div > label:nth-of-type(21), .hl-rangespan--checkbox-container input:nth-child(22):checked ~ div > label:nth-of-type(22), .hl-rangespan--checkbox-container input:nth-child(23):checked ~ div > label:nth-of-type(23), .hl-rangespan--checkbox-container input:nth-child(24):checked ~ div > label:nth-of-type(24), .hl-rangespan--checkbox-container input:nth-child(25):checked ~ div > label:nth-of-type(25) {
  color: #fff;
}
.hl-rangespan--checkbox-container input:checked ~ input:nth-child(2):checked ~ div > label:nth-of-type(2):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(3):checked ~ div > label:nth-of-type(3):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(4):checked ~ div > label:nth-of-type(4):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(5):checked ~ div > label:nth-of-type(5):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(6):checked ~ div > label:nth-of-type(6):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(7):checked ~ div > label:nth-of-type(7):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(8):checked ~ div > label:nth-of-type(8):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(9):checked ~ div > label:nth-of-type(9):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(10):checked ~ div > label:nth-of-type(10):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(11):checked ~ div > label:nth-of-type(11):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(12):checked ~ div > label:nth-of-type(12):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(13):checked ~ div > label:nth-of-type(13):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(14):checked ~ div > label:nth-of-type(14):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(15):checked ~ div > label:nth-of-type(15):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(16):checked ~ div > label:nth-of-type(16):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(17):checked ~ div > label:nth-of-type(17):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(18):checked ~ div > label:nth-of-type(18):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(19):checked ~ div > label:nth-of-type(19):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(20):checked ~ div > label:nth-of-type(20):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(21):checked ~ div > label:nth-of-type(21):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(22):checked ~ div > label:nth-of-type(22):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(23):checked ~ div > label:nth-of-type(23):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(24):checked ~ div > label:nth-of-type(24):before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(25):checked ~ div > label:nth-of-type(25):before {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.hl-rangespan--checkbox-container input ~ div > label.hl-rangespan--checkbox-single:before {
  border-radius: 1rem !important;
}
.hl-rangespan--checkbox-container input ~ div > label.hl-rangespan--checkbox-single ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(2):checked ~ div > label:nth-of-type(2) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(3):checked ~ div > label:nth-of-type(3) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(4):checked ~ div > label:nth-of-type(4) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(5):checked ~ div > label:nth-of-type(5) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(6):checked ~ div > label:nth-of-type(6) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(7):checked ~ div > label:nth-of-type(7) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(8):checked ~ div > label:nth-of-type(8) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(9):checked ~ div > label:nth-of-type(9) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(10):checked ~ div > label:nth-of-type(10) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(11):checked ~ div > label:nth-of-type(11) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(12):checked ~ div > label:nth-of-type(12) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(13):checked ~ div > label:nth-of-type(13) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(14):checked ~ div > label:nth-of-type(14) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(15):checked ~ div > label:nth-of-type(15) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(16):checked ~ div > label:nth-of-type(16) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(17):checked ~ div > label:nth-of-type(17) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(18):checked ~ div > label:nth-of-type(18) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(19):checked ~ div > label:nth-of-type(19) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(20):checked ~ div > label:nth-of-type(20) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(21):checked ~ div > label:nth-of-type(21) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(22):checked ~ div > label:nth-of-type(22) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(23):checked ~ div > label:nth-of-type(23) ~ *:before, .hl-rangespan--checkbox-container input:checked ~ input:nth-child(24):checked ~ div > label:nth-of-type(24) ~ *:before {
  background-color: transparent !important;
}
.hl-rangespan--checkbox-container > div > * {
  display: block;
  padding: 0.375rem 0;
  z-index: 1;
}
.hl-rangespan--checkbox-container > div > *:not(label):not(:first-child) {
  padding-top: 1rem;
}
.hl-rangespan--checkbox-container > div > *:last-child {
  margin-bottom: 1.5rem;
}
.hl-rangespan--checkbox-container > div > label {
  color: #008fce;
  color: var(--txt-link);
}
.hl-rangespan--checkbox-container > div > label:hover {
  color: #646464;
  color: var(--txt-dark);
}

@media screen and (min-width: 420px) {
  .hl-rangespan--checkbox-container input ~ div > *:before {
    left: -0.5rem;
    right: -0.5rem;
  }
  .hl-rangespan--checkbox-container > div > * {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 650px) {
  .hl-rangespan--checkbox-container input ~ div > *:before {
    left: 0.5rem;
    right: 0.5rem;
  }
  .hl-rangespan--checkbox-container > div > * {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.hl-datepicker {
  position: relative;
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Chrome/Safari/Opera */
  -khtml-user-select: none; /* Konqueror */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}
.hl-datepicker .hl-datepicker--dateinput {
  display: none;
}
.hl-datepicker.inline {
  width: 10em;
  display: inline-block;
}
.hl-datepicker .hl-datepicker--value {
  white-space: nowrap;
  overflow: hidden;
  /*	min-height: 46px;*/
  min-height: 36px;
  padding-right: 2em;
}
.hl-datepicker .hl-datepicker--value:after {
  content: "\e109";
  position: absolute;
  top: 50%;
  /*	margin-top: -0.5em;*/
  margin-top: -0.4em;
  right: 10px;
  width: 1em;
  height: 1em;
}
.hl-datepicker .hl-datepicker--dropdown {
  /*display: none;*/
  /*width: 100%;
  left: 0%;
  position: absolute;
  z-index:90;
  top: 110%;*/
  box-sizing: border-box;
  /*background-color: $color-;*/
  /*
  &:before {
  	border-left: 10px solid transparent;
  	margin-left: -10px;
  }
  &:after {
  	border-right: 10px solid transparent;
  	margin-right: -10px;
  }
  */
}
.hl-datepicker .hl-datepicker--dropdown.show {
  /*display: block;*/
  /*
  &:before,
  &:after {
  	content: "";
  	width: 0;
  	height: 0;
  	position: absolute;
  	left: 50%;
  	top: -10px;
  	z-index: 10;
  	border-bottom-width: 10px;
  	border-bottom-style: solid;
  }
  */
}
.hl-datepicker .hl-datepicker--dropdown.show > div {
  /*opacity: 1;
  max-height: 400px;
  /*border: 1px solid #eee;*/
  /*box-shadow: 0 4px 20px 4px rgba(0, 0, 0, 0.2);*/
}
.hl-datepicker .hl-datepicker--dropdown > div {
  overflow: hidden;
  /*opacity: 0;
  max-height: 0;
  transition: max-height 0.3s, opacity 0.3s;*/
  /*border: 1px solid transparent;*/
}
.hl-datepicker .hl-datepicker--dropdown > div > a, .hl-datepicker .hl-datepicker--dropdown > div > a:after {
  display: block;
  position: absolute;
  width: 2em;
  height: 2em;
  z-index: 10;
}
.hl-datepicker .hl-datepicker--dropdown > div > a {
  top: 0.2em;
  left: 0.25rem;
}
.hl-datepicker .hl-datepicker--dropdown > div > a.monthnext {
  left: auto;
  right: 0.25rem;
}
.hl-datepicker .hl-datepicker--dropdown > div > a:after {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
  background-image: url("../img/icon-arrow-down-black.svg");
  transform: rotate(90deg);
  top: 0;
  left: 0;
}
.hl-datepicker .hl-datepicker--dropdown > div > a:hover:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
}
.hl-datepicker .hl-datepicker--dropdown > div > a.monthnext:after {
  transform: rotate(-90deg);
}
.hl-datepicker.inline .hl-datepicker--dropdown {
  width: 130%;
  left: -15%;
}
.hl-datepicker.open-up .hl-datepicker--dropdown {
  top: auto;
  bottom: 110%;
}
.hl-datepicker.open-up .hl-datepicker--dropdown:before, .hl-datepicker.open-up .hl-datepicker--dropdown:after {
  top: auto;
  bottom: -10px;
  border-bottom-width: 0;
  border-top-width: 10px;
  border-top-style: solid;
}
.hl-datepicker ul {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: top;
  padding: 5px 2px 4px 5px;
}
.hl-datepicker ul li {
  position: relative;
  display: inline-block;
  min-height: 50px;
  width: 14.2%;
  font-size: 0.8em;
  text-align: center;
  padding: 0.2em 0.1em;
  float: left;
  margin-bottom: 1px;
  border-right: 1px solid #fff;
  z-index: 0;
}
.hl-datepicker ul li.week-new {
  clear: left;
}
.hl-datepicker ul li span {
  display: none;
}
.hl-datepicker ul li.period-new span {
  display: block;
  position: relative;
  width: 2em;
  height: 2em;
  margin: 0 auto;
}
.hl-datepicker ul li.today:before, .hl-datepicker ul li.period-new span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -moz-border-radius: 50px;
  border-radius: 50px;
  z-index: -1;
}
.hl-datepicker ul li.today {
  color: #fff !important;
}
.hl-datepicker ul li.today:before {
  height: 1.5em;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background-color: #f12b3b !important;
}
.hl-datepicker ul li.header {
  font-size: 20px;
  width: 100%;
  min-height: 1.5em;
}
.hl-datepicker ul li.header-day {
  min-height: 2em;
}
.hl-datepicker ul li:not(.header):not(.header-day) {
  min-height: 0;
  line-height: 50px;
}
.hl-datepicker ul li:nth-child(9) {
  margin-left: 0;
}
.hl-datepicker ul li.week-day-2:nth-child(9) {
  margin-left: 14.2%;
}
.hl-datepicker ul li.week-day-3:nth-child(9) {
  margin-left: 28.4%;
}
.hl-datepicker ul li.week-day-4:nth-child(9) {
  margin-left: 42.6%;
}
.hl-datepicker ul li.week-day-5:nth-child(9) {
  margin-left: 56.8%;
}
.hl-datepicker ul li.week-day-6:nth-child(9) {
  margin-left: 71%;
}
.hl-datepicker ul li.week-day-0:nth-child(9) {
  margin-left: 85.2%;
}
.hl-datepicker ul li.week-day-6, .hl-datepicker ul li.week-day-0 {
  opacity: 0.6;
}
.hl-datepicker ul li:not(.header):hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.2;
}

.ti-form .sending h5:before,
.ti-form .sending h5:after,
.ti-form .done h5:before {
  content: "";
  display: inline-block;
  vertical-align: baseline;
  width: 18px;
  height: 11px;
  margin-right: -18px;
  background-repeat: no-repeat;
  background-position: 80% center;
  background-size: 8px 11px;
}

.ti-form .sending h5:before,
.ti-form .sending h5:after,
.ti-form .done h5:before {
  background-image: url("../img/icon-spinner-lg-grey.svg");
  background-size: contain;
  position: absolute;
}

.ti-form .sending h5:after {
  background-image: url("../img/icon-spinner-lg-red.svg");
}

.ti-form .done h5:before {
  background-image: url("../img/icon-ok-small-grey.svg");
}

.ti-form .sending,
.ti-form .error,
.ti-form .done,
.ti-form.sending form,
.ti-form.error form,
.ti-form.done form {
  display: none;
}

.ti-form.sending .sending,
.ti-form.error .error,
.ti-form.done .done {
  display: block;
}

.ti-form .sending h5,
.ti-form .done h5 {
  text-align: center;
  padding-top: 120px;
}

.ti-form .error h5,
.ti-form .error p {
  text-align: center;
}

.ti-form .sending h5:before,
.ti-form .sending h5:after,
.ti-form .done h5:before {
  top: 0;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 100px;
}

.spinner.small:before,
.spinner.small:after {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.spinner.small:before,
.spinner.small:after {
  margin-left: -8px;
}

.spinner-container .spinner.small {
  width: 20px;
  height: 20px;
}

.spinner-container .spinner,
.spinner-container:after {
  display: inline-block;
  vertical-align: middle;
}

.spinner-container:after {
  content: "";
  height: 97%;
  margin-left: -0.005em;
}

.ti-form .sending h5:before {
  -webkit-animation: rotateCounter360 2.2s linear infinite;
  animation: rotateCounter360 2.2s linear infinite;
}

.ti-form .sending h5:after {
  -webkit-animation: rotate360 1.3s linear infinite;
  animation: rotate360 1.3s linear infinite;
}

@-webkit-keyframes rotate360 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateCounter360 {
  0% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes rotateCounter360 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
input[type=file] {
  display: none !important;
}

.ti-form--boxed .input-container {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.ti-form--boxed textarea, .ti-form--boxed input:not([type=button]):not([type=submit]):not(.btn) {
  padding: 1.25rem 0.5rem 0.25rem !important;
}
.ti-form--boxed * textarea, .ti-form--boxed * input:not([type=button]):not([type=submit]):not(.btn) {
  border-color: #fff;
  border-color: var(--bg-clear);
}
.ti-form--boxed label {
  margin-left: 0.5rem;
  transform: translateY(0.6em) !important;
}
.ti-form--boxed input:focus ~ label, .ti-form--boxed input:valid ~ label, .ti-form--boxed input:invalid:not(:placeholder-shown) ~ label, .ti-form--boxed textarea:focus ~ label, .ti-form--boxed textarea:valid ~ label, .ti-form--boxed textarea:invalid:not(:placeholder-shown) ~ label {
  transform: translateY(0.2em) !important;
}

/* FLOAT */
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media screen and (min-width: 360px) {
  .xs\:float-left {
    float: left !important;
  }
  .xs\:float-right {
    float: right !important;
  }
  .xs\:float-none {
    float: none !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:float-left {
    float: left !important;
  }
  .sm\:float-right {
    float: right !important;
  }
  .sm\:float-none {
    float: none !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:float-left {
    float: left !important;
  }
  .md\:float-right {
    float: right !important;
  }
  .md\:float-none {
    float: none !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:float-left {
    float: left !important;
  }
  .lg\:float-right {
    float: right !important;
  }
  .lg\:float-none {
    float: none !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:float-left {
    float: left !important;
  }
  .xl\:float-right {
    float: right !important;
  }
  .xl\:float-none {
    float: none !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:float-left {
    float: left !important;
  }
  .xxl\:float-right {
    float: right !important;
  }
  .xxl\:float-none {
    float: none !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:float-left {
    float: left !important;
  }
  .max\:float-right {
    float: right !important;
  }
  .max\:float-none {
    float: none !important;
  }
}
.clear {
  clear: both !important;
}

.clear-left {
  clear: left !important;
}

.clear-right {
  clear: right !important;
}

@media screen and (min-width: 360px) {
  .xs\:clear {
    clear: both !important;
  }
  .xs\:clear-left {
    clear: left !important;
  }
  .xs\:clear-right {
    clear: right !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:clear {
    clear: both !important;
  }
  .sm\:clear-left {
    clear: left !important;
  }
  .sm\:clear-right {
    clear: right !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:clear {
    clear: both !important;
  }
  .md\:clear-left {
    clear: left !important;
  }
  .md\:clear-right {
    clear: right !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:clear {
    clear: both !important;
  }
  .lg\:clear-left {
    clear: left !important;
  }
  .lg\:clear-right {
    clear: right !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:clear {
    clear: both !important;
  }
  .xl\:clear-left {
    clear: left !important;
  }
  .xl\:clear-right {
    clear: right !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:clear {
    clear: both !important;
  }
  .xxl\:clear-left {
    clear: left !important;
  }
  .xxl\:clear-right {
    clear: right !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:clear {
    clear: both !important;
  }
  .max\:clear-left {
    clear: left !important;
  }
  .max\:clear-right {
    clear: right !important;
  }
}
.clearfix:after {
  content: "";
  clear: both;
  display: table;
}

.border-box {
  box-sizing: border-box;
}

/* User Select */
.user-select {
  -webkit-user-select: auto !important;
  -webkit-user-drag: auto !important;
  user-select: text !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -webkit-user-drag: none !important;
  user-select: none !important;
}

.pointer-events-none {
  pointer-events: none !important;
}

.pointer-events-auto {
  pointer-events: auto !important;
}

/* Z-INDEX */
.z--1\:after:after {
  z-index: -1 !important;
}

.z--1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-1000 {
  z-index: 1000 !important;
}

.z-1001 {
  z-index: 1001 !important;
}

.z-2000 {
  z-index: 2000 !important;
}

.z-2001 {
  z-index: 2001 !important;
}

.z-2002 {
  z-index: 2002 !important;
}

.z-2003 {
  z-index: 2003 !important;
}

.z-3000 {
  z-index: 3000 !important;
}

.z-3001 {
  z-index: 3001 !important;
}

.z-4000 {
  z-index: 4000 !important;
}

@media screen and (min-width: 360px) {
  .xs\:z--1\:after:after {
    z-index: -1 !important;
  }
  .xs\:z--1 {
    z-index: -1 !important;
  }
  .xs\:z-0 {
    z-index: 0 !important;
  }
  .xs\:z-1 {
    z-index: 1 !important;
  }
  .xs\:z-2 {
    z-index: 2 !important;
  }
  .xs\:z-1000 {
    z-index: 1000 !important;
  }
  .xs\:z-1001 {
    z-index: 1001 !important;
  }
  .xs\:z-2000 {
    z-index: 2000 !important;
  }
  .xs\:z-2001 {
    z-index: 2001 !important;
  }
  .xs\:z-2002 {
    z-index: 2002 !important;
  }
  .xs\:z-2003 {
    z-index: 2003 !important;
  }
  .xs\:z-3000 {
    z-index: 3000 !important;
  }
  .xs\:z-3001 {
    z-index: 3001 !important;
  }
  .xs\:z-4000 {
    z-index: 4000 !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:z--1\:after:after {
    z-index: -1 !important;
  }
  .sm\:z--1 {
    z-index: -1 !important;
  }
  .sm\:z-0 {
    z-index: 0 !important;
  }
  .sm\:z-1 {
    z-index: 1 !important;
  }
  .sm\:z-2 {
    z-index: 2 !important;
  }
  .sm\:z-1000 {
    z-index: 1000 !important;
  }
  .sm\:z-1001 {
    z-index: 1001 !important;
  }
  .sm\:z-2000 {
    z-index: 2000 !important;
  }
  .sm\:z-2001 {
    z-index: 2001 !important;
  }
  .sm\:z-2002 {
    z-index: 2002 !important;
  }
  .sm\:z-2003 {
    z-index: 2003 !important;
  }
  .sm\:z-3000 {
    z-index: 3000 !important;
  }
  .sm\:z-3001 {
    z-index: 3001 !important;
  }
  .sm\:z-4000 {
    z-index: 4000 !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:z--1\:after:after {
    z-index: -1 !important;
  }
  .md\:z--1 {
    z-index: -1 !important;
  }
  .md\:z-0 {
    z-index: 0 !important;
  }
  .md\:z-1 {
    z-index: 1 !important;
  }
  .md\:z-2 {
    z-index: 2 !important;
  }
  .md\:z-1000 {
    z-index: 1000 !important;
  }
  .md\:z-1001 {
    z-index: 1001 !important;
  }
  .md\:z-2000 {
    z-index: 2000 !important;
  }
  .md\:z-2001 {
    z-index: 2001 !important;
  }
  .md\:z-2002 {
    z-index: 2002 !important;
  }
  .md\:z-2003 {
    z-index: 2003 !important;
  }
  .md\:z-3000 {
    z-index: 3000 !important;
  }
  .md\:z-3001 {
    z-index: 3001 !important;
  }
  .md\:z-4000 {
    z-index: 4000 !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:z--1\:after:after {
    z-index: -1 !important;
  }
  .lg\:z--1 {
    z-index: -1 !important;
  }
  .lg\:z-0 {
    z-index: 0 !important;
  }
  .lg\:z-1 {
    z-index: 1 !important;
  }
  .lg\:z-2 {
    z-index: 2 !important;
  }
  .lg\:z-1000 {
    z-index: 1000 !important;
  }
  .lg\:z-1001 {
    z-index: 1001 !important;
  }
  .lg\:z-2000 {
    z-index: 2000 !important;
  }
  .lg\:z-2001 {
    z-index: 2001 !important;
  }
  .lg\:z-2002 {
    z-index: 2002 !important;
  }
  .lg\:z-2003 {
    z-index: 2003 !important;
  }
  .lg\:z-3000 {
    z-index: 3000 !important;
  }
  .lg\:z-3001 {
    z-index: 3001 !important;
  }
  .lg\:z-4000 {
    z-index: 4000 !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:z--1\:after:after {
    z-index: -1 !important;
  }
  .xl\:z--1 {
    z-index: -1 !important;
  }
  .xl\:z-0 {
    z-index: 0 !important;
  }
  .xl\:z-1 {
    z-index: 1 !important;
  }
  .xl\:z-2 {
    z-index: 2 !important;
  }
  .xl\:z-1000 {
    z-index: 1000 !important;
  }
  .xl\:z-1001 {
    z-index: 1001 !important;
  }
  .xl\:z-2000 {
    z-index: 2000 !important;
  }
  .xl\:z-2001 {
    z-index: 2001 !important;
  }
  .xl\:z-2002 {
    z-index: 2002 !important;
  }
  .xl\:z-2003 {
    z-index: 2003 !important;
  }
  .xl\:z-3000 {
    z-index: 3000 !important;
  }
  .xl\:z-3001 {
    z-index: 3001 !important;
  }
  .xl\:z-4000 {
    z-index: 4000 !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:z--1\:after:after {
    z-index: -1 !important;
  }
  .xxl\:z--1 {
    z-index: -1 !important;
  }
  .xxl\:z-0 {
    z-index: 0 !important;
  }
  .xxl\:z-1 {
    z-index: 1 !important;
  }
  .xxl\:z-2 {
    z-index: 2 !important;
  }
  .xxl\:z-1000 {
    z-index: 1000 !important;
  }
  .xxl\:z-1001 {
    z-index: 1001 !important;
  }
  .xxl\:z-2000 {
    z-index: 2000 !important;
  }
  .xxl\:z-2001 {
    z-index: 2001 !important;
  }
  .xxl\:z-2002 {
    z-index: 2002 !important;
  }
  .xxl\:z-2003 {
    z-index: 2003 !important;
  }
  .xxl\:z-3000 {
    z-index: 3000 !important;
  }
  .xxl\:z-3001 {
    z-index: 3001 !important;
  }
  .xxl\:z-4000 {
    z-index: 4000 !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:z--1\:after:after {
    z-index: -1 !important;
  }
  .max\:z--1 {
    z-index: -1 !important;
  }
  .max\:z-0 {
    z-index: 0 !important;
  }
  .max\:z-1 {
    z-index: 1 !important;
  }
  .max\:z-2 {
    z-index: 2 !important;
  }
  .max\:z-1000 {
    z-index: 1000 !important;
  }
  .max\:z-1001 {
    z-index: 1001 !important;
  }
  .max\:z-2000 {
    z-index: 2000 !important;
  }
  .max\:z-2001 {
    z-index: 2001 !important;
  }
  .max\:z-2002 {
    z-index: 2002 !important;
  }
  .max\:z-2003 {
    z-index: 2003 !important;
  }
  .max\:z-3000 {
    z-index: 3000 !important;
  }
  .max\:z-3001 {
    z-index: 3001 !important;
  }
  .max\:z-4000 {
    z-index: 4000 !important;
  }
}
/* TRANSFORM */
.translate-3d-reset {
  transform: translate3d(0, 0, 0);
}

.translate-3d-fix {
  transform: translate3d(0, 0, 10000px) !important;
  perspective: 0 !important;
  z-index: 1;
}

.transform-none {
  transform: none !important;
}

@media screen and (max-width: 420px) {
  .max-sm\:transform-none {
    transform: none !important;
  }
}
@media screen and (max-width: 650px) {
  .max-md\:transform-none {
    transform: none !important;
  }
}
@media screen and (max-width: 950px) {
  .max-lg\:transform-none {
    transform: none !important;
  }
}
/* WHITE SPACE */
.wrap {
  white-space: normal;
}

.nowrap {
  white-space: nowrap;
}

/* OVERFLOW */
.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-x-auto {
  overflow: hidden !important;
  overflow-x: auto !important;
}

.overflow-y-auto {
  overflow: hidden !important;
  overflow-y: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
  overflow-x: visible !important;
}

@media screen and (min-width: 360px) {
  .xs\:overflow-hidden {
    overflow: hidden !important;
  }
  .xs\:overflow-auto {
    overflow: auto !important;
  }
  .xs\:overflow-visible {
    overflow: visible !important;
  }
  .xs\:overflow-x-auto {
    overflow: hidden !important;
    overflow-x: auto !important;
  }
  .xs\:overflow-y-auto {
    overflow: hidden !important;
    overflow-y: auto !important;
  }
  .xs\:overflow-x-hidden {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
  .xs\:overflow-y-hidden {
    overflow-y: hidden !important;
    overflow-x: visible !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:overflow-hidden {
    overflow: hidden !important;
  }
  .sm\:overflow-auto {
    overflow: auto !important;
  }
  .sm\:overflow-visible {
    overflow: visible !important;
  }
  .sm\:overflow-x-auto {
    overflow: hidden !important;
    overflow-x: auto !important;
  }
  .sm\:overflow-y-auto {
    overflow: hidden !important;
    overflow-y: auto !important;
  }
  .sm\:overflow-x-hidden {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
  .sm\:overflow-y-hidden {
    overflow-y: hidden !important;
    overflow-x: visible !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:overflow-hidden {
    overflow: hidden !important;
  }
  .md\:overflow-auto {
    overflow: auto !important;
  }
  .md\:overflow-visible {
    overflow: visible !important;
  }
  .md\:overflow-x-auto {
    overflow: hidden !important;
    overflow-x: auto !important;
  }
  .md\:overflow-y-auto {
    overflow: hidden !important;
    overflow-y: auto !important;
  }
  .md\:overflow-x-hidden {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
  .md\:overflow-y-hidden {
    overflow-y: hidden !important;
    overflow-x: visible !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:overflow-hidden {
    overflow: hidden !important;
  }
  .lg\:overflow-auto {
    overflow: auto !important;
  }
  .lg\:overflow-visible {
    overflow: visible !important;
  }
  .lg\:overflow-x-auto {
    overflow: hidden !important;
    overflow-x: auto !important;
  }
  .lg\:overflow-y-auto {
    overflow: hidden !important;
    overflow-y: auto !important;
  }
  .lg\:overflow-x-hidden {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
  .lg\:overflow-y-hidden {
    overflow-y: hidden !important;
    overflow-x: visible !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:overflow-hidden {
    overflow: hidden !important;
  }
  .xl\:overflow-auto {
    overflow: auto !important;
  }
  .xl\:overflow-visible {
    overflow: visible !important;
  }
  .xl\:overflow-x-auto {
    overflow: hidden !important;
    overflow-x: auto !important;
  }
  .xl\:overflow-y-auto {
    overflow: hidden !important;
    overflow-y: auto !important;
  }
  .xl\:overflow-x-hidden {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
  .xl\:overflow-y-hidden {
    overflow-y: hidden !important;
    overflow-x: visible !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:overflow-hidden {
    overflow: hidden !important;
  }
  .xxl\:overflow-auto {
    overflow: auto !important;
  }
  .xxl\:overflow-visible {
    overflow: visible !important;
  }
  .xxl\:overflow-x-auto {
    overflow: hidden !important;
    overflow-x: auto !important;
  }
  .xxl\:overflow-y-auto {
    overflow: hidden !important;
    overflow-y: auto !important;
  }
  .xxl\:overflow-x-hidden {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
  .xxl\:overflow-y-hidden {
    overflow-y: hidden !important;
    overflow-x: visible !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:overflow-hidden {
    overflow: hidden !important;
  }
  .max\:overflow-auto {
    overflow: auto !important;
  }
  .max\:overflow-visible {
    overflow: visible !important;
  }
  .max\:overflow-x-auto {
    overflow: hidden !important;
    overflow-x: auto !important;
  }
  .max\:overflow-y-auto {
    overflow: hidden !important;
    overflow-y: auto !important;
  }
  .max\:overflow-x-hidden {
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
  .max\:overflow-y-hidden {
    overflow-y: hidden !important;
    overflow-x: visible !important;
  }
}
@media (hover: hover) {
  .overflow-x-hidden\:hover {
    overflow-x: hidden;
  }
}
.indent-hide {
  overflow-x: hidden;
  text-indent: -999em;
}

.indent-none {
  text-indent: 0 !important;
}

/* CSS FILTERS */
.filter-grey-2 {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.filter-grey {
  -webkit-filter: sepia(30%) hue-rotate(50deg) saturate(10%) brightness(95%);
  filter: sepia(30%) hue-rotate(50deg) saturate(10%) brightness(95%);
}

.filter-dark {
  -webkit-filter: brightness(70%) contrast(80%);
  filter: brightness(70%) contrast(80%);
}

.filter-darker {
  -webkit-filter: brightness(45%) contrast(65%);
  filter: brightness(45%) contrast(65%);
}

.filter-darkest {
  -webkit-filter: brightness(20%) contrast(50%);
  filter: brightness(20%) contrast(50%);
}

/* TEXT */
.ws-nowrap {
  white-space: nowrap !important;
}

.ws-normal {
  white-space: normal !important;
}

@media screen and (min-width: 360px) {
  .xs\:ws-nowrap {
    white-space: nowrap !important;
  }
  .xs\:ws-normal {
    white-space: normal !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:ws-nowrap {
    white-space: nowrap !important;
  }
  .sm\:ws-normal {
    white-space: normal !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:ws-nowrap {
    white-space: nowrap !important;
  }
  .md\:ws-normal {
    white-space: normal !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:ws-nowrap {
    white-space: nowrap !important;
  }
  .lg\:ws-normal {
    white-space: normal !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:ws-nowrap {
    white-space: nowrap !important;
  }
  .xl\:ws-normal {
    white-space: normal !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:ws-nowrap {
    white-space: nowrap !important;
  }
  .xxl\:ws-normal {
    white-space: normal !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:ws-nowrap {
    white-space: nowrap !important;
  }
  .max\:ws-normal {
    white-space: normal !important;
  }
}
.align-center {
  text-align: center !important;
}

.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right !important;
}

@media screen and (min-width: 360px) {
  .xs\:align-center {
    text-align: center !important;
  }
  .xs\:align-left {
    text-align: left !important;
  }
  .xs\:align-right {
    text-align: right !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:align-center {
    text-align: center !important;
  }
  .sm\:align-left {
    text-align: left !important;
  }
  .sm\:align-right {
    text-align: right !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:align-center {
    text-align: center !important;
  }
  .md\:align-left {
    text-align: left !important;
  }
  .md\:align-right {
    text-align: right !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:align-center {
    text-align: center !important;
  }
  .lg\:align-left {
    text-align: left !important;
  }
  .lg\:align-right {
    text-align: right !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:align-center {
    text-align: center !important;
  }
  .xl\:align-left {
    text-align: left !important;
  }
  .xl\:align-right {
    text-align: right !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:align-center {
    text-align: center !important;
  }
  .xxl\:align-left {
    text-align: left !important;
  }
  .xxl\:align-right {
    text-align: right !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:align-center {
    text-align: center !important;
  }
  .max\:align-left {
    text-align: left !important;
  }
  .max\:align-right {
    text-align: right !important;
  }
}
.va-t {
  vertical-align: top !important;
}

.va-b {
  vertical-align: bottom !important;
}

.va-m {
  vertical-align: middle !important;
}

.va-base {
  vertical-align: baseline !important;
}

.va-txt-t {
  vertical-align: text-top !important;
}

.va-txt-b {
  vertical-align: text-bottom !important;
}

@media screen and (min-width: 360px) {
  .xs\:va-t {
    vertical-align: top !important;
  }
  .xs\:va-b {
    vertical-align: bottom !important;
  }
  .xs\:va-m {
    vertical-align: middle !important;
  }
  .xs\:va-base {
    vertical-align: baseline !important;
  }
  .xs\:va-txt-t {
    vertical-align: text-top !important;
  }
  .xs\:va-txt-b {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:va-t {
    vertical-align: top !important;
  }
  .sm\:va-b {
    vertical-align: bottom !important;
  }
  .sm\:va-m {
    vertical-align: middle !important;
  }
  .sm\:va-base {
    vertical-align: baseline !important;
  }
  .sm\:va-txt-t {
    vertical-align: text-top !important;
  }
  .sm\:va-txt-b {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:va-t {
    vertical-align: top !important;
  }
  .md\:va-b {
    vertical-align: bottom !important;
  }
  .md\:va-m {
    vertical-align: middle !important;
  }
  .md\:va-base {
    vertical-align: baseline !important;
  }
  .md\:va-txt-t {
    vertical-align: text-top !important;
  }
  .md\:va-txt-b {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:va-t {
    vertical-align: top !important;
  }
  .lg\:va-b {
    vertical-align: bottom !important;
  }
  .lg\:va-m {
    vertical-align: middle !important;
  }
  .lg\:va-base {
    vertical-align: baseline !important;
  }
  .lg\:va-txt-t {
    vertical-align: text-top !important;
  }
  .lg\:va-txt-b {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:va-t {
    vertical-align: top !important;
  }
  .xl\:va-b {
    vertical-align: bottom !important;
  }
  .xl\:va-m {
    vertical-align: middle !important;
  }
  .xl\:va-base {
    vertical-align: baseline !important;
  }
  .xl\:va-txt-t {
    vertical-align: text-top !important;
  }
  .xl\:va-txt-b {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:va-t {
    vertical-align: top !important;
  }
  .xxl\:va-b {
    vertical-align: bottom !important;
  }
  .xxl\:va-m {
    vertical-align: middle !important;
  }
  .xxl\:va-base {
    vertical-align: baseline !important;
  }
  .xxl\:va-txt-t {
    vertical-align: text-top !important;
  }
  .xxl\:va-txt-b {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:va-t {
    vertical-align: top !important;
  }
  .max\:va-b {
    vertical-align: bottom !important;
  }
  .max\:va-m {
    vertical-align: middle !important;
  }
  .max\:va-base {
    vertical-align: baseline !important;
  }
  .max\:va-txt-t {
    vertical-align: text-top !important;
  }
  .max\:va-txt-b {
    vertical-align: text-bottom !important;
  }
}
.before\:va-t:before {
  vertical-align: top !important;
}

.before\:va-b:before {
  vertical-align: bottom !important;
}

.before\:va-m:before {
  vertical-align: middle !important;
}

.before\:va-base:before {
  vertical-align: baseline !important;
}

.before\:va-txt-t:before {
  vertical-align: text-top !important;
}

.before\:va-txt-b:before {
  vertical-align: text-bottom !important;
}

@media screen and (min-width: 360px) {
  .xs\:before\:va-t:before {
    vertical-align: top !important;
  }
  .xs\:before\:va-b:before {
    vertical-align: bottom !important;
  }
  .xs\:before\:va-m:before {
    vertical-align: middle !important;
  }
  .xs\:before\:va-base:before {
    vertical-align: baseline !important;
  }
  .xs\:before\:va-txt-t:before {
    vertical-align: text-top !important;
  }
  .xs\:before\:va-txt-b:before {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:before\:va-t:before {
    vertical-align: top !important;
  }
  .sm\:before\:va-b:before {
    vertical-align: bottom !important;
  }
  .sm\:before\:va-m:before {
    vertical-align: middle !important;
  }
  .sm\:before\:va-base:before {
    vertical-align: baseline !important;
  }
  .sm\:before\:va-txt-t:before {
    vertical-align: text-top !important;
  }
  .sm\:before\:va-txt-b:before {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:before\:va-t:before {
    vertical-align: top !important;
  }
  .md\:before\:va-b:before {
    vertical-align: bottom !important;
  }
  .md\:before\:va-m:before {
    vertical-align: middle !important;
  }
  .md\:before\:va-base:before {
    vertical-align: baseline !important;
  }
  .md\:before\:va-txt-t:before {
    vertical-align: text-top !important;
  }
  .md\:before\:va-txt-b:before {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:before\:va-t:before {
    vertical-align: top !important;
  }
  .lg\:before\:va-b:before {
    vertical-align: bottom !important;
  }
  .lg\:before\:va-m:before {
    vertical-align: middle !important;
  }
  .lg\:before\:va-base:before {
    vertical-align: baseline !important;
  }
  .lg\:before\:va-txt-t:before {
    vertical-align: text-top !important;
  }
  .lg\:before\:va-txt-b:before {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:before\:va-t:before {
    vertical-align: top !important;
  }
  .xl\:before\:va-b:before {
    vertical-align: bottom !important;
  }
  .xl\:before\:va-m:before {
    vertical-align: middle !important;
  }
  .xl\:before\:va-base:before {
    vertical-align: baseline !important;
  }
  .xl\:before\:va-txt-t:before {
    vertical-align: text-top !important;
  }
  .xl\:before\:va-txt-b:before {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:before\:va-t:before {
    vertical-align: top !important;
  }
  .xxl\:before\:va-b:before {
    vertical-align: bottom !important;
  }
  .xxl\:before\:va-m:before {
    vertical-align: middle !important;
  }
  .xxl\:before\:va-base:before {
    vertical-align: baseline !important;
  }
  .xxl\:before\:va-txt-t:before {
    vertical-align: text-top !important;
  }
  .xxl\:before\:va-txt-b:before {
    vertical-align: text-bottom !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:before\:va-t:before {
    vertical-align: top !important;
  }
  .max\:before\:va-b:before {
    vertical-align: bottom !important;
  }
  .max\:before\:va-m:before {
    vertical-align: middle !important;
  }
  .max\:before\:va-base:before {
    vertical-align: baseline !important;
  }
  .max\:before\:va-txt-t:before {
    vertical-align: text-top !important;
  }
  .max\:before\:va-txt-b:before {
    vertical-align: text-bottom !important;
  }
}
.hyphens {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.hyphens-none {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; /* both x and y axis to avoid scrollbars */
}

/* SMART ELLIPSIS */
/* Cuts last spans inside container in chunks (entire span), until only first is left... then uses ellipsis on that. Example:
 <span class="smart-ellipsis"><span>Tilmeld</span> <span>dig</span></span>
 Wide: Tilmeld dig
 Small: Tilmeld
 Tiny: Til... */
.smart-ellipsis {
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
  height: 1.5em;
  line-height: 1.5;
}
.smart-ellipsis > * {
  display: inline-block;
  vertical-align: text-top;
}
.smart-ellipsis > *:first-child {
  margin-bottom: 2em;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; /* both x and y axis to avoid scrollbars */
}
.smart-ellipsis > *:not(:first-child) {
  margin-left: 0.25em;
}

/* TEXT TRANSFORM */
.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.no-transform {
  text-transform: none !important;
}

.tighter {
  letter-spacing: -0.05em !important;
}

.tight {
  letter-spacing: -0.025em !important;
}

.no-tracking {
  letter-spacing: 0 !important;
}

.wide {
  letter-spacing: 0.025em !important;
}

.wider {
  letter-spacing: 0.05em !important;
}

.widest {
  letter-spacing: 0.1em !important;
}

.lh-tightest {
  line-height: 1 !important;
}

.lh-tighter {
  line-height: 1.1 !important;
}

.lh-tight {
  line-height: 1.1 !important;
}

.lh-snug {
  line-height: 1.375 !important;
}

.lh-normal {
  line-height: 1.5 !important;
}

.lh-relaxed {
  line-height: 1.625 !important;
}

.lh-loose {
  line-height: 2 !important;
}

/* NO UNDERLINE */
.underline {
  text-decoration: underline !important;
}

.decoration-none {
  text-decoration: none !important;
}

.line-through {
  text-decoration: line-through !important;
}

@media screen and (min-width: 360px) {
  .xs\:underline {
    text-decoration: underline !important;
  }
  .xs\:decoration-none {
    text-decoration: none !important;
  }
  .xs\:line-through {
    text-decoration: line-through !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:underline {
    text-decoration: underline !important;
  }
  .sm\:decoration-none {
    text-decoration: none !important;
  }
  .sm\:line-through {
    text-decoration: line-through !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:underline {
    text-decoration: underline !important;
  }
  .md\:decoration-none {
    text-decoration: none !important;
  }
  .md\:line-through {
    text-decoration: line-through !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:underline {
    text-decoration: underline !important;
  }
  .lg\:decoration-none {
    text-decoration: none !important;
  }
  .lg\:line-through {
    text-decoration: line-through !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:underline {
    text-decoration: underline !important;
  }
  .xl\:decoration-none {
    text-decoration: none !important;
  }
  .xl\:line-through {
    text-decoration: line-through !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:underline {
    text-decoration: underline !important;
  }
  .xxl\:decoration-none {
    text-decoration: none !important;
  }
  .xxl\:line-through {
    text-decoration: line-through !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:underline {
    text-decoration: underline !important;
  }
  .max\:decoration-none {
    text-decoration: none !important;
  }
  .max\:line-through {
    text-decoration: line-through !important;
  }
}
button.icon {
  outline: none;
  background-color: transparent;
  border: none;
}

.icon:not(.select-container):not(.input-container) {
  display: inline-block;
}

.icon, .icon--end-container > .icon:last-child {
  width: 1em !important;
  height: 0.8em !important;
}

.icon-s2em, .icon--end-s2em > .icon:last-child {
  width: 0.5em !important;
  height: 0.5em !important;
}

.icon-s2-5em, .icon--end-s2-5em > .icon:last-child {
  width: 0.625em !important;
  height: 0.625em !important;
}

.icon-s3em, .icon--end-s3em > .icon:last-child {
  width: 0.75em !important;
  height: 0.75em !important;
}

.icon-s3-5em, .icon--end-s3-5em > .icon:last-child {
  width: 0.875em !important;
  height: 0.875em !important;
}

.icon-s4em, .icon--end-s4em > .icon:last-child {
  width: 1em !important;
  height: 1em !important;
}

.icon-s5em, .icon--end-s5em > .icon:last-child {
  width: 1.25em !important;
  height: 1.25em !important;
}

.icon-s6em {
  width: 1.5em !important;
  height: 1.5em !important;
}

.icon-s7em {
  width: 1.75em !important;
  height: 1.75em !important;
}

.icon-s8em {
  width: 2em !important;
  height: 2em !important;
}

.icon-s9em {
  width: 2.25em !important;
  height: 2.25em !important;
}

.icon-s10em {
  width: 2.5em !important;
  height: 2.5em !important;
}

.icon-s11em {
  width: 2.75em !important;
  height: 2.75em !important;
}

.icon-s12em {
  width: 3em !important;
  height: 3em !important;
}

.icon-s13em {
  width: 3.25em !important;
  height: 3.25em !important;
}

.icon-s14em {
  width: 3.5em !important;
  height: 3.5em !important;
}

.icon-s16em {
  width: 4em !important;
  height: 4em !important;
}

@media screen and (min-width: 360px) {
  .xs\:icon, .xs\:icon--end-container > .icon:last-child {
    width: 1em !important;
    height: 0.8em !important;
  }
  .xs\:icon-s2em, .xs\:icon--end-s2em > .icon:last-child {
    width: 0.5em !important;
    height: 0.5em !important;
  }
  .xs\:icon-s2-5em, .xs\:icon--end-s2-5em > .icon:last-child {
    width: 0.625em !important;
    height: 0.625em !important;
  }
  .xs\:icon-s3em, .xs\:icon--end-s3em > .icon:last-child {
    width: 0.75em !important;
    height: 0.75em !important;
  }
  .xs\:icon-s3-5em, .xs\:icon--end-s3-5em > .icon:last-child {
    width: 0.875em !important;
    height: 0.875em !important;
  }
  .xs\:icon-s4em, .xs\:icon--end-s4em > .icon:last-child {
    width: 1em !important;
    height: 1em !important;
  }
  .xs\:icon-s5em, .xs\:icon--end-s5em > .icon:last-child {
    width: 1.25em !important;
    height: 1.25em !important;
  }
  .xs\:icon-s6em {
    width: 1.5em !important;
    height: 1.5em !important;
  }
  .xs\:icon-s7em {
    width: 1.75em !important;
    height: 1.75em !important;
  }
  .xs\:icon-s8em {
    width: 2em !important;
    height: 2em !important;
  }
  .xs\:icon-s9em {
    width: 2.25em !important;
    height: 2.25em !important;
  }
  .xs\:icon-s10em {
    width: 2.5em !important;
    height: 2.5em !important;
  }
  .xs\:icon-s11em {
    width: 2.75em !important;
    height: 2.75em !important;
  }
  .xs\:icon-s12em {
    width: 3em !important;
    height: 3em !important;
  }
  .xs\:icon-s13em {
    width: 3.25em !important;
    height: 3.25em !important;
  }
  .xs\:icon-s14em {
    width: 3.5em !important;
    height: 3.5em !important;
  }
  .xs\:icon-s16em {
    width: 4em !important;
    height: 4em !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:icon, .sm\:icon--end-container > .icon:last-child {
    width: 1em !important;
    height: 0.8em !important;
  }
  .sm\:icon-s2em, .sm\:icon--end-s2em > .icon:last-child {
    width: 0.5em !important;
    height: 0.5em !important;
  }
  .sm\:icon-s2-5em, .sm\:icon--end-s2-5em > .icon:last-child {
    width: 0.625em !important;
    height: 0.625em !important;
  }
  .sm\:icon-s3em, .sm\:icon--end-s3em > .icon:last-child {
    width: 0.75em !important;
    height: 0.75em !important;
  }
  .sm\:icon-s3-5em, .sm\:icon--end-s3-5em > .icon:last-child {
    width: 0.875em !important;
    height: 0.875em !important;
  }
  .sm\:icon-s4em, .sm\:icon--end-s4em > .icon:last-child {
    width: 1em !important;
    height: 1em !important;
  }
  .sm\:icon-s5em, .sm\:icon--end-s5em > .icon:last-child {
    width: 1.25em !important;
    height: 1.25em !important;
  }
  .sm\:icon-s6em {
    width: 1.5em !important;
    height: 1.5em !important;
  }
  .sm\:icon-s7em {
    width: 1.75em !important;
    height: 1.75em !important;
  }
  .sm\:icon-s8em {
    width: 2em !important;
    height: 2em !important;
  }
  .sm\:icon-s9em {
    width: 2.25em !important;
    height: 2.25em !important;
  }
  .sm\:icon-s10em {
    width: 2.5em !important;
    height: 2.5em !important;
  }
  .sm\:icon-s11em {
    width: 2.75em !important;
    height: 2.75em !important;
  }
  .sm\:icon-s12em {
    width: 3em !important;
    height: 3em !important;
  }
  .sm\:icon-s13em {
    width: 3.25em !important;
    height: 3.25em !important;
  }
  .sm\:icon-s14em {
    width: 3.5em !important;
    height: 3.5em !important;
  }
  .sm\:icon-s16em {
    width: 4em !important;
    height: 4em !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:icon, .md\:icon--end-container > .icon:last-child {
    width: 1em !important;
    height: 0.8em !important;
  }
  .md\:icon-s2em, .md\:icon--end-s2em > .icon:last-child {
    width: 0.5em !important;
    height: 0.5em !important;
  }
  .md\:icon-s2-5em, .md\:icon--end-s2-5em > .icon:last-child {
    width: 0.625em !important;
    height: 0.625em !important;
  }
  .md\:icon-s3em, .md\:icon--end-s3em > .icon:last-child {
    width: 0.75em !important;
    height: 0.75em !important;
  }
  .md\:icon-s3-5em, .md\:icon--end-s3-5em > .icon:last-child {
    width: 0.875em !important;
    height: 0.875em !important;
  }
  .md\:icon-s4em, .md\:icon--end-s4em > .icon:last-child {
    width: 1em !important;
    height: 1em !important;
  }
  .md\:icon-s5em, .md\:icon--end-s5em > .icon:last-child {
    width: 1.25em !important;
    height: 1.25em !important;
  }
  .md\:icon-s6em {
    width: 1.5em !important;
    height: 1.5em !important;
  }
  .md\:icon-s7em {
    width: 1.75em !important;
    height: 1.75em !important;
  }
  .md\:icon-s8em {
    width: 2em !important;
    height: 2em !important;
  }
  .md\:icon-s9em {
    width: 2.25em !important;
    height: 2.25em !important;
  }
  .md\:icon-s10em {
    width: 2.5em !important;
    height: 2.5em !important;
  }
  .md\:icon-s11em {
    width: 2.75em !important;
    height: 2.75em !important;
  }
  .md\:icon-s12em {
    width: 3em !important;
    height: 3em !important;
  }
  .md\:icon-s13em {
    width: 3.25em !important;
    height: 3.25em !important;
  }
  .md\:icon-s14em {
    width: 3.5em !important;
    height: 3.5em !important;
  }
  .md\:icon-s16em {
    width: 4em !important;
    height: 4em !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:icon, .lg\:icon--end-container > .icon:last-child {
    width: 1em !important;
    height: 0.8em !important;
  }
  .lg\:icon-s2em, .lg\:icon--end-s2em > .icon:last-child {
    width: 0.5em !important;
    height: 0.5em !important;
  }
  .lg\:icon-s2-5em, .lg\:icon--end-s2-5em > .icon:last-child {
    width: 0.625em !important;
    height: 0.625em !important;
  }
  .lg\:icon-s3em, .lg\:icon--end-s3em > .icon:last-child {
    width: 0.75em !important;
    height: 0.75em !important;
  }
  .lg\:icon-s3-5em, .lg\:icon--end-s3-5em > .icon:last-child {
    width: 0.875em !important;
    height: 0.875em !important;
  }
  .lg\:icon-s4em, .lg\:icon--end-s4em > .icon:last-child {
    width: 1em !important;
    height: 1em !important;
  }
  .lg\:icon-s5em, .lg\:icon--end-s5em > .icon:last-child {
    width: 1.25em !important;
    height: 1.25em !important;
  }
  .lg\:icon-s6em {
    width: 1.5em !important;
    height: 1.5em !important;
  }
  .lg\:icon-s7em {
    width: 1.75em !important;
    height: 1.75em !important;
  }
  .lg\:icon-s8em {
    width: 2em !important;
    height: 2em !important;
  }
  .lg\:icon-s9em {
    width: 2.25em !important;
    height: 2.25em !important;
  }
  .lg\:icon-s10em {
    width: 2.5em !important;
    height: 2.5em !important;
  }
  .lg\:icon-s11em {
    width: 2.75em !important;
    height: 2.75em !important;
  }
  .lg\:icon-s12em {
    width: 3em !important;
    height: 3em !important;
  }
  .lg\:icon-s13em {
    width: 3.25em !important;
    height: 3.25em !important;
  }
  .lg\:icon-s14em {
    width: 3.5em !important;
    height: 3.5em !important;
  }
  .lg\:icon-s16em {
    width: 4em !important;
    height: 4em !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:icon, .xl\:icon--end-container > .icon:last-child {
    width: 1em !important;
    height: 0.8em !important;
  }
  .xl\:icon-s2em, .xl\:icon--end-s2em > .icon:last-child {
    width: 0.5em !important;
    height: 0.5em !important;
  }
  .xl\:icon-s2-5em, .xl\:icon--end-s2-5em > .icon:last-child {
    width: 0.625em !important;
    height: 0.625em !important;
  }
  .xl\:icon-s3em, .xl\:icon--end-s3em > .icon:last-child {
    width: 0.75em !important;
    height: 0.75em !important;
  }
  .xl\:icon-s3-5em, .xl\:icon--end-s3-5em > .icon:last-child {
    width: 0.875em !important;
    height: 0.875em !important;
  }
  .xl\:icon-s4em, .xl\:icon--end-s4em > .icon:last-child {
    width: 1em !important;
    height: 1em !important;
  }
  .xl\:icon-s5em, .xl\:icon--end-s5em > .icon:last-child {
    width: 1.25em !important;
    height: 1.25em !important;
  }
  .xl\:icon-s6em {
    width: 1.5em !important;
    height: 1.5em !important;
  }
  .xl\:icon-s7em {
    width: 1.75em !important;
    height: 1.75em !important;
  }
  .xl\:icon-s8em {
    width: 2em !important;
    height: 2em !important;
  }
  .xl\:icon-s9em {
    width: 2.25em !important;
    height: 2.25em !important;
  }
  .xl\:icon-s10em {
    width: 2.5em !important;
    height: 2.5em !important;
  }
  .xl\:icon-s11em {
    width: 2.75em !important;
    height: 2.75em !important;
  }
  .xl\:icon-s12em {
    width: 3em !important;
    height: 3em !important;
  }
  .xl\:icon-s13em {
    width: 3.25em !important;
    height: 3.25em !important;
  }
  .xl\:icon-s14em {
    width: 3.5em !important;
    height: 3.5em !important;
  }
  .xl\:icon-s16em {
    width: 4em !important;
    height: 4em !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:icon, .xxl\:icon--end-container > .icon:last-child {
    width: 1em !important;
    height: 0.8em !important;
  }
  .xxl\:icon-s2em, .xxl\:icon--end-s2em > .icon:last-child {
    width: 0.5em !important;
    height: 0.5em !important;
  }
  .xxl\:icon-s2-5em, .xxl\:icon--end-s2-5em > .icon:last-child {
    width: 0.625em !important;
    height: 0.625em !important;
  }
  .xxl\:icon-s3em, .xxl\:icon--end-s3em > .icon:last-child {
    width: 0.75em !important;
    height: 0.75em !important;
  }
  .xxl\:icon-s3-5em, .xxl\:icon--end-s3-5em > .icon:last-child {
    width: 0.875em !important;
    height: 0.875em !important;
  }
  .xxl\:icon-s4em, .xxl\:icon--end-s4em > .icon:last-child {
    width: 1em !important;
    height: 1em !important;
  }
  .xxl\:icon-s5em, .xxl\:icon--end-s5em > .icon:last-child {
    width: 1.25em !important;
    height: 1.25em !important;
  }
  .xxl\:icon-s6em {
    width: 1.5em !important;
    height: 1.5em !important;
  }
  .xxl\:icon-s7em {
    width: 1.75em !important;
    height: 1.75em !important;
  }
  .xxl\:icon-s8em {
    width: 2em !important;
    height: 2em !important;
  }
  .xxl\:icon-s9em {
    width: 2.25em !important;
    height: 2.25em !important;
  }
  .xxl\:icon-s10em {
    width: 2.5em !important;
    height: 2.5em !important;
  }
  .xxl\:icon-s11em {
    width: 2.75em !important;
    height: 2.75em !important;
  }
  .xxl\:icon-s12em {
    width: 3em !important;
    height: 3em !important;
  }
  .xxl\:icon-s13em {
    width: 3.25em !important;
    height: 3.25em !important;
  }
  .xxl\:icon-s14em {
    width: 3.5em !important;
    height: 3.5em !important;
  }
  .xxl\:icon-s16em {
    width: 4em !important;
    height: 4em !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:icon, .max\:icon--end-container > .icon:last-child {
    width: 1em !important;
    height: 0.8em !important;
  }
  .max\:icon-s2em, .max\:icon--end-s2em > .icon:last-child {
    width: 0.5em !important;
    height: 0.5em !important;
  }
  .max\:icon-s2-5em, .max\:icon--end-s2-5em > .icon:last-child {
    width: 0.625em !important;
    height: 0.625em !important;
  }
  .max\:icon-s3em, .max\:icon--end-s3em > .icon:last-child {
    width: 0.75em !important;
    height: 0.75em !important;
  }
  .max\:icon-s3-5em, .max\:icon--end-s3-5em > .icon:last-child {
    width: 0.875em !important;
    height: 0.875em !important;
  }
  .max\:icon-s4em, .max\:icon--end-s4em > .icon:last-child {
    width: 1em !important;
    height: 1em !important;
  }
  .max\:icon-s5em, .max\:icon--end-s5em > .icon:last-child {
    width: 1.25em !important;
    height: 1.25em !important;
  }
  .max\:icon-s6em {
    width: 1.5em !important;
    height: 1.5em !important;
  }
  .max\:icon-s7em {
    width: 1.75em !important;
    height: 1.75em !important;
  }
  .max\:icon-s8em {
    width: 2em !important;
    height: 2em !important;
  }
  .max\:icon-s9em {
    width: 2.25em !important;
    height: 2.25em !important;
  }
  .max\:icon-s10em {
    width: 2.5em !important;
    height: 2.5em !important;
  }
  .max\:icon-s11em {
    width: 2.75em !important;
    height: 2.75em !important;
  }
  .max\:icon-s12em {
    width: 3em !important;
    height: 3em !important;
  }
  .max\:icon-s13em {
    width: 3.25em !important;
    height: 3.25em !important;
  }
  .max\:icon-s14em {
    width: 3.5em !important;
    height: 3.5em !important;
  }
  .max\:icon-s16em {
    width: 4em !important;
    height: 4em !important;
  }
}
button:hover .hover\:icon--right--blue:after,
a:hover .hover\:icon--right--blue:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
  transform: rotate(-90deg);
}
button:hover .hover\:icon--down--blue:after,
a:hover .hover\:icon--down--blue:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
}
button:hover .hover\:icon--left--blue:after,
a:hover .hover\:icon--left--blue:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
  transform: rotate(90deg);
}
button:hover .hover\:icon--clear--blue:after, button:hover .hover\:icon--close--blue:after,
a:hover .hover\:icon--clear--blue:after,
a:hover .hover\:icon--close--blue:after {
  background-image: url("../img/icon-close-blue.svg");
  width: 0.9em;
}
button:hover .hover\:icon--trashcan--blue:after,
a:hover .hover\:icon--trashcan--blue:after {
  background-image: url("../img/icon-trashcan-blue.svg");
  width: 0.9em;
}
button:hover .hover\:icon--play--blue:after,
a:hover .hover\:icon--play--blue:after {
  background-image: url("../img/icon-play-small-blue.svg");
}

.icon {
  overflow: hidden;
  text-indent: -999em;
  vertical-align: middle;
  position: relative;
}
.icon:after {
  content: "";
  background-image: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 75%;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 2%; /* Hack for Win Chrome extending Contain outside container ruining vertical-align: middle */
  right: 0;
}
.icon--scale-small:after {
  left: 6%;
  right: 6%;
  top: 6%;
  bottom: 6%;
}
.icon--scale-smaller:after {
  left: 12%;
  right: 12%;
  top: 12%;
  bottom: 12%;
}
.icon--scale-smallest:after {
  left: 18%;
  right: 18%;
  top: 18%;
  bottom: 18%;
}
.icon--end-container {
  padding-right: 1.2em;
}
.icon--end-container > .icon:last-child {
  position: absolute;
  margin-top: 0.15em;
  margin-left: 0.2em;
}
.icon--end-s2em {
  padding-right: 0.7em;
}
.icon--end-s2em > .icon:last-child {
  margin-top: 0.45em;
}
.icon--end-s2-5em {
  padding-right: 0.825em;
}
.icon--end-s2-5em > .icon:last-child {
  margin-top: 0.375em;
}
.icon--end-s3em {
  padding-right: 0.95em;
}
.icon--end-s3em > .icon:last-child {
  margin-top: 0.3em;
}
.icon--end-s3-5em {
  padding-right: 1.075em;
}
.icon--end-s3-5em > .icon:last-child {
  margin-top: 0.225em;
}
.icon--end-s4em {
  padding-right: 1.2em;
}
.icon--end-s4em > .icon:last-child {
  margin-top: 0.15em;
}
.icon--end-s5em {
  padding-right: 1.45em;
}
.icon--end-s5em > .icon:last-child {
  margin-top: 0;
}
.icon--logo:before {
  content: "";
  background-color: #f12b3b;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 88% !important;
}
.icon--logo:after {
  z-index: 1;
  width: 91% !important;
  height: 88% !important;
  right: auto;
  background-size: 84% !important;
  background-color: #000;
  background-image: url("../img/logo-black-image.png");
}
.icon--down:after {
  background-image: url("../img/icon-arrow-down-black.svg");
}
.icon--down--blue:after, .icon--down--blue\:hover:hover:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
}
.icon--right:after {
  background-image: url("../img/icon-arrow-down-black.svg");
  transform: rotate(-90deg);
}
.icon--right--white:after {
  background-image: url("../img/icon-arrow-down-white.svg");
  transform: rotate(-90deg);
}
.icon--right--blue:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
  transform: rotate(-90deg);
}
.icon--right--blue\:hover:hover:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
  transform: rotate(-90deg);
}
.icon--up:after {
  background-image: url("../img/icon-arrow-down-black.svg");
  transform: rotate(-180deg);
}
.icon--up--blue:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
  transform: rotate(-180deg);
}
.icon--left:after {
  background-image: url("../img/icon-arrow-down-black.svg");
  transform: rotate(90deg);
}
.icon--left--grey:after {
  background-image: url("../img/icon-arrow-down-grey.svg");
  transform: rotate(90deg);
}
.icon--left--blue:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
  transform: rotate(90deg);
}
.icon--left--blue\:hover:hover:after {
  background-image: url("../img/icon-arrow-down-blue.svg");
  transform: rotate(90deg);
}
.icon--search:after {
  background-image: url("../img/icon-search-darkgrey.svg");
}
.icon--search--blue:after {
  background-image: url("../img/icon-search-blue.svg");
}
.icon--edit--blue:after {
  background-image: url("../img/icon-edit-blue.svg");
}
.icon--chat--darkblue:after {
  background-image: url("../img/icon-chat-darkblue.svg");
}
.icon--faq--darkblue:after {
  background-image: url("../img/icon-faq-darkblue.svg");
}
.icon--mail-alt--darkblue:after {
  background-image: url("../img/icon-mail-alt-darkblue.svg");
}
.icon--mail--blue:after {
  background-image: url("../img/icon-mail-blue.svg");
}
.icon--mobile--blue:after {
  background-image: url("../img/icon-mobile-blue.svg");
}
.icon--mobile--darkblue:after {
  background-image: url("../img/icon-mobile-darkblue.svg");
}
.icon--linkedin--blue:after {
  background-image: url("../img/icon-linkedin-blue.svg");
}
.icon--msteams--blue:after {
  background-image: url("../img/icon-msteams-blue.svg");
  width: 1.15em;
  height: 1.2em;
}
.icon--msteams--blue-filled:after {
  background-image: url("../img/icon-msteams-blue-filled.svg");
  width: 1.15em;
  height: 1.2em;
}
.icon--clear:after, .icon--close:after {
  background-image: url("../img/icon-close-darkgrey.svg");
  width: 0.9em;
}
.icon--clear--blue:after, .icon--close--blue:after {
  background-image: url("../img/icon-close-blue.svg");
  width: 0.9em;
}
.icon--trashcan--darkgrey:after {
  background-image: url("../img/icon-trashcan-darkgrey.svg");
  width: 0.9em;
}
.icon--trashcan--blue:after {
  background-image: url("../img/icon-trashcan-blue.svg");
  width: 0.9em;
}
.icon--star:after {
  background-image: url("../img/icon-star.svg");
}
.icon--star--blue:after {
  background-image: url("../img/icon-star-blue.svg");
}
.icon--star--green:after {
  background-image: url("../img/icon-star-green.svg");
}
.icon--star--white:after {
  background-image: url("../img/icon-star-white.svg");
}
.icon--star--small--solid-blue:after {
  background-image: url("../img/icon-star-small-blue-solid.svg");
}
.icon--star--small--solid-green:after {
  background-image: url("../img/icon-star-small-green-solid.svg");
}
.icon--star--small--solid-white:after {
  background-image: url("../img/icon-star-small-white-solid.svg");
}
.icon--star--small--white:after {
  background-image: url("../img/icon-star-small-white.svg");
}
.icon--no-access--white:after {
  background-image: url("../img/icon-noaccess-white.svg");
}
.icon--no-access--dark-grey:after {
  background-image: url("../img/icon-noaccess-dark-grey.svg");
}
.icon--earlybird--yellow:after {
  background-image: url("../img/icon-earlybird-alt3-yellow.svg");
}
.icon--earlybird--dark-yellow:after {
  background-image: url("../img/icon-earlybird-alt3-darkyellow.svg");
}
.icon--earlybird--darker-yellow:after {
  background-image: url("../img/icon-earlybird-alt3-darkeryellow.svg");
}
.icon--earlybird--white:after {
  background-image: url("../img/icon-earlybird-alt3-white.svg");
}
.icon--popular--white:after {
  background-image: url("../img/icon-popular-white.svg");
}
.icon--new--white:after {
  background-image: url("../img/icon-guarantee-sm-white.svg");
}
.icon--new-alt--white:after {
  background-image: url("../img/icon-sparkle-small-white.svg");
}
.icon--guarantee--white:after {
  background-image: url("../img/icon-guarantee-alt-sm-white.svg");
}
.icon--guarantee--green:after {
  background-image: url("../img/icon-guarantee-sm-green.svg");
}
.icon--guarantee--light-green:after {
  background-image: url("../img/icon-guarantee-sm-lightgreen.svg");
}
.icon--guarantee--lighter-green:after {
  background-image: url("../img/icon-guarantee-sm-lightergreen.svg");
}
.icon--guarantee--darkgrey:after {
  background-image: url("../img/icon-guarantee-sm-darkgrey.svg");
}
.icon--checkmark--blue:after {
  background-image: url("../img/icon-checkmark-blue.svg");
}
.icon--checkmark--white:after {
  background-image: url("../img/icon-checkmark-white.svg");
}
.icon--checkmark--darkgrey:after {
  background-image: url("../img/icon-checkmark-darkgrey.svg");
}
.icon--link-ext:after {
  background-image: url("../img/icon-link-ext.svg");
}
.icon--link-ext--blue:after {
  background-image: url("../img/icon-link-ext-blue.svg");
}
.icon--quote--blue:after {
  background-image: url("../img/icon-quotemark-lg-blue.svg");
}
.icon--print--blue:after {
  background-image: url("../img/icon-print-sm-blue.svg");
}
.icon--lang-english--round:after {
  background-image: url("../img/icon-lang-english-sm-round.svg");
}
.icon--lang-english--round-alt:after {
  background-image: url("../img/icon-lang-english-alt-sm-round.svg");
}
.icon--edit--blue:after {
  background-image: url("../img/icon-edit-blue.svg");
}
.icon--add--blue:after {
  background-image: url("../img/icon-add-blue.svg");
}
.icon--period--darker-grey:after, .icon--date--darker-grey:after {
  background-image: url("../img/icon-date-sm-darker-grey.svg");
}
.icon--date--blue:after {
  background-image: url("../img/icon-date-sm-blue.svg");
}
.icon--date--dark-blue:after {
  background-image: url("../img/icon-date-sm-dark-blue.svg");
}
.icon--location--darker-grey:after {
  background-image: url("../img/icon-location-sm-darker-grey.svg");
}
.icon--category--darker-grey:after {
  background-image: url("../img/icon-category-sm-darker-grey.svg");
}
.icon--type--darker-grey:after {
  background-image: url("../img/icon-type-darker-grey.svg");
}
.icon--type-alt--darker-grey:after {
  background-image: url("../img/icon-type-alt-darker-grey.svg");
}
.icon--time--white:after {
  background-image: url("../img/icon-time-white.svg");
}
.icon--time--darker-grey:after {
  background-image: url("../img/icon-time-darker-grey.svg");
}
.icon--stopwatch--white:after {
  background-image: url("../img/icon-stopwatch-white.svg");
}
.icon--profile--green:after {
  background-image: url("../img/icon-profile-green.svg");
}
.icon--virtual--blue:after {
  background-image: url("../img/icon-virtual-lg-blue.svg");
}
.icon--online--blue:after {
  background-image: url("../img/icon-online-lg-blue.svg");
}
.icon--mixed--blue:after {
  background-image: url("../img/icon-mixed-lg-blue.svg");
}
.icon--reallife--blue:after {
  background-image: url("../img/icon-reallife-lg-blue.svg");
}
.icon--reallife-alt--blue:after {
  background-image: url("../img/icon-reallife-alt2-lg-blue.svg");
}
.icon--filter--darker-grey:after {
  background-image: url("../img/icon-filter-darker-grey.svg");
}
.icon--price--darker-grey:after {
  background-image: url("../img/icon-price-darker-grey.svg");
}
.icon--price-alt--darker-grey:after {
  background-image: url("../img/icon-price-alt-darker-grey.svg");
}
.icon--process--offer:after {
  background-image: url("../img/icon-process-offers.svg");
}
.icon--process--order:after {
  background-image: url("../img/icon-process-orders.svg");
}
.icon--dashboard--won:after {
  background-image: url("../img/_ti-dashboard/icon-won.svg");
}
.icon--sort--relevance--blue:after {
  background-image: url("../img/icon-sort-relevance-blue.svg");
}
.icon--sort--relevance--darker-grey:after {
  background-image: url("../img/icon-sort-relevance-darker-grey.svg");
}
.icon--sort--newest--blue:after {
  background-image: url("../img/icon-sparkle-small-blue.svg");
}
.icon--sort--newest--darker-grey:after {
  background-image: url("../img/icon-sparkle-small-darker-grey.svg");
}
.icon--sort--price--descending--blue:after {
  background-image: url("../img/icon-sort-price-descending-blue.svg");
}
.icon--sort--price--descending--darker-grey:after {
  background-image: url("../img/icon-sort-price-descending-darker-grey.svg");
}
.icon--sort--price--ascending--blue:after {
  background-image: url("../img/icon-sort-price-ascending-blue.svg");
}
.icon--sort--price--ascending--darker-grey:after {
  background-image: url("../img/icon-sort-price-ascending-darker-grey.svg");
}
.icon--sort--descending--blue:after {
  background-image: url("../img/icon-sort-alphabetic-descending-blue.svg");
}
.icon--sort--descending--darker-grey:after {
  background-image: url("../img/icon-sort-alphabetic-descending-darker-grey.svg");
}
.icon--sort--ascending--blue:after {
  background-image: url("../img/icon-sort-alphabetic-ascending-blue.svg");
}
.icon--sort--ascending--darker-grey:after {
  background-image: url("../img/icon-sort-alphabetic-ascending-darker-grey.svg");
}
.icon--file-other:after {
  background-image: url("../img/icon-file-other-lg.png");
}
.icon--file-pdf:after {
  background-image: url("../img/icon-file-pdf-lg.png");
}
.icon--file-doc:after {
  background-image: url("../img/icon-file-doc-lg.png");
}
.icon--file-xls:after {
  background-image: url("../img/icon-file-xls-lg.png");
}
.icon--file-ppt:after {
  background-image: url("../img/icon-file-ppt-lg.png");
}
.icon--play:after {
  background-image: url("../img/icon-play-small-white.svg");
}
.icon--play--blue:after {
  background-image: url("../img/icon-play-small-blue.svg");
}

@media screen and (min-width: 420px) {
  button:hover .sm\:hover\:icon--right--blue:after,
  a:hover .sm\:hover\:icon--right--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(-90deg);
  }
  button:hover .sm\:hover\:icon--down--blue:after,
  a:hover .sm\:hover\:icon--down--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
  }
  button:hover .sm\:hover\:icon--left--blue:after,
  a:hover .sm\:hover\:icon--left--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(90deg);
  }
  button:hover .sm\:hover\:icon--clear--blue:after, button:hover .sm\:hover\:icon--close--blue:after,
  a:hover .sm\:hover\:icon--clear--blue:after,
  a:hover .sm\:hover\:icon--close--blue:after {
    background-image: url("../img/icon-close-blue.svg");
    width: 0.9em;
  }
  button:hover .sm\:hover\:icon--trashcan--blue:after,
  a:hover .sm\:hover\:icon--trashcan--blue:after {
    background-image: url("../img/icon-trashcan-blue.svg");
    width: 0.9em;
  }
  .sm\:icon--down:after {
    background-image: url("../img/icon-arrow-down-black.svg");
  }
  .sm\:icon--down--blue:after, .sm\:icon--down--blue\:hover:hover:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
  }
  .sm\:icon--right:after {
    background-image: url("../img/icon-arrow-down-black.svg");
    transform: rotate(-90deg);
  }
  .sm\:icon--right--white:after {
    background-image: url("../img/icon-arrow-down-white.svg");
    transform: rotate(-90deg);
  }
  .sm\:icon--right--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(-90deg);
  }
  .sm\:icon--right--blue\:hover:hover:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(-90deg);
  }
  .sm\:icon--up:after {
    background-image: url("../img/icon-arrow-down-black.svg");
    transform: rotate(-180deg);
  }
  .sm\:icon--up--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(-180deg);
  }
  .sm\:icon--left:after {
    background-image: url("../img/icon-arrow-down-black.svg");
    transform: rotate(90deg);
  }
  .sm\:icon--left--grey:after {
    background-image: url("../img/icon-arrow-down-grey.svg");
    transform: rotate(90deg);
  }
  .sm\:icon--left--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(90deg);
  }
  .sm\:icon--left--blue\:hover:hover:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(90deg);
  }
}
@media screen and (min-width: 950px) {
  button:hover .lg\:hover\:icon--right--blue:after,
  a:hover .lg\:hover\:icon--right--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(-90deg);
  }
  button:hover .lg\:hover\:icon--down--blue:after,
  a:hover .lg\:hover\:icon--down--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
  }
  button:hover .lg\:hover\:icon--left--blue:after,
  a:hover .lg\:hover\:icon--left--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(90deg);
  }
  button:hover .lg\:hover\:icon--clear--blue:after, button:hover .lg\:hover\:icon--close--blue:after,
  a:hover .lg\:hover\:icon--clear--blue:after,
  a:hover .lg\:hover\:icon--close--blue:after {
    background-image: url("../img/icon-close-blue.svg");
    width: 0.9em;
  }
  button:hover .lg\:hover\:icon--trashcan--blue:after,
  a:hover .lg\:hover\:icon--trashcan--blue:after {
    background-image: url("../img/icon-trashcan-blue.svg");
    width: 0.9em;
  }
  .lg\:icon--down:after {
    background-image: url("../img/icon-arrow-down-black.svg");
  }
  .lg\:icon--down--blue:after, .lg\:icon--down--blue\:hover:hover:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
  }
  .lg\:icon--right:after {
    background-image: url("../img/icon-arrow-down-black.svg");
    transform: rotate(-90deg);
  }
  .lg\:icon--right--white:after {
    background-image: url("../img/icon-arrow-down-white.svg");
    transform: rotate(-90deg);
  }
  .lg\:icon--right--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(-90deg);
  }
  .lg\:icon--right--blue\:hover:hover:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(-90deg);
  }
  .lg\:icon--up:after {
    background-image: url("../img/icon-arrow-down-black.svg");
    transform: rotate(-180deg);
  }
  .lg\:icon--up--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(-180deg);
  }
  .lg\:icon--left:after {
    background-image: url("../img/icon-arrow-down-black.svg");
    transform: rotate(90deg);
  }
  .lg\:icon--left--grey:after {
    background-image: url("../img/icon-arrow-down-grey.svg");
    transform: rotate(90deg);
  }
  .lg\:icon--left--blue:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(90deg);
  }
  .lg\:icon--left--blue\:hover:hover:after {
    background-image: url("../img/icon-arrow-down-blue.svg");
    transform: rotate(90deg);
  }
}
.header,
.container-wide-right-offset {
  margin: 0 auto;
  max-width: 1840px;
}

.container, .container-panel {
  margin: 0 auto !important;
  max-width: 1840px !important;
}

@media screen and (min-width: 360px) {
  .xs\:container, .xs\:container-panel {
    margin: 0 auto !important;
    max-width: 1840px !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:container, .sm\:container-panel {
    margin: 0 auto !important;
    max-width: 1840px !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:container, .md\:container-panel {
    margin: 0 auto !important;
    max-width: 1840px !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:container, .lg\:container-panel {
    margin: 0 auto !important;
    max-width: 1840px !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:container, .xl\:container-panel {
    margin: 0 auto !important;
    max-width: 1840px !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:container, .xxl\:container-panel {
    margin: 0 auto !important;
    max-width: 1840px !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:container, .max\:container-panel {
    margin: 0 auto !important;
    max-width: 1840px !important;
  }
}
.hide {
  display: none !important;
}

.hidden {
  display: none !important;
}

.hidden-after:after {
  display: none !important;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

.table {
  display: table !important;
}

.flex {
  display: flex !important;
}

@media screen and (min-width: 360px) {
  .xs\:hide {
    display: none !important;
  }
  .xs\:hidden {
    display: none !important;
  }
  .xs\:hidden-after:after {
    display: none !important;
  }
  .xs\:block {
    display: block !important;
  }
  .xs\:inline-block {
    display: inline-block !important;
  }
  .xs\:inline {
    display: inline !important;
  }
  .xs\:table {
    display: table !important;
  }
  .xs\:flex {
    display: flex !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:hide {
    display: none !important;
  }
  .sm\:hidden {
    display: none !important;
  }
  .sm\:hidden-after:after {
    display: none !important;
  }
  .sm\:block {
    display: block !important;
  }
  .sm\:inline-block {
    display: inline-block !important;
  }
  .sm\:inline {
    display: inline !important;
  }
  .sm\:table {
    display: table !important;
  }
  .sm\:flex {
    display: flex !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:hide {
    display: none !important;
  }
  .md\:hidden {
    display: none !important;
  }
  .md\:hidden-after:after {
    display: none !important;
  }
  .md\:block {
    display: block !important;
  }
  .md\:inline-block {
    display: inline-block !important;
  }
  .md\:inline {
    display: inline !important;
  }
  .md\:table {
    display: table !important;
  }
  .md\:flex {
    display: flex !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:hide {
    display: none !important;
  }
  .lg\:hidden {
    display: none !important;
  }
  .lg\:hidden-after:after {
    display: none !important;
  }
  .lg\:block {
    display: block !important;
  }
  .lg\:inline-block {
    display: inline-block !important;
  }
  .lg\:inline {
    display: inline !important;
  }
  .lg\:table {
    display: table !important;
  }
  .lg\:flex {
    display: flex !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:hide {
    display: none !important;
  }
  .xl\:hidden {
    display: none !important;
  }
  .xl\:hidden-after:after {
    display: none !important;
  }
  .xl\:block {
    display: block !important;
  }
  .xl\:inline-block {
    display: inline-block !important;
  }
  .xl\:inline {
    display: inline !important;
  }
  .xl\:table {
    display: table !important;
  }
  .xl\:flex {
    display: flex !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:hide {
    display: none !important;
  }
  .xxl\:hidden {
    display: none !important;
  }
  .xxl\:hidden-after:after {
    display: none !important;
  }
  .xxl\:block {
    display: block !important;
  }
  .xxl\:inline-block {
    display: inline-block !important;
  }
  .xxl\:inline {
    display: inline !important;
  }
  .xxl\:table {
    display: table !important;
  }
  .xxl\:flex {
    display: flex !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:hide {
    display: none !important;
  }
  .max\:hidden {
    display: none !important;
  }
  .max\:hidden-after:after {
    display: none !important;
  }
  .max\:block {
    display: block !important;
  }
  .max\:inline-block {
    display: inline-block !important;
  }
  .max\:inline {
    display: inline !important;
  }
  .max\:table {
    display: table !important;
  }
  .max\:flex {
    display: flex !important;
  }
}
.after\:hide:after {
  display: none !important;
}

.after\:hidden:after {
  display: none !important;
}

.after\:block:after {
  display: block !important;
}

.after\:inline-block:after {
  display: inline-block !important;
}

.after\:inline:after {
  display: inline !important;
}

@media screen and (min-width: 360px) {
  .xs\:after\:hide:after {
    display: none !important;
  }
  .xs\:after\:hidden:after {
    display: none !important;
  }
  .xs\:after\:block:after {
    display: block !important;
  }
  .xs\:after\:inline-block:after {
    display: inline-block !important;
  }
  .xs\:after\:inline:after {
    display: inline !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:after\:hide:after {
    display: none !important;
  }
  .sm\:after\:hidden:after {
    display: none !important;
  }
  .sm\:after\:block:after {
    display: block !important;
  }
  .sm\:after\:inline-block:after {
    display: inline-block !important;
  }
  .sm\:after\:inline:after {
    display: inline !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:after\:hide:after {
    display: none !important;
  }
  .md\:after\:hidden:after {
    display: none !important;
  }
  .md\:after\:block:after {
    display: block !important;
  }
  .md\:after\:inline-block:after {
    display: inline-block !important;
  }
  .md\:after\:inline:after {
    display: inline !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:after\:hide:after {
    display: none !important;
  }
  .lg\:after\:hidden:after {
    display: none !important;
  }
  .lg\:after\:block:after {
    display: block !important;
  }
  .lg\:after\:inline-block:after {
    display: inline-block !important;
  }
  .lg\:after\:inline:after {
    display: inline !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:after\:hide:after {
    display: none !important;
  }
  .xl\:after\:hidden:after {
    display: none !important;
  }
  .xl\:after\:block:after {
    display: block !important;
  }
  .xl\:after\:inline-block:after {
    display: inline-block !important;
  }
  .xl\:after\:inline:after {
    display: inline !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:after\:hide:after {
    display: none !important;
  }
  .xxl\:after\:hidden:after {
    display: none !important;
  }
  .xxl\:after\:block:after {
    display: block !important;
  }
  .xxl\:after\:inline-block:after {
    display: inline-block !important;
  }
  .xxl\:after\:inline:after {
    display: inline !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:after\:hide:after {
    display: none !important;
  }
  .max\:after\:hidden:after {
    display: none !important;
  }
  .max\:after\:block:after {
    display: block !important;
  }
  .max\:after\:inline-block:after {
    display: inline-block !important;
  }
  .max\:after\:inline:after {
    display: inline !important;
  }
}
.before\:hide:before {
  display: none !important;
}

.before\:hidden:before {
  display: none !important;
}

.before\:block:before {
  display: block !important;
}

.before\:inline-block:before {
  display: inline-block !important;
}

.before\:inline:before {
  display: inline !important;
}

@media screen and (min-width: 360px) {
  .xs\:before\:hide:before {
    display: none !important;
  }
  .xs\:before\:hidden:before {
    display: none !important;
  }
  .xs\:before\:block:before {
    display: block !important;
  }
  .xs\:before\:inline-block:before {
    display: inline-block !important;
  }
  .xs\:before\:inline:before {
    display: inline !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:before\:hide:before {
    display: none !important;
  }
  .sm\:before\:hidden:before {
    display: none !important;
  }
  .sm\:before\:block:before {
    display: block !important;
  }
  .sm\:before\:inline-block:before {
    display: inline-block !important;
  }
  .sm\:before\:inline:before {
    display: inline !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:before\:hide:before {
    display: none !important;
  }
  .md\:before\:hidden:before {
    display: none !important;
  }
  .md\:before\:block:before {
    display: block !important;
  }
  .md\:before\:inline-block:before {
    display: inline-block !important;
  }
  .md\:before\:inline:before {
    display: inline !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:before\:hide:before {
    display: none !important;
  }
  .lg\:before\:hidden:before {
    display: none !important;
  }
  .lg\:before\:block:before {
    display: block !important;
  }
  .lg\:before\:inline-block:before {
    display: inline-block !important;
  }
  .lg\:before\:inline:before {
    display: inline !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:before\:hide:before {
    display: none !important;
  }
  .xl\:before\:hidden:before {
    display: none !important;
  }
  .xl\:before\:block:before {
    display: block !important;
  }
  .xl\:before\:inline-block:before {
    display: inline-block !important;
  }
  .xl\:before\:inline:before {
    display: inline !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:before\:hide:before {
    display: none !important;
  }
  .xxl\:before\:hidden:before {
    display: none !important;
  }
  .xxl\:before\:block:before {
    display: block !important;
  }
  .xxl\:before\:inline-block:before {
    display: inline-block !important;
  }
  .xxl\:before\:inline:before {
    display: inline !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:before\:hide:before {
    display: none !important;
  }
  .max\:before\:hidden:before {
    display: none !important;
  }
  .max\:before\:block:before {
    display: block !important;
  }
  .max\:before\:inline-block:before {
    display: inline-block !important;
  }
  .max\:before\:inline:before {
    display: inline !important;
  }
}
.no-js\:inline,
.no-js\:inline-block,
.no-js\:block,
.no-js .no-js\:hide,
.no-js .no-js\:hidden {
  display: none !important;
}

.no-js .no-js\:inline {
  display: inline !important;
}

.no-js .no-js\:inline-block {
  display: inline-block !important;
}

.no-js .no-js\:block {
  display: block !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.absolute-before:before {
  position: absolute !important;
}

.absolute-after:after {
  position: absolute !important;
}

.static {
  position: static !important;
}

.fixed {
  position: fixed !important;
}

.fixed-before:before {
  position: fixed !important;
}

.fixed-after:after {
  position: fixed !important;
}

.fixed\:before:before {
  position: fixed !important;
}

.fixed\:after:after {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

@media screen and (min-width: 360px) {
  .xs\:relative {
    position: relative !important;
  }
  .xs\:absolute {
    position: absolute !important;
  }
  .xs\:absolute-before:before {
    position: absolute !important;
  }
  .xs\:absolute-after:after {
    position: absolute !important;
  }
  .xs\:static {
    position: static !important;
  }
  .xs\:fixed {
    position: fixed !important;
  }
  .xs\:fixed-before:before {
    position: fixed !important;
  }
  .xs\:fixed-after:after {
    position: fixed !important;
  }
  .xs\:fixed\:before:before {
    position: fixed !important;
  }
  .xs\:fixed\:after:after {
    position: fixed !important;
  }
  .xs\:sticky {
    position: sticky !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:relative {
    position: relative !important;
  }
  .sm\:absolute {
    position: absolute !important;
  }
  .sm\:absolute-before:before {
    position: absolute !important;
  }
  .sm\:absolute-after:after {
    position: absolute !important;
  }
  .sm\:static {
    position: static !important;
  }
  .sm\:fixed {
    position: fixed !important;
  }
  .sm\:fixed-before:before {
    position: fixed !important;
  }
  .sm\:fixed-after:after {
    position: fixed !important;
  }
  .sm\:fixed\:before:before {
    position: fixed !important;
  }
  .sm\:fixed\:after:after {
    position: fixed !important;
  }
  .sm\:sticky {
    position: sticky !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:relative {
    position: relative !important;
  }
  .md\:absolute {
    position: absolute !important;
  }
  .md\:absolute-before:before {
    position: absolute !important;
  }
  .md\:absolute-after:after {
    position: absolute !important;
  }
  .md\:static {
    position: static !important;
  }
  .md\:fixed {
    position: fixed !important;
  }
  .md\:fixed-before:before {
    position: fixed !important;
  }
  .md\:fixed-after:after {
    position: fixed !important;
  }
  .md\:fixed\:before:before {
    position: fixed !important;
  }
  .md\:fixed\:after:after {
    position: fixed !important;
  }
  .md\:sticky {
    position: sticky !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:relative {
    position: relative !important;
  }
  .lg\:absolute {
    position: absolute !important;
  }
  .lg\:absolute-before:before {
    position: absolute !important;
  }
  .lg\:absolute-after:after {
    position: absolute !important;
  }
  .lg\:static {
    position: static !important;
  }
  .lg\:fixed {
    position: fixed !important;
  }
  .lg\:fixed-before:before {
    position: fixed !important;
  }
  .lg\:fixed-after:after {
    position: fixed !important;
  }
  .lg\:fixed\:before:before {
    position: fixed !important;
  }
  .lg\:fixed\:after:after {
    position: fixed !important;
  }
  .lg\:sticky {
    position: sticky !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:relative {
    position: relative !important;
  }
  .xl\:absolute {
    position: absolute !important;
  }
  .xl\:absolute-before:before {
    position: absolute !important;
  }
  .xl\:absolute-after:after {
    position: absolute !important;
  }
  .xl\:static {
    position: static !important;
  }
  .xl\:fixed {
    position: fixed !important;
  }
  .xl\:fixed-before:before {
    position: fixed !important;
  }
  .xl\:fixed-after:after {
    position: fixed !important;
  }
  .xl\:fixed\:before:before {
    position: fixed !important;
  }
  .xl\:fixed\:after:after {
    position: fixed !important;
  }
  .xl\:sticky {
    position: sticky !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:relative {
    position: relative !important;
  }
  .xxl\:absolute {
    position: absolute !important;
  }
  .xxl\:absolute-before:before {
    position: absolute !important;
  }
  .xxl\:absolute-after:after {
    position: absolute !important;
  }
  .xxl\:static {
    position: static !important;
  }
  .xxl\:fixed {
    position: fixed !important;
  }
  .xxl\:fixed-before:before {
    position: fixed !important;
  }
  .xxl\:fixed-after:after {
    position: fixed !important;
  }
  .xxl\:fixed\:before:before {
    position: fixed !important;
  }
  .xxl\:fixed\:after:after {
    position: fixed !important;
  }
  .xxl\:sticky {
    position: sticky !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:relative {
    position: relative !important;
  }
  .max\:absolute {
    position: absolute !important;
  }
  .max\:absolute-before:before {
    position: absolute !important;
  }
  .max\:absolute-after:after {
    position: absolute !important;
  }
  .max\:static {
    position: static !important;
  }
  .max\:fixed {
    position: fixed !important;
  }
  .max\:fixed-before:before {
    position: fixed !important;
  }
  .max\:fixed-after:after {
    position: fixed !important;
  }
  .max\:fixed\:before:before {
    position: fixed !important;
  }
  .max\:fixed\:after:after {
    position: fixed !important;
  }
  .max\:sticky {
    position: sticky !important;
  }
}
@media (hover: none) {
  .browser-hover {
    display: none;
  }
}
@media (hover: hover) {
  .browser-hover {
    display: block;
  }
}
.container-1x1, .container-1x2, .container-1x3, .container-2x1, .container-2x3, .container-3x1, .container-3x2, .container-3x4, .container-4x1, .container-4x3, .container-13x11, .container-16x9, .container-16x10, .container-20x9, .container-50x21, .container-fill {
  display: block !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 0 !important;
}

.container-1x1 {
  padding: 0 0 100% 0 !important;
}

.container-1x2 {
  padding: 0 0 200% 0 !important;
}

.container-1x3 {
  padding: 0 0 300% 0 !important;
}

.container-2x1 {
  padding: 0 0 50% 0 !important;
}

.container-2x3 {
  padding: 0 0 150% 0 !important;
}

.container-3x1 {
  padding: 0 0 33.333333% 0 !important;
}

.container-3x2 {
  padding: 0 0 66.666666% 0 !important;
}

.container-3x4 {
  padding: 0 0 125% 0 !important;
}

.container-4x1 {
  padding: 0 0 25% 0 !important;
}

.container-4x3 {
  padding: 0 0 75% 0 !important;
}

.container-13x11 {
  padding: 0 0 84.6154% 0 !important;
}

.container-16x9 {
  padding: 0 0 56.25% 0 !important;
}

.container-16x10 {
  padding: 0 0 62.5% 0 !important;
}

.container-20x9 {
  padding: 0 0 45% 0 !important;
}

.container-50x21 {
  padding: 0 0 42% 0 !important;
}

.container-fill {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 100% !important;
  padding: 0 !important;
}

.container-fill-none {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  height: auto !important;
}

.container-none {
  padding: 0 !important;
  height: auto !important;
  width: auto !important;
}

@media screen and (min-width: 360px) {
  .xs\:container-1x1, .xs\:container-1x2, .xs\:container-1x3, .xs\:container-2x1, .xs\:container-2x3, .xs\:container-3x1, .xs\:container-3x2, .xs\:container-3x4, .xs\:container-4x1, .xs\:container-4x3, .xs\:container-13x11, .xs\:container-16x9, .xs\:container-16x10, .xs\:container-20x9, .xs\:container-50x21, .xs\:container-fill {
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 0 !important;
  }
  .xs\:container-1x1 {
    padding: 0 0 100% 0 !important;
  }
  .xs\:container-1x2 {
    padding: 0 0 200% 0 !important;
  }
  .xs\:container-1x3 {
    padding: 0 0 300% 0 !important;
  }
  .xs\:container-2x1 {
    padding: 0 0 50% 0 !important;
  }
  .xs\:container-2x3 {
    padding: 0 0 150% 0 !important;
  }
  .xs\:container-3x1 {
    padding: 0 0 33.333333% 0 !important;
  }
  .xs\:container-3x2 {
    padding: 0 0 66.666666% 0 !important;
  }
  .xs\:container-3x4 {
    padding: 0 0 125% 0 !important;
  }
  .xs\:container-4x1 {
    padding: 0 0 25% 0 !important;
  }
  .xs\:container-4x3 {
    padding: 0 0 75% 0 !important;
  }
  .xs\:container-13x11 {
    padding: 0 0 84.6154% 0 !important;
  }
  .xs\:container-16x9 {
    padding: 0 0 56.25% 0 !important;
  }
  .xs\:container-16x10 {
    padding: 0 0 62.5% 0 !important;
  }
  .xs\:container-20x9 {
    padding: 0 0 45% 0 !important;
  }
  .xs\:container-50x21 {
    padding: 0 0 42% 0 !important;
  }
  .xs\:container-fill {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100% !important;
    padding: 0 !important;
  }
  .xs\:container-fill-none {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
  }
  .xs\:container-none {
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:container-1x1, .sm\:container-1x2, .sm\:container-1x3, .sm\:container-2x1, .sm\:container-2x3, .sm\:container-3x1, .sm\:container-3x2, .sm\:container-3x4, .sm\:container-4x1, .sm\:container-4x3, .sm\:container-13x11, .sm\:container-16x9, .sm\:container-16x10, .sm\:container-20x9, .sm\:container-50x21, .sm\:container-fill {
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 0 !important;
  }
  .sm\:container-1x1 {
    padding: 0 0 100% 0 !important;
  }
  .sm\:container-1x2 {
    padding: 0 0 200% 0 !important;
  }
  .sm\:container-1x3 {
    padding: 0 0 300% 0 !important;
  }
  .sm\:container-2x1 {
    padding: 0 0 50% 0 !important;
  }
  .sm\:container-2x3 {
    padding: 0 0 150% 0 !important;
  }
  .sm\:container-3x1 {
    padding: 0 0 33.333333% 0 !important;
  }
  .sm\:container-3x2 {
    padding: 0 0 66.666666% 0 !important;
  }
  .sm\:container-3x4 {
    padding: 0 0 125% 0 !important;
  }
  .sm\:container-4x1 {
    padding: 0 0 25% 0 !important;
  }
  .sm\:container-4x3 {
    padding: 0 0 75% 0 !important;
  }
  .sm\:container-13x11 {
    padding: 0 0 84.6154% 0 !important;
  }
  .sm\:container-16x9 {
    padding: 0 0 56.25% 0 !important;
  }
  .sm\:container-16x10 {
    padding: 0 0 62.5% 0 !important;
  }
  .sm\:container-20x9 {
    padding: 0 0 45% 0 !important;
  }
  .sm\:container-50x21 {
    padding: 0 0 42% 0 !important;
  }
  .sm\:container-fill {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100% !important;
    padding: 0 !important;
  }
  .sm\:container-fill-none {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
  }
  .sm\:container-none {
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:container-1x1, .md\:container-1x2, .md\:container-1x3, .md\:container-2x1, .md\:container-2x3, .md\:container-3x1, .md\:container-3x2, .md\:container-3x4, .md\:container-4x1, .md\:container-4x3, .md\:container-13x11, .md\:container-16x9, .md\:container-16x10, .md\:container-20x9, .md\:container-50x21, .md\:container-fill {
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 0 !important;
  }
  .md\:container-1x1 {
    padding: 0 0 100% 0 !important;
  }
  .md\:container-1x2 {
    padding: 0 0 200% 0 !important;
  }
  .md\:container-1x3 {
    padding: 0 0 300% 0 !important;
  }
  .md\:container-2x1 {
    padding: 0 0 50% 0 !important;
  }
  .md\:container-2x3 {
    padding: 0 0 150% 0 !important;
  }
  .md\:container-3x1 {
    padding: 0 0 33.333333% 0 !important;
  }
  .md\:container-3x2 {
    padding: 0 0 66.666666% 0 !important;
  }
  .md\:container-3x4 {
    padding: 0 0 125% 0 !important;
  }
  .md\:container-4x1 {
    padding: 0 0 25% 0 !important;
  }
  .md\:container-4x3 {
    padding: 0 0 75% 0 !important;
  }
  .md\:container-13x11 {
    padding: 0 0 84.6154% 0 !important;
  }
  .md\:container-16x9 {
    padding: 0 0 56.25% 0 !important;
  }
  .md\:container-16x10 {
    padding: 0 0 62.5% 0 !important;
  }
  .md\:container-20x9 {
    padding: 0 0 45% 0 !important;
  }
  .md\:container-50x21 {
    padding: 0 0 42% 0 !important;
  }
  .md\:container-fill {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100% !important;
    padding: 0 !important;
  }
  .md\:container-fill-none {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
  }
  .md\:container-none {
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:container-1x1, .lg\:container-1x2, .lg\:container-1x3, .lg\:container-2x1, .lg\:container-2x3, .lg\:container-3x1, .lg\:container-3x2, .lg\:container-3x4, .lg\:container-4x1, .lg\:container-4x3, .lg\:container-13x11, .lg\:container-16x9, .lg\:container-16x10, .lg\:container-20x9, .lg\:container-50x21, .lg\:container-fill {
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 0 !important;
  }
  .lg\:container-1x1 {
    padding: 0 0 100% 0 !important;
  }
  .lg\:container-1x2 {
    padding: 0 0 200% 0 !important;
  }
  .lg\:container-1x3 {
    padding: 0 0 300% 0 !important;
  }
  .lg\:container-2x1 {
    padding: 0 0 50% 0 !important;
  }
  .lg\:container-2x3 {
    padding: 0 0 150% 0 !important;
  }
  .lg\:container-3x1 {
    padding: 0 0 33.333333% 0 !important;
  }
  .lg\:container-3x2 {
    padding: 0 0 66.666666% 0 !important;
  }
  .lg\:container-3x4 {
    padding: 0 0 125% 0 !important;
  }
  .lg\:container-4x1 {
    padding: 0 0 25% 0 !important;
  }
  .lg\:container-4x3 {
    padding: 0 0 75% 0 !important;
  }
  .lg\:container-13x11 {
    padding: 0 0 84.6154% 0 !important;
  }
  .lg\:container-16x9 {
    padding: 0 0 56.25% 0 !important;
  }
  .lg\:container-16x10 {
    padding: 0 0 62.5% 0 !important;
  }
  .lg\:container-20x9 {
    padding: 0 0 45% 0 !important;
  }
  .lg\:container-50x21 {
    padding: 0 0 42% 0 !important;
  }
  .lg\:container-fill {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100% !important;
    padding: 0 !important;
  }
  .lg\:container-fill-none {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
  }
  .lg\:container-none {
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:container-1x1, .xl\:container-1x2, .xl\:container-1x3, .xl\:container-2x1, .xl\:container-2x3, .xl\:container-3x1, .xl\:container-3x2, .xl\:container-3x4, .xl\:container-4x1, .xl\:container-4x3, .xl\:container-13x11, .xl\:container-16x9, .xl\:container-16x10, .xl\:container-20x9, .xl\:container-50x21, .xl\:container-fill {
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 0 !important;
  }
  .xl\:container-1x1 {
    padding: 0 0 100% 0 !important;
  }
  .xl\:container-1x2 {
    padding: 0 0 200% 0 !important;
  }
  .xl\:container-1x3 {
    padding: 0 0 300% 0 !important;
  }
  .xl\:container-2x1 {
    padding: 0 0 50% 0 !important;
  }
  .xl\:container-2x3 {
    padding: 0 0 150% 0 !important;
  }
  .xl\:container-3x1 {
    padding: 0 0 33.333333% 0 !important;
  }
  .xl\:container-3x2 {
    padding: 0 0 66.666666% 0 !important;
  }
  .xl\:container-3x4 {
    padding: 0 0 125% 0 !important;
  }
  .xl\:container-4x1 {
    padding: 0 0 25% 0 !important;
  }
  .xl\:container-4x3 {
    padding: 0 0 75% 0 !important;
  }
  .xl\:container-13x11 {
    padding: 0 0 84.6154% 0 !important;
  }
  .xl\:container-16x9 {
    padding: 0 0 56.25% 0 !important;
  }
  .xl\:container-16x10 {
    padding: 0 0 62.5% 0 !important;
  }
  .xl\:container-20x9 {
    padding: 0 0 45% 0 !important;
  }
  .xl\:container-50x21 {
    padding: 0 0 42% 0 !important;
  }
  .xl\:container-fill {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100% !important;
    padding: 0 !important;
  }
  .xl\:container-fill-none {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
  }
  .xl\:container-none {
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:container-1x1, .xxl\:container-1x2, .xxl\:container-1x3, .xxl\:container-2x1, .xxl\:container-2x3, .xxl\:container-3x1, .xxl\:container-3x2, .xxl\:container-3x4, .xxl\:container-4x1, .xxl\:container-4x3, .xxl\:container-13x11, .xxl\:container-16x9, .xxl\:container-16x10, .xxl\:container-20x9, .xxl\:container-50x21, .xxl\:container-fill {
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 0 !important;
  }
  .xxl\:container-1x1 {
    padding: 0 0 100% 0 !important;
  }
  .xxl\:container-1x2 {
    padding: 0 0 200% 0 !important;
  }
  .xxl\:container-1x3 {
    padding: 0 0 300% 0 !important;
  }
  .xxl\:container-2x1 {
    padding: 0 0 50% 0 !important;
  }
  .xxl\:container-2x3 {
    padding: 0 0 150% 0 !important;
  }
  .xxl\:container-3x1 {
    padding: 0 0 33.333333% 0 !important;
  }
  .xxl\:container-3x2 {
    padding: 0 0 66.666666% 0 !important;
  }
  .xxl\:container-3x4 {
    padding: 0 0 125% 0 !important;
  }
  .xxl\:container-4x1 {
    padding: 0 0 25% 0 !important;
  }
  .xxl\:container-4x3 {
    padding: 0 0 75% 0 !important;
  }
  .xxl\:container-13x11 {
    padding: 0 0 84.6154% 0 !important;
  }
  .xxl\:container-16x9 {
    padding: 0 0 56.25% 0 !important;
  }
  .xxl\:container-16x10 {
    padding: 0 0 62.5% 0 !important;
  }
  .xxl\:container-20x9 {
    padding: 0 0 45% 0 !important;
  }
  .xxl\:container-50x21 {
    padding: 0 0 42% 0 !important;
  }
  .xxl\:container-fill {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100% !important;
    padding: 0 !important;
  }
  .xxl\:container-fill-none {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
  }
  .xxl\:container-none {
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:container-1x1, .max\:container-1x2, .max\:container-1x3, .max\:container-2x1, .max\:container-2x3, .max\:container-3x1, .max\:container-3x2, .max\:container-3x4, .max\:container-4x1, .max\:container-4x3, .max\:container-13x11, .max\:container-16x9, .max\:container-16x10, .max\:container-20x9, .max\:container-50x21, .max\:container-fill {
    display: block !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 0 !important;
  }
  .max\:container-1x1 {
    padding: 0 0 100% 0 !important;
  }
  .max\:container-1x2 {
    padding: 0 0 200% 0 !important;
  }
  .max\:container-1x3 {
    padding: 0 0 300% 0 !important;
  }
  .max\:container-2x1 {
    padding: 0 0 50% 0 !important;
  }
  .max\:container-2x3 {
    padding: 0 0 150% 0 !important;
  }
  .max\:container-3x1 {
    padding: 0 0 33.333333% 0 !important;
  }
  .max\:container-3x2 {
    padding: 0 0 66.666666% 0 !important;
  }
  .max\:container-3x4 {
    padding: 0 0 125% 0 !important;
  }
  .max\:container-4x1 {
    padding: 0 0 25% 0 !important;
  }
  .max\:container-4x3 {
    padding: 0 0 75% 0 !important;
  }
  .max\:container-13x11 {
    padding: 0 0 84.6154% 0 !important;
  }
  .max\:container-16x9 {
    padding: 0 0 56.25% 0 !important;
  }
  .max\:container-16x10 {
    padding: 0 0 62.5% 0 !important;
  }
  .max\:container-20x9 {
    padding: 0 0 45% 0 !important;
  }
  .max\:container-50x21 {
    padding: 0 0 42% 0 !important;
  }
  .max\:container-fill {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100% !important;
    padding: 0 !important;
  }
  .max\:container-fill-none {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
  }
  .max\:container-none {
    padding: 0 !important;
    height: auto !important;
    width: auto !important;
  }
}
.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.items-center {
  align-items: center !important;
}

.items-baseline {
  align-items: baseline !important;
}

.items-stretch {
  align-items: stretch !important;
}

@media screen and (min-width: 360px) {
  .xs\:items-start {
    align-items: flex-start !important;
  }
  .xs\:items-end {
    align-items: flex-end !important;
  }
  .xs\:items-center {
    align-items: center !important;
  }
  .xs\:items-baseline {
    align-items: baseline !important;
  }
  .xs\:items-stretch {
    align-items: stretch !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:items-start {
    align-items: flex-start !important;
  }
  .sm\:items-end {
    align-items: flex-end !important;
  }
  .sm\:items-center {
    align-items: center !important;
  }
  .sm\:items-baseline {
    align-items: baseline !important;
  }
  .sm\:items-stretch {
    align-items: stretch !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:items-start {
    align-items: flex-start !important;
  }
  .md\:items-end {
    align-items: flex-end !important;
  }
  .md\:items-center {
    align-items: center !important;
  }
  .md\:items-baseline {
    align-items: baseline !important;
  }
  .md\:items-stretch {
    align-items: stretch !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:items-start {
    align-items: flex-start !important;
  }
  .lg\:items-end {
    align-items: flex-end !important;
  }
  .lg\:items-center {
    align-items: center !important;
  }
  .lg\:items-baseline {
    align-items: baseline !important;
  }
  .lg\:items-stretch {
    align-items: stretch !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:items-start {
    align-items: flex-start !important;
  }
  .xl\:items-end {
    align-items: flex-end !important;
  }
  .xl\:items-center {
    align-items: center !important;
  }
  .xl\:items-baseline {
    align-items: baseline !important;
  }
  .xl\:items-stretch {
    align-items: stretch !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:items-start {
    align-items: flex-start !important;
  }
  .xxl\:items-end {
    align-items: flex-end !important;
  }
  .xxl\:items-center {
    align-items: center !important;
  }
  .xxl\:items-baseline {
    align-items: baseline !important;
  }
  .xxl\:items-stretch {
    align-items: stretch !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:items-start {
    align-items: flex-start !important;
  }
  .max\:items-end {
    align-items: flex-end !important;
  }
  .max\:items-center {
    align-items: center !important;
  }
  .max\:items-baseline {
    align-items: baseline !important;
  }
  .max\:items-stretch {
    align-items: stretch !important;
  }
}
.self-auto {
  align-self: auto !important;
}

.self-start {
  align-self: flex-start !important;
}

.self-end {
  align-self: flex-end !important;
}

.self-center {
  align-self: center !important;
}

.self-stretch {
  align-self: stretch !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.content-center {
  align-content: center !important;
}

.content-start {
  align-content: flex-start !important;
}

.content-end {
  align-content: flex-end !important;
}

.content-between {
  align-content: space-between !important;
}

.content-around {
  align-content: space-around !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink, .flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-shrink-2 {
  flex-shrink: 2 !important;
}

.flex-0 {
  flex: 0 0 !important;
}

.flex-1 {
  flex: 1 1 !important;
}

.flex-2 {
  flex: 2 1 !important;
}

.flex-3 {
  flex: 3 1 !important;
}

.flex-auto {
  flex: 1 1 auto !important;
}

.flex-initial {
  flex: 0 1 auto !important;
}

.flex-none {
  flex: none !important;
}

.flex-1\/6 {
  flex: 0 0 16.666666% !important;
}

.flex-1\/4 {
  flex: 0 0 25% !important;
}

.flex-1\/3 {
  flex: 0 0 33.333333% !important;
}

.flex-2\/5 {
  flex: 0 0 40% !important;
}

.flex-1\/2 {
  flex: 0 0 50% !important;
}

.flex-7\/12 {
  flex: 0 0 58.333333% !important;
}

.flex-2\/3 {
  flex: 0 0 66.666667% !important;
}

.flex-3\/4 {
  flex: 0 0 75% !important;
}

.flex-5\/6 {
  flex: 0 0 83.3333333% !important;
}

.flex-full {
  flex: 0 0 100% !important;
}

@media screen and (min-width: 360px) {
  .xs\:flex-0 {
    flex: 0 0 !important;
  }
  .xs\:flex-1 {
    flex: 1 1 !important;
  }
  .xs\:flex-2 {
    flex: 2 1 !important;
  }
  .xs\:flex-3 {
    flex: 3 1 !important;
  }
  .xs\:flex-auto {
    flex: 1 1 auto !important;
  }
  .xs\:flex-initial {
    flex: 0 1 auto !important;
  }
  .xs\:flex-none {
    flex: none !important;
  }
  .xs\:flex-1\/6 {
    flex: 0 0 16.666666% !important;
  }
  .xs\:flex-1\/4 {
    flex: 0 0 25% !important;
  }
  .xs\:flex-1\/3 {
    flex: 0 0 33.333333% !important;
  }
  .xs\:flex-2\/5 {
    flex: 0 0 40% !important;
  }
  .xs\:flex-1\/2 {
    flex: 0 0 50% !important;
  }
  .xs\:flex-7\/12 {
    flex: 0 0 58.333333% !important;
  }
  .xs\:flex-2\/3 {
    flex: 0 0 66.666667% !important;
  }
  .xs\:flex-3\/4 {
    flex: 0 0 75% !important;
  }
  .xs\:flex-5\/6 {
    flex: 0 0 83.3333333% !important;
  }
  .xs\:flex-full {
    flex: 0 0 100% !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:flex-0 {
    flex: 0 0 !important;
  }
  .sm\:flex-1 {
    flex: 1 1 !important;
  }
  .sm\:flex-2 {
    flex: 2 1 !important;
  }
  .sm\:flex-3 {
    flex: 3 1 !important;
  }
  .sm\:flex-auto {
    flex: 1 1 auto !important;
  }
  .sm\:flex-initial {
    flex: 0 1 auto !important;
  }
  .sm\:flex-none {
    flex: none !important;
  }
  .sm\:flex-1\/6 {
    flex: 0 0 16.666666% !important;
  }
  .sm\:flex-1\/4 {
    flex: 0 0 25% !important;
  }
  .sm\:flex-1\/3 {
    flex: 0 0 33.333333% !important;
  }
  .sm\:flex-2\/5 {
    flex: 0 0 40% !important;
  }
  .sm\:flex-1\/2 {
    flex: 0 0 50% !important;
  }
  .sm\:flex-7\/12 {
    flex: 0 0 58.333333% !important;
  }
  .sm\:flex-2\/3 {
    flex: 0 0 66.666667% !important;
  }
  .sm\:flex-3\/4 {
    flex: 0 0 75% !important;
  }
  .sm\:flex-5\/6 {
    flex: 0 0 83.3333333% !important;
  }
  .sm\:flex-full {
    flex: 0 0 100% !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:flex-0 {
    flex: 0 0 !important;
  }
  .md\:flex-1 {
    flex: 1 1 !important;
  }
  .md\:flex-2 {
    flex: 2 1 !important;
  }
  .md\:flex-3 {
    flex: 3 1 !important;
  }
  .md\:flex-auto {
    flex: 1 1 auto !important;
  }
  .md\:flex-initial {
    flex: 0 1 auto !important;
  }
  .md\:flex-none {
    flex: none !important;
  }
  .md\:flex-1\/6 {
    flex: 0 0 16.666666% !important;
  }
  .md\:flex-1\/4 {
    flex: 0 0 25% !important;
  }
  .md\:flex-1\/3 {
    flex: 0 0 33.333333% !important;
  }
  .md\:flex-2\/5 {
    flex: 0 0 40% !important;
  }
  .md\:flex-1\/2 {
    flex: 0 0 50% !important;
  }
  .md\:flex-7\/12 {
    flex: 0 0 58.333333% !important;
  }
  .md\:flex-2\/3 {
    flex: 0 0 66.666667% !important;
  }
  .md\:flex-3\/4 {
    flex: 0 0 75% !important;
  }
  .md\:flex-5\/6 {
    flex: 0 0 83.3333333% !important;
  }
  .md\:flex-full {
    flex: 0 0 100% !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:flex-0 {
    flex: 0 0 !important;
  }
  .lg\:flex-1 {
    flex: 1 1 !important;
  }
  .lg\:flex-2 {
    flex: 2 1 !important;
  }
  .lg\:flex-3 {
    flex: 3 1 !important;
  }
  .lg\:flex-auto {
    flex: 1 1 auto !important;
  }
  .lg\:flex-initial {
    flex: 0 1 auto !important;
  }
  .lg\:flex-none {
    flex: none !important;
  }
  .lg\:flex-1\/6 {
    flex: 0 0 16.666666% !important;
  }
  .lg\:flex-1\/4 {
    flex: 0 0 25% !important;
  }
  .lg\:flex-1\/3 {
    flex: 0 0 33.333333% !important;
  }
  .lg\:flex-2\/5 {
    flex: 0 0 40% !important;
  }
  .lg\:flex-1\/2 {
    flex: 0 0 50% !important;
  }
  .lg\:flex-7\/12 {
    flex: 0 0 58.333333% !important;
  }
  .lg\:flex-2\/3 {
    flex: 0 0 66.666667% !important;
  }
  .lg\:flex-3\/4 {
    flex: 0 0 75% !important;
  }
  .lg\:flex-5\/6 {
    flex: 0 0 83.3333333% !important;
  }
  .lg\:flex-full {
    flex: 0 0 100% !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:flex-0 {
    flex: 0 0 !important;
  }
  .xl\:flex-1 {
    flex: 1 1 !important;
  }
  .xl\:flex-2 {
    flex: 2 1 !important;
  }
  .xl\:flex-3 {
    flex: 3 1 !important;
  }
  .xl\:flex-auto {
    flex: 1 1 auto !important;
  }
  .xl\:flex-initial {
    flex: 0 1 auto !important;
  }
  .xl\:flex-none {
    flex: none !important;
  }
  .xl\:flex-1\/6 {
    flex: 0 0 16.666666% !important;
  }
  .xl\:flex-1\/4 {
    flex: 0 0 25% !important;
  }
  .xl\:flex-1\/3 {
    flex: 0 0 33.333333% !important;
  }
  .xl\:flex-2\/5 {
    flex: 0 0 40% !important;
  }
  .xl\:flex-1\/2 {
    flex: 0 0 50% !important;
  }
  .xl\:flex-7\/12 {
    flex: 0 0 58.333333% !important;
  }
  .xl\:flex-2\/3 {
    flex: 0 0 66.666667% !important;
  }
  .xl\:flex-3\/4 {
    flex: 0 0 75% !important;
  }
  .xl\:flex-5\/6 {
    flex: 0 0 83.3333333% !important;
  }
  .xl\:flex-full {
    flex: 0 0 100% !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:flex-0 {
    flex: 0 0 !important;
  }
  .xxl\:flex-1 {
    flex: 1 1 !important;
  }
  .xxl\:flex-2 {
    flex: 2 1 !important;
  }
  .xxl\:flex-3 {
    flex: 3 1 !important;
  }
  .xxl\:flex-auto {
    flex: 1 1 auto !important;
  }
  .xxl\:flex-initial {
    flex: 0 1 auto !important;
  }
  .xxl\:flex-none {
    flex: none !important;
  }
  .xxl\:flex-1\/6 {
    flex: 0 0 16.666666% !important;
  }
  .xxl\:flex-1\/4 {
    flex: 0 0 25% !important;
  }
  .xxl\:flex-1\/3 {
    flex: 0 0 33.333333% !important;
  }
  .xxl\:flex-2\/5 {
    flex: 0 0 40% !important;
  }
  .xxl\:flex-1\/2 {
    flex: 0 0 50% !important;
  }
  .xxl\:flex-7\/12 {
    flex: 0 0 58.333333% !important;
  }
  .xxl\:flex-2\/3 {
    flex: 0 0 66.666667% !important;
  }
  .xxl\:flex-3\/4 {
    flex: 0 0 75% !important;
  }
  .xxl\:flex-5\/6 {
    flex: 0 0 83.3333333% !important;
  }
  .xxl\:flex-full {
    flex: 0 0 100% !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:flex-0 {
    flex: 0 0 !important;
  }
  .max\:flex-1 {
    flex: 1 1 !important;
  }
  .max\:flex-2 {
    flex: 2 1 !important;
  }
  .max\:flex-3 {
    flex: 3 1 !important;
  }
  .max\:flex-auto {
    flex: 1 1 auto !important;
  }
  .max\:flex-initial {
    flex: 0 1 auto !important;
  }
  .max\:flex-none {
    flex: none !important;
  }
  .max\:flex-1\/6 {
    flex: 0 0 16.666666% !important;
  }
  .max\:flex-1\/4 {
    flex: 0 0 25% !important;
  }
  .max\:flex-1\/3 {
    flex: 0 0 33.333333% !important;
  }
  .max\:flex-2\/5 {
    flex: 0 0 40% !important;
  }
  .max\:flex-1\/2 {
    flex: 0 0 50% !important;
  }
  .max\:flex-7\/12 {
    flex: 0 0 58.333333% !important;
  }
  .max\:flex-2\/3 {
    flex: 0 0 66.666667% !important;
  }
  .max\:flex-3\/4 {
    flex: 0 0 75% !important;
  }
  .max\:flex-5\/6 {
    flex: 0 0 83.3333333% !important;
  }
  .max\:flex-full {
    flex: 0 0 100% !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-col {
  flex-direction: column !important;
}

.flex-col-reverse {
  flex-direction: column-reverse !important;
}

@media screen and (min-width: 360px) {
  .xs\:flex-row {
    flex-direction: row !important;
  }
  .xs\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .xs\:flex-col {
    flex-direction: column !important;
  }
  .xs\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:flex-row {
    flex-direction: row !important;
  }
  .sm\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .sm\:flex-col {
    flex-direction: column !important;
  }
  .sm\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .md\:flex-col {
    flex-direction: column !important;
  }
  .md\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:flex-row {
    flex-direction: row !important;
  }
  .lg\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .lg\:flex-col {
    flex-direction: column !important;
  }
  .lg\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:flex-row {
    flex-direction: row !important;
  }
  .xl\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .xl\:flex-col {
    flex-direction: column !important;
  }
  .xl\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:flex-row {
    flex-direction: row !important;
  }
  .xxl\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .xxl\:flex-col {
    flex-direction: column !important;
  }
  .xxl\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:flex-row {
    flex-direction: row !important;
  }
  .max\:flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .max\:flex-col {
    flex-direction: column !important;
  }
  .max\:flex-col-reverse {
    flex-direction: column-reverse !important;
  }
}
.flex-columns {
  display: flex !important;
  flex-direction: row !important;
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.flex-columns > * {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.flex-columns.flex-wrap > * {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

@media screen and (min-width: 360px) {
  .xs\:flex-columns {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xs\:flex-columns > * {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xs\:flex-columns.flex-wrap > * {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:flex-columns {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .sm\:flex-columns > * {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .sm\:flex-columns.flex-wrap > * {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:flex-columns {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .md\:flex-columns > * {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .md\:flex-columns.flex-wrap > * {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:flex-columns {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .lg\:flex-columns > * {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .lg\:flex-columns.flex-wrap > * {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:flex-columns {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xl\:flex-columns > * {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xl\:flex-columns.flex-wrap > * {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:flex-columns {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .xxl\:flex-columns > * {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .xxl\:flex-columns.flex-wrap > * {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:flex-columns {
    display: flex !important;
    flex-direction: row !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .max\:flex-columns > * {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .max\:flex-columns.flex-wrap > * {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-no-wrap {
  flex-wrap: nowrap !important;
}

@media screen and (min-width: 360px) {
  .xs\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .xs\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .xs\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .sm\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .md\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .lg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .lg\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .xl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .xl\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .xxl\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .xxl\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .max\:flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .max\:flex-no-wrap {
    flex-wrap: nowrap !important;
  }
}
.contain-paint {
  contain: paint;
}

.max-w-screen-sm {
  max-width: 420px !important;
}

.max-w-screen-md {
  max-width: 650px !important;
}

.max-w-screen-lg {
  max-width: 950px !important;
}

.max-w-screen-xl {
  max-width: 1100px !important;
}

.min-w-screen-sm {
  min-width: 420px !important;
}

.min-w-screen-md {
  min-width: 650px !important;
}

.min-w-screen-lg {
  min-width: 950px !important;
}

.min-w-screen-xl {
  min-width: 1100px !important;
}

.w-auto\:after:after {
  width: auto;
}

.h-s1 {
  height: 0.25rem !important;
}

.h-s2 {
  height: 0.5rem !important;
}

.h-s3 {
  height: 0.75rem !important;
}

.h-s4 {
  height: 1rem !important;
}

.h-s5 {
  height: 1.25rem !important;
}

.h-s6 {
  height: 1.5rem !important;
}

.h-s8 {
  height: 2rem !important;
}

.h-s10 {
  height: 2.5rem !important;
}

.h-s12 {
  height: 3rem !important;
}

.h-s16 {
  height: 4rem !important;
}

.h-s20 {
  height: 5rem !important;
}

.h-s24 {
  height: 6rem !important;
}

.h-s28 {
  height: 7rem !important;
}

.h-s32 {
  height: 8rem !important;
}

.h-s36 {
  height: 9rem !important;
}

.h-s40 {
  height: 10rem !important;
}

.h-s44 {
  height: 11rem !important;
}

.h-s48 {
  height: 12rem !important;
}

.h-s49 {
  height: 12.25rem !important;
}

.h-s50 {
  height: 12.5rem !important;
}

.h-s52 {
  height: 13rem !important;
}

.h-s54 {
  height: 13.5rem !important;
}

.h-s55 {
  height: 13.75rem !important;
}

.h-s56 {
  height: 14rem !important;
}

.h-s1em {
  height: 0.25em !important;
}

.h-s2em {
  height: 0.5em !important;
}

.h-s3em {
  height: 0.75em !important;
}

.h-s4em {
  height: 1em !important;
}

.h-s5em {
  height: 1.25em !important;
}

.h-s6em {
  height: 1.5em !important;
}

.h-s8em {
  height: 2em !important;
}

.h-s10em {
  height: 2.5em !important;
}

.h-s12em {
  height: 3em !important;
}

.h-s14em {
  height: 3.5em !important;
}

.h-s16em {
  height: 4em !important;
}

.h-s18em {
  height: 4.5em !important;
}

.h-s20em {
  height: 5em !important;
}

.h-s24em {
  height: 6em !important;
}

.h-s26em {
  height: 6.5em !important;
}

.h-s28em {
  height: 7em !important;
}

.h-s32em {
  height: 8em !important;
}

.h-s36em {
  height: 9em !important;
}

.h-s40em {
  height: 10em !important;
}

.h-s44em {
  height: 11em !important;
}

.h-s46em {
  height: 11.5em !important;
}

.h-s48em {
  height: 12em !important;
}

.h-s49em {
  height: 12.25em !important;
}

.h-s50em {
  height: 12.5em !important;
}

.h-s52em {
  height: 13em !important;
}

.h-s54em {
  height: 13.5em !important;
}

.h-s55em {
  height: 13.75em !important;
}

.h-s56em {
  height: 14em !important;
}

.h-s70em {
  height: 18em !important;
}

.min-h-s1 {
  min-height: 0.25rem !important;
}

.min-h-s2 {
  min-height: 0.5rem !important;
}

.min-h-s3 {
  min-height: 0.75rem !important;
}

.min-h-s4 {
  min-height: 1rem !important;
}

.min-h-s5 {
  min-height: 1.25rem !important;
}

.min-h-s6 {
  min-height: 1.5rem !important;
}

.min-h-s8 {
  min-height: 2rem !important;
}

.min-h-s10 {
  min-height: 2.5rem !important;
}

.min-h-s12 {
  min-height: 3rem !important;
}

.min-h-s16 {
  min-height: 4rem !important;
}

.min-h-s20 {
  min-height: 5rem !important;
}

.min-h-s24 {
  min-height: 6rem !important;
}

.min-h-s28 {
  min-height: 7rem !important;
}

.min-h-s32 {
  min-height: 8rem !important;
}

.min-h-s36 {
  min-height: 9rem !important;
}

.min-h-s40 {
  min-height: 10rem !important;
}

.min-h-s44 {
  min-height: 11rem !important;
}

.min-h-s48 {
  min-height: 12rem !important;
}

.min-h-s49 {
  min-height: 12.25rem !important;
}

.min-h-s50 {
  min-height: 12.5rem !important;
}

.min-h-s52 {
  min-height: 13rem !important;
}

.min-h-s54 {
  min-height: 13.5rem !important;
}

.min-h-s55 {
  min-height: 13.75rem !important;
}

.min-h-s56 {
  min-height: 14rem !important;
}

.min-h-s1em {
  min-height: 0.25em !important;
}

.min-h-s2em {
  min-height: 0.5em !important;
}

.min-h-s3em {
  min-height: 0.75em !important;
}

.min-h-s4em {
  min-height: 1em !important;
}

.min-h-s5em {
  min-height: 1.25em !important;
}

.min-h-s6em {
  min-height: 1.5em !important;
}

.min-h-s8em {
  min-height: 2em !important;
}

.min-h-s10em {
  min-height: 2.5em !important;
}

.min-h-s12em {
  min-height: 3em !important;
}

.min-h-s14em {
  min-height: 3.5em !important;
}

.min-h-s16em {
  min-height: 4em !important;
}

.min-h-s18em {
  min-height: 4.5em !important;
}

.min-h-s20em {
  min-height: 5em !important;
}

.min-h-s24em {
  min-height: 6em !important;
}

.min-h-s26em {
  min-height: 6.5em !important;
}

.min-h-s28em {
  min-height: 7em !important;
}

.min-h-s32em {
  min-height: 8em !important;
}

.min-h-s36em {
  min-height: 9em !important;
}

.min-h-s40em {
  min-height: 10em !important;
}

.min-h-s44em {
  min-height: 11em !important;
}

.min-h-s46em {
  min-height: 11.5em !important;
}

.min-h-s48em {
  min-height: 12em !important;
}

.min-h-s49em {
  min-height: 12.25em !important;
}

.min-h-s50em {
  min-height: 12.5em !important;
}

.min-h-s52em {
  min-height: 13em !important;
}

.min-h-s54em {
  min-height: 13.5em !important;
}

.min-h-s55em {
  min-height: 13.75em !important;
}

.min-h-s56em {
  min-height: 14em !important;
}

.min-h-s70em {
  min-height: 18em !important;
}

.max-h-s1 {
  max-height: 0.25rem !important;
}

.max-h-s2 {
  max-height: 0.5rem !important;
}

.max-h-s3 {
  max-height: 0.75rem !important;
}

.max-h-s4 {
  max-height: 1rem !important;
}

.max-h-s5 {
  max-height: 1.25rem !important;
}

.max-h-s6 {
  max-height: 1.5rem !important;
}

.max-h-s8 {
  max-height: 2rem !important;
}

.max-h-s10 {
  max-height: 2.5rem !important;
}

.max-h-s12 {
  max-height: 3rem !important;
}

.max-h-s16 {
  max-height: 4rem !important;
}

.max-h-s20 {
  max-height: 5rem !important;
}

.max-h-s24 {
  max-height: 6rem !important;
}

.max-h-s28 {
  max-height: 7rem !important;
}

.max-h-s32 {
  max-height: 8rem !important;
}

.max-h-s36 {
  max-height: 9rem !important;
}

.max-h-s40 {
  max-height: 10rem !important;
}

.max-h-s44 {
  max-height: 11rem !important;
}

.max-h-s48 {
  max-height: 12rem !important;
}

.max-h-s49 {
  max-height: 12.25rem !important;
}

.max-h-s50 {
  max-height: 12.5rem !important;
}

.max-h-s52 {
  max-height: 13rem !important;
}

.max-h-s54 {
  max-height: 13.5rem !important;
}

.max-h-s55 {
  max-height: 13.75rem !important;
}

.max-h-s56 {
  max-height: 14rem !important;
}

.max-h-s1em {
  max-height: 0.25em !important;
}

.max-h-s2em {
  max-height: 0.5em !important;
}

.max-h-s3em {
  max-height: 0.75em !important;
}

.max-h-s4em {
  max-height: 1em !important;
}

.max-h-s5em {
  max-height: 1.25em !important;
}

.max-h-s6em {
  max-height: 1.5em !important;
}

.max-h-s8em {
  max-height: 2em !important;
}

.max-h-s10em {
  max-height: 2.5em !important;
}

.max-h-s12em {
  max-height: 3em !important;
}

.max-h-s14em {
  max-height: 3.5em !important;
}

.max-h-s16em {
  max-height: 4em !important;
}

.max-h-s18em {
  max-height: 4.5em !important;
}

.max-h-s20em {
  max-height: 5em !important;
}

.max-h-s24em {
  max-height: 6em !important;
}

.max-h-s26em {
  max-height: 6.5em !important;
}

.max-h-s28em {
  max-height: 7em !important;
}

.max-h-s32em {
  max-height: 8em !important;
}

.max-h-s36em {
  max-height: 9em !important;
}

.max-h-s40em {
  max-height: 10em !important;
}

.max-h-s44em {
  max-height: 11em !important;
}

.max-h-s46em {
  max-height: 11.5em !important;
}

.max-h-s48em {
  max-height: 12em !important;
}

.max-h-s49em {
  max-height: 12.25em !important;
}

.max-h-s50em {
  max-height: 12.5em !important;
}

.max-h-s52em {
  max-height: 13em !important;
}

.max-h-s54em {
  max-height: 13.5em !important;
}

.max-h-s55em {
  max-height: 13.75em !important;
}

.max-h-s56em {
  max-height: 14em !important;
}

.max-h-s70em {
  max-height: 18em !important;
}

.w-s1 {
  width: 0.25rem !important;
}

.w-s2 {
  width: 0.5rem !important;
}

.w-s3 {
  width: 0.75rem !important;
}

.w-s4 {
  width: 1rem !important;
}

.w-s5 {
  width: 1.25rem !important;
}

.w-s6 {
  width: 1.5rem !important;
}

.w-s8 {
  width: 2rem !important;
}

.w-s10 {
  width: 2.5rem !important;
}

.w-s12 {
  width: 3rem !important;
}

.w-s16 {
  width: 4rem !important;
}

.w-s20 {
  width: 5rem !important;
}

.w-s24 {
  width: 6rem !important;
}

.w-s28 {
  width: 7rem !important;
}

.w-s32 {
  width: 8rem !important;
}

.w-s36 {
  width: 9rem !important;
}

.w-s40 {
  width: 10rem !important;
}

.w-s44 {
  width: 11rem !important;
}

.w-s48 {
  width: 12rem !important;
}

.w-s49 {
  width: 12.25rem !important;
}

.w-s50 {
  width: 12.5rem !important;
}

.w-s52 {
  width: 13rem !important;
}

.w-s54 {
  width: 13.5rem !important;
}

.w-s55 {
  width: 13.75rem !important;
}

.w-s56 {
  width: 14rem !important;
}

.w-s1em {
  width: 0.25em !important;
}

.w-s2em {
  width: 0.5em !important;
}

.w-s3em {
  width: 0.75em !important;
}

.w-s4em {
  width: 1em !important;
}

.w-s5em {
  width: 1.25em !important;
}

.w-s6em {
  width: 1.5em !important;
}

.w-s8em {
  width: 2em !important;
}

.w-s10em {
  width: 2.5em !important;
}

.w-s12em {
  width: 3em !important;
}

.w-s14em {
  width: 3.5em !important;
}

.w-s16em {
  width: 4em !important;
}

.w-s18em {
  width: 4.5em !important;
}

.w-s20em {
  width: 5em !important;
}

.w-s24em {
  width: 6em !important;
}

.w-s26em {
  width: 6.5em !important;
}

.w-s28em {
  width: 7em !important;
}

.w-s32em {
  width: 8em !important;
}

.w-s36em {
  width: 9em !important;
}

.w-s40em {
  width: 10em !important;
}

.w-s44em {
  width: 11em !important;
}

.w-s46em {
  width: 11.5em !important;
}

.w-s48em {
  width: 12em !important;
}

.w-s49em {
  width: 12.25em !important;
}

.w-s50em {
  width: 12.5em !important;
}

.w-s52em {
  width: 13em !important;
}

.w-s54em {
  width: 13.5em !important;
}

.w-s55em {
  width: 13.75em !important;
}

.w-s56em {
  width: 14em !important;
}

.w-s70em {
  width: 18em !important;
}

.min-w-s1 {
  min-width: 0.25rem !important;
}

.min-w-s2 {
  min-width: 0.5rem !important;
}

.min-w-s3 {
  min-width: 0.75rem !important;
}

.min-w-s4 {
  min-width: 1rem !important;
}

.min-w-s5 {
  min-width: 1.25rem !important;
}

.min-w-s6 {
  min-width: 1.5rem !important;
}

.min-w-s8 {
  min-width: 2rem !important;
}

.min-w-s10 {
  min-width: 2.5rem !important;
}

.min-w-s12 {
  min-width: 3rem !important;
}

.min-w-s16 {
  min-width: 4rem !important;
}

.min-w-s20 {
  min-width: 5rem !important;
}

.min-w-s24 {
  min-width: 6rem !important;
}

.min-w-s28 {
  min-width: 7rem !important;
}

.min-w-s32 {
  min-width: 8rem !important;
}

.min-w-s36 {
  min-width: 9rem !important;
}

.min-w-s40 {
  min-width: 10rem !important;
}

.min-w-s44 {
  min-width: 11rem !important;
}

.min-w-s48 {
  min-width: 12rem !important;
}

.min-w-s49 {
  min-width: 12.25rem !important;
}

.min-w-s50 {
  min-width: 12.5rem !important;
}

.min-w-s52 {
  min-width: 13rem !important;
}

.min-w-s54 {
  min-width: 13.5rem !important;
}

.min-w-s55 {
  min-width: 13.75rem !important;
}

.min-w-s56 {
  min-width: 14rem !important;
}

.min-w-s1em {
  min-width: 0.25em !important;
}

.min-w-s2em {
  min-width: 0.5em !important;
}

.min-w-s3em {
  min-width: 0.75em !important;
}

.min-w-s4em {
  min-width: 1em !important;
}

.min-w-s5em {
  min-width: 1.25em !important;
}

.min-w-s6em {
  min-width: 1.5em !important;
}

.min-w-s8em {
  min-width: 2em !important;
}

.min-w-s10em {
  min-width: 2.5em !important;
}

.min-w-s12em {
  min-width: 3em !important;
}

.min-w-s14em {
  min-width: 3.5em !important;
}

.min-w-s16em {
  min-width: 4em !important;
}

.min-w-s18em {
  min-width: 4.5em !important;
}

.min-w-s20em {
  min-width: 5em !important;
}

.min-w-s24em {
  min-width: 6em !important;
}

.min-w-s26em {
  min-width: 6.5em !important;
}

.min-w-s28em {
  min-width: 7em !important;
}

.min-w-s32em {
  min-width: 8em !important;
}

.min-w-s36em {
  min-width: 9em !important;
}

.min-w-s40em {
  min-width: 10em !important;
}

.min-w-s44em {
  min-width: 11em !important;
}

.min-w-s46em {
  min-width: 11.5em !important;
}

.min-w-s48em {
  min-width: 12em !important;
}

.min-w-s49em {
  min-width: 12.25em !important;
}

.min-w-s50em {
  min-width: 12.5em !important;
}

.min-w-s52em {
  min-width: 13em !important;
}

.min-w-s54em {
  min-width: 13.5em !important;
}

.min-w-s55em {
  min-width: 13.75em !important;
}

.min-w-s56em {
  min-width: 14em !important;
}

.min-w-s70em {
  min-width: 18em !important;
}

.max-w-s1 {
  max-width: 0.25rem !important;
}

.max-w-s2 {
  max-width: 0.5rem !important;
}

.max-w-s3 {
  max-width: 0.75rem !important;
}

.max-w-s4 {
  max-width: 1rem !important;
}

.max-w-s5 {
  max-width: 1.25rem !important;
}

.max-w-s6 {
  max-width: 1.5rem !important;
}

.max-w-s8 {
  max-width: 2rem !important;
}

.max-w-s10 {
  max-width: 2.5rem !important;
}

.max-w-s12 {
  max-width: 3rem !important;
}

.max-w-s16 {
  max-width: 4rem !important;
}

.max-w-s20 {
  max-width: 5rem !important;
}

.max-w-s24 {
  max-width: 6rem !important;
}

.max-w-s28 {
  max-width: 7rem !important;
}

.max-w-s32 {
  max-width: 8rem !important;
}

.max-w-s36 {
  max-width: 9rem !important;
}

.max-w-s40 {
  max-width: 10rem !important;
}

.max-w-s44 {
  max-width: 11rem !important;
}

.max-w-s48 {
  max-width: 12rem !important;
}

.max-w-s49 {
  max-width: 12.25rem !important;
}

.max-w-s50 {
  max-width: 12.5rem !important;
}

.max-w-s52 {
  max-width: 13rem !important;
}

.max-w-s54 {
  max-width: 13.5rem !important;
}

.max-w-s55 {
  max-width: 13.75rem !important;
}

.max-w-s56 {
  max-width: 14rem !important;
}

.max-w-s1em {
  max-width: 0.25em !important;
}

.max-w-s2em {
  max-width: 0.5em !important;
}

.max-w-s3em {
  max-width: 0.75em !important;
}

.max-w-s4em {
  max-width: 1em !important;
}

.max-w-s5em {
  max-width: 1.25em !important;
}

.max-w-s6em {
  max-width: 1.5em !important;
}

.max-w-s8em {
  max-width: 2em !important;
}

.max-w-s10em {
  max-width: 2.5em !important;
}

.max-w-s12em {
  max-width: 3em !important;
}

.max-w-s14em {
  max-width: 3.5em !important;
}

.max-w-s16em {
  max-width: 4em !important;
}

.max-w-s18em {
  max-width: 4.5em !important;
}

.max-w-s20em {
  max-width: 5em !important;
}

.max-w-s24em {
  max-width: 6em !important;
}

.max-w-s26em {
  max-width: 6.5em !important;
}

.max-w-s28em {
  max-width: 7em !important;
}

.max-w-s32em {
  max-width: 8em !important;
}

.max-w-s36em {
  max-width: 9em !important;
}

.max-w-s40em {
  max-width: 10em !important;
}

.max-w-s44em {
  max-width: 11em !important;
}

.max-w-s46em {
  max-width: 11.5em !important;
}

.max-w-s48em {
  max-width: 12em !important;
}

.max-w-s49em {
  max-width: 12.25em !important;
}

.max-w-s50em {
  max-width: 12.5em !important;
}

.max-w-s52em {
  max-width: 13em !important;
}

.max-w-s54em {
  max-width: 13.5em !important;
}

.max-w-s55em {
  max-width: 13.75em !important;
}

.max-w-s56em {
  max-width: 14em !important;
}

.max-w-s70em {
  max-width: 18em !important;
}

@media screen and (min-width: 360px) {
  .xs\:h-s1 {
    height: 0.25rem !important;
  }
  .xs\:h-s2 {
    height: 0.5rem !important;
  }
  .xs\:h-s3 {
    height: 0.75rem !important;
  }
  .xs\:h-s4 {
    height: 1rem !important;
  }
  .xs\:h-s5 {
    height: 1.25rem !important;
  }
  .xs\:h-s6 {
    height: 1.5rem !important;
  }
  .xs\:h-s8 {
    height: 2rem !important;
  }
  .xs\:h-s10 {
    height: 2.5rem !important;
  }
  .xs\:h-s12 {
    height: 3rem !important;
  }
  .xs\:h-s16 {
    height: 4rem !important;
  }
  .xs\:h-s20 {
    height: 5rem !important;
  }
  .xs\:h-s24 {
    height: 6rem !important;
  }
  .xs\:h-s28 {
    height: 7rem !important;
  }
  .xs\:h-s32 {
    height: 8rem !important;
  }
  .xs\:h-s36 {
    height: 9rem !important;
  }
  .xs\:h-s40 {
    height: 10rem !important;
  }
  .xs\:h-s44 {
    height: 11rem !important;
  }
  .xs\:h-s48 {
    height: 12rem !important;
  }
  .xs\:h-s49 {
    height: 12.25rem !important;
  }
  .xs\:h-s50 {
    height: 12.5rem !important;
  }
  .xs\:h-s52 {
    height: 13rem !important;
  }
  .xs\:h-s54 {
    height: 13.5rem !important;
  }
  .xs\:h-s55 {
    height: 13.75rem !important;
  }
  .xs\:h-s56 {
    height: 14rem !important;
  }
  .xs\:h-s1em {
    height: 0.25em !important;
  }
  .xs\:h-s2em {
    height: 0.5em !important;
  }
  .xs\:h-s3em {
    height: 0.75em !important;
  }
  .xs\:h-s4em {
    height: 1em !important;
  }
  .xs\:h-s5em {
    height: 1.25em !important;
  }
  .xs\:h-s6em {
    height: 1.5em !important;
  }
  .xs\:h-s8em {
    height: 2em !important;
  }
  .xs\:h-s10em {
    height: 2.5em !important;
  }
  .xs\:h-s12em {
    height: 3em !important;
  }
  .xs\:h-s14em {
    height: 3.5em !important;
  }
  .xs\:h-s16em {
    height: 4em !important;
  }
  .xs\:h-s18em {
    height: 4.5em !important;
  }
  .xs\:h-s20em {
    height: 5em !important;
  }
  .xs\:h-s24em {
    height: 6em !important;
  }
  .xs\:h-s26em {
    height: 6.5em !important;
  }
  .xs\:h-s28em {
    height: 7em !important;
  }
  .xs\:h-s32em {
    height: 8em !important;
  }
  .xs\:h-s36em {
    height: 9em !important;
  }
  .xs\:h-s40em {
    height: 10em !important;
  }
  .xs\:h-s44em {
    height: 11em !important;
  }
  .xs\:h-s46em {
    height: 11.5em !important;
  }
  .xs\:h-s48em {
    height: 12em !important;
  }
  .xs\:h-s49em {
    height: 12.25em !important;
  }
  .xs\:h-s50em {
    height: 12.5em !important;
  }
  .xs\:h-s52em {
    height: 13em !important;
  }
  .xs\:h-s54em {
    height: 13.5em !important;
  }
  .xs\:h-s55em {
    height: 13.75em !important;
  }
  .xs\:h-s56em {
    height: 14em !important;
  }
  .xs\:h-s70em {
    height: 18em !important;
  }
  .xs\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .xs\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .xs\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .xs\:min-h-s4 {
    min-height: 1rem !important;
  }
  .xs\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .xs\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .xs\:min-h-s8 {
    min-height: 2rem !important;
  }
  .xs\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .xs\:min-h-s12 {
    min-height: 3rem !important;
  }
  .xs\:min-h-s16 {
    min-height: 4rem !important;
  }
  .xs\:min-h-s20 {
    min-height: 5rem !important;
  }
  .xs\:min-h-s24 {
    min-height: 6rem !important;
  }
  .xs\:min-h-s28 {
    min-height: 7rem !important;
  }
  .xs\:min-h-s32 {
    min-height: 8rem !important;
  }
  .xs\:min-h-s36 {
    min-height: 9rem !important;
  }
  .xs\:min-h-s40 {
    min-height: 10rem !important;
  }
  .xs\:min-h-s44 {
    min-height: 11rem !important;
  }
  .xs\:min-h-s48 {
    min-height: 12rem !important;
  }
  .xs\:min-h-s49 {
    min-height: 12.25rem !important;
  }
  .xs\:min-h-s50 {
    min-height: 12.5rem !important;
  }
  .xs\:min-h-s52 {
    min-height: 13rem !important;
  }
  .xs\:min-h-s54 {
    min-height: 13.5rem !important;
  }
  .xs\:min-h-s55 {
    min-height: 13.75rem !important;
  }
  .xs\:min-h-s56 {
    min-height: 14rem !important;
  }
  .xs\:min-h-s1em {
    min-height: 0.25em !important;
  }
  .xs\:min-h-s2em {
    min-height: 0.5em !important;
  }
  .xs\:min-h-s3em {
    min-height: 0.75em !important;
  }
  .xs\:min-h-s4em {
    min-height: 1em !important;
  }
  .xs\:min-h-s5em {
    min-height: 1.25em !important;
  }
  .xs\:min-h-s6em {
    min-height: 1.5em !important;
  }
  .xs\:min-h-s8em {
    min-height: 2em !important;
  }
  .xs\:min-h-s10em {
    min-height: 2.5em !important;
  }
  .xs\:min-h-s12em {
    min-height: 3em !important;
  }
  .xs\:min-h-s14em {
    min-height: 3.5em !important;
  }
  .xs\:min-h-s16em {
    min-height: 4em !important;
  }
  .xs\:min-h-s18em {
    min-height: 4.5em !important;
  }
  .xs\:min-h-s20em {
    min-height: 5em !important;
  }
  .xs\:min-h-s24em {
    min-height: 6em !important;
  }
  .xs\:min-h-s26em {
    min-height: 6.5em !important;
  }
  .xs\:min-h-s28em {
    min-height: 7em !important;
  }
  .xs\:min-h-s32em {
    min-height: 8em !important;
  }
  .xs\:min-h-s36em {
    min-height: 9em !important;
  }
  .xs\:min-h-s40em {
    min-height: 10em !important;
  }
  .xs\:min-h-s44em {
    min-height: 11em !important;
  }
  .xs\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .xs\:min-h-s48em {
    min-height: 12em !important;
  }
  .xs\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .xs\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .xs\:min-h-s52em {
    min-height: 13em !important;
  }
  .xs\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .xs\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .xs\:min-h-s56em {
    min-height: 14em !important;
  }
  .xs\:min-h-s70em {
    min-height: 18em !important;
  }
  .xs\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .xs\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .xs\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .xs\:max-h-s4 {
    max-height: 1rem !important;
  }
  .xs\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .xs\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .xs\:max-h-s8 {
    max-height: 2rem !important;
  }
  .xs\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .xs\:max-h-s12 {
    max-height: 3rem !important;
  }
  .xs\:max-h-s16 {
    max-height: 4rem !important;
  }
  .xs\:max-h-s20 {
    max-height: 5rem !important;
  }
  .xs\:max-h-s24 {
    max-height: 6rem !important;
  }
  .xs\:max-h-s28 {
    max-height: 7rem !important;
  }
  .xs\:max-h-s32 {
    max-height: 8rem !important;
  }
  .xs\:max-h-s36 {
    max-height: 9rem !important;
  }
  .xs\:max-h-s40 {
    max-height: 10rem !important;
  }
  .xs\:max-h-s44 {
    max-height: 11rem !important;
  }
  .xs\:max-h-s48 {
    max-height: 12rem !important;
  }
  .xs\:max-h-s49 {
    max-height: 12.25rem !important;
  }
  .xs\:max-h-s50 {
    max-height: 12.5rem !important;
  }
  .xs\:max-h-s52 {
    max-height: 13rem !important;
  }
  .xs\:max-h-s54 {
    max-height: 13.5rem !important;
  }
  .xs\:max-h-s55 {
    max-height: 13.75rem !important;
  }
  .xs\:max-h-s56 {
    max-height: 14rem !important;
  }
  .xs\:max-h-s1em {
    max-height: 0.25em !important;
  }
  .xs\:max-h-s2em {
    max-height: 0.5em !important;
  }
  .xs\:max-h-s3em {
    max-height: 0.75em !important;
  }
  .xs\:max-h-s4em {
    max-height: 1em !important;
  }
  .xs\:max-h-s5em {
    max-height: 1.25em !important;
  }
  .xs\:max-h-s6em {
    max-height: 1.5em !important;
  }
  .xs\:max-h-s8em {
    max-height: 2em !important;
  }
  .xs\:max-h-s10em {
    max-height: 2.5em !important;
  }
  .xs\:max-h-s12em {
    max-height: 3em !important;
  }
  .xs\:max-h-s14em {
    max-height: 3.5em !important;
  }
  .xs\:max-h-s16em {
    max-height: 4em !important;
  }
  .xs\:max-h-s18em {
    max-height: 4.5em !important;
  }
  .xs\:max-h-s20em {
    max-height: 5em !important;
  }
  .xs\:max-h-s24em {
    max-height: 6em !important;
  }
  .xs\:max-h-s26em {
    max-height: 6.5em !important;
  }
  .xs\:max-h-s28em {
    max-height: 7em !important;
  }
  .xs\:max-h-s32em {
    max-height: 8em !important;
  }
  .xs\:max-h-s36em {
    max-height: 9em !important;
  }
  .xs\:max-h-s40em {
    max-height: 10em !important;
  }
  .xs\:max-h-s44em {
    max-height: 11em !important;
  }
  .xs\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .xs\:max-h-s48em {
    max-height: 12em !important;
  }
  .xs\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .xs\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .xs\:max-h-s52em {
    max-height: 13em !important;
  }
  .xs\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .xs\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .xs\:max-h-s56em {
    max-height: 14em !important;
  }
  .xs\:max-h-s70em {
    max-height: 18em !important;
  }
  .xs\:w-s1 {
    width: 0.25rem !important;
  }
  .xs\:w-s2 {
    width: 0.5rem !important;
  }
  .xs\:w-s3 {
    width: 0.75rem !important;
  }
  .xs\:w-s4 {
    width: 1rem !important;
  }
  .xs\:w-s5 {
    width: 1.25rem !important;
  }
  .xs\:w-s6 {
    width: 1.5rem !important;
  }
  .xs\:w-s8 {
    width: 2rem !important;
  }
  .xs\:w-s10 {
    width: 2.5rem !important;
  }
  .xs\:w-s12 {
    width: 3rem !important;
  }
  .xs\:w-s16 {
    width: 4rem !important;
  }
  .xs\:w-s20 {
    width: 5rem !important;
  }
  .xs\:w-s24 {
    width: 6rem !important;
  }
  .xs\:w-s28 {
    width: 7rem !important;
  }
  .xs\:w-s32 {
    width: 8rem !important;
  }
  .xs\:w-s36 {
    width: 9rem !important;
  }
  .xs\:w-s40 {
    width: 10rem !important;
  }
  .xs\:w-s44 {
    width: 11rem !important;
  }
  .xs\:w-s48 {
    width: 12rem !important;
  }
  .xs\:w-s49 {
    width: 12.25rem !important;
  }
  .xs\:w-s50 {
    width: 12.5rem !important;
  }
  .xs\:w-s52 {
    width: 13rem !important;
  }
  .xs\:w-s54 {
    width: 13.5rem !important;
  }
  .xs\:w-s55 {
    width: 13.75rem !important;
  }
  .xs\:w-s56 {
    width: 14rem !important;
  }
  .xs\:w-s1em {
    width: 0.25em !important;
  }
  .xs\:w-s2em {
    width: 0.5em !important;
  }
  .xs\:w-s3em {
    width: 0.75em !important;
  }
  .xs\:w-s4em {
    width: 1em !important;
  }
  .xs\:w-s5em {
    width: 1.25em !important;
  }
  .xs\:w-s6em {
    width: 1.5em !important;
  }
  .xs\:w-s8em {
    width: 2em !important;
  }
  .xs\:w-s10em {
    width: 2.5em !important;
  }
  .xs\:w-s12em {
    width: 3em !important;
  }
  .xs\:w-s14em {
    width: 3.5em !important;
  }
  .xs\:w-s16em {
    width: 4em !important;
  }
  .xs\:w-s18em {
    width: 4.5em !important;
  }
  .xs\:w-s20em {
    width: 5em !important;
  }
  .xs\:w-s24em {
    width: 6em !important;
  }
  .xs\:w-s26em {
    width: 6.5em !important;
  }
  .xs\:w-s28em {
    width: 7em !important;
  }
  .xs\:w-s32em {
    width: 8em !important;
  }
  .xs\:w-s36em {
    width: 9em !important;
  }
  .xs\:w-s40em {
    width: 10em !important;
  }
  .xs\:w-s44em {
    width: 11em !important;
  }
  .xs\:w-s46em {
    width: 11.5em !important;
  }
  .xs\:w-s48em {
    width: 12em !important;
  }
  .xs\:w-s49em {
    width: 12.25em !important;
  }
  .xs\:w-s50em {
    width: 12.5em !important;
  }
  .xs\:w-s52em {
    width: 13em !important;
  }
  .xs\:w-s54em {
    width: 13.5em !important;
  }
  .xs\:w-s55em {
    width: 13.75em !important;
  }
  .xs\:w-s56em {
    width: 14em !important;
  }
  .xs\:w-s70em {
    width: 18em !important;
  }
  .xs\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .xs\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .xs\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .xs\:min-w-s4 {
    min-width: 1rem !important;
  }
  .xs\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .xs\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .xs\:min-w-s8 {
    min-width: 2rem !important;
  }
  .xs\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .xs\:min-w-s12 {
    min-width: 3rem !important;
  }
  .xs\:min-w-s16 {
    min-width: 4rem !important;
  }
  .xs\:min-w-s20 {
    min-width: 5rem !important;
  }
  .xs\:min-w-s24 {
    min-width: 6rem !important;
  }
  .xs\:min-w-s28 {
    min-width: 7rem !important;
  }
  .xs\:min-w-s32 {
    min-width: 8rem !important;
  }
  .xs\:min-w-s36 {
    min-width: 9rem !important;
  }
  .xs\:min-w-s40 {
    min-width: 10rem !important;
  }
  .xs\:min-w-s44 {
    min-width: 11rem !important;
  }
  .xs\:min-w-s48 {
    min-width: 12rem !important;
  }
  .xs\:min-w-s49 {
    min-width: 12.25rem !important;
  }
  .xs\:min-w-s50 {
    min-width: 12.5rem !important;
  }
  .xs\:min-w-s52 {
    min-width: 13rem !important;
  }
  .xs\:min-w-s54 {
    min-width: 13.5rem !important;
  }
  .xs\:min-w-s55 {
    min-width: 13.75rem !important;
  }
  .xs\:min-w-s56 {
    min-width: 14rem !important;
  }
  .xs\:min-w-s1em {
    min-width: 0.25em !important;
  }
  .xs\:min-w-s2em {
    min-width: 0.5em !important;
  }
  .xs\:min-w-s3em {
    min-width: 0.75em !important;
  }
  .xs\:min-w-s4em {
    min-width: 1em !important;
  }
  .xs\:min-w-s5em {
    min-width: 1.25em !important;
  }
  .xs\:min-w-s6em {
    min-width: 1.5em !important;
  }
  .xs\:min-w-s8em {
    min-width: 2em !important;
  }
  .xs\:min-w-s10em {
    min-width: 2.5em !important;
  }
  .xs\:min-w-s12em {
    min-width: 3em !important;
  }
  .xs\:min-w-s14em {
    min-width: 3.5em !important;
  }
  .xs\:min-w-s16em {
    min-width: 4em !important;
  }
  .xs\:min-w-s18em {
    min-width: 4.5em !important;
  }
  .xs\:min-w-s20em {
    min-width: 5em !important;
  }
  .xs\:min-w-s24em {
    min-width: 6em !important;
  }
  .xs\:min-w-s26em {
    min-width: 6.5em !important;
  }
  .xs\:min-w-s28em {
    min-width: 7em !important;
  }
  .xs\:min-w-s32em {
    min-width: 8em !important;
  }
  .xs\:min-w-s36em {
    min-width: 9em !important;
  }
  .xs\:min-w-s40em {
    min-width: 10em !important;
  }
  .xs\:min-w-s44em {
    min-width: 11em !important;
  }
  .xs\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .xs\:min-w-s48em {
    min-width: 12em !important;
  }
  .xs\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .xs\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .xs\:min-w-s52em {
    min-width: 13em !important;
  }
  .xs\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .xs\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .xs\:min-w-s56em {
    min-width: 14em !important;
  }
  .xs\:min-w-s70em {
    min-width: 18em !important;
  }
  .xs\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .xs\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .xs\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .xs\:max-w-s4 {
    max-width: 1rem !important;
  }
  .xs\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .xs\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .xs\:max-w-s8 {
    max-width: 2rem !important;
  }
  .xs\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .xs\:max-w-s12 {
    max-width: 3rem !important;
  }
  .xs\:max-w-s16 {
    max-width: 4rem !important;
  }
  .xs\:max-w-s20 {
    max-width: 5rem !important;
  }
  .xs\:max-w-s24 {
    max-width: 6rem !important;
  }
  .xs\:max-w-s28 {
    max-width: 7rem !important;
  }
  .xs\:max-w-s32 {
    max-width: 8rem !important;
  }
  .xs\:max-w-s36 {
    max-width: 9rem !important;
  }
  .xs\:max-w-s40 {
    max-width: 10rem !important;
  }
  .xs\:max-w-s44 {
    max-width: 11rem !important;
  }
  .xs\:max-w-s48 {
    max-width: 12rem !important;
  }
  .xs\:max-w-s49 {
    max-width: 12.25rem !important;
  }
  .xs\:max-w-s50 {
    max-width: 12.5rem !important;
  }
  .xs\:max-w-s52 {
    max-width: 13rem !important;
  }
  .xs\:max-w-s54 {
    max-width: 13.5rem !important;
  }
  .xs\:max-w-s55 {
    max-width: 13.75rem !important;
  }
  .xs\:max-w-s56 {
    max-width: 14rem !important;
  }
  .xs\:max-w-s1em {
    max-width: 0.25em !important;
  }
  .xs\:max-w-s2em {
    max-width: 0.5em !important;
  }
  .xs\:max-w-s3em {
    max-width: 0.75em !important;
  }
  .xs\:max-w-s4em {
    max-width: 1em !important;
  }
  .xs\:max-w-s5em {
    max-width: 1.25em !important;
  }
  .xs\:max-w-s6em {
    max-width: 1.5em !important;
  }
  .xs\:max-w-s8em {
    max-width: 2em !important;
  }
  .xs\:max-w-s10em {
    max-width: 2.5em !important;
  }
  .xs\:max-w-s12em {
    max-width: 3em !important;
  }
  .xs\:max-w-s14em {
    max-width: 3.5em !important;
  }
  .xs\:max-w-s16em {
    max-width: 4em !important;
  }
  .xs\:max-w-s18em {
    max-width: 4.5em !important;
  }
  .xs\:max-w-s20em {
    max-width: 5em !important;
  }
  .xs\:max-w-s24em {
    max-width: 6em !important;
  }
  .xs\:max-w-s26em {
    max-width: 6.5em !important;
  }
  .xs\:max-w-s28em {
    max-width: 7em !important;
  }
  .xs\:max-w-s32em {
    max-width: 8em !important;
  }
  .xs\:max-w-s36em {
    max-width: 9em !important;
  }
  .xs\:max-w-s40em {
    max-width: 10em !important;
  }
  .xs\:max-w-s44em {
    max-width: 11em !important;
  }
  .xs\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .xs\:max-w-s48em {
    max-width: 12em !important;
  }
  .xs\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .xs\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .xs\:max-w-s52em {
    max-width: 13em !important;
  }
  .xs\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .xs\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .xs\:max-w-s56em {
    max-width: 14em !important;
  }
  .xs\:max-w-s70em {
    max-width: 18em !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:h-s1 {
    height: 0.25rem !important;
  }
  .sm\:h-s2 {
    height: 0.5rem !important;
  }
  .sm\:h-s3 {
    height: 0.75rem !important;
  }
  .sm\:h-s4 {
    height: 1rem !important;
  }
  .sm\:h-s5 {
    height: 1.25rem !important;
  }
  .sm\:h-s6 {
    height: 1.5rem !important;
  }
  .sm\:h-s8 {
    height: 2rem !important;
  }
  .sm\:h-s10 {
    height: 2.5rem !important;
  }
  .sm\:h-s12 {
    height: 3rem !important;
  }
  .sm\:h-s16 {
    height: 4rem !important;
  }
  .sm\:h-s20 {
    height: 5rem !important;
  }
  .sm\:h-s24 {
    height: 6rem !important;
  }
  .sm\:h-s28 {
    height: 7rem !important;
  }
  .sm\:h-s32 {
    height: 8rem !important;
  }
  .sm\:h-s36 {
    height: 9rem !important;
  }
  .sm\:h-s40 {
    height: 10rem !important;
  }
  .sm\:h-s44 {
    height: 11rem !important;
  }
  .sm\:h-s48 {
    height: 12rem !important;
  }
  .sm\:h-s49 {
    height: 12.25rem !important;
  }
  .sm\:h-s50 {
    height: 12.5rem !important;
  }
  .sm\:h-s52 {
    height: 13rem !important;
  }
  .sm\:h-s54 {
    height: 13.5rem !important;
  }
  .sm\:h-s55 {
    height: 13.75rem !important;
  }
  .sm\:h-s56 {
    height: 14rem !important;
  }
  .sm\:h-s1em {
    height: 0.25em !important;
  }
  .sm\:h-s2em {
    height: 0.5em !important;
  }
  .sm\:h-s3em {
    height: 0.75em !important;
  }
  .sm\:h-s4em {
    height: 1em !important;
  }
  .sm\:h-s5em {
    height: 1.25em !important;
  }
  .sm\:h-s6em {
    height: 1.5em !important;
  }
  .sm\:h-s8em {
    height: 2em !important;
  }
  .sm\:h-s10em {
    height: 2.5em !important;
  }
  .sm\:h-s12em {
    height: 3em !important;
  }
  .sm\:h-s14em {
    height: 3.5em !important;
  }
  .sm\:h-s16em {
    height: 4em !important;
  }
  .sm\:h-s18em {
    height: 4.5em !important;
  }
  .sm\:h-s20em {
    height: 5em !important;
  }
  .sm\:h-s24em {
    height: 6em !important;
  }
  .sm\:h-s26em {
    height: 6.5em !important;
  }
  .sm\:h-s28em {
    height: 7em !important;
  }
  .sm\:h-s32em {
    height: 8em !important;
  }
  .sm\:h-s36em {
    height: 9em !important;
  }
  .sm\:h-s40em {
    height: 10em !important;
  }
  .sm\:h-s44em {
    height: 11em !important;
  }
  .sm\:h-s46em {
    height: 11.5em !important;
  }
  .sm\:h-s48em {
    height: 12em !important;
  }
  .sm\:h-s49em {
    height: 12.25em !important;
  }
  .sm\:h-s50em {
    height: 12.5em !important;
  }
  .sm\:h-s52em {
    height: 13em !important;
  }
  .sm\:h-s54em {
    height: 13.5em !important;
  }
  .sm\:h-s55em {
    height: 13.75em !important;
  }
  .sm\:h-s56em {
    height: 14em !important;
  }
  .sm\:h-s70em {
    height: 18em !important;
  }
  .sm\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .sm\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .sm\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .sm\:min-h-s4 {
    min-height: 1rem !important;
  }
  .sm\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .sm\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .sm\:min-h-s8 {
    min-height: 2rem !important;
  }
  .sm\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .sm\:min-h-s12 {
    min-height: 3rem !important;
  }
  .sm\:min-h-s16 {
    min-height: 4rem !important;
  }
  .sm\:min-h-s20 {
    min-height: 5rem !important;
  }
  .sm\:min-h-s24 {
    min-height: 6rem !important;
  }
  .sm\:min-h-s28 {
    min-height: 7rem !important;
  }
  .sm\:min-h-s32 {
    min-height: 8rem !important;
  }
  .sm\:min-h-s36 {
    min-height: 9rem !important;
  }
  .sm\:min-h-s40 {
    min-height: 10rem !important;
  }
  .sm\:min-h-s44 {
    min-height: 11rem !important;
  }
  .sm\:min-h-s48 {
    min-height: 12rem !important;
  }
  .sm\:min-h-s49 {
    min-height: 12.25rem !important;
  }
  .sm\:min-h-s50 {
    min-height: 12.5rem !important;
  }
  .sm\:min-h-s52 {
    min-height: 13rem !important;
  }
  .sm\:min-h-s54 {
    min-height: 13.5rem !important;
  }
  .sm\:min-h-s55 {
    min-height: 13.75rem !important;
  }
  .sm\:min-h-s56 {
    min-height: 14rem !important;
  }
  .sm\:min-h-s1em {
    min-height: 0.25em !important;
  }
  .sm\:min-h-s2em {
    min-height: 0.5em !important;
  }
  .sm\:min-h-s3em {
    min-height: 0.75em !important;
  }
  .sm\:min-h-s4em {
    min-height: 1em !important;
  }
  .sm\:min-h-s5em {
    min-height: 1.25em !important;
  }
  .sm\:min-h-s6em {
    min-height: 1.5em !important;
  }
  .sm\:min-h-s8em {
    min-height: 2em !important;
  }
  .sm\:min-h-s10em {
    min-height: 2.5em !important;
  }
  .sm\:min-h-s12em {
    min-height: 3em !important;
  }
  .sm\:min-h-s14em {
    min-height: 3.5em !important;
  }
  .sm\:min-h-s16em {
    min-height: 4em !important;
  }
  .sm\:min-h-s18em {
    min-height: 4.5em !important;
  }
  .sm\:min-h-s20em {
    min-height: 5em !important;
  }
  .sm\:min-h-s24em {
    min-height: 6em !important;
  }
  .sm\:min-h-s26em {
    min-height: 6.5em !important;
  }
  .sm\:min-h-s28em {
    min-height: 7em !important;
  }
  .sm\:min-h-s32em {
    min-height: 8em !important;
  }
  .sm\:min-h-s36em {
    min-height: 9em !important;
  }
  .sm\:min-h-s40em {
    min-height: 10em !important;
  }
  .sm\:min-h-s44em {
    min-height: 11em !important;
  }
  .sm\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .sm\:min-h-s48em {
    min-height: 12em !important;
  }
  .sm\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .sm\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .sm\:min-h-s52em {
    min-height: 13em !important;
  }
  .sm\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .sm\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .sm\:min-h-s56em {
    min-height: 14em !important;
  }
  .sm\:min-h-s70em {
    min-height: 18em !important;
  }
  .sm\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .sm\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .sm\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .sm\:max-h-s4 {
    max-height: 1rem !important;
  }
  .sm\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .sm\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .sm\:max-h-s8 {
    max-height: 2rem !important;
  }
  .sm\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .sm\:max-h-s12 {
    max-height: 3rem !important;
  }
  .sm\:max-h-s16 {
    max-height: 4rem !important;
  }
  .sm\:max-h-s20 {
    max-height: 5rem !important;
  }
  .sm\:max-h-s24 {
    max-height: 6rem !important;
  }
  .sm\:max-h-s28 {
    max-height: 7rem !important;
  }
  .sm\:max-h-s32 {
    max-height: 8rem !important;
  }
  .sm\:max-h-s36 {
    max-height: 9rem !important;
  }
  .sm\:max-h-s40 {
    max-height: 10rem !important;
  }
  .sm\:max-h-s44 {
    max-height: 11rem !important;
  }
  .sm\:max-h-s48 {
    max-height: 12rem !important;
  }
  .sm\:max-h-s49 {
    max-height: 12.25rem !important;
  }
  .sm\:max-h-s50 {
    max-height: 12.5rem !important;
  }
  .sm\:max-h-s52 {
    max-height: 13rem !important;
  }
  .sm\:max-h-s54 {
    max-height: 13.5rem !important;
  }
  .sm\:max-h-s55 {
    max-height: 13.75rem !important;
  }
  .sm\:max-h-s56 {
    max-height: 14rem !important;
  }
  .sm\:max-h-s1em {
    max-height: 0.25em !important;
  }
  .sm\:max-h-s2em {
    max-height: 0.5em !important;
  }
  .sm\:max-h-s3em {
    max-height: 0.75em !important;
  }
  .sm\:max-h-s4em {
    max-height: 1em !important;
  }
  .sm\:max-h-s5em {
    max-height: 1.25em !important;
  }
  .sm\:max-h-s6em {
    max-height: 1.5em !important;
  }
  .sm\:max-h-s8em {
    max-height: 2em !important;
  }
  .sm\:max-h-s10em {
    max-height: 2.5em !important;
  }
  .sm\:max-h-s12em {
    max-height: 3em !important;
  }
  .sm\:max-h-s14em {
    max-height: 3.5em !important;
  }
  .sm\:max-h-s16em {
    max-height: 4em !important;
  }
  .sm\:max-h-s18em {
    max-height: 4.5em !important;
  }
  .sm\:max-h-s20em {
    max-height: 5em !important;
  }
  .sm\:max-h-s24em {
    max-height: 6em !important;
  }
  .sm\:max-h-s26em {
    max-height: 6.5em !important;
  }
  .sm\:max-h-s28em {
    max-height: 7em !important;
  }
  .sm\:max-h-s32em {
    max-height: 8em !important;
  }
  .sm\:max-h-s36em {
    max-height: 9em !important;
  }
  .sm\:max-h-s40em {
    max-height: 10em !important;
  }
  .sm\:max-h-s44em {
    max-height: 11em !important;
  }
  .sm\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .sm\:max-h-s48em {
    max-height: 12em !important;
  }
  .sm\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .sm\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .sm\:max-h-s52em {
    max-height: 13em !important;
  }
  .sm\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .sm\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .sm\:max-h-s56em {
    max-height: 14em !important;
  }
  .sm\:max-h-s70em {
    max-height: 18em !important;
  }
  .sm\:w-s1 {
    width: 0.25rem !important;
  }
  .sm\:w-s2 {
    width: 0.5rem !important;
  }
  .sm\:w-s3 {
    width: 0.75rem !important;
  }
  .sm\:w-s4 {
    width: 1rem !important;
  }
  .sm\:w-s5 {
    width: 1.25rem !important;
  }
  .sm\:w-s6 {
    width: 1.5rem !important;
  }
  .sm\:w-s8 {
    width: 2rem !important;
  }
  .sm\:w-s10 {
    width: 2.5rem !important;
  }
  .sm\:w-s12 {
    width: 3rem !important;
  }
  .sm\:w-s16 {
    width: 4rem !important;
  }
  .sm\:w-s20 {
    width: 5rem !important;
  }
  .sm\:w-s24 {
    width: 6rem !important;
  }
  .sm\:w-s28 {
    width: 7rem !important;
  }
  .sm\:w-s32 {
    width: 8rem !important;
  }
  .sm\:w-s36 {
    width: 9rem !important;
  }
  .sm\:w-s40 {
    width: 10rem !important;
  }
  .sm\:w-s44 {
    width: 11rem !important;
  }
  .sm\:w-s48 {
    width: 12rem !important;
  }
  .sm\:w-s49 {
    width: 12.25rem !important;
  }
  .sm\:w-s50 {
    width: 12.5rem !important;
  }
  .sm\:w-s52 {
    width: 13rem !important;
  }
  .sm\:w-s54 {
    width: 13.5rem !important;
  }
  .sm\:w-s55 {
    width: 13.75rem !important;
  }
  .sm\:w-s56 {
    width: 14rem !important;
  }
  .sm\:w-s1em {
    width: 0.25em !important;
  }
  .sm\:w-s2em {
    width: 0.5em !important;
  }
  .sm\:w-s3em {
    width: 0.75em !important;
  }
  .sm\:w-s4em {
    width: 1em !important;
  }
  .sm\:w-s5em {
    width: 1.25em !important;
  }
  .sm\:w-s6em {
    width: 1.5em !important;
  }
  .sm\:w-s8em {
    width: 2em !important;
  }
  .sm\:w-s10em {
    width: 2.5em !important;
  }
  .sm\:w-s12em {
    width: 3em !important;
  }
  .sm\:w-s14em {
    width: 3.5em !important;
  }
  .sm\:w-s16em {
    width: 4em !important;
  }
  .sm\:w-s18em {
    width: 4.5em !important;
  }
  .sm\:w-s20em {
    width: 5em !important;
  }
  .sm\:w-s24em {
    width: 6em !important;
  }
  .sm\:w-s26em {
    width: 6.5em !important;
  }
  .sm\:w-s28em {
    width: 7em !important;
  }
  .sm\:w-s32em {
    width: 8em !important;
  }
  .sm\:w-s36em {
    width: 9em !important;
  }
  .sm\:w-s40em {
    width: 10em !important;
  }
  .sm\:w-s44em {
    width: 11em !important;
  }
  .sm\:w-s46em {
    width: 11.5em !important;
  }
  .sm\:w-s48em {
    width: 12em !important;
  }
  .sm\:w-s49em {
    width: 12.25em !important;
  }
  .sm\:w-s50em {
    width: 12.5em !important;
  }
  .sm\:w-s52em {
    width: 13em !important;
  }
  .sm\:w-s54em {
    width: 13.5em !important;
  }
  .sm\:w-s55em {
    width: 13.75em !important;
  }
  .sm\:w-s56em {
    width: 14em !important;
  }
  .sm\:w-s70em {
    width: 18em !important;
  }
  .sm\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .sm\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .sm\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .sm\:min-w-s4 {
    min-width: 1rem !important;
  }
  .sm\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .sm\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .sm\:min-w-s8 {
    min-width: 2rem !important;
  }
  .sm\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .sm\:min-w-s12 {
    min-width: 3rem !important;
  }
  .sm\:min-w-s16 {
    min-width: 4rem !important;
  }
  .sm\:min-w-s20 {
    min-width: 5rem !important;
  }
  .sm\:min-w-s24 {
    min-width: 6rem !important;
  }
  .sm\:min-w-s28 {
    min-width: 7rem !important;
  }
  .sm\:min-w-s32 {
    min-width: 8rem !important;
  }
  .sm\:min-w-s36 {
    min-width: 9rem !important;
  }
  .sm\:min-w-s40 {
    min-width: 10rem !important;
  }
  .sm\:min-w-s44 {
    min-width: 11rem !important;
  }
  .sm\:min-w-s48 {
    min-width: 12rem !important;
  }
  .sm\:min-w-s49 {
    min-width: 12.25rem !important;
  }
  .sm\:min-w-s50 {
    min-width: 12.5rem !important;
  }
  .sm\:min-w-s52 {
    min-width: 13rem !important;
  }
  .sm\:min-w-s54 {
    min-width: 13.5rem !important;
  }
  .sm\:min-w-s55 {
    min-width: 13.75rem !important;
  }
  .sm\:min-w-s56 {
    min-width: 14rem !important;
  }
  .sm\:min-w-s1em {
    min-width: 0.25em !important;
  }
  .sm\:min-w-s2em {
    min-width: 0.5em !important;
  }
  .sm\:min-w-s3em {
    min-width: 0.75em !important;
  }
  .sm\:min-w-s4em {
    min-width: 1em !important;
  }
  .sm\:min-w-s5em {
    min-width: 1.25em !important;
  }
  .sm\:min-w-s6em {
    min-width: 1.5em !important;
  }
  .sm\:min-w-s8em {
    min-width: 2em !important;
  }
  .sm\:min-w-s10em {
    min-width: 2.5em !important;
  }
  .sm\:min-w-s12em {
    min-width: 3em !important;
  }
  .sm\:min-w-s14em {
    min-width: 3.5em !important;
  }
  .sm\:min-w-s16em {
    min-width: 4em !important;
  }
  .sm\:min-w-s18em {
    min-width: 4.5em !important;
  }
  .sm\:min-w-s20em {
    min-width: 5em !important;
  }
  .sm\:min-w-s24em {
    min-width: 6em !important;
  }
  .sm\:min-w-s26em {
    min-width: 6.5em !important;
  }
  .sm\:min-w-s28em {
    min-width: 7em !important;
  }
  .sm\:min-w-s32em {
    min-width: 8em !important;
  }
  .sm\:min-w-s36em {
    min-width: 9em !important;
  }
  .sm\:min-w-s40em {
    min-width: 10em !important;
  }
  .sm\:min-w-s44em {
    min-width: 11em !important;
  }
  .sm\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .sm\:min-w-s48em {
    min-width: 12em !important;
  }
  .sm\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .sm\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .sm\:min-w-s52em {
    min-width: 13em !important;
  }
  .sm\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .sm\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .sm\:min-w-s56em {
    min-width: 14em !important;
  }
  .sm\:min-w-s70em {
    min-width: 18em !important;
  }
  .sm\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .sm\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .sm\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .sm\:max-w-s4 {
    max-width: 1rem !important;
  }
  .sm\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .sm\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .sm\:max-w-s8 {
    max-width: 2rem !important;
  }
  .sm\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .sm\:max-w-s12 {
    max-width: 3rem !important;
  }
  .sm\:max-w-s16 {
    max-width: 4rem !important;
  }
  .sm\:max-w-s20 {
    max-width: 5rem !important;
  }
  .sm\:max-w-s24 {
    max-width: 6rem !important;
  }
  .sm\:max-w-s28 {
    max-width: 7rem !important;
  }
  .sm\:max-w-s32 {
    max-width: 8rem !important;
  }
  .sm\:max-w-s36 {
    max-width: 9rem !important;
  }
  .sm\:max-w-s40 {
    max-width: 10rem !important;
  }
  .sm\:max-w-s44 {
    max-width: 11rem !important;
  }
  .sm\:max-w-s48 {
    max-width: 12rem !important;
  }
  .sm\:max-w-s49 {
    max-width: 12.25rem !important;
  }
  .sm\:max-w-s50 {
    max-width: 12.5rem !important;
  }
  .sm\:max-w-s52 {
    max-width: 13rem !important;
  }
  .sm\:max-w-s54 {
    max-width: 13.5rem !important;
  }
  .sm\:max-w-s55 {
    max-width: 13.75rem !important;
  }
  .sm\:max-w-s56 {
    max-width: 14rem !important;
  }
  .sm\:max-w-s1em {
    max-width: 0.25em !important;
  }
  .sm\:max-w-s2em {
    max-width: 0.5em !important;
  }
  .sm\:max-w-s3em {
    max-width: 0.75em !important;
  }
  .sm\:max-w-s4em {
    max-width: 1em !important;
  }
  .sm\:max-w-s5em {
    max-width: 1.25em !important;
  }
  .sm\:max-w-s6em {
    max-width: 1.5em !important;
  }
  .sm\:max-w-s8em {
    max-width: 2em !important;
  }
  .sm\:max-w-s10em {
    max-width: 2.5em !important;
  }
  .sm\:max-w-s12em {
    max-width: 3em !important;
  }
  .sm\:max-w-s14em {
    max-width: 3.5em !important;
  }
  .sm\:max-w-s16em {
    max-width: 4em !important;
  }
  .sm\:max-w-s18em {
    max-width: 4.5em !important;
  }
  .sm\:max-w-s20em {
    max-width: 5em !important;
  }
  .sm\:max-w-s24em {
    max-width: 6em !important;
  }
  .sm\:max-w-s26em {
    max-width: 6.5em !important;
  }
  .sm\:max-w-s28em {
    max-width: 7em !important;
  }
  .sm\:max-w-s32em {
    max-width: 8em !important;
  }
  .sm\:max-w-s36em {
    max-width: 9em !important;
  }
  .sm\:max-w-s40em {
    max-width: 10em !important;
  }
  .sm\:max-w-s44em {
    max-width: 11em !important;
  }
  .sm\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .sm\:max-w-s48em {
    max-width: 12em !important;
  }
  .sm\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .sm\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .sm\:max-w-s52em {
    max-width: 13em !important;
  }
  .sm\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .sm\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .sm\:max-w-s56em {
    max-width: 14em !important;
  }
  .sm\:max-w-s70em {
    max-width: 18em !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:h-s1 {
    height: 0.25rem !important;
  }
  .md\:h-s2 {
    height: 0.5rem !important;
  }
  .md\:h-s3 {
    height: 0.75rem !important;
  }
  .md\:h-s4 {
    height: 1rem !important;
  }
  .md\:h-s5 {
    height: 1.25rem !important;
  }
  .md\:h-s6 {
    height: 1.5rem !important;
  }
  .md\:h-s8 {
    height: 2rem !important;
  }
  .md\:h-s10 {
    height: 2.5rem !important;
  }
  .md\:h-s12 {
    height: 3rem !important;
  }
  .md\:h-s16 {
    height: 4rem !important;
  }
  .md\:h-s20 {
    height: 5rem !important;
  }
  .md\:h-s24 {
    height: 6rem !important;
  }
  .md\:h-s28 {
    height: 7rem !important;
  }
  .md\:h-s32 {
    height: 8rem !important;
  }
  .md\:h-s36 {
    height: 9rem !important;
  }
  .md\:h-s40 {
    height: 10rem !important;
  }
  .md\:h-s44 {
    height: 11rem !important;
  }
  .md\:h-s48 {
    height: 12rem !important;
  }
  .md\:h-s49 {
    height: 12.25rem !important;
  }
  .md\:h-s50 {
    height: 12.5rem !important;
  }
  .md\:h-s52 {
    height: 13rem !important;
  }
  .md\:h-s54 {
    height: 13.5rem !important;
  }
  .md\:h-s55 {
    height: 13.75rem !important;
  }
  .md\:h-s56 {
    height: 14rem !important;
  }
  .md\:h-s1em {
    height: 0.25em !important;
  }
  .md\:h-s2em {
    height: 0.5em !important;
  }
  .md\:h-s3em {
    height: 0.75em !important;
  }
  .md\:h-s4em {
    height: 1em !important;
  }
  .md\:h-s5em {
    height: 1.25em !important;
  }
  .md\:h-s6em {
    height: 1.5em !important;
  }
  .md\:h-s8em {
    height: 2em !important;
  }
  .md\:h-s10em {
    height: 2.5em !important;
  }
  .md\:h-s12em {
    height: 3em !important;
  }
  .md\:h-s14em {
    height: 3.5em !important;
  }
  .md\:h-s16em {
    height: 4em !important;
  }
  .md\:h-s18em {
    height: 4.5em !important;
  }
  .md\:h-s20em {
    height: 5em !important;
  }
  .md\:h-s24em {
    height: 6em !important;
  }
  .md\:h-s26em {
    height: 6.5em !important;
  }
  .md\:h-s28em {
    height: 7em !important;
  }
  .md\:h-s32em {
    height: 8em !important;
  }
  .md\:h-s36em {
    height: 9em !important;
  }
  .md\:h-s40em {
    height: 10em !important;
  }
  .md\:h-s44em {
    height: 11em !important;
  }
  .md\:h-s46em {
    height: 11.5em !important;
  }
  .md\:h-s48em {
    height: 12em !important;
  }
  .md\:h-s49em {
    height: 12.25em !important;
  }
  .md\:h-s50em {
    height: 12.5em !important;
  }
  .md\:h-s52em {
    height: 13em !important;
  }
  .md\:h-s54em {
    height: 13.5em !important;
  }
  .md\:h-s55em {
    height: 13.75em !important;
  }
  .md\:h-s56em {
    height: 14em !important;
  }
  .md\:h-s70em {
    height: 18em !important;
  }
  .md\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .md\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .md\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .md\:min-h-s4 {
    min-height: 1rem !important;
  }
  .md\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .md\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .md\:min-h-s8 {
    min-height: 2rem !important;
  }
  .md\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .md\:min-h-s12 {
    min-height: 3rem !important;
  }
  .md\:min-h-s16 {
    min-height: 4rem !important;
  }
  .md\:min-h-s20 {
    min-height: 5rem !important;
  }
  .md\:min-h-s24 {
    min-height: 6rem !important;
  }
  .md\:min-h-s28 {
    min-height: 7rem !important;
  }
  .md\:min-h-s32 {
    min-height: 8rem !important;
  }
  .md\:min-h-s36 {
    min-height: 9rem !important;
  }
  .md\:min-h-s40 {
    min-height: 10rem !important;
  }
  .md\:min-h-s44 {
    min-height: 11rem !important;
  }
  .md\:min-h-s48 {
    min-height: 12rem !important;
  }
  .md\:min-h-s49 {
    min-height: 12.25rem !important;
  }
  .md\:min-h-s50 {
    min-height: 12.5rem !important;
  }
  .md\:min-h-s52 {
    min-height: 13rem !important;
  }
  .md\:min-h-s54 {
    min-height: 13.5rem !important;
  }
  .md\:min-h-s55 {
    min-height: 13.75rem !important;
  }
  .md\:min-h-s56 {
    min-height: 14rem !important;
  }
  .md\:min-h-s1em {
    min-height: 0.25em !important;
  }
  .md\:min-h-s2em {
    min-height: 0.5em !important;
  }
  .md\:min-h-s3em {
    min-height: 0.75em !important;
  }
  .md\:min-h-s4em {
    min-height: 1em !important;
  }
  .md\:min-h-s5em {
    min-height: 1.25em !important;
  }
  .md\:min-h-s6em {
    min-height: 1.5em !important;
  }
  .md\:min-h-s8em {
    min-height: 2em !important;
  }
  .md\:min-h-s10em {
    min-height: 2.5em !important;
  }
  .md\:min-h-s12em {
    min-height: 3em !important;
  }
  .md\:min-h-s14em {
    min-height: 3.5em !important;
  }
  .md\:min-h-s16em {
    min-height: 4em !important;
  }
  .md\:min-h-s18em {
    min-height: 4.5em !important;
  }
  .md\:min-h-s20em {
    min-height: 5em !important;
  }
  .md\:min-h-s24em {
    min-height: 6em !important;
  }
  .md\:min-h-s26em {
    min-height: 6.5em !important;
  }
  .md\:min-h-s28em {
    min-height: 7em !important;
  }
  .md\:min-h-s32em {
    min-height: 8em !important;
  }
  .md\:min-h-s36em {
    min-height: 9em !important;
  }
  .md\:min-h-s40em {
    min-height: 10em !important;
  }
  .md\:min-h-s44em {
    min-height: 11em !important;
  }
  .md\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .md\:min-h-s48em {
    min-height: 12em !important;
  }
  .md\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .md\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .md\:min-h-s52em {
    min-height: 13em !important;
  }
  .md\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .md\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .md\:min-h-s56em {
    min-height: 14em !important;
  }
  .md\:min-h-s70em {
    min-height: 18em !important;
  }
  .md\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .md\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .md\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .md\:max-h-s4 {
    max-height: 1rem !important;
  }
  .md\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .md\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .md\:max-h-s8 {
    max-height: 2rem !important;
  }
  .md\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .md\:max-h-s12 {
    max-height: 3rem !important;
  }
  .md\:max-h-s16 {
    max-height: 4rem !important;
  }
  .md\:max-h-s20 {
    max-height: 5rem !important;
  }
  .md\:max-h-s24 {
    max-height: 6rem !important;
  }
  .md\:max-h-s28 {
    max-height: 7rem !important;
  }
  .md\:max-h-s32 {
    max-height: 8rem !important;
  }
  .md\:max-h-s36 {
    max-height: 9rem !important;
  }
  .md\:max-h-s40 {
    max-height: 10rem !important;
  }
  .md\:max-h-s44 {
    max-height: 11rem !important;
  }
  .md\:max-h-s48 {
    max-height: 12rem !important;
  }
  .md\:max-h-s49 {
    max-height: 12.25rem !important;
  }
  .md\:max-h-s50 {
    max-height: 12.5rem !important;
  }
  .md\:max-h-s52 {
    max-height: 13rem !important;
  }
  .md\:max-h-s54 {
    max-height: 13.5rem !important;
  }
  .md\:max-h-s55 {
    max-height: 13.75rem !important;
  }
  .md\:max-h-s56 {
    max-height: 14rem !important;
  }
  .md\:max-h-s1em {
    max-height: 0.25em !important;
  }
  .md\:max-h-s2em {
    max-height: 0.5em !important;
  }
  .md\:max-h-s3em {
    max-height: 0.75em !important;
  }
  .md\:max-h-s4em {
    max-height: 1em !important;
  }
  .md\:max-h-s5em {
    max-height: 1.25em !important;
  }
  .md\:max-h-s6em {
    max-height: 1.5em !important;
  }
  .md\:max-h-s8em {
    max-height: 2em !important;
  }
  .md\:max-h-s10em {
    max-height: 2.5em !important;
  }
  .md\:max-h-s12em {
    max-height: 3em !important;
  }
  .md\:max-h-s14em {
    max-height: 3.5em !important;
  }
  .md\:max-h-s16em {
    max-height: 4em !important;
  }
  .md\:max-h-s18em {
    max-height: 4.5em !important;
  }
  .md\:max-h-s20em {
    max-height: 5em !important;
  }
  .md\:max-h-s24em {
    max-height: 6em !important;
  }
  .md\:max-h-s26em {
    max-height: 6.5em !important;
  }
  .md\:max-h-s28em {
    max-height: 7em !important;
  }
  .md\:max-h-s32em {
    max-height: 8em !important;
  }
  .md\:max-h-s36em {
    max-height: 9em !important;
  }
  .md\:max-h-s40em {
    max-height: 10em !important;
  }
  .md\:max-h-s44em {
    max-height: 11em !important;
  }
  .md\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .md\:max-h-s48em {
    max-height: 12em !important;
  }
  .md\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .md\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .md\:max-h-s52em {
    max-height: 13em !important;
  }
  .md\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .md\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .md\:max-h-s56em {
    max-height: 14em !important;
  }
  .md\:max-h-s70em {
    max-height: 18em !important;
  }
  .md\:w-s1 {
    width: 0.25rem !important;
  }
  .md\:w-s2 {
    width: 0.5rem !important;
  }
  .md\:w-s3 {
    width: 0.75rem !important;
  }
  .md\:w-s4 {
    width: 1rem !important;
  }
  .md\:w-s5 {
    width: 1.25rem !important;
  }
  .md\:w-s6 {
    width: 1.5rem !important;
  }
  .md\:w-s8 {
    width: 2rem !important;
  }
  .md\:w-s10 {
    width: 2.5rem !important;
  }
  .md\:w-s12 {
    width: 3rem !important;
  }
  .md\:w-s16 {
    width: 4rem !important;
  }
  .md\:w-s20 {
    width: 5rem !important;
  }
  .md\:w-s24 {
    width: 6rem !important;
  }
  .md\:w-s28 {
    width: 7rem !important;
  }
  .md\:w-s32 {
    width: 8rem !important;
  }
  .md\:w-s36 {
    width: 9rem !important;
  }
  .md\:w-s40 {
    width: 10rem !important;
  }
  .md\:w-s44 {
    width: 11rem !important;
  }
  .md\:w-s48 {
    width: 12rem !important;
  }
  .md\:w-s49 {
    width: 12.25rem !important;
  }
  .md\:w-s50 {
    width: 12.5rem !important;
  }
  .md\:w-s52 {
    width: 13rem !important;
  }
  .md\:w-s54 {
    width: 13.5rem !important;
  }
  .md\:w-s55 {
    width: 13.75rem !important;
  }
  .md\:w-s56 {
    width: 14rem !important;
  }
  .md\:w-s1em {
    width: 0.25em !important;
  }
  .md\:w-s2em {
    width: 0.5em !important;
  }
  .md\:w-s3em {
    width: 0.75em !important;
  }
  .md\:w-s4em {
    width: 1em !important;
  }
  .md\:w-s5em {
    width: 1.25em !important;
  }
  .md\:w-s6em {
    width: 1.5em !important;
  }
  .md\:w-s8em {
    width: 2em !important;
  }
  .md\:w-s10em {
    width: 2.5em !important;
  }
  .md\:w-s12em {
    width: 3em !important;
  }
  .md\:w-s14em {
    width: 3.5em !important;
  }
  .md\:w-s16em {
    width: 4em !important;
  }
  .md\:w-s18em {
    width: 4.5em !important;
  }
  .md\:w-s20em {
    width: 5em !important;
  }
  .md\:w-s24em {
    width: 6em !important;
  }
  .md\:w-s26em {
    width: 6.5em !important;
  }
  .md\:w-s28em {
    width: 7em !important;
  }
  .md\:w-s32em {
    width: 8em !important;
  }
  .md\:w-s36em {
    width: 9em !important;
  }
  .md\:w-s40em {
    width: 10em !important;
  }
  .md\:w-s44em {
    width: 11em !important;
  }
  .md\:w-s46em {
    width: 11.5em !important;
  }
  .md\:w-s48em {
    width: 12em !important;
  }
  .md\:w-s49em {
    width: 12.25em !important;
  }
  .md\:w-s50em {
    width: 12.5em !important;
  }
  .md\:w-s52em {
    width: 13em !important;
  }
  .md\:w-s54em {
    width: 13.5em !important;
  }
  .md\:w-s55em {
    width: 13.75em !important;
  }
  .md\:w-s56em {
    width: 14em !important;
  }
  .md\:w-s70em {
    width: 18em !important;
  }
  .md\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .md\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .md\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .md\:min-w-s4 {
    min-width: 1rem !important;
  }
  .md\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .md\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .md\:min-w-s8 {
    min-width: 2rem !important;
  }
  .md\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .md\:min-w-s12 {
    min-width: 3rem !important;
  }
  .md\:min-w-s16 {
    min-width: 4rem !important;
  }
  .md\:min-w-s20 {
    min-width: 5rem !important;
  }
  .md\:min-w-s24 {
    min-width: 6rem !important;
  }
  .md\:min-w-s28 {
    min-width: 7rem !important;
  }
  .md\:min-w-s32 {
    min-width: 8rem !important;
  }
  .md\:min-w-s36 {
    min-width: 9rem !important;
  }
  .md\:min-w-s40 {
    min-width: 10rem !important;
  }
  .md\:min-w-s44 {
    min-width: 11rem !important;
  }
  .md\:min-w-s48 {
    min-width: 12rem !important;
  }
  .md\:min-w-s49 {
    min-width: 12.25rem !important;
  }
  .md\:min-w-s50 {
    min-width: 12.5rem !important;
  }
  .md\:min-w-s52 {
    min-width: 13rem !important;
  }
  .md\:min-w-s54 {
    min-width: 13.5rem !important;
  }
  .md\:min-w-s55 {
    min-width: 13.75rem !important;
  }
  .md\:min-w-s56 {
    min-width: 14rem !important;
  }
  .md\:min-w-s1em {
    min-width: 0.25em !important;
  }
  .md\:min-w-s2em {
    min-width: 0.5em !important;
  }
  .md\:min-w-s3em {
    min-width: 0.75em !important;
  }
  .md\:min-w-s4em {
    min-width: 1em !important;
  }
  .md\:min-w-s5em {
    min-width: 1.25em !important;
  }
  .md\:min-w-s6em {
    min-width: 1.5em !important;
  }
  .md\:min-w-s8em {
    min-width: 2em !important;
  }
  .md\:min-w-s10em {
    min-width: 2.5em !important;
  }
  .md\:min-w-s12em {
    min-width: 3em !important;
  }
  .md\:min-w-s14em {
    min-width: 3.5em !important;
  }
  .md\:min-w-s16em {
    min-width: 4em !important;
  }
  .md\:min-w-s18em {
    min-width: 4.5em !important;
  }
  .md\:min-w-s20em {
    min-width: 5em !important;
  }
  .md\:min-w-s24em {
    min-width: 6em !important;
  }
  .md\:min-w-s26em {
    min-width: 6.5em !important;
  }
  .md\:min-w-s28em {
    min-width: 7em !important;
  }
  .md\:min-w-s32em {
    min-width: 8em !important;
  }
  .md\:min-w-s36em {
    min-width: 9em !important;
  }
  .md\:min-w-s40em {
    min-width: 10em !important;
  }
  .md\:min-w-s44em {
    min-width: 11em !important;
  }
  .md\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .md\:min-w-s48em {
    min-width: 12em !important;
  }
  .md\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .md\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .md\:min-w-s52em {
    min-width: 13em !important;
  }
  .md\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .md\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .md\:min-w-s56em {
    min-width: 14em !important;
  }
  .md\:min-w-s70em {
    min-width: 18em !important;
  }
  .md\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .md\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .md\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .md\:max-w-s4 {
    max-width: 1rem !important;
  }
  .md\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .md\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .md\:max-w-s8 {
    max-width: 2rem !important;
  }
  .md\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .md\:max-w-s12 {
    max-width: 3rem !important;
  }
  .md\:max-w-s16 {
    max-width: 4rem !important;
  }
  .md\:max-w-s20 {
    max-width: 5rem !important;
  }
  .md\:max-w-s24 {
    max-width: 6rem !important;
  }
  .md\:max-w-s28 {
    max-width: 7rem !important;
  }
  .md\:max-w-s32 {
    max-width: 8rem !important;
  }
  .md\:max-w-s36 {
    max-width: 9rem !important;
  }
  .md\:max-w-s40 {
    max-width: 10rem !important;
  }
  .md\:max-w-s44 {
    max-width: 11rem !important;
  }
  .md\:max-w-s48 {
    max-width: 12rem !important;
  }
  .md\:max-w-s49 {
    max-width: 12.25rem !important;
  }
  .md\:max-w-s50 {
    max-width: 12.5rem !important;
  }
  .md\:max-w-s52 {
    max-width: 13rem !important;
  }
  .md\:max-w-s54 {
    max-width: 13.5rem !important;
  }
  .md\:max-w-s55 {
    max-width: 13.75rem !important;
  }
  .md\:max-w-s56 {
    max-width: 14rem !important;
  }
  .md\:max-w-s1em {
    max-width: 0.25em !important;
  }
  .md\:max-w-s2em {
    max-width: 0.5em !important;
  }
  .md\:max-w-s3em {
    max-width: 0.75em !important;
  }
  .md\:max-w-s4em {
    max-width: 1em !important;
  }
  .md\:max-w-s5em {
    max-width: 1.25em !important;
  }
  .md\:max-w-s6em {
    max-width: 1.5em !important;
  }
  .md\:max-w-s8em {
    max-width: 2em !important;
  }
  .md\:max-w-s10em {
    max-width: 2.5em !important;
  }
  .md\:max-w-s12em {
    max-width: 3em !important;
  }
  .md\:max-w-s14em {
    max-width: 3.5em !important;
  }
  .md\:max-w-s16em {
    max-width: 4em !important;
  }
  .md\:max-w-s18em {
    max-width: 4.5em !important;
  }
  .md\:max-w-s20em {
    max-width: 5em !important;
  }
  .md\:max-w-s24em {
    max-width: 6em !important;
  }
  .md\:max-w-s26em {
    max-width: 6.5em !important;
  }
  .md\:max-w-s28em {
    max-width: 7em !important;
  }
  .md\:max-w-s32em {
    max-width: 8em !important;
  }
  .md\:max-w-s36em {
    max-width: 9em !important;
  }
  .md\:max-w-s40em {
    max-width: 10em !important;
  }
  .md\:max-w-s44em {
    max-width: 11em !important;
  }
  .md\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .md\:max-w-s48em {
    max-width: 12em !important;
  }
  .md\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .md\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .md\:max-w-s52em {
    max-width: 13em !important;
  }
  .md\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .md\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .md\:max-w-s56em {
    max-width: 14em !important;
  }
  .md\:max-w-s70em {
    max-width: 18em !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:h-s1 {
    height: 0.25rem !important;
  }
  .lg\:h-s2 {
    height: 0.5rem !important;
  }
  .lg\:h-s3 {
    height: 0.75rem !important;
  }
  .lg\:h-s4 {
    height: 1rem !important;
  }
  .lg\:h-s5 {
    height: 1.25rem !important;
  }
  .lg\:h-s6 {
    height: 1.5rem !important;
  }
  .lg\:h-s8 {
    height: 2rem !important;
  }
  .lg\:h-s10 {
    height: 2.5rem !important;
  }
  .lg\:h-s12 {
    height: 3rem !important;
  }
  .lg\:h-s16 {
    height: 4rem !important;
  }
  .lg\:h-s20 {
    height: 5rem !important;
  }
  .lg\:h-s24 {
    height: 6rem !important;
  }
  .lg\:h-s28 {
    height: 7rem !important;
  }
  .lg\:h-s32 {
    height: 8rem !important;
  }
  .lg\:h-s36 {
    height: 9rem !important;
  }
  .lg\:h-s40 {
    height: 10rem !important;
  }
  .lg\:h-s44 {
    height: 11rem !important;
  }
  .lg\:h-s48 {
    height: 12rem !important;
  }
  .lg\:h-s49 {
    height: 12.25rem !important;
  }
  .lg\:h-s50 {
    height: 12.5rem !important;
  }
  .lg\:h-s52 {
    height: 13rem !important;
  }
  .lg\:h-s54 {
    height: 13.5rem !important;
  }
  .lg\:h-s55 {
    height: 13.75rem !important;
  }
  .lg\:h-s56 {
    height: 14rem !important;
  }
  .lg\:h-s1em {
    height: 0.25em !important;
  }
  .lg\:h-s2em {
    height: 0.5em !important;
  }
  .lg\:h-s3em {
    height: 0.75em !important;
  }
  .lg\:h-s4em {
    height: 1em !important;
  }
  .lg\:h-s5em {
    height: 1.25em !important;
  }
  .lg\:h-s6em {
    height: 1.5em !important;
  }
  .lg\:h-s8em {
    height: 2em !important;
  }
  .lg\:h-s10em {
    height: 2.5em !important;
  }
  .lg\:h-s12em {
    height: 3em !important;
  }
  .lg\:h-s14em {
    height: 3.5em !important;
  }
  .lg\:h-s16em {
    height: 4em !important;
  }
  .lg\:h-s18em {
    height: 4.5em !important;
  }
  .lg\:h-s20em {
    height: 5em !important;
  }
  .lg\:h-s24em {
    height: 6em !important;
  }
  .lg\:h-s26em {
    height: 6.5em !important;
  }
  .lg\:h-s28em {
    height: 7em !important;
  }
  .lg\:h-s32em {
    height: 8em !important;
  }
  .lg\:h-s36em {
    height: 9em !important;
  }
  .lg\:h-s40em {
    height: 10em !important;
  }
  .lg\:h-s44em {
    height: 11em !important;
  }
  .lg\:h-s46em {
    height: 11.5em !important;
  }
  .lg\:h-s48em {
    height: 12em !important;
  }
  .lg\:h-s49em {
    height: 12.25em !important;
  }
  .lg\:h-s50em {
    height: 12.5em !important;
  }
  .lg\:h-s52em {
    height: 13em !important;
  }
  .lg\:h-s54em {
    height: 13.5em !important;
  }
  .lg\:h-s55em {
    height: 13.75em !important;
  }
  .lg\:h-s56em {
    height: 14em !important;
  }
  .lg\:h-s70em {
    height: 18em !important;
  }
  .lg\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .lg\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .lg\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .lg\:min-h-s4 {
    min-height: 1rem !important;
  }
  .lg\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .lg\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .lg\:min-h-s8 {
    min-height: 2rem !important;
  }
  .lg\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .lg\:min-h-s12 {
    min-height: 3rem !important;
  }
  .lg\:min-h-s16 {
    min-height: 4rem !important;
  }
  .lg\:min-h-s20 {
    min-height: 5rem !important;
  }
  .lg\:min-h-s24 {
    min-height: 6rem !important;
  }
  .lg\:min-h-s28 {
    min-height: 7rem !important;
  }
  .lg\:min-h-s32 {
    min-height: 8rem !important;
  }
  .lg\:min-h-s36 {
    min-height: 9rem !important;
  }
  .lg\:min-h-s40 {
    min-height: 10rem !important;
  }
  .lg\:min-h-s44 {
    min-height: 11rem !important;
  }
  .lg\:min-h-s48 {
    min-height: 12rem !important;
  }
  .lg\:min-h-s49 {
    min-height: 12.25rem !important;
  }
  .lg\:min-h-s50 {
    min-height: 12.5rem !important;
  }
  .lg\:min-h-s52 {
    min-height: 13rem !important;
  }
  .lg\:min-h-s54 {
    min-height: 13.5rem !important;
  }
  .lg\:min-h-s55 {
    min-height: 13.75rem !important;
  }
  .lg\:min-h-s56 {
    min-height: 14rem !important;
  }
  .lg\:min-h-s1em {
    min-height: 0.25em !important;
  }
  .lg\:min-h-s2em {
    min-height: 0.5em !important;
  }
  .lg\:min-h-s3em {
    min-height: 0.75em !important;
  }
  .lg\:min-h-s4em {
    min-height: 1em !important;
  }
  .lg\:min-h-s5em {
    min-height: 1.25em !important;
  }
  .lg\:min-h-s6em {
    min-height: 1.5em !important;
  }
  .lg\:min-h-s8em {
    min-height: 2em !important;
  }
  .lg\:min-h-s10em {
    min-height: 2.5em !important;
  }
  .lg\:min-h-s12em {
    min-height: 3em !important;
  }
  .lg\:min-h-s14em {
    min-height: 3.5em !important;
  }
  .lg\:min-h-s16em {
    min-height: 4em !important;
  }
  .lg\:min-h-s18em {
    min-height: 4.5em !important;
  }
  .lg\:min-h-s20em {
    min-height: 5em !important;
  }
  .lg\:min-h-s24em {
    min-height: 6em !important;
  }
  .lg\:min-h-s26em {
    min-height: 6.5em !important;
  }
  .lg\:min-h-s28em {
    min-height: 7em !important;
  }
  .lg\:min-h-s32em {
    min-height: 8em !important;
  }
  .lg\:min-h-s36em {
    min-height: 9em !important;
  }
  .lg\:min-h-s40em {
    min-height: 10em !important;
  }
  .lg\:min-h-s44em {
    min-height: 11em !important;
  }
  .lg\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .lg\:min-h-s48em {
    min-height: 12em !important;
  }
  .lg\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .lg\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .lg\:min-h-s52em {
    min-height: 13em !important;
  }
  .lg\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .lg\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .lg\:min-h-s56em {
    min-height: 14em !important;
  }
  .lg\:min-h-s70em {
    min-height: 18em !important;
  }
  .lg\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .lg\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .lg\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .lg\:max-h-s4 {
    max-height: 1rem !important;
  }
  .lg\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .lg\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .lg\:max-h-s8 {
    max-height: 2rem !important;
  }
  .lg\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .lg\:max-h-s12 {
    max-height: 3rem !important;
  }
  .lg\:max-h-s16 {
    max-height: 4rem !important;
  }
  .lg\:max-h-s20 {
    max-height: 5rem !important;
  }
  .lg\:max-h-s24 {
    max-height: 6rem !important;
  }
  .lg\:max-h-s28 {
    max-height: 7rem !important;
  }
  .lg\:max-h-s32 {
    max-height: 8rem !important;
  }
  .lg\:max-h-s36 {
    max-height: 9rem !important;
  }
  .lg\:max-h-s40 {
    max-height: 10rem !important;
  }
  .lg\:max-h-s44 {
    max-height: 11rem !important;
  }
  .lg\:max-h-s48 {
    max-height: 12rem !important;
  }
  .lg\:max-h-s49 {
    max-height: 12.25rem !important;
  }
  .lg\:max-h-s50 {
    max-height: 12.5rem !important;
  }
  .lg\:max-h-s52 {
    max-height: 13rem !important;
  }
  .lg\:max-h-s54 {
    max-height: 13.5rem !important;
  }
  .lg\:max-h-s55 {
    max-height: 13.75rem !important;
  }
  .lg\:max-h-s56 {
    max-height: 14rem !important;
  }
  .lg\:max-h-s1em {
    max-height: 0.25em !important;
  }
  .lg\:max-h-s2em {
    max-height: 0.5em !important;
  }
  .lg\:max-h-s3em {
    max-height: 0.75em !important;
  }
  .lg\:max-h-s4em {
    max-height: 1em !important;
  }
  .lg\:max-h-s5em {
    max-height: 1.25em !important;
  }
  .lg\:max-h-s6em {
    max-height: 1.5em !important;
  }
  .lg\:max-h-s8em {
    max-height: 2em !important;
  }
  .lg\:max-h-s10em {
    max-height: 2.5em !important;
  }
  .lg\:max-h-s12em {
    max-height: 3em !important;
  }
  .lg\:max-h-s14em {
    max-height: 3.5em !important;
  }
  .lg\:max-h-s16em {
    max-height: 4em !important;
  }
  .lg\:max-h-s18em {
    max-height: 4.5em !important;
  }
  .lg\:max-h-s20em {
    max-height: 5em !important;
  }
  .lg\:max-h-s24em {
    max-height: 6em !important;
  }
  .lg\:max-h-s26em {
    max-height: 6.5em !important;
  }
  .lg\:max-h-s28em {
    max-height: 7em !important;
  }
  .lg\:max-h-s32em {
    max-height: 8em !important;
  }
  .lg\:max-h-s36em {
    max-height: 9em !important;
  }
  .lg\:max-h-s40em {
    max-height: 10em !important;
  }
  .lg\:max-h-s44em {
    max-height: 11em !important;
  }
  .lg\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .lg\:max-h-s48em {
    max-height: 12em !important;
  }
  .lg\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .lg\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .lg\:max-h-s52em {
    max-height: 13em !important;
  }
  .lg\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .lg\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .lg\:max-h-s56em {
    max-height: 14em !important;
  }
  .lg\:max-h-s70em {
    max-height: 18em !important;
  }
  .lg\:w-s1 {
    width: 0.25rem !important;
  }
  .lg\:w-s2 {
    width: 0.5rem !important;
  }
  .lg\:w-s3 {
    width: 0.75rem !important;
  }
  .lg\:w-s4 {
    width: 1rem !important;
  }
  .lg\:w-s5 {
    width: 1.25rem !important;
  }
  .lg\:w-s6 {
    width: 1.5rem !important;
  }
  .lg\:w-s8 {
    width: 2rem !important;
  }
  .lg\:w-s10 {
    width: 2.5rem !important;
  }
  .lg\:w-s12 {
    width: 3rem !important;
  }
  .lg\:w-s16 {
    width: 4rem !important;
  }
  .lg\:w-s20 {
    width: 5rem !important;
  }
  .lg\:w-s24 {
    width: 6rem !important;
  }
  .lg\:w-s28 {
    width: 7rem !important;
  }
  .lg\:w-s32 {
    width: 8rem !important;
  }
  .lg\:w-s36 {
    width: 9rem !important;
  }
  .lg\:w-s40 {
    width: 10rem !important;
  }
  .lg\:w-s44 {
    width: 11rem !important;
  }
  .lg\:w-s48 {
    width: 12rem !important;
  }
  .lg\:w-s49 {
    width: 12.25rem !important;
  }
  .lg\:w-s50 {
    width: 12.5rem !important;
  }
  .lg\:w-s52 {
    width: 13rem !important;
  }
  .lg\:w-s54 {
    width: 13.5rem !important;
  }
  .lg\:w-s55 {
    width: 13.75rem !important;
  }
  .lg\:w-s56 {
    width: 14rem !important;
  }
  .lg\:w-s1em {
    width: 0.25em !important;
  }
  .lg\:w-s2em {
    width: 0.5em !important;
  }
  .lg\:w-s3em {
    width: 0.75em !important;
  }
  .lg\:w-s4em {
    width: 1em !important;
  }
  .lg\:w-s5em {
    width: 1.25em !important;
  }
  .lg\:w-s6em {
    width: 1.5em !important;
  }
  .lg\:w-s8em {
    width: 2em !important;
  }
  .lg\:w-s10em {
    width: 2.5em !important;
  }
  .lg\:w-s12em {
    width: 3em !important;
  }
  .lg\:w-s14em {
    width: 3.5em !important;
  }
  .lg\:w-s16em {
    width: 4em !important;
  }
  .lg\:w-s18em {
    width: 4.5em !important;
  }
  .lg\:w-s20em {
    width: 5em !important;
  }
  .lg\:w-s24em {
    width: 6em !important;
  }
  .lg\:w-s26em {
    width: 6.5em !important;
  }
  .lg\:w-s28em {
    width: 7em !important;
  }
  .lg\:w-s32em {
    width: 8em !important;
  }
  .lg\:w-s36em {
    width: 9em !important;
  }
  .lg\:w-s40em {
    width: 10em !important;
  }
  .lg\:w-s44em {
    width: 11em !important;
  }
  .lg\:w-s46em {
    width: 11.5em !important;
  }
  .lg\:w-s48em {
    width: 12em !important;
  }
  .lg\:w-s49em {
    width: 12.25em !important;
  }
  .lg\:w-s50em {
    width: 12.5em !important;
  }
  .lg\:w-s52em {
    width: 13em !important;
  }
  .lg\:w-s54em {
    width: 13.5em !important;
  }
  .lg\:w-s55em {
    width: 13.75em !important;
  }
  .lg\:w-s56em {
    width: 14em !important;
  }
  .lg\:w-s70em {
    width: 18em !important;
  }
  .lg\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .lg\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .lg\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .lg\:min-w-s4 {
    min-width: 1rem !important;
  }
  .lg\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .lg\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .lg\:min-w-s8 {
    min-width: 2rem !important;
  }
  .lg\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .lg\:min-w-s12 {
    min-width: 3rem !important;
  }
  .lg\:min-w-s16 {
    min-width: 4rem !important;
  }
  .lg\:min-w-s20 {
    min-width: 5rem !important;
  }
  .lg\:min-w-s24 {
    min-width: 6rem !important;
  }
  .lg\:min-w-s28 {
    min-width: 7rem !important;
  }
  .lg\:min-w-s32 {
    min-width: 8rem !important;
  }
  .lg\:min-w-s36 {
    min-width: 9rem !important;
  }
  .lg\:min-w-s40 {
    min-width: 10rem !important;
  }
  .lg\:min-w-s44 {
    min-width: 11rem !important;
  }
  .lg\:min-w-s48 {
    min-width: 12rem !important;
  }
  .lg\:min-w-s49 {
    min-width: 12.25rem !important;
  }
  .lg\:min-w-s50 {
    min-width: 12.5rem !important;
  }
  .lg\:min-w-s52 {
    min-width: 13rem !important;
  }
  .lg\:min-w-s54 {
    min-width: 13.5rem !important;
  }
  .lg\:min-w-s55 {
    min-width: 13.75rem !important;
  }
  .lg\:min-w-s56 {
    min-width: 14rem !important;
  }
  .lg\:min-w-s1em {
    min-width: 0.25em !important;
  }
  .lg\:min-w-s2em {
    min-width: 0.5em !important;
  }
  .lg\:min-w-s3em {
    min-width: 0.75em !important;
  }
  .lg\:min-w-s4em {
    min-width: 1em !important;
  }
  .lg\:min-w-s5em {
    min-width: 1.25em !important;
  }
  .lg\:min-w-s6em {
    min-width: 1.5em !important;
  }
  .lg\:min-w-s8em {
    min-width: 2em !important;
  }
  .lg\:min-w-s10em {
    min-width: 2.5em !important;
  }
  .lg\:min-w-s12em {
    min-width: 3em !important;
  }
  .lg\:min-w-s14em {
    min-width: 3.5em !important;
  }
  .lg\:min-w-s16em {
    min-width: 4em !important;
  }
  .lg\:min-w-s18em {
    min-width: 4.5em !important;
  }
  .lg\:min-w-s20em {
    min-width: 5em !important;
  }
  .lg\:min-w-s24em {
    min-width: 6em !important;
  }
  .lg\:min-w-s26em {
    min-width: 6.5em !important;
  }
  .lg\:min-w-s28em {
    min-width: 7em !important;
  }
  .lg\:min-w-s32em {
    min-width: 8em !important;
  }
  .lg\:min-w-s36em {
    min-width: 9em !important;
  }
  .lg\:min-w-s40em {
    min-width: 10em !important;
  }
  .lg\:min-w-s44em {
    min-width: 11em !important;
  }
  .lg\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .lg\:min-w-s48em {
    min-width: 12em !important;
  }
  .lg\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .lg\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .lg\:min-w-s52em {
    min-width: 13em !important;
  }
  .lg\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .lg\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .lg\:min-w-s56em {
    min-width: 14em !important;
  }
  .lg\:min-w-s70em {
    min-width: 18em !important;
  }
  .lg\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .lg\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .lg\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .lg\:max-w-s4 {
    max-width: 1rem !important;
  }
  .lg\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .lg\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .lg\:max-w-s8 {
    max-width: 2rem !important;
  }
  .lg\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .lg\:max-w-s12 {
    max-width: 3rem !important;
  }
  .lg\:max-w-s16 {
    max-width: 4rem !important;
  }
  .lg\:max-w-s20 {
    max-width: 5rem !important;
  }
  .lg\:max-w-s24 {
    max-width: 6rem !important;
  }
  .lg\:max-w-s28 {
    max-width: 7rem !important;
  }
  .lg\:max-w-s32 {
    max-width: 8rem !important;
  }
  .lg\:max-w-s36 {
    max-width: 9rem !important;
  }
  .lg\:max-w-s40 {
    max-width: 10rem !important;
  }
  .lg\:max-w-s44 {
    max-width: 11rem !important;
  }
  .lg\:max-w-s48 {
    max-width: 12rem !important;
  }
  .lg\:max-w-s49 {
    max-width: 12.25rem !important;
  }
  .lg\:max-w-s50 {
    max-width: 12.5rem !important;
  }
  .lg\:max-w-s52 {
    max-width: 13rem !important;
  }
  .lg\:max-w-s54 {
    max-width: 13.5rem !important;
  }
  .lg\:max-w-s55 {
    max-width: 13.75rem !important;
  }
  .lg\:max-w-s56 {
    max-width: 14rem !important;
  }
  .lg\:max-w-s1em {
    max-width: 0.25em !important;
  }
  .lg\:max-w-s2em {
    max-width: 0.5em !important;
  }
  .lg\:max-w-s3em {
    max-width: 0.75em !important;
  }
  .lg\:max-w-s4em {
    max-width: 1em !important;
  }
  .lg\:max-w-s5em {
    max-width: 1.25em !important;
  }
  .lg\:max-w-s6em {
    max-width: 1.5em !important;
  }
  .lg\:max-w-s8em {
    max-width: 2em !important;
  }
  .lg\:max-w-s10em {
    max-width: 2.5em !important;
  }
  .lg\:max-w-s12em {
    max-width: 3em !important;
  }
  .lg\:max-w-s14em {
    max-width: 3.5em !important;
  }
  .lg\:max-w-s16em {
    max-width: 4em !important;
  }
  .lg\:max-w-s18em {
    max-width: 4.5em !important;
  }
  .lg\:max-w-s20em {
    max-width: 5em !important;
  }
  .lg\:max-w-s24em {
    max-width: 6em !important;
  }
  .lg\:max-w-s26em {
    max-width: 6.5em !important;
  }
  .lg\:max-w-s28em {
    max-width: 7em !important;
  }
  .lg\:max-w-s32em {
    max-width: 8em !important;
  }
  .lg\:max-w-s36em {
    max-width: 9em !important;
  }
  .lg\:max-w-s40em {
    max-width: 10em !important;
  }
  .lg\:max-w-s44em {
    max-width: 11em !important;
  }
  .lg\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .lg\:max-w-s48em {
    max-width: 12em !important;
  }
  .lg\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .lg\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .lg\:max-w-s52em {
    max-width: 13em !important;
  }
  .lg\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .lg\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .lg\:max-w-s56em {
    max-width: 14em !important;
  }
  .lg\:max-w-s70em {
    max-width: 18em !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:h-s1 {
    height: 0.25rem !important;
  }
  .xl\:h-s2 {
    height: 0.5rem !important;
  }
  .xl\:h-s3 {
    height: 0.75rem !important;
  }
  .xl\:h-s4 {
    height: 1rem !important;
  }
  .xl\:h-s5 {
    height: 1.25rem !important;
  }
  .xl\:h-s6 {
    height: 1.5rem !important;
  }
  .xl\:h-s8 {
    height: 2rem !important;
  }
  .xl\:h-s10 {
    height: 2.5rem !important;
  }
  .xl\:h-s12 {
    height: 3rem !important;
  }
  .xl\:h-s16 {
    height: 4rem !important;
  }
  .xl\:h-s20 {
    height: 5rem !important;
  }
  .xl\:h-s24 {
    height: 6rem !important;
  }
  .xl\:h-s28 {
    height: 7rem !important;
  }
  .xl\:h-s32 {
    height: 8rem !important;
  }
  .xl\:h-s36 {
    height: 9rem !important;
  }
  .xl\:h-s40 {
    height: 10rem !important;
  }
  .xl\:h-s44 {
    height: 11rem !important;
  }
  .xl\:h-s48 {
    height: 12rem !important;
  }
  .xl\:h-s49 {
    height: 12.25rem !important;
  }
  .xl\:h-s50 {
    height: 12.5rem !important;
  }
  .xl\:h-s52 {
    height: 13rem !important;
  }
  .xl\:h-s54 {
    height: 13.5rem !important;
  }
  .xl\:h-s55 {
    height: 13.75rem !important;
  }
  .xl\:h-s56 {
    height: 14rem !important;
  }
  .xl\:h-s1em {
    height: 0.25em !important;
  }
  .xl\:h-s2em {
    height: 0.5em !important;
  }
  .xl\:h-s3em {
    height: 0.75em !important;
  }
  .xl\:h-s4em {
    height: 1em !important;
  }
  .xl\:h-s5em {
    height: 1.25em !important;
  }
  .xl\:h-s6em {
    height: 1.5em !important;
  }
  .xl\:h-s8em {
    height: 2em !important;
  }
  .xl\:h-s10em {
    height: 2.5em !important;
  }
  .xl\:h-s12em {
    height: 3em !important;
  }
  .xl\:h-s14em {
    height: 3.5em !important;
  }
  .xl\:h-s16em {
    height: 4em !important;
  }
  .xl\:h-s18em {
    height: 4.5em !important;
  }
  .xl\:h-s20em {
    height: 5em !important;
  }
  .xl\:h-s24em {
    height: 6em !important;
  }
  .xl\:h-s26em {
    height: 6.5em !important;
  }
  .xl\:h-s28em {
    height: 7em !important;
  }
  .xl\:h-s32em {
    height: 8em !important;
  }
  .xl\:h-s36em {
    height: 9em !important;
  }
  .xl\:h-s40em {
    height: 10em !important;
  }
  .xl\:h-s44em {
    height: 11em !important;
  }
  .xl\:h-s46em {
    height: 11.5em !important;
  }
  .xl\:h-s48em {
    height: 12em !important;
  }
  .xl\:h-s49em {
    height: 12.25em !important;
  }
  .xl\:h-s50em {
    height: 12.5em !important;
  }
  .xl\:h-s52em {
    height: 13em !important;
  }
  .xl\:h-s54em {
    height: 13.5em !important;
  }
  .xl\:h-s55em {
    height: 13.75em !important;
  }
  .xl\:h-s56em {
    height: 14em !important;
  }
  .xl\:h-s70em {
    height: 18em !important;
  }
  .xl\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .xl\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .xl\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .xl\:min-h-s4 {
    min-height: 1rem !important;
  }
  .xl\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .xl\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .xl\:min-h-s8 {
    min-height: 2rem !important;
  }
  .xl\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .xl\:min-h-s12 {
    min-height: 3rem !important;
  }
  .xl\:min-h-s16 {
    min-height: 4rem !important;
  }
  .xl\:min-h-s20 {
    min-height: 5rem !important;
  }
  .xl\:min-h-s24 {
    min-height: 6rem !important;
  }
  .xl\:min-h-s28 {
    min-height: 7rem !important;
  }
  .xl\:min-h-s32 {
    min-height: 8rem !important;
  }
  .xl\:min-h-s36 {
    min-height: 9rem !important;
  }
  .xl\:min-h-s40 {
    min-height: 10rem !important;
  }
  .xl\:min-h-s44 {
    min-height: 11rem !important;
  }
  .xl\:min-h-s48 {
    min-height: 12rem !important;
  }
  .xl\:min-h-s49 {
    min-height: 12.25rem !important;
  }
  .xl\:min-h-s50 {
    min-height: 12.5rem !important;
  }
  .xl\:min-h-s52 {
    min-height: 13rem !important;
  }
  .xl\:min-h-s54 {
    min-height: 13.5rem !important;
  }
  .xl\:min-h-s55 {
    min-height: 13.75rem !important;
  }
  .xl\:min-h-s56 {
    min-height: 14rem !important;
  }
  .xl\:min-h-s1em {
    min-height: 0.25em !important;
  }
  .xl\:min-h-s2em {
    min-height: 0.5em !important;
  }
  .xl\:min-h-s3em {
    min-height: 0.75em !important;
  }
  .xl\:min-h-s4em {
    min-height: 1em !important;
  }
  .xl\:min-h-s5em {
    min-height: 1.25em !important;
  }
  .xl\:min-h-s6em {
    min-height: 1.5em !important;
  }
  .xl\:min-h-s8em {
    min-height: 2em !important;
  }
  .xl\:min-h-s10em {
    min-height: 2.5em !important;
  }
  .xl\:min-h-s12em {
    min-height: 3em !important;
  }
  .xl\:min-h-s14em {
    min-height: 3.5em !important;
  }
  .xl\:min-h-s16em {
    min-height: 4em !important;
  }
  .xl\:min-h-s18em {
    min-height: 4.5em !important;
  }
  .xl\:min-h-s20em {
    min-height: 5em !important;
  }
  .xl\:min-h-s24em {
    min-height: 6em !important;
  }
  .xl\:min-h-s26em {
    min-height: 6.5em !important;
  }
  .xl\:min-h-s28em {
    min-height: 7em !important;
  }
  .xl\:min-h-s32em {
    min-height: 8em !important;
  }
  .xl\:min-h-s36em {
    min-height: 9em !important;
  }
  .xl\:min-h-s40em {
    min-height: 10em !important;
  }
  .xl\:min-h-s44em {
    min-height: 11em !important;
  }
  .xl\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .xl\:min-h-s48em {
    min-height: 12em !important;
  }
  .xl\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .xl\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .xl\:min-h-s52em {
    min-height: 13em !important;
  }
  .xl\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .xl\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .xl\:min-h-s56em {
    min-height: 14em !important;
  }
  .xl\:min-h-s70em {
    min-height: 18em !important;
  }
  .xl\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .xl\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .xl\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .xl\:max-h-s4 {
    max-height: 1rem !important;
  }
  .xl\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .xl\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .xl\:max-h-s8 {
    max-height: 2rem !important;
  }
  .xl\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .xl\:max-h-s12 {
    max-height: 3rem !important;
  }
  .xl\:max-h-s16 {
    max-height: 4rem !important;
  }
  .xl\:max-h-s20 {
    max-height: 5rem !important;
  }
  .xl\:max-h-s24 {
    max-height: 6rem !important;
  }
  .xl\:max-h-s28 {
    max-height: 7rem !important;
  }
  .xl\:max-h-s32 {
    max-height: 8rem !important;
  }
  .xl\:max-h-s36 {
    max-height: 9rem !important;
  }
  .xl\:max-h-s40 {
    max-height: 10rem !important;
  }
  .xl\:max-h-s44 {
    max-height: 11rem !important;
  }
  .xl\:max-h-s48 {
    max-height: 12rem !important;
  }
  .xl\:max-h-s49 {
    max-height: 12.25rem !important;
  }
  .xl\:max-h-s50 {
    max-height: 12.5rem !important;
  }
  .xl\:max-h-s52 {
    max-height: 13rem !important;
  }
  .xl\:max-h-s54 {
    max-height: 13.5rem !important;
  }
  .xl\:max-h-s55 {
    max-height: 13.75rem !important;
  }
  .xl\:max-h-s56 {
    max-height: 14rem !important;
  }
  .xl\:max-h-s1em {
    max-height: 0.25em !important;
  }
  .xl\:max-h-s2em {
    max-height: 0.5em !important;
  }
  .xl\:max-h-s3em {
    max-height: 0.75em !important;
  }
  .xl\:max-h-s4em {
    max-height: 1em !important;
  }
  .xl\:max-h-s5em {
    max-height: 1.25em !important;
  }
  .xl\:max-h-s6em {
    max-height: 1.5em !important;
  }
  .xl\:max-h-s8em {
    max-height: 2em !important;
  }
  .xl\:max-h-s10em {
    max-height: 2.5em !important;
  }
  .xl\:max-h-s12em {
    max-height: 3em !important;
  }
  .xl\:max-h-s14em {
    max-height: 3.5em !important;
  }
  .xl\:max-h-s16em {
    max-height: 4em !important;
  }
  .xl\:max-h-s18em {
    max-height: 4.5em !important;
  }
  .xl\:max-h-s20em {
    max-height: 5em !important;
  }
  .xl\:max-h-s24em {
    max-height: 6em !important;
  }
  .xl\:max-h-s26em {
    max-height: 6.5em !important;
  }
  .xl\:max-h-s28em {
    max-height: 7em !important;
  }
  .xl\:max-h-s32em {
    max-height: 8em !important;
  }
  .xl\:max-h-s36em {
    max-height: 9em !important;
  }
  .xl\:max-h-s40em {
    max-height: 10em !important;
  }
  .xl\:max-h-s44em {
    max-height: 11em !important;
  }
  .xl\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .xl\:max-h-s48em {
    max-height: 12em !important;
  }
  .xl\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .xl\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .xl\:max-h-s52em {
    max-height: 13em !important;
  }
  .xl\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .xl\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .xl\:max-h-s56em {
    max-height: 14em !important;
  }
  .xl\:max-h-s70em {
    max-height: 18em !important;
  }
  .xl\:w-s1 {
    width: 0.25rem !important;
  }
  .xl\:w-s2 {
    width: 0.5rem !important;
  }
  .xl\:w-s3 {
    width: 0.75rem !important;
  }
  .xl\:w-s4 {
    width: 1rem !important;
  }
  .xl\:w-s5 {
    width: 1.25rem !important;
  }
  .xl\:w-s6 {
    width: 1.5rem !important;
  }
  .xl\:w-s8 {
    width: 2rem !important;
  }
  .xl\:w-s10 {
    width: 2.5rem !important;
  }
  .xl\:w-s12 {
    width: 3rem !important;
  }
  .xl\:w-s16 {
    width: 4rem !important;
  }
  .xl\:w-s20 {
    width: 5rem !important;
  }
  .xl\:w-s24 {
    width: 6rem !important;
  }
  .xl\:w-s28 {
    width: 7rem !important;
  }
  .xl\:w-s32 {
    width: 8rem !important;
  }
  .xl\:w-s36 {
    width: 9rem !important;
  }
  .xl\:w-s40 {
    width: 10rem !important;
  }
  .xl\:w-s44 {
    width: 11rem !important;
  }
  .xl\:w-s48 {
    width: 12rem !important;
  }
  .xl\:w-s49 {
    width: 12.25rem !important;
  }
  .xl\:w-s50 {
    width: 12.5rem !important;
  }
  .xl\:w-s52 {
    width: 13rem !important;
  }
  .xl\:w-s54 {
    width: 13.5rem !important;
  }
  .xl\:w-s55 {
    width: 13.75rem !important;
  }
  .xl\:w-s56 {
    width: 14rem !important;
  }
  .xl\:w-s1em {
    width: 0.25em !important;
  }
  .xl\:w-s2em {
    width: 0.5em !important;
  }
  .xl\:w-s3em {
    width: 0.75em !important;
  }
  .xl\:w-s4em {
    width: 1em !important;
  }
  .xl\:w-s5em {
    width: 1.25em !important;
  }
  .xl\:w-s6em {
    width: 1.5em !important;
  }
  .xl\:w-s8em {
    width: 2em !important;
  }
  .xl\:w-s10em {
    width: 2.5em !important;
  }
  .xl\:w-s12em {
    width: 3em !important;
  }
  .xl\:w-s14em {
    width: 3.5em !important;
  }
  .xl\:w-s16em {
    width: 4em !important;
  }
  .xl\:w-s18em {
    width: 4.5em !important;
  }
  .xl\:w-s20em {
    width: 5em !important;
  }
  .xl\:w-s24em {
    width: 6em !important;
  }
  .xl\:w-s26em {
    width: 6.5em !important;
  }
  .xl\:w-s28em {
    width: 7em !important;
  }
  .xl\:w-s32em {
    width: 8em !important;
  }
  .xl\:w-s36em {
    width: 9em !important;
  }
  .xl\:w-s40em {
    width: 10em !important;
  }
  .xl\:w-s44em {
    width: 11em !important;
  }
  .xl\:w-s46em {
    width: 11.5em !important;
  }
  .xl\:w-s48em {
    width: 12em !important;
  }
  .xl\:w-s49em {
    width: 12.25em !important;
  }
  .xl\:w-s50em {
    width: 12.5em !important;
  }
  .xl\:w-s52em {
    width: 13em !important;
  }
  .xl\:w-s54em {
    width: 13.5em !important;
  }
  .xl\:w-s55em {
    width: 13.75em !important;
  }
  .xl\:w-s56em {
    width: 14em !important;
  }
  .xl\:w-s70em {
    width: 18em !important;
  }
  .xl\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .xl\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .xl\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .xl\:min-w-s4 {
    min-width: 1rem !important;
  }
  .xl\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .xl\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .xl\:min-w-s8 {
    min-width: 2rem !important;
  }
  .xl\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .xl\:min-w-s12 {
    min-width: 3rem !important;
  }
  .xl\:min-w-s16 {
    min-width: 4rem !important;
  }
  .xl\:min-w-s20 {
    min-width: 5rem !important;
  }
  .xl\:min-w-s24 {
    min-width: 6rem !important;
  }
  .xl\:min-w-s28 {
    min-width: 7rem !important;
  }
  .xl\:min-w-s32 {
    min-width: 8rem !important;
  }
  .xl\:min-w-s36 {
    min-width: 9rem !important;
  }
  .xl\:min-w-s40 {
    min-width: 10rem !important;
  }
  .xl\:min-w-s44 {
    min-width: 11rem !important;
  }
  .xl\:min-w-s48 {
    min-width: 12rem !important;
  }
  .xl\:min-w-s49 {
    min-width: 12.25rem !important;
  }
  .xl\:min-w-s50 {
    min-width: 12.5rem !important;
  }
  .xl\:min-w-s52 {
    min-width: 13rem !important;
  }
  .xl\:min-w-s54 {
    min-width: 13.5rem !important;
  }
  .xl\:min-w-s55 {
    min-width: 13.75rem !important;
  }
  .xl\:min-w-s56 {
    min-width: 14rem !important;
  }
  .xl\:min-w-s1em {
    min-width: 0.25em !important;
  }
  .xl\:min-w-s2em {
    min-width: 0.5em !important;
  }
  .xl\:min-w-s3em {
    min-width: 0.75em !important;
  }
  .xl\:min-w-s4em {
    min-width: 1em !important;
  }
  .xl\:min-w-s5em {
    min-width: 1.25em !important;
  }
  .xl\:min-w-s6em {
    min-width: 1.5em !important;
  }
  .xl\:min-w-s8em {
    min-width: 2em !important;
  }
  .xl\:min-w-s10em {
    min-width: 2.5em !important;
  }
  .xl\:min-w-s12em {
    min-width: 3em !important;
  }
  .xl\:min-w-s14em {
    min-width: 3.5em !important;
  }
  .xl\:min-w-s16em {
    min-width: 4em !important;
  }
  .xl\:min-w-s18em {
    min-width: 4.5em !important;
  }
  .xl\:min-w-s20em {
    min-width: 5em !important;
  }
  .xl\:min-w-s24em {
    min-width: 6em !important;
  }
  .xl\:min-w-s26em {
    min-width: 6.5em !important;
  }
  .xl\:min-w-s28em {
    min-width: 7em !important;
  }
  .xl\:min-w-s32em {
    min-width: 8em !important;
  }
  .xl\:min-w-s36em {
    min-width: 9em !important;
  }
  .xl\:min-w-s40em {
    min-width: 10em !important;
  }
  .xl\:min-w-s44em {
    min-width: 11em !important;
  }
  .xl\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .xl\:min-w-s48em {
    min-width: 12em !important;
  }
  .xl\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .xl\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .xl\:min-w-s52em {
    min-width: 13em !important;
  }
  .xl\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .xl\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .xl\:min-w-s56em {
    min-width: 14em !important;
  }
  .xl\:min-w-s70em {
    min-width: 18em !important;
  }
  .xl\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .xl\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .xl\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .xl\:max-w-s4 {
    max-width: 1rem !important;
  }
  .xl\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .xl\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .xl\:max-w-s8 {
    max-width: 2rem !important;
  }
  .xl\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .xl\:max-w-s12 {
    max-width: 3rem !important;
  }
  .xl\:max-w-s16 {
    max-width: 4rem !important;
  }
  .xl\:max-w-s20 {
    max-width: 5rem !important;
  }
  .xl\:max-w-s24 {
    max-width: 6rem !important;
  }
  .xl\:max-w-s28 {
    max-width: 7rem !important;
  }
  .xl\:max-w-s32 {
    max-width: 8rem !important;
  }
  .xl\:max-w-s36 {
    max-width: 9rem !important;
  }
  .xl\:max-w-s40 {
    max-width: 10rem !important;
  }
  .xl\:max-w-s44 {
    max-width: 11rem !important;
  }
  .xl\:max-w-s48 {
    max-width: 12rem !important;
  }
  .xl\:max-w-s49 {
    max-width: 12.25rem !important;
  }
  .xl\:max-w-s50 {
    max-width: 12.5rem !important;
  }
  .xl\:max-w-s52 {
    max-width: 13rem !important;
  }
  .xl\:max-w-s54 {
    max-width: 13.5rem !important;
  }
  .xl\:max-w-s55 {
    max-width: 13.75rem !important;
  }
  .xl\:max-w-s56 {
    max-width: 14rem !important;
  }
  .xl\:max-w-s1em {
    max-width: 0.25em !important;
  }
  .xl\:max-w-s2em {
    max-width: 0.5em !important;
  }
  .xl\:max-w-s3em {
    max-width: 0.75em !important;
  }
  .xl\:max-w-s4em {
    max-width: 1em !important;
  }
  .xl\:max-w-s5em {
    max-width: 1.25em !important;
  }
  .xl\:max-w-s6em {
    max-width: 1.5em !important;
  }
  .xl\:max-w-s8em {
    max-width: 2em !important;
  }
  .xl\:max-w-s10em {
    max-width: 2.5em !important;
  }
  .xl\:max-w-s12em {
    max-width: 3em !important;
  }
  .xl\:max-w-s14em {
    max-width: 3.5em !important;
  }
  .xl\:max-w-s16em {
    max-width: 4em !important;
  }
  .xl\:max-w-s18em {
    max-width: 4.5em !important;
  }
  .xl\:max-w-s20em {
    max-width: 5em !important;
  }
  .xl\:max-w-s24em {
    max-width: 6em !important;
  }
  .xl\:max-w-s26em {
    max-width: 6.5em !important;
  }
  .xl\:max-w-s28em {
    max-width: 7em !important;
  }
  .xl\:max-w-s32em {
    max-width: 8em !important;
  }
  .xl\:max-w-s36em {
    max-width: 9em !important;
  }
  .xl\:max-w-s40em {
    max-width: 10em !important;
  }
  .xl\:max-w-s44em {
    max-width: 11em !important;
  }
  .xl\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .xl\:max-w-s48em {
    max-width: 12em !important;
  }
  .xl\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .xl\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .xl\:max-w-s52em {
    max-width: 13em !important;
  }
  .xl\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .xl\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .xl\:max-w-s56em {
    max-width: 14em !important;
  }
  .xl\:max-w-s70em {
    max-width: 18em !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:h-s1 {
    height: 0.25rem !important;
  }
  .xxl\:h-s2 {
    height: 0.5rem !important;
  }
  .xxl\:h-s3 {
    height: 0.75rem !important;
  }
  .xxl\:h-s4 {
    height: 1rem !important;
  }
  .xxl\:h-s5 {
    height: 1.25rem !important;
  }
  .xxl\:h-s6 {
    height: 1.5rem !important;
  }
  .xxl\:h-s8 {
    height: 2rem !important;
  }
  .xxl\:h-s10 {
    height: 2.5rem !important;
  }
  .xxl\:h-s12 {
    height: 3rem !important;
  }
  .xxl\:h-s16 {
    height: 4rem !important;
  }
  .xxl\:h-s20 {
    height: 5rem !important;
  }
  .xxl\:h-s24 {
    height: 6rem !important;
  }
  .xxl\:h-s28 {
    height: 7rem !important;
  }
  .xxl\:h-s32 {
    height: 8rem !important;
  }
  .xxl\:h-s36 {
    height: 9rem !important;
  }
  .xxl\:h-s40 {
    height: 10rem !important;
  }
  .xxl\:h-s44 {
    height: 11rem !important;
  }
  .xxl\:h-s48 {
    height: 12rem !important;
  }
  .xxl\:h-s49 {
    height: 12.25rem !important;
  }
  .xxl\:h-s50 {
    height: 12.5rem !important;
  }
  .xxl\:h-s52 {
    height: 13rem !important;
  }
  .xxl\:h-s54 {
    height: 13.5rem !important;
  }
  .xxl\:h-s55 {
    height: 13.75rem !important;
  }
  .xxl\:h-s56 {
    height: 14rem !important;
  }
  .xxl\:h-s1em {
    height: 0.25em !important;
  }
  .xxl\:h-s2em {
    height: 0.5em !important;
  }
  .xxl\:h-s3em {
    height: 0.75em !important;
  }
  .xxl\:h-s4em {
    height: 1em !important;
  }
  .xxl\:h-s5em {
    height: 1.25em !important;
  }
  .xxl\:h-s6em {
    height: 1.5em !important;
  }
  .xxl\:h-s8em {
    height: 2em !important;
  }
  .xxl\:h-s10em {
    height: 2.5em !important;
  }
  .xxl\:h-s12em {
    height: 3em !important;
  }
  .xxl\:h-s14em {
    height: 3.5em !important;
  }
  .xxl\:h-s16em {
    height: 4em !important;
  }
  .xxl\:h-s18em {
    height: 4.5em !important;
  }
  .xxl\:h-s20em {
    height: 5em !important;
  }
  .xxl\:h-s24em {
    height: 6em !important;
  }
  .xxl\:h-s26em {
    height: 6.5em !important;
  }
  .xxl\:h-s28em {
    height: 7em !important;
  }
  .xxl\:h-s32em {
    height: 8em !important;
  }
  .xxl\:h-s36em {
    height: 9em !important;
  }
  .xxl\:h-s40em {
    height: 10em !important;
  }
  .xxl\:h-s44em {
    height: 11em !important;
  }
  .xxl\:h-s46em {
    height: 11.5em !important;
  }
  .xxl\:h-s48em {
    height: 12em !important;
  }
  .xxl\:h-s49em {
    height: 12.25em !important;
  }
  .xxl\:h-s50em {
    height: 12.5em !important;
  }
  .xxl\:h-s52em {
    height: 13em !important;
  }
  .xxl\:h-s54em {
    height: 13.5em !important;
  }
  .xxl\:h-s55em {
    height: 13.75em !important;
  }
  .xxl\:h-s56em {
    height: 14em !important;
  }
  .xxl\:h-s70em {
    height: 18em !important;
  }
  .xxl\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .xxl\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .xxl\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .xxl\:min-h-s4 {
    min-height: 1rem !important;
  }
  .xxl\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .xxl\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .xxl\:min-h-s8 {
    min-height: 2rem !important;
  }
  .xxl\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .xxl\:min-h-s12 {
    min-height: 3rem !important;
  }
  .xxl\:min-h-s16 {
    min-height: 4rem !important;
  }
  .xxl\:min-h-s20 {
    min-height: 5rem !important;
  }
  .xxl\:min-h-s24 {
    min-height: 6rem !important;
  }
  .xxl\:min-h-s28 {
    min-height: 7rem !important;
  }
  .xxl\:min-h-s32 {
    min-height: 8rem !important;
  }
  .xxl\:min-h-s36 {
    min-height: 9rem !important;
  }
  .xxl\:min-h-s40 {
    min-height: 10rem !important;
  }
  .xxl\:min-h-s44 {
    min-height: 11rem !important;
  }
  .xxl\:min-h-s48 {
    min-height: 12rem !important;
  }
  .xxl\:min-h-s49 {
    min-height: 12.25rem !important;
  }
  .xxl\:min-h-s50 {
    min-height: 12.5rem !important;
  }
  .xxl\:min-h-s52 {
    min-height: 13rem !important;
  }
  .xxl\:min-h-s54 {
    min-height: 13.5rem !important;
  }
  .xxl\:min-h-s55 {
    min-height: 13.75rem !important;
  }
  .xxl\:min-h-s56 {
    min-height: 14rem !important;
  }
  .xxl\:min-h-s1em {
    min-height: 0.25em !important;
  }
  .xxl\:min-h-s2em {
    min-height: 0.5em !important;
  }
  .xxl\:min-h-s3em {
    min-height: 0.75em !important;
  }
  .xxl\:min-h-s4em {
    min-height: 1em !important;
  }
  .xxl\:min-h-s5em {
    min-height: 1.25em !important;
  }
  .xxl\:min-h-s6em {
    min-height: 1.5em !important;
  }
  .xxl\:min-h-s8em {
    min-height: 2em !important;
  }
  .xxl\:min-h-s10em {
    min-height: 2.5em !important;
  }
  .xxl\:min-h-s12em {
    min-height: 3em !important;
  }
  .xxl\:min-h-s14em {
    min-height: 3.5em !important;
  }
  .xxl\:min-h-s16em {
    min-height: 4em !important;
  }
  .xxl\:min-h-s18em {
    min-height: 4.5em !important;
  }
  .xxl\:min-h-s20em {
    min-height: 5em !important;
  }
  .xxl\:min-h-s24em {
    min-height: 6em !important;
  }
  .xxl\:min-h-s26em {
    min-height: 6.5em !important;
  }
  .xxl\:min-h-s28em {
    min-height: 7em !important;
  }
  .xxl\:min-h-s32em {
    min-height: 8em !important;
  }
  .xxl\:min-h-s36em {
    min-height: 9em !important;
  }
  .xxl\:min-h-s40em {
    min-height: 10em !important;
  }
  .xxl\:min-h-s44em {
    min-height: 11em !important;
  }
  .xxl\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .xxl\:min-h-s48em {
    min-height: 12em !important;
  }
  .xxl\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .xxl\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .xxl\:min-h-s52em {
    min-height: 13em !important;
  }
  .xxl\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .xxl\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .xxl\:min-h-s56em {
    min-height: 14em !important;
  }
  .xxl\:min-h-s70em {
    min-height: 18em !important;
  }
  .xxl\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .xxl\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .xxl\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .xxl\:max-h-s4 {
    max-height: 1rem !important;
  }
  .xxl\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .xxl\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .xxl\:max-h-s8 {
    max-height: 2rem !important;
  }
  .xxl\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .xxl\:max-h-s12 {
    max-height: 3rem !important;
  }
  .xxl\:max-h-s16 {
    max-height: 4rem !important;
  }
  .xxl\:max-h-s20 {
    max-height: 5rem !important;
  }
  .xxl\:max-h-s24 {
    max-height: 6rem !important;
  }
  .xxl\:max-h-s28 {
    max-height: 7rem !important;
  }
  .xxl\:max-h-s32 {
    max-height: 8rem !important;
  }
  .xxl\:max-h-s36 {
    max-height: 9rem !important;
  }
  .xxl\:max-h-s40 {
    max-height: 10rem !important;
  }
  .xxl\:max-h-s44 {
    max-height: 11rem !important;
  }
  .xxl\:max-h-s48 {
    max-height: 12rem !important;
  }
  .xxl\:max-h-s49 {
    max-height: 12.25rem !important;
  }
  .xxl\:max-h-s50 {
    max-height: 12.5rem !important;
  }
  .xxl\:max-h-s52 {
    max-height: 13rem !important;
  }
  .xxl\:max-h-s54 {
    max-height: 13.5rem !important;
  }
  .xxl\:max-h-s55 {
    max-height: 13.75rem !important;
  }
  .xxl\:max-h-s56 {
    max-height: 14rem !important;
  }
  .xxl\:max-h-s1em {
    max-height: 0.25em !important;
  }
  .xxl\:max-h-s2em {
    max-height: 0.5em !important;
  }
  .xxl\:max-h-s3em {
    max-height: 0.75em !important;
  }
  .xxl\:max-h-s4em {
    max-height: 1em !important;
  }
  .xxl\:max-h-s5em {
    max-height: 1.25em !important;
  }
  .xxl\:max-h-s6em {
    max-height: 1.5em !important;
  }
  .xxl\:max-h-s8em {
    max-height: 2em !important;
  }
  .xxl\:max-h-s10em {
    max-height: 2.5em !important;
  }
  .xxl\:max-h-s12em {
    max-height: 3em !important;
  }
  .xxl\:max-h-s14em {
    max-height: 3.5em !important;
  }
  .xxl\:max-h-s16em {
    max-height: 4em !important;
  }
  .xxl\:max-h-s18em {
    max-height: 4.5em !important;
  }
  .xxl\:max-h-s20em {
    max-height: 5em !important;
  }
  .xxl\:max-h-s24em {
    max-height: 6em !important;
  }
  .xxl\:max-h-s26em {
    max-height: 6.5em !important;
  }
  .xxl\:max-h-s28em {
    max-height: 7em !important;
  }
  .xxl\:max-h-s32em {
    max-height: 8em !important;
  }
  .xxl\:max-h-s36em {
    max-height: 9em !important;
  }
  .xxl\:max-h-s40em {
    max-height: 10em !important;
  }
  .xxl\:max-h-s44em {
    max-height: 11em !important;
  }
  .xxl\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .xxl\:max-h-s48em {
    max-height: 12em !important;
  }
  .xxl\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .xxl\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .xxl\:max-h-s52em {
    max-height: 13em !important;
  }
  .xxl\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .xxl\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .xxl\:max-h-s56em {
    max-height: 14em !important;
  }
  .xxl\:max-h-s70em {
    max-height: 18em !important;
  }
  .xxl\:w-s1 {
    width: 0.25rem !important;
  }
  .xxl\:w-s2 {
    width: 0.5rem !important;
  }
  .xxl\:w-s3 {
    width: 0.75rem !important;
  }
  .xxl\:w-s4 {
    width: 1rem !important;
  }
  .xxl\:w-s5 {
    width: 1.25rem !important;
  }
  .xxl\:w-s6 {
    width: 1.5rem !important;
  }
  .xxl\:w-s8 {
    width: 2rem !important;
  }
  .xxl\:w-s10 {
    width: 2.5rem !important;
  }
  .xxl\:w-s12 {
    width: 3rem !important;
  }
  .xxl\:w-s16 {
    width: 4rem !important;
  }
  .xxl\:w-s20 {
    width: 5rem !important;
  }
  .xxl\:w-s24 {
    width: 6rem !important;
  }
  .xxl\:w-s28 {
    width: 7rem !important;
  }
  .xxl\:w-s32 {
    width: 8rem !important;
  }
  .xxl\:w-s36 {
    width: 9rem !important;
  }
  .xxl\:w-s40 {
    width: 10rem !important;
  }
  .xxl\:w-s44 {
    width: 11rem !important;
  }
  .xxl\:w-s48 {
    width: 12rem !important;
  }
  .xxl\:w-s49 {
    width: 12.25rem !important;
  }
  .xxl\:w-s50 {
    width: 12.5rem !important;
  }
  .xxl\:w-s52 {
    width: 13rem !important;
  }
  .xxl\:w-s54 {
    width: 13.5rem !important;
  }
  .xxl\:w-s55 {
    width: 13.75rem !important;
  }
  .xxl\:w-s56 {
    width: 14rem !important;
  }
  .xxl\:w-s1em {
    width: 0.25em !important;
  }
  .xxl\:w-s2em {
    width: 0.5em !important;
  }
  .xxl\:w-s3em {
    width: 0.75em !important;
  }
  .xxl\:w-s4em {
    width: 1em !important;
  }
  .xxl\:w-s5em {
    width: 1.25em !important;
  }
  .xxl\:w-s6em {
    width: 1.5em !important;
  }
  .xxl\:w-s8em {
    width: 2em !important;
  }
  .xxl\:w-s10em {
    width: 2.5em !important;
  }
  .xxl\:w-s12em {
    width: 3em !important;
  }
  .xxl\:w-s14em {
    width: 3.5em !important;
  }
  .xxl\:w-s16em {
    width: 4em !important;
  }
  .xxl\:w-s18em {
    width: 4.5em !important;
  }
  .xxl\:w-s20em {
    width: 5em !important;
  }
  .xxl\:w-s24em {
    width: 6em !important;
  }
  .xxl\:w-s26em {
    width: 6.5em !important;
  }
  .xxl\:w-s28em {
    width: 7em !important;
  }
  .xxl\:w-s32em {
    width: 8em !important;
  }
  .xxl\:w-s36em {
    width: 9em !important;
  }
  .xxl\:w-s40em {
    width: 10em !important;
  }
  .xxl\:w-s44em {
    width: 11em !important;
  }
  .xxl\:w-s46em {
    width: 11.5em !important;
  }
  .xxl\:w-s48em {
    width: 12em !important;
  }
  .xxl\:w-s49em {
    width: 12.25em !important;
  }
  .xxl\:w-s50em {
    width: 12.5em !important;
  }
  .xxl\:w-s52em {
    width: 13em !important;
  }
  .xxl\:w-s54em {
    width: 13.5em !important;
  }
  .xxl\:w-s55em {
    width: 13.75em !important;
  }
  .xxl\:w-s56em {
    width: 14em !important;
  }
  .xxl\:w-s70em {
    width: 18em !important;
  }
  .xxl\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .xxl\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .xxl\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .xxl\:min-w-s4 {
    min-width: 1rem !important;
  }
  .xxl\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .xxl\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .xxl\:min-w-s8 {
    min-width: 2rem !important;
  }
  .xxl\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .xxl\:min-w-s12 {
    min-width: 3rem !important;
  }
  .xxl\:min-w-s16 {
    min-width: 4rem !important;
  }
  .xxl\:min-w-s20 {
    min-width: 5rem !important;
  }
  .xxl\:min-w-s24 {
    min-width: 6rem !important;
  }
  .xxl\:min-w-s28 {
    min-width: 7rem !important;
  }
  .xxl\:min-w-s32 {
    min-width: 8rem !important;
  }
  .xxl\:min-w-s36 {
    min-width: 9rem !important;
  }
  .xxl\:min-w-s40 {
    min-width: 10rem !important;
  }
  .xxl\:min-w-s44 {
    min-width: 11rem !important;
  }
  .xxl\:min-w-s48 {
    min-width: 12rem !important;
  }
  .xxl\:min-w-s49 {
    min-width: 12.25rem !important;
  }
  .xxl\:min-w-s50 {
    min-width: 12.5rem !important;
  }
  .xxl\:min-w-s52 {
    min-width: 13rem !important;
  }
  .xxl\:min-w-s54 {
    min-width: 13.5rem !important;
  }
  .xxl\:min-w-s55 {
    min-width: 13.75rem !important;
  }
  .xxl\:min-w-s56 {
    min-width: 14rem !important;
  }
  .xxl\:min-w-s1em {
    min-width: 0.25em !important;
  }
  .xxl\:min-w-s2em {
    min-width: 0.5em !important;
  }
  .xxl\:min-w-s3em {
    min-width: 0.75em !important;
  }
  .xxl\:min-w-s4em {
    min-width: 1em !important;
  }
  .xxl\:min-w-s5em {
    min-width: 1.25em !important;
  }
  .xxl\:min-w-s6em {
    min-width: 1.5em !important;
  }
  .xxl\:min-w-s8em {
    min-width: 2em !important;
  }
  .xxl\:min-w-s10em {
    min-width: 2.5em !important;
  }
  .xxl\:min-w-s12em {
    min-width: 3em !important;
  }
  .xxl\:min-w-s14em {
    min-width: 3.5em !important;
  }
  .xxl\:min-w-s16em {
    min-width: 4em !important;
  }
  .xxl\:min-w-s18em {
    min-width: 4.5em !important;
  }
  .xxl\:min-w-s20em {
    min-width: 5em !important;
  }
  .xxl\:min-w-s24em {
    min-width: 6em !important;
  }
  .xxl\:min-w-s26em {
    min-width: 6.5em !important;
  }
  .xxl\:min-w-s28em {
    min-width: 7em !important;
  }
  .xxl\:min-w-s32em {
    min-width: 8em !important;
  }
  .xxl\:min-w-s36em {
    min-width: 9em !important;
  }
  .xxl\:min-w-s40em {
    min-width: 10em !important;
  }
  .xxl\:min-w-s44em {
    min-width: 11em !important;
  }
  .xxl\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .xxl\:min-w-s48em {
    min-width: 12em !important;
  }
  .xxl\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .xxl\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .xxl\:min-w-s52em {
    min-width: 13em !important;
  }
  .xxl\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .xxl\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .xxl\:min-w-s56em {
    min-width: 14em !important;
  }
  .xxl\:min-w-s70em {
    min-width: 18em !important;
  }
  .xxl\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .xxl\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .xxl\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .xxl\:max-w-s4 {
    max-width: 1rem !important;
  }
  .xxl\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .xxl\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .xxl\:max-w-s8 {
    max-width: 2rem !important;
  }
  .xxl\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .xxl\:max-w-s12 {
    max-width: 3rem !important;
  }
  .xxl\:max-w-s16 {
    max-width: 4rem !important;
  }
  .xxl\:max-w-s20 {
    max-width: 5rem !important;
  }
  .xxl\:max-w-s24 {
    max-width: 6rem !important;
  }
  .xxl\:max-w-s28 {
    max-width: 7rem !important;
  }
  .xxl\:max-w-s32 {
    max-width: 8rem !important;
  }
  .xxl\:max-w-s36 {
    max-width: 9rem !important;
  }
  .xxl\:max-w-s40 {
    max-width: 10rem !important;
  }
  .xxl\:max-w-s44 {
    max-width: 11rem !important;
  }
  .xxl\:max-w-s48 {
    max-width: 12rem !important;
  }
  .xxl\:max-w-s49 {
    max-width: 12.25rem !important;
  }
  .xxl\:max-w-s50 {
    max-width: 12.5rem !important;
  }
  .xxl\:max-w-s52 {
    max-width: 13rem !important;
  }
  .xxl\:max-w-s54 {
    max-width: 13.5rem !important;
  }
  .xxl\:max-w-s55 {
    max-width: 13.75rem !important;
  }
  .xxl\:max-w-s56 {
    max-width: 14rem !important;
  }
  .xxl\:max-w-s1em {
    max-width: 0.25em !important;
  }
  .xxl\:max-w-s2em {
    max-width: 0.5em !important;
  }
  .xxl\:max-w-s3em {
    max-width: 0.75em !important;
  }
  .xxl\:max-w-s4em {
    max-width: 1em !important;
  }
  .xxl\:max-w-s5em {
    max-width: 1.25em !important;
  }
  .xxl\:max-w-s6em {
    max-width: 1.5em !important;
  }
  .xxl\:max-w-s8em {
    max-width: 2em !important;
  }
  .xxl\:max-w-s10em {
    max-width: 2.5em !important;
  }
  .xxl\:max-w-s12em {
    max-width: 3em !important;
  }
  .xxl\:max-w-s14em {
    max-width: 3.5em !important;
  }
  .xxl\:max-w-s16em {
    max-width: 4em !important;
  }
  .xxl\:max-w-s18em {
    max-width: 4.5em !important;
  }
  .xxl\:max-w-s20em {
    max-width: 5em !important;
  }
  .xxl\:max-w-s24em {
    max-width: 6em !important;
  }
  .xxl\:max-w-s26em {
    max-width: 6.5em !important;
  }
  .xxl\:max-w-s28em {
    max-width: 7em !important;
  }
  .xxl\:max-w-s32em {
    max-width: 8em !important;
  }
  .xxl\:max-w-s36em {
    max-width: 9em !important;
  }
  .xxl\:max-w-s40em {
    max-width: 10em !important;
  }
  .xxl\:max-w-s44em {
    max-width: 11em !important;
  }
  .xxl\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .xxl\:max-w-s48em {
    max-width: 12em !important;
  }
  .xxl\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .xxl\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .xxl\:max-w-s52em {
    max-width: 13em !important;
  }
  .xxl\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .xxl\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .xxl\:max-w-s56em {
    max-width: 14em !important;
  }
  .xxl\:max-w-s70em {
    max-width: 18em !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:h-s1 {
    height: 0.25rem !important;
  }
  .max\:h-s2 {
    height: 0.5rem !important;
  }
  .max\:h-s3 {
    height: 0.75rem !important;
  }
  .max\:h-s4 {
    height: 1rem !important;
  }
  .max\:h-s5 {
    height: 1.25rem !important;
  }
  .max\:h-s6 {
    height: 1.5rem !important;
  }
  .max\:h-s8 {
    height: 2rem !important;
  }
  .max\:h-s10 {
    height: 2.5rem !important;
  }
  .max\:h-s12 {
    height: 3rem !important;
  }
  .max\:h-s16 {
    height: 4rem !important;
  }
  .max\:h-s20 {
    height: 5rem !important;
  }
  .max\:h-s24 {
    height: 6rem !important;
  }
  .max\:h-s28 {
    height: 7rem !important;
  }
  .max\:h-s32 {
    height: 8rem !important;
  }
  .max\:h-s36 {
    height: 9rem !important;
  }
  .max\:h-s40 {
    height: 10rem !important;
  }
  .max\:h-s44 {
    height: 11rem !important;
  }
  .max\:h-s48 {
    height: 12rem !important;
  }
  .max\:h-s49 {
    height: 12.25rem !important;
  }
  .max\:h-s50 {
    height: 12.5rem !important;
  }
  .max\:h-s52 {
    height: 13rem !important;
  }
  .max\:h-s54 {
    height: 13.5rem !important;
  }
  .max\:h-s55 {
    height: 13.75rem !important;
  }
  .max\:h-s56 {
    height: 14rem !important;
  }
  .max\:h-s1em {
    height: 0.25em !important;
  }
  .max\:h-s2em {
    height: 0.5em !important;
  }
  .max\:h-s3em {
    height: 0.75em !important;
  }
  .max\:h-s4em {
    height: 1em !important;
  }
  .max\:h-s5em {
    height: 1.25em !important;
  }
  .max\:h-s6em {
    height: 1.5em !important;
  }
  .max\:h-s8em {
    height: 2em !important;
  }
  .max\:h-s10em {
    height: 2.5em !important;
  }
  .max\:h-s12em {
    height: 3em !important;
  }
  .max\:h-s14em {
    height: 3.5em !important;
  }
  .max\:h-s16em {
    height: 4em !important;
  }
  .max\:h-s18em {
    height: 4.5em !important;
  }
  .max\:h-s20em {
    height: 5em !important;
  }
  .max\:h-s24em {
    height: 6em !important;
  }
  .max\:h-s26em {
    height: 6.5em !important;
  }
  .max\:h-s28em {
    height: 7em !important;
  }
  .max\:h-s32em {
    height: 8em !important;
  }
  .max\:h-s36em {
    height: 9em !important;
  }
  .max\:h-s40em {
    height: 10em !important;
  }
  .max\:h-s44em {
    height: 11em !important;
  }
  .max\:h-s46em {
    height: 11.5em !important;
  }
  .max\:h-s48em {
    height: 12em !important;
  }
  .max\:h-s49em {
    height: 12.25em !important;
  }
  .max\:h-s50em {
    height: 12.5em !important;
  }
  .max\:h-s52em {
    height: 13em !important;
  }
  .max\:h-s54em {
    height: 13.5em !important;
  }
  .max\:h-s55em {
    height: 13.75em !important;
  }
  .max\:h-s56em {
    height: 14em !important;
  }
  .max\:h-s70em {
    height: 18em !important;
  }
  .max\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .max\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .max\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .max\:min-h-s4 {
    min-height: 1rem !important;
  }
  .max\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .max\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .max\:min-h-s8 {
    min-height: 2rem !important;
  }
  .max\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .max\:min-h-s12 {
    min-height: 3rem !important;
  }
  .max\:min-h-s16 {
    min-height: 4rem !important;
  }
  .max\:min-h-s20 {
    min-height: 5rem !important;
  }
  .max\:min-h-s24 {
    min-height: 6rem !important;
  }
  .max\:min-h-s28 {
    min-height: 7rem !important;
  }
  .max\:min-h-s32 {
    min-height: 8rem !important;
  }
  .max\:min-h-s36 {
    min-height: 9rem !important;
  }
  .max\:min-h-s40 {
    min-height: 10rem !important;
  }
  .max\:min-h-s44 {
    min-height: 11rem !important;
  }
  .max\:min-h-s48 {
    min-height: 12rem !important;
  }
  .max\:min-h-s49 {
    min-height: 12.25rem !important;
  }
  .max\:min-h-s50 {
    min-height: 12.5rem !important;
  }
  .max\:min-h-s52 {
    min-height: 13rem !important;
  }
  .max\:min-h-s54 {
    min-height: 13.5rem !important;
  }
  .max\:min-h-s55 {
    min-height: 13.75rem !important;
  }
  .max\:min-h-s56 {
    min-height: 14rem !important;
  }
  .max\:min-h-s1em {
    min-height: 0.25em !important;
  }
  .max\:min-h-s2em {
    min-height: 0.5em !important;
  }
  .max\:min-h-s3em {
    min-height: 0.75em !important;
  }
  .max\:min-h-s4em {
    min-height: 1em !important;
  }
  .max\:min-h-s5em {
    min-height: 1.25em !important;
  }
  .max\:min-h-s6em {
    min-height: 1.5em !important;
  }
  .max\:min-h-s8em {
    min-height: 2em !important;
  }
  .max\:min-h-s10em {
    min-height: 2.5em !important;
  }
  .max\:min-h-s12em {
    min-height: 3em !important;
  }
  .max\:min-h-s14em {
    min-height: 3.5em !important;
  }
  .max\:min-h-s16em {
    min-height: 4em !important;
  }
  .max\:min-h-s18em {
    min-height: 4.5em !important;
  }
  .max\:min-h-s20em {
    min-height: 5em !important;
  }
  .max\:min-h-s24em {
    min-height: 6em !important;
  }
  .max\:min-h-s26em {
    min-height: 6.5em !important;
  }
  .max\:min-h-s28em {
    min-height: 7em !important;
  }
  .max\:min-h-s32em {
    min-height: 8em !important;
  }
  .max\:min-h-s36em {
    min-height: 9em !important;
  }
  .max\:min-h-s40em {
    min-height: 10em !important;
  }
  .max\:min-h-s44em {
    min-height: 11em !important;
  }
  .max\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .max\:min-h-s48em {
    min-height: 12em !important;
  }
  .max\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .max\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .max\:min-h-s52em {
    min-height: 13em !important;
  }
  .max\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .max\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .max\:min-h-s56em {
    min-height: 14em !important;
  }
  .max\:min-h-s70em {
    min-height: 18em !important;
  }
  .max\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .max\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .max\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .max\:max-h-s4 {
    max-height: 1rem !important;
  }
  .max\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .max\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .max\:max-h-s8 {
    max-height: 2rem !important;
  }
  .max\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .max\:max-h-s12 {
    max-height: 3rem !important;
  }
  .max\:max-h-s16 {
    max-height: 4rem !important;
  }
  .max\:max-h-s20 {
    max-height: 5rem !important;
  }
  .max\:max-h-s24 {
    max-height: 6rem !important;
  }
  .max\:max-h-s28 {
    max-height: 7rem !important;
  }
  .max\:max-h-s32 {
    max-height: 8rem !important;
  }
  .max\:max-h-s36 {
    max-height: 9rem !important;
  }
  .max\:max-h-s40 {
    max-height: 10rem !important;
  }
  .max\:max-h-s44 {
    max-height: 11rem !important;
  }
  .max\:max-h-s48 {
    max-height: 12rem !important;
  }
  .max\:max-h-s49 {
    max-height: 12.25rem !important;
  }
  .max\:max-h-s50 {
    max-height: 12.5rem !important;
  }
  .max\:max-h-s52 {
    max-height: 13rem !important;
  }
  .max\:max-h-s54 {
    max-height: 13.5rem !important;
  }
  .max\:max-h-s55 {
    max-height: 13.75rem !important;
  }
  .max\:max-h-s56 {
    max-height: 14rem !important;
  }
  .max\:max-h-s1em {
    max-height: 0.25em !important;
  }
  .max\:max-h-s2em {
    max-height: 0.5em !important;
  }
  .max\:max-h-s3em {
    max-height: 0.75em !important;
  }
  .max\:max-h-s4em {
    max-height: 1em !important;
  }
  .max\:max-h-s5em {
    max-height: 1.25em !important;
  }
  .max\:max-h-s6em {
    max-height: 1.5em !important;
  }
  .max\:max-h-s8em {
    max-height: 2em !important;
  }
  .max\:max-h-s10em {
    max-height: 2.5em !important;
  }
  .max\:max-h-s12em {
    max-height: 3em !important;
  }
  .max\:max-h-s14em {
    max-height: 3.5em !important;
  }
  .max\:max-h-s16em {
    max-height: 4em !important;
  }
  .max\:max-h-s18em {
    max-height: 4.5em !important;
  }
  .max\:max-h-s20em {
    max-height: 5em !important;
  }
  .max\:max-h-s24em {
    max-height: 6em !important;
  }
  .max\:max-h-s26em {
    max-height: 6.5em !important;
  }
  .max\:max-h-s28em {
    max-height: 7em !important;
  }
  .max\:max-h-s32em {
    max-height: 8em !important;
  }
  .max\:max-h-s36em {
    max-height: 9em !important;
  }
  .max\:max-h-s40em {
    max-height: 10em !important;
  }
  .max\:max-h-s44em {
    max-height: 11em !important;
  }
  .max\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .max\:max-h-s48em {
    max-height: 12em !important;
  }
  .max\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .max\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .max\:max-h-s52em {
    max-height: 13em !important;
  }
  .max\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .max\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .max\:max-h-s56em {
    max-height: 14em !important;
  }
  .max\:max-h-s70em {
    max-height: 18em !important;
  }
  .max\:w-s1 {
    width: 0.25rem !important;
  }
  .max\:w-s2 {
    width: 0.5rem !important;
  }
  .max\:w-s3 {
    width: 0.75rem !important;
  }
  .max\:w-s4 {
    width: 1rem !important;
  }
  .max\:w-s5 {
    width: 1.25rem !important;
  }
  .max\:w-s6 {
    width: 1.5rem !important;
  }
  .max\:w-s8 {
    width: 2rem !important;
  }
  .max\:w-s10 {
    width: 2.5rem !important;
  }
  .max\:w-s12 {
    width: 3rem !important;
  }
  .max\:w-s16 {
    width: 4rem !important;
  }
  .max\:w-s20 {
    width: 5rem !important;
  }
  .max\:w-s24 {
    width: 6rem !important;
  }
  .max\:w-s28 {
    width: 7rem !important;
  }
  .max\:w-s32 {
    width: 8rem !important;
  }
  .max\:w-s36 {
    width: 9rem !important;
  }
  .max\:w-s40 {
    width: 10rem !important;
  }
  .max\:w-s44 {
    width: 11rem !important;
  }
  .max\:w-s48 {
    width: 12rem !important;
  }
  .max\:w-s49 {
    width: 12.25rem !important;
  }
  .max\:w-s50 {
    width: 12.5rem !important;
  }
  .max\:w-s52 {
    width: 13rem !important;
  }
  .max\:w-s54 {
    width: 13.5rem !important;
  }
  .max\:w-s55 {
    width: 13.75rem !important;
  }
  .max\:w-s56 {
    width: 14rem !important;
  }
  .max\:w-s1em {
    width: 0.25em !important;
  }
  .max\:w-s2em {
    width: 0.5em !important;
  }
  .max\:w-s3em {
    width: 0.75em !important;
  }
  .max\:w-s4em {
    width: 1em !important;
  }
  .max\:w-s5em {
    width: 1.25em !important;
  }
  .max\:w-s6em {
    width: 1.5em !important;
  }
  .max\:w-s8em {
    width: 2em !important;
  }
  .max\:w-s10em {
    width: 2.5em !important;
  }
  .max\:w-s12em {
    width: 3em !important;
  }
  .max\:w-s14em {
    width: 3.5em !important;
  }
  .max\:w-s16em {
    width: 4em !important;
  }
  .max\:w-s18em {
    width: 4.5em !important;
  }
  .max\:w-s20em {
    width: 5em !important;
  }
  .max\:w-s24em {
    width: 6em !important;
  }
  .max\:w-s26em {
    width: 6.5em !important;
  }
  .max\:w-s28em {
    width: 7em !important;
  }
  .max\:w-s32em {
    width: 8em !important;
  }
  .max\:w-s36em {
    width: 9em !important;
  }
  .max\:w-s40em {
    width: 10em !important;
  }
  .max\:w-s44em {
    width: 11em !important;
  }
  .max\:w-s46em {
    width: 11.5em !important;
  }
  .max\:w-s48em {
    width: 12em !important;
  }
  .max\:w-s49em {
    width: 12.25em !important;
  }
  .max\:w-s50em {
    width: 12.5em !important;
  }
  .max\:w-s52em {
    width: 13em !important;
  }
  .max\:w-s54em {
    width: 13.5em !important;
  }
  .max\:w-s55em {
    width: 13.75em !important;
  }
  .max\:w-s56em {
    width: 14em !important;
  }
  .max\:w-s70em {
    width: 18em !important;
  }
  .max\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .max\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .max\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .max\:min-w-s4 {
    min-width: 1rem !important;
  }
  .max\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .max\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .max\:min-w-s8 {
    min-width: 2rem !important;
  }
  .max\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .max\:min-w-s12 {
    min-width: 3rem !important;
  }
  .max\:min-w-s16 {
    min-width: 4rem !important;
  }
  .max\:min-w-s20 {
    min-width: 5rem !important;
  }
  .max\:min-w-s24 {
    min-width: 6rem !important;
  }
  .max\:min-w-s28 {
    min-width: 7rem !important;
  }
  .max\:min-w-s32 {
    min-width: 8rem !important;
  }
  .max\:min-w-s36 {
    min-width: 9rem !important;
  }
  .max\:min-w-s40 {
    min-width: 10rem !important;
  }
  .max\:min-w-s44 {
    min-width: 11rem !important;
  }
  .max\:min-w-s48 {
    min-width: 12rem !important;
  }
  .max\:min-w-s49 {
    min-width: 12.25rem !important;
  }
  .max\:min-w-s50 {
    min-width: 12.5rem !important;
  }
  .max\:min-w-s52 {
    min-width: 13rem !important;
  }
  .max\:min-w-s54 {
    min-width: 13.5rem !important;
  }
  .max\:min-w-s55 {
    min-width: 13.75rem !important;
  }
  .max\:min-w-s56 {
    min-width: 14rem !important;
  }
  .max\:min-w-s1em {
    min-width: 0.25em !important;
  }
  .max\:min-w-s2em {
    min-width: 0.5em !important;
  }
  .max\:min-w-s3em {
    min-width: 0.75em !important;
  }
  .max\:min-w-s4em {
    min-width: 1em !important;
  }
  .max\:min-w-s5em {
    min-width: 1.25em !important;
  }
  .max\:min-w-s6em {
    min-width: 1.5em !important;
  }
  .max\:min-w-s8em {
    min-width: 2em !important;
  }
  .max\:min-w-s10em {
    min-width: 2.5em !important;
  }
  .max\:min-w-s12em {
    min-width: 3em !important;
  }
  .max\:min-w-s14em {
    min-width: 3.5em !important;
  }
  .max\:min-w-s16em {
    min-width: 4em !important;
  }
  .max\:min-w-s18em {
    min-width: 4.5em !important;
  }
  .max\:min-w-s20em {
    min-width: 5em !important;
  }
  .max\:min-w-s24em {
    min-width: 6em !important;
  }
  .max\:min-w-s26em {
    min-width: 6.5em !important;
  }
  .max\:min-w-s28em {
    min-width: 7em !important;
  }
  .max\:min-w-s32em {
    min-width: 8em !important;
  }
  .max\:min-w-s36em {
    min-width: 9em !important;
  }
  .max\:min-w-s40em {
    min-width: 10em !important;
  }
  .max\:min-w-s44em {
    min-width: 11em !important;
  }
  .max\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .max\:min-w-s48em {
    min-width: 12em !important;
  }
  .max\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .max\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .max\:min-w-s52em {
    min-width: 13em !important;
  }
  .max\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .max\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .max\:min-w-s56em {
    min-width: 14em !important;
  }
  .max\:min-w-s70em {
    min-width: 18em !important;
  }
  .max\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .max\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .max\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .max\:max-w-s4 {
    max-width: 1rem !important;
  }
  .max\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .max\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .max\:max-w-s8 {
    max-width: 2rem !important;
  }
  .max\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .max\:max-w-s12 {
    max-width: 3rem !important;
  }
  .max\:max-w-s16 {
    max-width: 4rem !important;
  }
  .max\:max-w-s20 {
    max-width: 5rem !important;
  }
  .max\:max-w-s24 {
    max-width: 6rem !important;
  }
  .max\:max-w-s28 {
    max-width: 7rem !important;
  }
  .max\:max-w-s32 {
    max-width: 8rem !important;
  }
  .max\:max-w-s36 {
    max-width: 9rem !important;
  }
  .max\:max-w-s40 {
    max-width: 10rem !important;
  }
  .max\:max-w-s44 {
    max-width: 11rem !important;
  }
  .max\:max-w-s48 {
    max-width: 12rem !important;
  }
  .max\:max-w-s49 {
    max-width: 12.25rem !important;
  }
  .max\:max-w-s50 {
    max-width: 12.5rem !important;
  }
  .max\:max-w-s52 {
    max-width: 13rem !important;
  }
  .max\:max-w-s54 {
    max-width: 13.5rem !important;
  }
  .max\:max-w-s55 {
    max-width: 13.75rem !important;
  }
  .max\:max-w-s56 {
    max-width: 14rem !important;
  }
  .max\:max-w-s1em {
    max-width: 0.25em !important;
  }
  .max\:max-w-s2em {
    max-width: 0.5em !important;
  }
  .max\:max-w-s3em {
    max-width: 0.75em !important;
  }
  .max\:max-w-s4em {
    max-width: 1em !important;
  }
  .max\:max-w-s5em {
    max-width: 1.25em !important;
  }
  .max\:max-w-s6em {
    max-width: 1.5em !important;
  }
  .max\:max-w-s8em {
    max-width: 2em !important;
  }
  .max\:max-w-s10em {
    max-width: 2.5em !important;
  }
  .max\:max-w-s12em {
    max-width: 3em !important;
  }
  .max\:max-w-s14em {
    max-width: 3.5em !important;
  }
  .max\:max-w-s16em {
    max-width: 4em !important;
  }
  .max\:max-w-s18em {
    max-width: 4.5em !important;
  }
  .max\:max-w-s20em {
    max-width: 5em !important;
  }
  .max\:max-w-s24em {
    max-width: 6em !important;
  }
  .max\:max-w-s26em {
    max-width: 6.5em !important;
  }
  .max\:max-w-s28em {
    max-width: 7em !important;
  }
  .max\:max-w-s32em {
    max-width: 8em !important;
  }
  .max\:max-w-s36em {
    max-width: 9em !important;
  }
  .max\:max-w-s40em {
    max-width: 10em !important;
  }
  .max\:max-w-s44em {
    max-width: 11em !important;
  }
  .max\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .max\:max-w-s48em {
    max-width: 12em !important;
  }
  .max\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .max\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .max\:max-w-s52em {
    max-width: 13em !important;
  }
  .max\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .max\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .max\:max-w-s56em {
    max-width: 14em !important;
  }
  .max\:max-w-s70em {
    max-width: 18em !important;
  }
}
.h-0 {
  height: 0 !important;
}

.h-1 {
  height: 16rem !important;
}

.h-2 {
  height: 20rem !important;
}

.h-3 {
  height: 24rem !important;
}

.h-4 {
  height: 28rem !important;
}

.h-5 {
  height: 32rem !important;
}

.h-6 {
  height: 36rem !important;
}

.h-7 {
  height: 42rem !important;
}

.h-8 {
  height: 48rem !important;
}

.h-9 {
  height: 56rem !important;
}

.h-10 {
  height: 64rem !important;
}

.h-11 {
  height: 72rem !important;
}

.h-12 {
  height: 80rem !important;
}

.h-13 {
  height: 88rem !important;
}

.h-14 {
  height: 96rem !important;
}

.h-1em {
  height: 16em !important;
}

.h-2em {
  height: 20em !important;
}

.h-3em {
  height: 24em !important;
}

.h-4em {
  height: 28em !important;
}

.h-5em {
  height: 32em !important;
}

.h-6em {
  height: 36em !important;
}

.h-7em {
  height: 42em !important;
}

.h-8em {
  height: 48em !important;
}

.h-9em {
  height: 56em !important;
}

.h-10em {
  height: 64em !important;
}

.h-11em {
  height: 72em !important;
}

.h-1\/6 {
  height: 16.666666% !important;
}

.h-1\/4 {
  height: 25% !important;
}

.h-2\/7 {
  height: 28.57142857% !important;
}

.h-1\/3 {
  height: 33.333333% !important;
}

.h-1\/5 {
  height: 20% !important;
}

.h-2\/5 {
  height: 40% !important;
}

.h-3\/5 {
  height: 60% !important;
}

.h-4\/5 {
  height: 80% !important;
}

.h-1\/2 {
  height: 50% !important;
}

.h-1\/12 {
  height: 8.333333% !important;
}

.h-5\/12 {
  height: 41.6666666% !important;
}

.h-7\/12 {
  height: 58.333333% !important;
}

.h-11\/12 {
  height: 91.6666666% !important;
}

.h-2\/3 {
  height: 66.666667% !important;
}

.h-3\/4 {
  height: 75% !important;
}

.h-5\/6 {
  height: 83.3333333% !important;
}

.h-7\/6 {
  height: 116.6666666% !important;
}

.h-4\/3 {
  height: 133.3333333% !important;
}

.h-3\/2 {
  height: 150% !important;
}

.h-full {
  height: 100% !important;
}

.h-1\/6vh {
  height: 16.666666vh !important;
}

.h-1\/4vh {
  height: 25vh !important;
}

.h-1\/3vh {
  height: 33.333333vh !important;
}

.h-1\/2vh {
  height: 50vh !important;
}

.h-7\/12vh {
  height: 58.333333vh !important;
}

.h-2\/3vh {
  height: 66.666667vh !important;
}

.h-3\/4vh {
  height: 75vh !important;
}

.h-5\/6vh {
  height: 83.3333333vh !important;
}

.h-full-vh {
  height: 100vh !important;
}

.h-s1 {
  height: 0.25rem !important;
}

.h-s2 {
  height: 0.5rem !important;
}

.h-s3 {
  height: 0.75rem !important;
}

.h-s4 {
  height: 1rem !important;
}

.h-s5 {
  height: 1.25rem !important;
}

.h-s6 {
  height: 1.5rem !important;
}

.h-s8 {
  height: 2rem !important;
}

.h-s10 {
  height: 2.5rem !important;
}

.h-s12 {
  height: 3rem !important;
}

.h-s14 {
  height: 3.5rem !important;
}

.h-s16 {
  height: 4rem !important;
}

.h-s18 {
  height: 4.5rem !important;
}

.h-s20 {
  height: 5rem !important;
}

.h-s24 {
  height: 6rem !important;
}

.h-s28 {
  height: 7rem !important;
}

.h-s32 {
  height: 8rem !important;
}

.h-s60 {
  height: 15rem !important;
}

.h-s70 {
  height: 17.5rem !important;
}

.h-s72 {
  height: 18rem !important;
}

.h-s40em {
  height: 10em !important;
}

.h-s44em {
  height: 11em !important;
}

.h-s46em {
  height: 11.5em !important;
}

.h-s48em {
  height: 12em !important;
}

.h-s49em {
  height: 12.25em !important;
}

.h-s50em {
  height: 12.5em !important;
}

.h-s52em {
  height: 13em !important;
}

.h-s54em {
  height: 13.5em !important;
}

.h-s55em {
  height: 13.75em !important;
}

.h-s56em {
  height: 14em !important;
}

.h-s60em {
  height: 15em !important;
}

.h-s70em {
  height: 18em !important;
}

.h-none {
  height: none !important;
}

.h-fit-content {
  height: fit-content !important;
}

.h-auto {
  height: auto !important;
}

.min-h-0 {
  min-height: 0 !important;
}

.min-h-1 {
  min-height: 16rem !important;
}

.min-h-2 {
  min-height: 20rem !important;
}

.min-h-3 {
  min-height: 24rem !important;
}

.min-h-4 {
  min-height: 28rem !important;
}

.min-h-5 {
  min-height: 32rem !important;
}

.min-h-6 {
  min-height: 36rem !important;
}

.min-h-7 {
  min-height: 42rem !important;
}

.min-h-8 {
  min-height: 48rem !important;
}

.min-h-9 {
  min-height: 56rem !important;
}

.min-h-10 {
  min-height: 64rem !important;
}

.min-h-11 {
  min-height: 72rem !important;
}

.min-h-12 {
  min-height: 80rem !important;
}

.min-h-13 {
  min-height: 88rem !important;
}

.min-h-14 {
  min-height: 96rem !important;
}

.min-h-1em {
  min-height: 16em !important;
}

.min-h-2em {
  min-height: 20em !important;
}

.min-h-3em {
  min-height: 24em !important;
}

.min-h-4em {
  min-height: 28em !important;
}

.min-h-5em {
  min-height: 32em !important;
}

.min-h-6em {
  min-height: 36em !important;
}

.min-h-7em {
  min-height: 42em !important;
}

.min-h-8em {
  min-height: 48em !important;
}

.min-h-9em {
  min-height: 56em !important;
}

.min-h-10em {
  min-height: 64em !important;
}

.min-h-11em {
  min-height: 72em !important;
}

.min-h-1\/6 {
  min-height: 16.666666% !important;
}

.min-h-1\/4 {
  min-height: 25% !important;
}

.min-h-2\/7 {
  min-height: 28.57142857% !important;
}

.min-h-1\/3 {
  min-height: 33.333333% !important;
}

.min-h-1\/5 {
  min-height: 20% !important;
}

.min-h-2\/5 {
  min-height: 40% !important;
}

.min-h-3\/5 {
  min-height: 60% !important;
}

.min-h-4\/5 {
  min-height: 80% !important;
}

.min-h-1\/2 {
  min-height: 50% !important;
}

.min-h-1\/12 {
  min-height: 8.333333% !important;
}

.min-h-5\/12 {
  min-height: 41.6666666% !important;
}

.min-h-7\/12 {
  min-height: 58.333333% !important;
}

.min-h-11\/12 {
  min-height: 91.6666666% !important;
}

.min-h-2\/3 {
  min-height: 66.666667% !important;
}

.min-h-3\/4 {
  min-height: 75% !important;
}

.min-h-5\/6 {
  min-height: 83.3333333% !important;
}

.min-h-7\/6 {
  min-height: 116.6666666% !important;
}

.min-h-4\/3 {
  min-height: 133.3333333% !important;
}

.min-h-3\/2 {
  min-height: 150% !important;
}

.min-h-full {
  min-height: 100% !important;
}

.min-h-1\/6vh {
  min-height: 16.666666vh !important;
}

.min-h-1\/4vh {
  min-height: 25vh !important;
}

.min-h-1\/3vh {
  min-height: 33.333333vh !important;
}

.min-h-1\/2vh {
  min-height: 50vh !important;
}

.min-h-7\/12vh {
  min-height: 58.333333vh !important;
}

.min-h-2\/3vh {
  min-height: 66.666667vh !important;
}

.min-h-3\/4vh {
  min-height: 75vh !important;
}

.min-h-5\/6vh {
  min-height: 83.3333333vh !important;
}

.min-h-full-vh {
  min-height: 100vh !important;
}

.min-h-s1 {
  min-height: 0.25rem !important;
}

.min-h-s2 {
  min-height: 0.5rem !important;
}

.min-h-s3 {
  min-height: 0.75rem !important;
}

.min-h-s4 {
  min-height: 1rem !important;
}

.min-h-s5 {
  min-height: 1.25rem !important;
}

.min-h-s6 {
  min-height: 1.5rem !important;
}

.min-h-s8 {
  min-height: 2rem !important;
}

.min-h-s10 {
  min-height: 2.5rem !important;
}

.min-h-s12 {
  min-height: 3rem !important;
}

.min-h-s14 {
  min-height: 3.5rem !important;
}

.min-h-s16 {
  min-height: 4rem !important;
}

.min-h-s18 {
  min-height: 4.5rem !important;
}

.min-h-s20 {
  min-height: 5rem !important;
}

.min-h-s24 {
  min-height: 6rem !important;
}

.min-h-s28 {
  min-height: 7rem !important;
}

.min-h-s32 {
  min-height: 8rem !important;
}

.min-h-s60 {
  min-height: 15rem !important;
}

.min-h-s70 {
  min-height: 17.5rem !important;
}

.min-h-s72 {
  min-height: 18rem !important;
}

.min-h-s40em {
  min-height: 10em !important;
}

.min-h-s44em {
  min-height: 11em !important;
}

.min-h-s46em {
  min-height: 11.5em !important;
}

.min-h-s48em {
  min-height: 12em !important;
}

.min-h-s49em {
  min-height: 12.25em !important;
}

.min-h-s50em {
  min-height: 12.5em !important;
}

.min-h-s52em {
  min-height: 13em !important;
}

.min-h-s54em {
  min-height: 13.5em !important;
}

.min-h-s55em {
  min-height: 13.75em !important;
}

.min-h-s56em {
  min-height: 14em !important;
}

.min-h-s60em {
  min-height: 15em !important;
}

.min-h-s70em {
  min-height: 18em !important;
}

.min-h-none {
  min-height: none !important;
}

.min-h-fit-content {
  min-height: fit-content !important;
}

.min-h-auto {
  min-height: auto !important;
}

.max-h-0 {
  max-height: 0 !important;
}

.max-h-1 {
  max-height: 16rem !important;
}

.max-h-2 {
  max-height: 20rem !important;
}

.max-h-3 {
  max-height: 24rem !important;
}

.max-h-4 {
  max-height: 28rem !important;
}

.max-h-5 {
  max-height: 32rem !important;
}

.max-h-6 {
  max-height: 36rem !important;
}

.max-h-7 {
  max-height: 42rem !important;
}

.max-h-8 {
  max-height: 48rem !important;
}

.max-h-9 {
  max-height: 56rem !important;
}

.max-h-10 {
  max-height: 64rem !important;
}

.max-h-11 {
  max-height: 72rem !important;
}

.max-h-12 {
  max-height: 80rem !important;
}

.max-h-13 {
  max-height: 88rem !important;
}

.max-h-14 {
  max-height: 96rem !important;
}

.max-h-1em {
  max-height: 16em !important;
}

.max-h-2em {
  max-height: 20em !important;
}

.max-h-3em {
  max-height: 24em !important;
}

.max-h-4em {
  max-height: 28em !important;
}

.max-h-5em {
  max-height: 32em !important;
}

.max-h-6em {
  max-height: 36em !important;
}

.max-h-7em {
  max-height: 42em !important;
}

.max-h-8em {
  max-height: 48em !important;
}

.max-h-9em {
  max-height: 56em !important;
}

.max-h-10em {
  max-height: 64em !important;
}

.max-h-11em {
  max-height: 72em !important;
}

.max-h-1\/6 {
  max-height: 16.666666% !important;
}

.max-h-1\/4 {
  max-height: 25% !important;
}

.max-h-2\/7 {
  max-height: 28.57142857% !important;
}

.max-h-1\/3 {
  max-height: 33.333333% !important;
}

.max-h-1\/5 {
  max-height: 20% !important;
}

.max-h-2\/5 {
  max-height: 40% !important;
}

.max-h-3\/5 {
  max-height: 60% !important;
}

.max-h-4\/5 {
  max-height: 80% !important;
}

.max-h-1\/2 {
  max-height: 50% !important;
}

.max-h-1\/12 {
  max-height: 8.333333% !important;
}

.max-h-5\/12 {
  max-height: 41.6666666% !important;
}

.max-h-7\/12 {
  max-height: 58.333333% !important;
}

.max-h-11\/12 {
  max-height: 91.6666666% !important;
}

.max-h-2\/3 {
  max-height: 66.666667% !important;
}

.max-h-3\/4 {
  max-height: 75% !important;
}

.max-h-5\/6 {
  max-height: 83.3333333% !important;
}

.max-h-7\/6 {
  max-height: 116.6666666% !important;
}

.max-h-4\/3 {
  max-height: 133.3333333% !important;
}

.max-h-3\/2 {
  max-height: 150% !important;
}

.max-h-full {
  max-height: 100% !important;
}

.max-h-1\/6vh {
  max-height: 16.666666vh !important;
}

.max-h-1\/4vh {
  max-height: 25vh !important;
}

.max-h-1\/3vh {
  max-height: 33.333333vh !important;
}

.max-h-1\/2vh {
  max-height: 50vh !important;
}

.max-h-7\/12vh {
  max-height: 58.333333vh !important;
}

.max-h-2\/3vh {
  max-height: 66.666667vh !important;
}

.max-h-3\/4vh {
  max-height: 75vh !important;
}

.max-h-5\/6vh {
  max-height: 83.3333333vh !important;
}

.max-h-full-vh {
  max-height: 100vh !important;
}

.max-h-s1 {
  max-height: 0.25rem !important;
}

.max-h-s2 {
  max-height: 0.5rem !important;
}

.max-h-s3 {
  max-height: 0.75rem !important;
}

.max-h-s4 {
  max-height: 1rem !important;
}

.max-h-s5 {
  max-height: 1.25rem !important;
}

.max-h-s6 {
  max-height: 1.5rem !important;
}

.max-h-s8 {
  max-height: 2rem !important;
}

.max-h-s10 {
  max-height: 2.5rem !important;
}

.max-h-s12 {
  max-height: 3rem !important;
}

.max-h-s14 {
  max-height: 3.5rem !important;
}

.max-h-s16 {
  max-height: 4rem !important;
}

.max-h-s18 {
  max-height: 4.5rem !important;
}

.max-h-s20 {
  max-height: 5rem !important;
}

.max-h-s24 {
  max-height: 6rem !important;
}

.max-h-s28 {
  max-height: 7rem !important;
}

.max-h-s32 {
  max-height: 8rem !important;
}

.max-h-s60 {
  max-height: 15rem !important;
}

.max-h-s70 {
  max-height: 17.5rem !important;
}

.max-h-s72 {
  max-height: 18rem !important;
}

.max-h-s40em {
  max-height: 10em !important;
}

.max-h-s44em {
  max-height: 11em !important;
}

.max-h-s46em {
  max-height: 11.5em !important;
}

.max-h-s48em {
  max-height: 12em !important;
}

.max-h-s49em {
  max-height: 12.25em !important;
}

.max-h-s50em {
  max-height: 12.5em !important;
}

.max-h-s52em {
  max-height: 13em !important;
}

.max-h-s54em {
  max-height: 13.5em !important;
}

.max-h-s55em {
  max-height: 13.75em !important;
}

.max-h-s56em {
  max-height: 14em !important;
}

.max-h-s60em {
  max-height: 15em !important;
}

.max-h-s70em {
  max-height: 18em !important;
}

.max-h-none {
  max-height: none !important;
}

.max-h-fit-content {
  max-height: fit-content !important;
}

.max-h-auto {
  max-height: auto !important;
}

.w-0 {
  width: 0 !important;
}

.w-1 {
  width: 16rem !important;
}

.w-2 {
  width: 20rem !important;
}

.w-3 {
  width: 24rem !important;
}

.w-4 {
  width: 28rem !important;
}

.w-5 {
  width: 32rem !important;
}

.w-6 {
  width: 36rem !important;
}

.w-7 {
  width: 42rem !important;
}

.w-8 {
  width: 48rem !important;
}

.w-9 {
  width: 56rem !important;
}

.w-10 {
  width: 64rem !important;
}

.w-11 {
  width: 72rem !important;
}

.w-12 {
  width: 80rem !important;
}

.w-13 {
  width: 88rem !important;
}

.w-14 {
  width: 96rem !important;
}

.w-1em {
  width: 16em !important;
}

.w-2em {
  width: 20em !important;
}

.w-3em {
  width: 24em !important;
}

.w-4em {
  width: 28em !important;
}

.w-5em {
  width: 32em !important;
}

.w-6em {
  width: 36em !important;
}

.w-7em {
  width: 42em !important;
}

.w-8em {
  width: 48em !important;
}

.w-9em {
  width: 56em !important;
}

.w-10em {
  width: 64em !important;
}

.w-11em {
  width: 72em !important;
}

.w-1\/6 {
  width: 16.666666% !important;
}

.w-1\/4 {
  width: 25% !important;
}

.w-2\/7 {
  width: 28.57142857% !important;
}

.w-1\/3 {
  width: 33.333333% !important;
}

.w-1\/5 {
  width: 20% !important;
}

.w-2\/5 {
  width: 40% !important;
}

.w-3\/5 {
  width: 60% !important;
}

.w-4\/5 {
  width: 80% !important;
}

.w-1\/2 {
  width: 50% !important;
}

.w-1\/12 {
  width: 8.333333% !important;
}

.w-5\/12 {
  width: 41.6666666% !important;
}

.w-7\/12 {
  width: 58.333333% !important;
}

.w-11\/12 {
  width: 91.6666666% !important;
}

.w-2\/3 {
  width: 66.666667% !important;
}

.w-3\/4 {
  width: 75% !important;
}

.w-5\/6 {
  width: 83.3333333% !important;
}

.w-7\/6 {
  width: 116.6666666% !important;
}

.w-4\/3 {
  width: 133.3333333% !important;
}

.w-3\/2 {
  width: 150% !important;
}

.w-full {
  width: 100% !important;
}

.w-1\/6vh {
  width: 16.666666vh !important;
}

.w-1\/4vh {
  width: 25vh !important;
}

.w-1\/3vh {
  width: 33.333333vh !important;
}

.w-1\/2vh {
  width: 50vh !important;
}

.w-7\/12vh {
  width: 58.333333vh !important;
}

.w-2\/3vh {
  width: 66.666667vh !important;
}

.w-3\/4vh {
  width: 75vh !important;
}

.w-5\/6vh {
  width: 83.3333333vh !important;
}

.w-full-vh {
  width: 100vh !important;
}

.w-s1 {
  width: 0.25rem !important;
}

.w-s2 {
  width: 0.5rem !important;
}

.w-s3 {
  width: 0.75rem !important;
}

.w-s4 {
  width: 1rem !important;
}

.w-s5 {
  width: 1.25rem !important;
}

.w-s6 {
  width: 1.5rem !important;
}

.w-s8 {
  width: 2rem !important;
}

.w-s10 {
  width: 2.5rem !important;
}

.w-s12 {
  width: 3rem !important;
}

.w-s14 {
  width: 3.5rem !important;
}

.w-s16 {
  width: 4rem !important;
}

.w-s18 {
  width: 4.5rem !important;
}

.w-s20 {
  width: 5rem !important;
}

.w-s24 {
  width: 6rem !important;
}

.w-s28 {
  width: 7rem !important;
}

.w-s32 {
  width: 8rem !important;
}

.w-s60 {
  width: 15rem !important;
}

.w-s70 {
  width: 17.5rem !important;
}

.w-s72 {
  width: 18rem !important;
}

.w-s40em {
  width: 10em !important;
}

.w-s44em {
  width: 11em !important;
}

.w-s46em {
  width: 11.5em !important;
}

.w-s48em {
  width: 12em !important;
}

.w-s49em {
  width: 12.25em !important;
}

.w-s50em {
  width: 12.5em !important;
}

.w-s52em {
  width: 13em !important;
}

.w-s54em {
  width: 13.5em !important;
}

.w-s55em {
  width: 13.75em !important;
}

.w-s56em {
  width: 14em !important;
}

.w-s60em {
  width: 15em !important;
}

.w-s70em {
  width: 18em !important;
}

.w-none {
  width: none !important;
}

.w-fit-content {
  width: fit-content !important;
}

.w-auto {
  width: auto !important;
}

.min-w-0 {
  min-width: 0 !important;
}

.min-w-1 {
  min-width: 16rem !important;
}

.min-w-2 {
  min-width: 20rem !important;
}

.min-w-3 {
  min-width: 24rem !important;
}

.min-w-4 {
  min-width: 28rem !important;
}

.min-w-5 {
  min-width: 32rem !important;
}

.min-w-6 {
  min-width: 36rem !important;
}

.min-w-7 {
  min-width: 42rem !important;
}

.min-w-8 {
  min-width: 48rem !important;
}

.min-w-9 {
  min-width: 56rem !important;
}

.min-w-10 {
  min-width: 64rem !important;
}

.min-w-11 {
  min-width: 72rem !important;
}

.min-w-12 {
  min-width: 80rem !important;
}

.min-w-13 {
  min-width: 88rem !important;
}

.min-w-14 {
  min-width: 96rem !important;
}

.min-w-1em {
  min-width: 16em !important;
}

.min-w-2em {
  min-width: 20em !important;
}

.min-w-3em {
  min-width: 24em !important;
}

.min-w-4em {
  min-width: 28em !important;
}

.min-w-5em {
  min-width: 32em !important;
}

.min-w-6em {
  min-width: 36em !important;
}

.min-w-7em {
  min-width: 42em !important;
}

.min-w-8em {
  min-width: 48em !important;
}

.min-w-9em {
  min-width: 56em !important;
}

.min-w-10em {
  min-width: 64em !important;
}

.min-w-11em {
  min-width: 72em !important;
}

.min-w-1\/6 {
  min-width: 16.666666% !important;
}

.min-w-1\/4 {
  min-width: 25% !important;
}

.min-w-2\/7 {
  min-width: 28.57142857% !important;
}

.min-w-1\/3 {
  min-width: 33.333333% !important;
}

.min-w-1\/5 {
  min-width: 20% !important;
}

.min-w-2\/5 {
  min-width: 40% !important;
}

.min-w-3\/5 {
  min-width: 60% !important;
}

.min-w-4\/5 {
  min-width: 80% !important;
}

.min-w-1\/2 {
  min-width: 50% !important;
}

.min-w-1\/12 {
  min-width: 8.333333% !important;
}

.min-w-5\/12 {
  min-width: 41.6666666% !important;
}

.min-w-7\/12 {
  min-width: 58.333333% !important;
}

.min-w-11\/12 {
  min-width: 91.6666666% !important;
}

.min-w-2\/3 {
  min-width: 66.666667% !important;
}

.min-w-3\/4 {
  min-width: 75% !important;
}

.min-w-5\/6 {
  min-width: 83.3333333% !important;
}

.min-w-7\/6 {
  min-width: 116.6666666% !important;
}

.min-w-4\/3 {
  min-width: 133.3333333% !important;
}

.min-w-3\/2 {
  min-width: 150% !important;
}

.min-w-full {
  min-width: 100% !important;
}

.min-w-1\/6vh {
  min-width: 16.666666vh !important;
}

.min-w-1\/4vh {
  min-width: 25vh !important;
}

.min-w-1\/3vh {
  min-width: 33.333333vh !important;
}

.min-w-1\/2vh {
  min-width: 50vh !important;
}

.min-w-7\/12vh {
  min-width: 58.333333vh !important;
}

.min-w-2\/3vh {
  min-width: 66.666667vh !important;
}

.min-w-3\/4vh {
  min-width: 75vh !important;
}

.min-w-5\/6vh {
  min-width: 83.3333333vh !important;
}

.min-w-full-vh {
  min-width: 100vh !important;
}

.min-w-s1 {
  min-width: 0.25rem !important;
}

.min-w-s2 {
  min-width: 0.5rem !important;
}

.min-w-s3 {
  min-width: 0.75rem !important;
}

.min-w-s4 {
  min-width: 1rem !important;
}

.min-w-s5 {
  min-width: 1.25rem !important;
}

.min-w-s6 {
  min-width: 1.5rem !important;
}

.min-w-s8 {
  min-width: 2rem !important;
}

.min-w-s10 {
  min-width: 2.5rem !important;
}

.min-w-s12 {
  min-width: 3rem !important;
}

.min-w-s14 {
  min-width: 3.5rem !important;
}

.min-w-s16 {
  min-width: 4rem !important;
}

.min-w-s18 {
  min-width: 4.5rem !important;
}

.min-w-s20 {
  min-width: 5rem !important;
}

.min-w-s24 {
  min-width: 6rem !important;
}

.min-w-s28 {
  min-width: 7rem !important;
}

.min-w-s32 {
  min-width: 8rem !important;
}

.min-w-s60 {
  min-width: 15rem !important;
}

.min-w-s70 {
  min-width: 17.5rem !important;
}

.min-w-s72 {
  min-width: 18rem !important;
}

.min-w-s40em {
  min-width: 10em !important;
}

.min-w-s44em {
  min-width: 11em !important;
}

.min-w-s46em {
  min-width: 11.5em !important;
}

.min-w-s48em {
  min-width: 12em !important;
}

.min-w-s49em {
  min-width: 12.25em !important;
}

.min-w-s50em {
  min-width: 12.5em !important;
}

.min-w-s52em {
  min-width: 13em !important;
}

.min-w-s54em {
  min-width: 13.5em !important;
}

.min-w-s55em {
  min-width: 13.75em !important;
}

.min-w-s56em {
  min-width: 14em !important;
}

.min-w-s60em {
  min-width: 15em !important;
}

.min-w-s70em {
  min-width: 18em !important;
}

.min-w-none {
  min-width: none !important;
}

.min-w-fit-content {
  min-width: fit-content !important;
}

.min-w-auto {
  min-width: auto !important;
}

.max-w-0 {
  max-width: 0 !important;
}

.max-w-1 {
  max-width: 16rem !important;
}

.max-w-2 {
  max-width: 20rem !important;
}

.max-w-3 {
  max-width: 24rem !important;
}

.max-w-4 {
  max-width: 28rem !important;
}

.max-w-5 {
  max-width: 32rem !important;
}

.max-w-6 {
  max-width: 36rem !important;
}

.max-w-7 {
  max-width: 42rem !important;
}

.max-w-8 {
  max-width: 48rem !important;
}

.max-w-9 {
  max-width: 56rem !important;
}

.max-w-10 {
  max-width: 64rem !important;
}

.max-w-11 {
  max-width: 72rem !important;
}

.max-w-12 {
  max-width: 80rem !important;
}

.max-w-13 {
  max-width: 88rem !important;
}

.max-w-14 {
  max-width: 96rem !important;
}

.max-w-1em {
  max-width: 16em !important;
}

.max-w-2em {
  max-width: 20em !important;
}

.max-w-3em {
  max-width: 24em !important;
}

.max-w-4em {
  max-width: 28em !important;
}

.max-w-5em {
  max-width: 32em !important;
}

.max-w-6em {
  max-width: 36em !important;
}

.max-w-7em {
  max-width: 42em !important;
}

.max-w-8em {
  max-width: 48em !important;
}

.max-w-9em {
  max-width: 56em !important;
}

.max-w-10em {
  max-width: 64em !important;
}

.max-w-11em {
  max-width: 72em !important;
}

.max-w-1\/6 {
  max-width: 16.666666% !important;
}

.max-w-1\/4 {
  max-width: 25% !important;
}

.max-w-2\/7 {
  max-width: 28.57142857% !important;
}

.max-w-1\/3 {
  max-width: 33.333333% !important;
}

.max-w-1\/5 {
  max-width: 20% !important;
}

.max-w-2\/5 {
  max-width: 40% !important;
}

.max-w-3\/5 {
  max-width: 60% !important;
}

.max-w-4\/5 {
  max-width: 80% !important;
}

.max-w-1\/2 {
  max-width: 50% !important;
}

.max-w-1\/12 {
  max-width: 8.333333% !important;
}

.max-w-5\/12 {
  max-width: 41.6666666% !important;
}

.max-w-7\/12 {
  max-width: 58.333333% !important;
}

.max-w-11\/12 {
  max-width: 91.6666666% !important;
}

.max-w-2\/3 {
  max-width: 66.666667% !important;
}

.max-w-3\/4 {
  max-width: 75% !important;
}

.max-w-5\/6 {
  max-width: 83.3333333% !important;
}

.max-w-7\/6 {
  max-width: 116.6666666% !important;
}

.max-w-4\/3 {
  max-width: 133.3333333% !important;
}

.max-w-3\/2 {
  max-width: 150% !important;
}

.max-w-full {
  max-width: 100% !important;
}

.max-w-1\/6vh {
  max-width: 16.666666vh !important;
}

.max-w-1\/4vh {
  max-width: 25vh !important;
}

.max-w-1\/3vh {
  max-width: 33.333333vh !important;
}

.max-w-1\/2vh {
  max-width: 50vh !important;
}

.max-w-7\/12vh {
  max-width: 58.333333vh !important;
}

.max-w-2\/3vh {
  max-width: 66.666667vh !important;
}

.max-w-3\/4vh {
  max-width: 75vh !important;
}

.max-w-5\/6vh {
  max-width: 83.3333333vh !important;
}

.max-w-full-vh {
  max-width: 100vh !important;
}

.max-w-s1 {
  max-width: 0.25rem !important;
}

.max-w-s2 {
  max-width: 0.5rem !important;
}

.max-w-s3 {
  max-width: 0.75rem !important;
}

.max-w-s4 {
  max-width: 1rem !important;
}

.max-w-s5 {
  max-width: 1.25rem !important;
}

.max-w-s6 {
  max-width: 1.5rem !important;
}

.max-w-s8 {
  max-width: 2rem !important;
}

.max-w-s10 {
  max-width: 2.5rem !important;
}

.max-w-s12 {
  max-width: 3rem !important;
}

.max-w-s14 {
  max-width: 3.5rem !important;
}

.max-w-s16 {
  max-width: 4rem !important;
}

.max-w-s18 {
  max-width: 4.5rem !important;
}

.max-w-s20 {
  max-width: 5rem !important;
}

.max-w-s24 {
  max-width: 6rem !important;
}

.max-w-s28 {
  max-width: 7rem !important;
}

.max-w-s32 {
  max-width: 8rem !important;
}

.max-w-s60 {
  max-width: 15rem !important;
}

.max-w-s70 {
  max-width: 17.5rem !important;
}

.max-w-s72 {
  max-width: 18rem !important;
}

.max-w-s40em {
  max-width: 10em !important;
}

.max-w-s44em {
  max-width: 11em !important;
}

.max-w-s46em {
  max-width: 11.5em !important;
}

.max-w-s48em {
  max-width: 12em !important;
}

.max-w-s49em {
  max-width: 12.25em !important;
}

.max-w-s50em {
  max-width: 12.5em !important;
}

.max-w-s52em {
  max-width: 13em !important;
}

.max-w-s54em {
  max-width: 13.5em !important;
}

.max-w-s55em {
  max-width: 13.75em !important;
}

.max-w-s56em {
  max-width: 14em !important;
}

.max-w-s60em {
  max-width: 15em !important;
}

.max-w-s70em {
  max-width: 18em !important;
}

.max-w-none {
  max-width: none !important;
}

.max-w-fit-content {
  max-width: fit-content !important;
}

.max-w-auto {
  max-width: auto !important;
}

@media screen and (min-width: 360px) {
  .xs\:h-0 {
    height: 0 !important;
  }
  .xs\:h-1 {
    height: 16rem !important;
  }
  .xs\:h-2 {
    height: 20rem !important;
  }
  .xs\:h-3 {
    height: 24rem !important;
  }
  .xs\:h-4 {
    height: 28rem !important;
  }
  .xs\:h-5 {
    height: 32rem !important;
  }
  .xs\:h-6 {
    height: 36rem !important;
  }
  .xs\:h-7 {
    height: 42rem !important;
  }
  .xs\:h-8 {
    height: 48rem !important;
  }
  .xs\:h-9 {
    height: 56rem !important;
  }
  .xs\:h-10 {
    height: 64rem !important;
  }
  .xs\:h-11 {
    height: 72rem !important;
  }
  .xs\:h-12 {
    height: 80rem !important;
  }
  .xs\:h-13 {
    height: 88rem !important;
  }
  .xs\:h-14 {
    height: 96rem !important;
  }
  .xs\:h-1em {
    height: 16em !important;
  }
  .xs\:h-2em {
    height: 20em !important;
  }
  .xs\:h-3em {
    height: 24em !important;
  }
  .xs\:h-4em {
    height: 28em !important;
  }
  .xs\:h-5em {
    height: 32em !important;
  }
  .xs\:h-6em {
    height: 36em !important;
  }
  .xs\:h-7em {
    height: 42em !important;
  }
  .xs\:h-8em {
    height: 48em !important;
  }
  .xs\:h-9em {
    height: 56em !important;
  }
  .xs\:h-10em {
    height: 64em !important;
  }
  .xs\:h-11em {
    height: 72em !important;
  }
  .xs\:h-1\/6 {
    height: 16.666666% !important;
  }
  .xs\:h-1\/4 {
    height: 25% !important;
  }
  .xs\:h-2\/7 {
    height: 28.57142857% !important;
  }
  .xs\:h-1\/3 {
    height: 33.333333% !important;
  }
  .xs\:h-1\/5 {
    height: 20% !important;
  }
  .xs\:h-2\/5 {
    height: 40% !important;
  }
  .xs\:h-3\/5 {
    height: 60% !important;
  }
  .xs\:h-4\/5 {
    height: 80% !important;
  }
  .xs\:h-1\/2 {
    height: 50% !important;
  }
  .xs\:h-1\/12 {
    height: 8.333333% !important;
  }
  .xs\:h-5\/12 {
    height: 41.6666666% !important;
  }
  .xs\:h-7\/12 {
    height: 58.333333% !important;
  }
  .xs\:h-11\/12 {
    height: 91.6666666% !important;
  }
  .xs\:h-2\/3 {
    height: 66.666667% !important;
  }
  .xs\:h-3\/4 {
    height: 75% !important;
  }
  .xs\:h-5\/6 {
    height: 83.3333333% !important;
  }
  .xs\:h-7\/6 {
    height: 116.6666666% !important;
  }
  .xs\:h-4\/3 {
    height: 133.3333333% !important;
  }
  .xs\:h-3\/2 {
    height: 150% !important;
  }
  .xs\:h-full {
    height: 100% !important;
  }
  .xs\:h-1\/6vh {
    height: 16.666666vh !important;
  }
  .xs\:h-1\/4vh {
    height: 25vh !important;
  }
  .xs\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .xs\:h-1\/2vh {
    height: 50vh !important;
  }
  .xs\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .xs\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .xs\:h-3\/4vh {
    height: 75vh !important;
  }
  .xs\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .xs\:h-full-vh {
    height: 100vh !important;
  }
  .xs\:h-s1 {
    height: 0.25rem !important;
  }
  .xs\:h-s2 {
    height: 0.5rem !important;
  }
  .xs\:h-s3 {
    height: 0.75rem !important;
  }
  .xs\:h-s4 {
    height: 1rem !important;
  }
  .xs\:h-s5 {
    height: 1.25rem !important;
  }
  .xs\:h-s6 {
    height: 1.5rem !important;
  }
  .xs\:h-s8 {
    height: 2rem !important;
  }
  .xs\:h-s10 {
    height: 2.5rem !important;
  }
  .xs\:h-s12 {
    height: 3rem !important;
  }
  .xs\:h-s14 {
    height: 3.5rem !important;
  }
  .xs\:h-s16 {
    height: 4rem !important;
  }
  .xs\:h-s18 {
    height: 4.5rem !important;
  }
  .xs\:h-s20 {
    height: 5rem !important;
  }
  .xs\:h-s24 {
    height: 6rem !important;
  }
  .xs\:h-s28 {
    height: 7rem !important;
  }
  .xs\:h-s32 {
    height: 8rem !important;
  }
  .xs\:h-s60 {
    height: 15rem !important;
  }
  .xs\:h-s70 {
    height: 17.5rem !important;
  }
  .xs\:h-s72 {
    height: 18rem !important;
  }
  .xs\:h-s40em {
    height: 10em !important;
  }
  .xs\:h-s44em {
    height: 11em !important;
  }
  .xs\:h-s46em {
    height: 11.5em !important;
  }
  .xs\:h-s48em {
    height: 12em !important;
  }
  .xs\:h-s49em {
    height: 12.25em !important;
  }
  .xs\:h-s50em {
    height: 12.5em !important;
  }
  .xs\:h-s52em {
    height: 13em !important;
  }
  .xs\:h-s54em {
    height: 13.5em !important;
  }
  .xs\:h-s55em {
    height: 13.75em !important;
  }
  .xs\:h-s56em {
    height: 14em !important;
  }
  .xs\:h-s60em {
    height: 15em !important;
  }
  .xs\:h-s70em {
    height: 18em !important;
  }
  .xs\:h-none {
    height: none !important;
  }
  .xs\:h-fit-content {
    height: fit-content !important;
  }
  .xs\:h-auto {
    height: auto !important;
  }
  .xs\:min-h-0 {
    min-height: 0 !important;
  }
  .xs\:min-h-1 {
    min-height: 16rem !important;
  }
  .xs\:min-h-2 {
    min-height: 20rem !important;
  }
  .xs\:min-h-3 {
    min-height: 24rem !important;
  }
  .xs\:min-h-4 {
    min-height: 28rem !important;
  }
  .xs\:min-h-5 {
    min-height: 32rem !important;
  }
  .xs\:min-h-6 {
    min-height: 36rem !important;
  }
  .xs\:min-h-7 {
    min-height: 42rem !important;
  }
  .xs\:min-h-8 {
    min-height: 48rem !important;
  }
  .xs\:min-h-9 {
    min-height: 56rem !important;
  }
  .xs\:min-h-10 {
    min-height: 64rem !important;
  }
  .xs\:min-h-11 {
    min-height: 72rem !important;
  }
  .xs\:min-h-12 {
    min-height: 80rem !important;
  }
  .xs\:min-h-13 {
    min-height: 88rem !important;
  }
  .xs\:min-h-14 {
    min-height: 96rem !important;
  }
  .xs\:min-h-1em {
    min-height: 16em !important;
  }
  .xs\:min-h-2em {
    min-height: 20em !important;
  }
  .xs\:min-h-3em {
    min-height: 24em !important;
  }
  .xs\:min-h-4em {
    min-height: 28em !important;
  }
  .xs\:min-h-5em {
    min-height: 32em !important;
  }
  .xs\:min-h-6em {
    min-height: 36em !important;
  }
  .xs\:min-h-7em {
    min-height: 42em !important;
  }
  .xs\:min-h-8em {
    min-height: 48em !important;
  }
  .xs\:min-h-9em {
    min-height: 56em !important;
  }
  .xs\:min-h-10em {
    min-height: 64em !important;
  }
  .xs\:min-h-11em {
    min-height: 72em !important;
  }
  .xs\:min-h-1\/6 {
    min-height: 16.666666% !important;
  }
  .xs\:min-h-1\/4 {
    min-height: 25% !important;
  }
  .xs\:min-h-2\/7 {
    min-height: 28.57142857% !important;
  }
  .xs\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }
  .xs\:min-h-1\/5 {
    min-height: 20% !important;
  }
  .xs\:min-h-2\/5 {
    min-height: 40% !important;
  }
  .xs\:min-h-3\/5 {
    min-height: 60% !important;
  }
  .xs\:min-h-4\/5 {
    min-height: 80% !important;
  }
  .xs\:min-h-1\/2 {
    min-height: 50% !important;
  }
  .xs\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }
  .xs\:min-h-5\/12 {
    min-height: 41.6666666% !important;
  }
  .xs\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }
  .xs\:min-h-11\/12 {
    min-height: 91.6666666% !important;
  }
  .xs\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }
  .xs\:min-h-3\/4 {
    min-height: 75% !important;
  }
  .xs\:min-h-5\/6 {
    min-height: 83.3333333% !important;
  }
  .xs\:min-h-7\/6 {
    min-height: 116.6666666% !important;
  }
  .xs\:min-h-4\/3 {
    min-height: 133.3333333% !important;
  }
  .xs\:min-h-3\/2 {
    min-height: 150% !important;
  }
  .xs\:min-h-full {
    min-height: 100% !important;
  }
  .xs\:min-h-1\/6vh {
    min-height: 16.666666vh !important;
  }
  .xs\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .xs\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .xs\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .xs\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .xs\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .xs\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .xs\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .xs\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .xs\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .xs\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .xs\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .xs\:min-h-s4 {
    min-height: 1rem !important;
  }
  .xs\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .xs\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .xs\:min-h-s8 {
    min-height: 2rem !important;
  }
  .xs\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .xs\:min-h-s12 {
    min-height: 3rem !important;
  }
  .xs\:min-h-s14 {
    min-height: 3.5rem !important;
  }
  .xs\:min-h-s16 {
    min-height: 4rem !important;
  }
  .xs\:min-h-s18 {
    min-height: 4.5rem !important;
  }
  .xs\:min-h-s20 {
    min-height: 5rem !important;
  }
  .xs\:min-h-s24 {
    min-height: 6rem !important;
  }
  .xs\:min-h-s28 {
    min-height: 7rem !important;
  }
  .xs\:min-h-s32 {
    min-height: 8rem !important;
  }
  .xs\:min-h-s60 {
    min-height: 15rem !important;
  }
  .xs\:min-h-s70 {
    min-height: 17.5rem !important;
  }
  .xs\:min-h-s72 {
    min-height: 18rem !important;
  }
  .xs\:min-h-s40em {
    min-height: 10em !important;
  }
  .xs\:min-h-s44em {
    min-height: 11em !important;
  }
  .xs\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .xs\:min-h-s48em {
    min-height: 12em !important;
  }
  .xs\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .xs\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .xs\:min-h-s52em {
    min-height: 13em !important;
  }
  .xs\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .xs\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .xs\:min-h-s56em {
    min-height: 14em !important;
  }
  .xs\:min-h-s60em {
    min-height: 15em !important;
  }
  .xs\:min-h-s70em {
    min-height: 18em !important;
  }
  .xs\:min-h-none {
    min-height: none !important;
  }
  .xs\:min-h-fit-content {
    min-height: fit-content !important;
  }
  .xs\:min-h-auto {
    min-height: auto !important;
  }
  .xs\:max-h-0 {
    max-height: 0 !important;
  }
  .xs\:max-h-1 {
    max-height: 16rem !important;
  }
  .xs\:max-h-2 {
    max-height: 20rem !important;
  }
  .xs\:max-h-3 {
    max-height: 24rem !important;
  }
  .xs\:max-h-4 {
    max-height: 28rem !important;
  }
  .xs\:max-h-5 {
    max-height: 32rem !important;
  }
  .xs\:max-h-6 {
    max-height: 36rem !important;
  }
  .xs\:max-h-7 {
    max-height: 42rem !important;
  }
  .xs\:max-h-8 {
    max-height: 48rem !important;
  }
  .xs\:max-h-9 {
    max-height: 56rem !important;
  }
  .xs\:max-h-10 {
    max-height: 64rem !important;
  }
  .xs\:max-h-11 {
    max-height: 72rem !important;
  }
  .xs\:max-h-12 {
    max-height: 80rem !important;
  }
  .xs\:max-h-13 {
    max-height: 88rem !important;
  }
  .xs\:max-h-14 {
    max-height: 96rem !important;
  }
  .xs\:max-h-1em {
    max-height: 16em !important;
  }
  .xs\:max-h-2em {
    max-height: 20em !important;
  }
  .xs\:max-h-3em {
    max-height: 24em !important;
  }
  .xs\:max-h-4em {
    max-height: 28em !important;
  }
  .xs\:max-h-5em {
    max-height: 32em !important;
  }
  .xs\:max-h-6em {
    max-height: 36em !important;
  }
  .xs\:max-h-7em {
    max-height: 42em !important;
  }
  .xs\:max-h-8em {
    max-height: 48em !important;
  }
  .xs\:max-h-9em {
    max-height: 56em !important;
  }
  .xs\:max-h-10em {
    max-height: 64em !important;
  }
  .xs\:max-h-11em {
    max-height: 72em !important;
  }
  .xs\:max-h-1\/6 {
    max-height: 16.666666% !important;
  }
  .xs\:max-h-1\/4 {
    max-height: 25% !important;
  }
  .xs\:max-h-2\/7 {
    max-height: 28.57142857% !important;
  }
  .xs\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }
  .xs\:max-h-1\/5 {
    max-height: 20% !important;
  }
  .xs\:max-h-2\/5 {
    max-height: 40% !important;
  }
  .xs\:max-h-3\/5 {
    max-height: 60% !important;
  }
  .xs\:max-h-4\/5 {
    max-height: 80% !important;
  }
  .xs\:max-h-1\/2 {
    max-height: 50% !important;
  }
  .xs\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }
  .xs\:max-h-5\/12 {
    max-height: 41.6666666% !important;
  }
  .xs\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }
  .xs\:max-h-11\/12 {
    max-height: 91.6666666% !important;
  }
  .xs\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }
  .xs\:max-h-3\/4 {
    max-height: 75% !important;
  }
  .xs\:max-h-5\/6 {
    max-height: 83.3333333% !important;
  }
  .xs\:max-h-7\/6 {
    max-height: 116.6666666% !important;
  }
  .xs\:max-h-4\/3 {
    max-height: 133.3333333% !important;
  }
  .xs\:max-h-3\/2 {
    max-height: 150% !important;
  }
  .xs\:max-h-full {
    max-height: 100% !important;
  }
  .xs\:max-h-1\/6vh {
    max-height: 16.666666vh !important;
  }
  .xs\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .xs\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .xs\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .xs\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .xs\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .xs\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .xs\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .xs\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .xs\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .xs\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .xs\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .xs\:max-h-s4 {
    max-height: 1rem !important;
  }
  .xs\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .xs\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .xs\:max-h-s8 {
    max-height: 2rem !important;
  }
  .xs\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .xs\:max-h-s12 {
    max-height: 3rem !important;
  }
  .xs\:max-h-s14 {
    max-height: 3.5rem !important;
  }
  .xs\:max-h-s16 {
    max-height: 4rem !important;
  }
  .xs\:max-h-s18 {
    max-height: 4.5rem !important;
  }
  .xs\:max-h-s20 {
    max-height: 5rem !important;
  }
  .xs\:max-h-s24 {
    max-height: 6rem !important;
  }
  .xs\:max-h-s28 {
    max-height: 7rem !important;
  }
  .xs\:max-h-s32 {
    max-height: 8rem !important;
  }
  .xs\:max-h-s60 {
    max-height: 15rem !important;
  }
  .xs\:max-h-s70 {
    max-height: 17.5rem !important;
  }
  .xs\:max-h-s72 {
    max-height: 18rem !important;
  }
  .xs\:max-h-s40em {
    max-height: 10em !important;
  }
  .xs\:max-h-s44em {
    max-height: 11em !important;
  }
  .xs\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .xs\:max-h-s48em {
    max-height: 12em !important;
  }
  .xs\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .xs\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .xs\:max-h-s52em {
    max-height: 13em !important;
  }
  .xs\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .xs\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .xs\:max-h-s56em {
    max-height: 14em !important;
  }
  .xs\:max-h-s60em {
    max-height: 15em !important;
  }
  .xs\:max-h-s70em {
    max-height: 18em !important;
  }
  .xs\:max-h-none {
    max-height: none !important;
  }
  .xs\:max-h-fit-content {
    max-height: fit-content !important;
  }
  .xs\:max-h-auto {
    max-height: auto !important;
  }
  .xs\:w-0 {
    width: 0 !important;
  }
  .xs\:w-1 {
    width: 16rem !important;
  }
  .xs\:w-2 {
    width: 20rem !important;
  }
  .xs\:w-3 {
    width: 24rem !important;
  }
  .xs\:w-4 {
    width: 28rem !important;
  }
  .xs\:w-5 {
    width: 32rem !important;
  }
  .xs\:w-6 {
    width: 36rem !important;
  }
  .xs\:w-7 {
    width: 42rem !important;
  }
  .xs\:w-8 {
    width: 48rem !important;
  }
  .xs\:w-9 {
    width: 56rem !important;
  }
  .xs\:w-10 {
    width: 64rem !important;
  }
  .xs\:w-11 {
    width: 72rem !important;
  }
  .xs\:w-12 {
    width: 80rem !important;
  }
  .xs\:w-13 {
    width: 88rem !important;
  }
  .xs\:w-14 {
    width: 96rem !important;
  }
  .xs\:w-1em {
    width: 16em !important;
  }
  .xs\:w-2em {
    width: 20em !important;
  }
  .xs\:w-3em {
    width: 24em !important;
  }
  .xs\:w-4em {
    width: 28em !important;
  }
  .xs\:w-5em {
    width: 32em !important;
  }
  .xs\:w-6em {
    width: 36em !important;
  }
  .xs\:w-7em {
    width: 42em !important;
  }
  .xs\:w-8em {
    width: 48em !important;
  }
  .xs\:w-9em {
    width: 56em !important;
  }
  .xs\:w-10em {
    width: 64em !important;
  }
  .xs\:w-11em {
    width: 72em !important;
  }
  .xs\:w-1\/6 {
    width: 16.666666% !important;
  }
  .xs\:w-1\/4 {
    width: 25% !important;
  }
  .xs\:w-2\/7 {
    width: 28.57142857% !important;
  }
  .xs\:w-1\/3 {
    width: 33.333333% !important;
  }
  .xs\:w-1\/5 {
    width: 20% !important;
  }
  .xs\:w-2\/5 {
    width: 40% !important;
  }
  .xs\:w-3\/5 {
    width: 60% !important;
  }
  .xs\:w-4\/5 {
    width: 80% !important;
  }
  .xs\:w-1\/2 {
    width: 50% !important;
  }
  .xs\:w-1\/12 {
    width: 8.333333% !important;
  }
  .xs\:w-5\/12 {
    width: 41.6666666% !important;
  }
  .xs\:w-7\/12 {
    width: 58.333333% !important;
  }
  .xs\:w-11\/12 {
    width: 91.6666666% !important;
  }
  .xs\:w-2\/3 {
    width: 66.666667% !important;
  }
  .xs\:w-3\/4 {
    width: 75% !important;
  }
  .xs\:w-5\/6 {
    width: 83.3333333% !important;
  }
  .xs\:w-7\/6 {
    width: 116.6666666% !important;
  }
  .xs\:w-4\/3 {
    width: 133.3333333% !important;
  }
  .xs\:w-3\/2 {
    width: 150% !important;
  }
  .xs\:w-full {
    width: 100% !important;
  }
  .xs\:w-1\/6vh {
    width: 16.666666vh !important;
  }
  .xs\:w-1\/4vh {
    width: 25vh !important;
  }
  .xs\:w-1\/3vh {
    width: 33.333333vh !important;
  }
  .xs\:w-1\/2vh {
    width: 50vh !important;
  }
  .xs\:w-7\/12vh {
    width: 58.333333vh !important;
  }
  .xs\:w-2\/3vh {
    width: 66.666667vh !important;
  }
  .xs\:w-3\/4vh {
    width: 75vh !important;
  }
  .xs\:w-5\/6vh {
    width: 83.3333333vh !important;
  }
  .xs\:w-full-vh {
    width: 100vh !important;
  }
  .xs\:w-s1 {
    width: 0.25rem !important;
  }
  .xs\:w-s2 {
    width: 0.5rem !important;
  }
  .xs\:w-s3 {
    width: 0.75rem !important;
  }
  .xs\:w-s4 {
    width: 1rem !important;
  }
  .xs\:w-s5 {
    width: 1.25rem !important;
  }
  .xs\:w-s6 {
    width: 1.5rem !important;
  }
  .xs\:w-s8 {
    width: 2rem !important;
  }
  .xs\:w-s10 {
    width: 2.5rem !important;
  }
  .xs\:w-s12 {
    width: 3rem !important;
  }
  .xs\:w-s14 {
    width: 3.5rem !important;
  }
  .xs\:w-s16 {
    width: 4rem !important;
  }
  .xs\:w-s18 {
    width: 4.5rem !important;
  }
  .xs\:w-s20 {
    width: 5rem !important;
  }
  .xs\:w-s24 {
    width: 6rem !important;
  }
  .xs\:w-s28 {
    width: 7rem !important;
  }
  .xs\:w-s32 {
    width: 8rem !important;
  }
  .xs\:w-s60 {
    width: 15rem !important;
  }
  .xs\:w-s70 {
    width: 17.5rem !important;
  }
  .xs\:w-s72 {
    width: 18rem !important;
  }
  .xs\:w-s40em {
    width: 10em !important;
  }
  .xs\:w-s44em {
    width: 11em !important;
  }
  .xs\:w-s46em {
    width: 11.5em !important;
  }
  .xs\:w-s48em {
    width: 12em !important;
  }
  .xs\:w-s49em {
    width: 12.25em !important;
  }
  .xs\:w-s50em {
    width: 12.5em !important;
  }
  .xs\:w-s52em {
    width: 13em !important;
  }
  .xs\:w-s54em {
    width: 13.5em !important;
  }
  .xs\:w-s55em {
    width: 13.75em !important;
  }
  .xs\:w-s56em {
    width: 14em !important;
  }
  .xs\:w-s60em {
    width: 15em !important;
  }
  .xs\:w-s70em {
    width: 18em !important;
  }
  .xs\:w-none {
    width: none !important;
  }
  .xs\:w-fit-content {
    width: fit-content !important;
  }
  .xs\:w-auto {
    width: auto !important;
  }
  .xs\:min-w-0 {
    min-width: 0 !important;
  }
  .xs\:min-w-1 {
    min-width: 16rem !important;
  }
  .xs\:min-w-2 {
    min-width: 20rem !important;
  }
  .xs\:min-w-3 {
    min-width: 24rem !important;
  }
  .xs\:min-w-4 {
    min-width: 28rem !important;
  }
  .xs\:min-w-5 {
    min-width: 32rem !important;
  }
  .xs\:min-w-6 {
    min-width: 36rem !important;
  }
  .xs\:min-w-7 {
    min-width: 42rem !important;
  }
  .xs\:min-w-8 {
    min-width: 48rem !important;
  }
  .xs\:min-w-9 {
    min-width: 56rem !important;
  }
  .xs\:min-w-10 {
    min-width: 64rem !important;
  }
  .xs\:min-w-11 {
    min-width: 72rem !important;
  }
  .xs\:min-w-12 {
    min-width: 80rem !important;
  }
  .xs\:min-w-13 {
    min-width: 88rem !important;
  }
  .xs\:min-w-14 {
    min-width: 96rem !important;
  }
  .xs\:min-w-1em {
    min-width: 16em !important;
  }
  .xs\:min-w-2em {
    min-width: 20em !important;
  }
  .xs\:min-w-3em {
    min-width: 24em !important;
  }
  .xs\:min-w-4em {
    min-width: 28em !important;
  }
  .xs\:min-w-5em {
    min-width: 32em !important;
  }
  .xs\:min-w-6em {
    min-width: 36em !important;
  }
  .xs\:min-w-7em {
    min-width: 42em !important;
  }
  .xs\:min-w-8em {
    min-width: 48em !important;
  }
  .xs\:min-w-9em {
    min-width: 56em !important;
  }
  .xs\:min-w-10em {
    min-width: 64em !important;
  }
  .xs\:min-w-11em {
    min-width: 72em !important;
  }
  .xs\:min-w-1\/6 {
    min-width: 16.666666% !important;
  }
  .xs\:min-w-1\/4 {
    min-width: 25% !important;
  }
  .xs\:min-w-2\/7 {
    min-width: 28.57142857% !important;
  }
  .xs\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }
  .xs\:min-w-1\/5 {
    min-width: 20% !important;
  }
  .xs\:min-w-2\/5 {
    min-width: 40% !important;
  }
  .xs\:min-w-3\/5 {
    min-width: 60% !important;
  }
  .xs\:min-w-4\/5 {
    min-width: 80% !important;
  }
  .xs\:min-w-1\/2 {
    min-width: 50% !important;
  }
  .xs\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }
  .xs\:min-w-5\/12 {
    min-width: 41.6666666% !important;
  }
  .xs\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }
  .xs\:min-w-11\/12 {
    min-width: 91.6666666% !important;
  }
  .xs\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }
  .xs\:min-w-3\/4 {
    min-width: 75% !important;
  }
  .xs\:min-w-5\/6 {
    min-width: 83.3333333% !important;
  }
  .xs\:min-w-7\/6 {
    min-width: 116.6666666% !important;
  }
  .xs\:min-w-4\/3 {
    min-width: 133.3333333% !important;
  }
  .xs\:min-w-3\/2 {
    min-width: 150% !important;
  }
  .xs\:min-w-full {
    min-width: 100% !important;
  }
  .xs\:min-w-1\/6vh {
    min-width: 16.666666vh !important;
  }
  .xs\:min-w-1\/4vh {
    min-width: 25vh !important;
  }
  .xs\:min-w-1\/3vh {
    min-width: 33.333333vh !important;
  }
  .xs\:min-w-1\/2vh {
    min-width: 50vh !important;
  }
  .xs\:min-w-7\/12vh {
    min-width: 58.333333vh !important;
  }
  .xs\:min-w-2\/3vh {
    min-width: 66.666667vh !important;
  }
  .xs\:min-w-3\/4vh {
    min-width: 75vh !important;
  }
  .xs\:min-w-5\/6vh {
    min-width: 83.3333333vh !important;
  }
  .xs\:min-w-full-vh {
    min-width: 100vh !important;
  }
  .xs\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .xs\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .xs\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .xs\:min-w-s4 {
    min-width: 1rem !important;
  }
  .xs\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .xs\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .xs\:min-w-s8 {
    min-width: 2rem !important;
  }
  .xs\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .xs\:min-w-s12 {
    min-width: 3rem !important;
  }
  .xs\:min-w-s14 {
    min-width: 3.5rem !important;
  }
  .xs\:min-w-s16 {
    min-width: 4rem !important;
  }
  .xs\:min-w-s18 {
    min-width: 4.5rem !important;
  }
  .xs\:min-w-s20 {
    min-width: 5rem !important;
  }
  .xs\:min-w-s24 {
    min-width: 6rem !important;
  }
  .xs\:min-w-s28 {
    min-width: 7rem !important;
  }
  .xs\:min-w-s32 {
    min-width: 8rem !important;
  }
  .xs\:min-w-s60 {
    min-width: 15rem !important;
  }
  .xs\:min-w-s70 {
    min-width: 17.5rem !important;
  }
  .xs\:min-w-s72 {
    min-width: 18rem !important;
  }
  .xs\:min-w-s40em {
    min-width: 10em !important;
  }
  .xs\:min-w-s44em {
    min-width: 11em !important;
  }
  .xs\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .xs\:min-w-s48em {
    min-width: 12em !important;
  }
  .xs\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .xs\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .xs\:min-w-s52em {
    min-width: 13em !important;
  }
  .xs\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .xs\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .xs\:min-w-s56em {
    min-width: 14em !important;
  }
  .xs\:min-w-s60em {
    min-width: 15em !important;
  }
  .xs\:min-w-s70em {
    min-width: 18em !important;
  }
  .xs\:min-w-none {
    min-width: none !important;
  }
  .xs\:min-w-fit-content {
    min-width: fit-content !important;
  }
  .xs\:min-w-auto {
    min-width: auto !important;
  }
  .xs\:max-w-0 {
    max-width: 0 !important;
  }
  .xs\:max-w-1 {
    max-width: 16rem !important;
  }
  .xs\:max-w-2 {
    max-width: 20rem !important;
  }
  .xs\:max-w-3 {
    max-width: 24rem !important;
  }
  .xs\:max-w-4 {
    max-width: 28rem !important;
  }
  .xs\:max-w-5 {
    max-width: 32rem !important;
  }
  .xs\:max-w-6 {
    max-width: 36rem !important;
  }
  .xs\:max-w-7 {
    max-width: 42rem !important;
  }
  .xs\:max-w-8 {
    max-width: 48rem !important;
  }
  .xs\:max-w-9 {
    max-width: 56rem !important;
  }
  .xs\:max-w-10 {
    max-width: 64rem !important;
  }
  .xs\:max-w-11 {
    max-width: 72rem !important;
  }
  .xs\:max-w-12 {
    max-width: 80rem !important;
  }
  .xs\:max-w-13 {
    max-width: 88rem !important;
  }
  .xs\:max-w-14 {
    max-width: 96rem !important;
  }
  .xs\:max-w-1em {
    max-width: 16em !important;
  }
  .xs\:max-w-2em {
    max-width: 20em !important;
  }
  .xs\:max-w-3em {
    max-width: 24em !important;
  }
  .xs\:max-w-4em {
    max-width: 28em !important;
  }
  .xs\:max-w-5em {
    max-width: 32em !important;
  }
  .xs\:max-w-6em {
    max-width: 36em !important;
  }
  .xs\:max-w-7em {
    max-width: 42em !important;
  }
  .xs\:max-w-8em {
    max-width: 48em !important;
  }
  .xs\:max-w-9em {
    max-width: 56em !important;
  }
  .xs\:max-w-10em {
    max-width: 64em !important;
  }
  .xs\:max-w-11em {
    max-width: 72em !important;
  }
  .xs\:max-w-1\/6 {
    max-width: 16.666666% !important;
  }
  .xs\:max-w-1\/4 {
    max-width: 25% !important;
  }
  .xs\:max-w-2\/7 {
    max-width: 28.57142857% !important;
  }
  .xs\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }
  .xs\:max-w-1\/5 {
    max-width: 20% !important;
  }
  .xs\:max-w-2\/5 {
    max-width: 40% !important;
  }
  .xs\:max-w-3\/5 {
    max-width: 60% !important;
  }
  .xs\:max-w-4\/5 {
    max-width: 80% !important;
  }
  .xs\:max-w-1\/2 {
    max-width: 50% !important;
  }
  .xs\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }
  .xs\:max-w-5\/12 {
    max-width: 41.6666666% !important;
  }
  .xs\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }
  .xs\:max-w-11\/12 {
    max-width: 91.6666666% !important;
  }
  .xs\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }
  .xs\:max-w-3\/4 {
    max-width: 75% !important;
  }
  .xs\:max-w-5\/6 {
    max-width: 83.3333333% !important;
  }
  .xs\:max-w-7\/6 {
    max-width: 116.6666666% !important;
  }
  .xs\:max-w-4\/3 {
    max-width: 133.3333333% !important;
  }
  .xs\:max-w-3\/2 {
    max-width: 150% !important;
  }
  .xs\:max-w-full {
    max-width: 100% !important;
  }
  .xs\:max-w-1\/6vh {
    max-width: 16.666666vh !important;
  }
  .xs\:max-w-1\/4vh {
    max-width: 25vh !important;
  }
  .xs\:max-w-1\/3vh {
    max-width: 33.333333vh !important;
  }
  .xs\:max-w-1\/2vh {
    max-width: 50vh !important;
  }
  .xs\:max-w-7\/12vh {
    max-width: 58.333333vh !important;
  }
  .xs\:max-w-2\/3vh {
    max-width: 66.666667vh !important;
  }
  .xs\:max-w-3\/4vh {
    max-width: 75vh !important;
  }
  .xs\:max-w-5\/6vh {
    max-width: 83.3333333vh !important;
  }
  .xs\:max-w-full-vh {
    max-width: 100vh !important;
  }
  .xs\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .xs\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .xs\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .xs\:max-w-s4 {
    max-width: 1rem !important;
  }
  .xs\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .xs\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .xs\:max-w-s8 {
    max-width: 2rem !important;
  }
  .xs\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .xs\:max-w-s12 {
    max-width: 3rem !important;
  }
  .xs\:max-w-s14 {
    max-width: 3.5rem !important;
  }
  .xs\:max-w-s16 {
    max-width: 4rem !important;
  }
  .xs\:max-w-s18 {
    max-width: 4.5rem !important;
  }
  .xs\:max-w-s20 {
    max-width: 5rem !important;
  }
  .xs\:max-w-s24 {
    max-width: 6rem !important;
  }
  .xs\:max-w-s28 {
    max-width: 7rem !important;
  }
  .xs\:max-w-s32 {
    max-width: 8rem !important;
  }
  .xs\:max-w-s60 {
    max-width: 15rem !important;
  }
  .xs\:max-w-s70 {
    max-width: 17.5rem !important;
  }
  .xs\:max-w-s72 {
    max-width: 18rem !important;
  }
  .xs\:max-w-s40em {
    max-width: 10em !important;
  }
  .xs\:max-w-s44em {
    max-width: 11em !important;
  }
  .xs\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .xs\:max-w-s48em {
    max-width: 12em !important;
  }
  .xs\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .xs\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .xs\:max-w-s52em {
    max-width: 13em !important;
  }
  .xs\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .xs\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .xs\:max-w-s56em {
    max-width: 14em !important;
  }
  .xs\:max-w-s60em {
    max-width: 15em !important;
  }
  .xs\:max-w-s70em {
    max-width: 18em !important;
  }
  .xs\:max-w-none {
    max-width: none !important;
  }
  .xs\:max-w-fit-content {
    max-width: fit-content !important;
  }
  .xs\:max-w-auto {
    max-width: auto !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:h-0 {
    height: 0 !important;
  }
  .sm\:h-1 {
    height: 16rem !important;
  }
  .sm\:h-2 {
    height: 20rem !important;
  }
  .sm\:h-3 {
    height: 24rem !important;
  }
  .sm\:h-4 {
    height: 28rem !important;
  }
  .sm\:h-5 {
    height: 32rem !important;
  }
  .sm\:h-6 {
    height: 36rem !important;
  }
  .sm\:h-7 {
    height: 42rem !important;
  }
  .sm\:h-8 {
    height: 48rem !important;
  }
  .sm\:h-9 {
    height: 56rem !important;
  }
  .sm\:h-10 {
    height: 64rem !important;
  }
  .sm\:h-11 {
    height: 72rem !important;
  }
  .sm\:h-12 {
    height: 80rem !important;
  }
  .sm\:h-13 {
    height: 88rem !important;
  }
  .sm\:h-14 {
    height: 96rem !important;
  }
  .sm\:h-1em {
    height: 16em !important;
  }
  .sm\:h-2em {
    height: 20em !important;
  }
  .sm\:h-3em {
    height: 24em !important;
  }
  .sm\:h-4em {
    height: 28em !important;
  }
  .sm\:h-5em {
    height: 32em !important;
  }
  .sm\:h-6em {
    height: 36em !important;
  }
  .sm\:h-7em {
    height: 42em !important;
  }
  .sm\:h-8em {
    height: 48em !important;
  }
  .sm\:h-9em {
    height: 56em !important;
  }
  .sm\:h-10em {
    height: 64em !important;
  }
  .sm\:h-11em {
    height: 72em !important;
  }
  .sm\:h-1\/6 {
    height: 16.666666% !important;
  }
  .sm\:h-1\/4 {
    height: 25% !important;
  }
  .sm\:h-2\/7 {
    height: 28.57142857% !important;
  }
  .sm\:h-1\/3 {
    height: 33.333333% !important;
  }
  .sm\:h-1\/5 {
    height: 20% !important;
  }
  .sm\:h-2\/5 {
    height: 40% !important;
  }
  .sm\:h-3\/5 {
    height: 60% !important;
  }
  .sm\:h-4\/5 {
    height: 80% !important;
  }
  .sm\:h-1\/2 {
    height: 50% !important;
  }
  .sm\:h-1\/12 {
    height: 8.333333% !important;
  }
  .sm\:h-5\/12 {
    height: 41.6666666% !important;
  }
  .sm\:h-7\/12 {
    height: 58.333333% !important;
  }
  .sm\:h-11\/12 {
    height: 91.6666666% !important;
  }
  .sm\:h-2\/3 {
    height: 66.666667% !important;
  }
  .sm\:h-3\/4 {
    height: 75% !important;
  }
  .sm\:h-5\/6 {
    height: 83.3333333% !important;
  }
  .sm\:h-7\/6 {
    height: 116.6666666% !important;
  }
  .sm\:h-4\/3 {
    height: 133.3333333% !important;
  }
  .sm\:h-3\/2 {
    height: 150% !important;
  }
  .sm\:h-full {
    height: 100% !important;
  }
  .sm\:h-1\/6vh {
    height: 16.666666vh !important;
  }
  .sm\:h-1\/4vh {
    height: 25vh !important;
  }
  .sm\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .sm\:h-1\/2vh {
    height: 50vh !important;
  }
  .sm\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .sm\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .sm\:h-3\/4vh {
    height: 75vh !important;
  }
  .sm\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .sm\:h-full-vh {
    height: 100vh !important;
  }
  .sm\:h-s1 {
    height: 0.25rem !important;
  }
  .sm\:h-s2 {
    height: 0.5rem !important;
  }
  .sm\:h-s3 {
    height: 0.75rem !important;
  }
  .sm\:h-s4 {
    height: 1rem !important;
  }
  .sm\:h-s5 {
    height: 1.25rem !important;
  }
  .sm\:h-s6 {
    height: 1.5rem !important;
  }
  .sm\:h-s8 {
    height: 2rem !important;
  }
  .sm\:h-s10 {
    height: 2.5rem !important;
  }
  .sm\:h-s12 {
    height: 3rem !important;
  }
  .sm\:h-s14 {
    height: 3.5rem !important;
  }
  .sm\:h-s16 {
    height: 4rem !important;
  }
  .sm\:h-s18 {
    height: 4.5rem !important;
  }
  .sm\:h-s20 {
    height: 5rem !important;
  }
  .sm\:h-s24 {
    height: 6rem !important;
  }
  .sm\:h-s28 {
    height: 7rem !important;
  }
  .sm\:h-s32 {
    height: 8rem !important;
  }
  .sm\:h-s60 {
    height: 15rem !important;
  }
  .sm\:h-s70 {
    height: 17.5rem !important;
  }
  .sm\:h-s72 {
    height: 18rem !important;
  }
  .sm\:h-s40em {
    height: 10em !important;
  }
  .sm\:h-s44em {
    height: 11em !important;
  }
  .sm\:h-s46em {
    height: 11.5em !important;
  }
  .sm\:h-s48em {
    height: 12em !important;
  }
  .sm\:h-s49em {
    height: 12.25em !important;
  }
  .sm\:h-s50em {
    height: 12.5em !important;
  }
  .sm\:h-s52em {
    height: 13em !important;
  }
  .sm\:h-s54em {
    height: 13.5em !important;
  }
  .sm\:h-s55em {
    height: 13.75em !important;
  }
  .sm\:h-s56em {
    height: 14em !important;
  }
  .sm\:h-s60em {
    height: 15em !important;
  }
  .sm\:h-s70em {
    height: 18em !important;
  }
  .sm\:h-none {
    height: none !important;
  }
  .sm\:h-fit-content {
    height: fit-content !important;
  }
  .sm\:h-auto {
    height: auto !important;
  }
  .sm\:min-h-0 {
    min-height: 0 !important;
  }
  .sm\:min-h-1 {
    min-height: 16rem !important;
  }
  .sm\:min-h-2 {
    min-height: 20rem !important;
  }
  .sm\:min-h-3 {
    min-height: 24rem !important;
  }
  .sm\:min-h-4 {
    min-height: 28rem !important;
  }
  .sm\:min-h-5 {
    min-height: 32rem !important;
  }
  .sm\:min-h-6 {
    min-height: 36rem !important;
  }
  .sm\:min-h-7 {
    min-height: 42rem !important;
  }
  .sm\:min-h-8 {
    min-height: 48rem !important;
  }
  .sm\:min-h-9 {
    min-height: 56rem !important;
  }
  .sm\:min-h-10 {
    min-height: 64rem !important;
  }
  .sm\:min-h-11 {
    min-height: 72rem !important;
  }
  .sm\:min-h-12 {
    min-height: 80rem !important;
  }
  .sm\:min-h-13 {
    min-height: 88rem !important;
  }
  .sm\:min-h-14 {
    min-height: 96rem !important;
  }
  .sm\:min-h-1em {
    min-height: 16em !important;
  }
  .sm\:min-h-2em {
    min-height: 20em !important;
  }
  .sm\:min-h-3em {
    min-height: 24em !important;
  }
  .sm\:min-h-4em {
    min-height: 28em !important;
  }
  .sm\:min-h-5em {
    min-height: 32em !important;
  }
  .sm\:min-h-6em {
    min-height: 36em !important;
  }
  .sm\:min-h-7em {
    min-height: 42em !important;
  }
  .sm\:min-h-8em {
    min-height: 48em !important;
  }
  .sm\:min-h-9em {
    min-height: 56em !important;
  }
  .sm\:min-h-10em {
    min-height: 64em !important;
  }
  .sm\:min-h-11em {
    min-height: 72em !important;
  }
  .sm\:min-h-1\/6 {
    min-height: 16.666666% !important;
  }
  .sm\:min-h-1\/4 {
    min-height: 25% !important;
  }
  .sm\:min-h-2\/7 {
    min-height: 28.57142857% !important;
  }
  .sm\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }
  .sm\:min-h-1\/5 {
    min-height: 20% !important;
  }
  .sm\:min-h-2\/5 {
    min-height: 40% !important;
  }
  .sm\:min-h-3\/5 {
    min-height: 60% !important;
  }
  .sm\:min-h-4\/5 {
    min-height: 80% !important;
  }
  .sm\:min-h-1\/2 {
    min-height: 50% !important;
  }
  .sm\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }
  .sm\:min-h-5\/12 {
    min-height: 41.6666666% !important;
  }
  .sm\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }
  .sm\:min-h-11\/12 {
    min-height: 91.6666666% !important;
  }
  .sm\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }
  .sm\:min-h-3\/4 {
    min-height: 75% !important;
  }
  .sm\:min-h-5\/6 {
    min-height: 83.3333333% !important;
  }
  .sm\:min-h-7\/6 {
    min-height: 116.6666666% !important;
  }
  .sm\:min-h-4\/3 {
    min-height: 133.3333333% !important;
  }
  .sm\:min-h-3\/2 {
    min-height: 150% !important;
  }
  .sm\:min-h-full {
    min-height: 100% !important;
  }
  .sm\:min-h-1\/6vh {
    min-height: 16.666666vh !important;
  }
  .sm\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .sm\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .sm\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .sm\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .sm\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .sm\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .sm\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .sm\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .sm\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .sm\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .sm\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .sm\:min-h-s4 {
    min-height: 1rem !important;
  }
  .sm\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .sm\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .sm\:min-h-s8 {
    min-height: 2rem !important;
  }
  .sm\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .sm\:min-h-s12 {
    min-height: 3rem !important;
  }
  .sm\:min-h-s14 {
    min-height: 3.5rem !important;
  }
  .sm\:min-h-s16 {
    min-height: 4rem !important;
  }
  .sm\:min-h-s18 {
    min-height: 4.5rem !important;
  }
  .sm\:min-h-s20 {
    min-height: 5rem !important;
  }
  .sm\:min-h-s24 {
    min-height: 6rem !important;
  }
  .sm\:min-h-s28 {
    min-height: 7rem !important;
  }
  .sm\:min-h-s32 {
    min-height: 8rem !important;
  }
  .sm\:min-h-s60 {
    min-height: 15rem !important;
  }
  .sm\:min-h-s70 {
    min-height: 17.5rem !important;
  }
  .sm\:min-h-s72 {
    min-height: 18rem !important;
  }
  .sm\:min-h-s40em {
    min-height: 10em !important;
  }
  .sm\:min-h-s44em {
    min-height: 11em !important;
  }
  .sm\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .sm\:min-h-s48em {
    min-height: 12em !important;
  }
  .sm\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .sm\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .sm\:min-h-s52em {
    min-height: 13em !important;
  }
  .sm\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .sm\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .sm\:min-h-s56em {
    min-height: 14em !important;
  }
  .sm\:min-h-s60em {
    min-height: 15em !important;
  }
  .sm\:min-h-s70em {
    min-height: 18em !important;
  }
  .sm\:min-h-none {
    min-height: none !important;
  }
  .sm\:min-h-fit-content {
    min-height: fit-content !important;
  }
  .sm\:min-h-auto {
    min-height: auto !important;
  }
  .sm\:max-h-0 {
    max-height: 0 !important;
  }
  .sm\:max-h-1 {
    max-height: 16rem !important;
  }
  .sm\:max-h-2 {
    max-height: 20rem !important;
  }
  .sm\:max-h-3 {
    max-height: 24rem !important;
  }
  .sm\:max-h-4 {
    max-height: 28rem !important;
  }
  .sm\:max-h-5 {
    max-height: 32rem !important;
  }
  .sm\:max-h-6 {
    max-height: 36rem !important;
  }
  .sm\:max-h-7 {
    max-height: 42rem !important;
  }
  .sm\:max-h-8 {
    max-height: 48rem !important;
  }
  .sm\:max-h-9 {
    max-height: 56rem !important;
  }
  .sm\:max-h-10 {
    max-height: 64rem !important;
  }
  .sm\:max-h-11 {
    max-height: 72rem !important;
  }
  .sm\:max-h-12 {
    max-height: 80rem !important;
  }
  .sm\:max-h-13 {
    max-height: 88rem !important;
  }
  .sm\:max-h-14 {
    max-height: 96rem !important;
  }
  .sm\:max-h-1em {
    max-height: 16em !important;
  }
  .sm\:max-h-2em {
    max-height: 20em !important;
  }
  .sm\:max-h-3em {
    max-height: 24em !important;
  }
  .sm\:max-h-4em {
    max-height: 28em !important;
  }
  .sm\:max-h-5em {
    max-height: 32em !important;
  }
  .sm\:max-h-6em {
    max-height: 36em !important;
  }
  .sm\:max-h-7em {
    max-height: 42em !important;
  }
  .sm\:max-h-8em {
    max-height: 48em !important;
  }
  .sm\:max-h-9em {
    max-height: 56em !important;
  }
  .sm\:max-h-10em {
    max-height: 64em !important;
  }
  .sm\:max-h-11em {
    max-height: 72em !important;
  }
  .sm\:max-h-1\/6 {
    max-height: 16.666666% !important;
  }
  .sm\:max-h-1\/4 {
    max-height: 25% !important;
  }
  .sm\:max-h-2\/7 {
    max-height: 28.57142857% !important;
  }
  .sm\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }
  .sm\:max-h-1\/5 {
    max-height: 20% !important;
  }
  .sm\:max-h-2\/5 {
    max-height: 40% !important;
  }
  .sm\:max-h-3\/5 {
    max-height: 60% !important;
  }
  .sm\:max-h-4\/5 {
    max-height: 80% !important;
  }
  .sm\:max-h-1\/2 {
    max-height: 50% !important;
  }
  .sm\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }
  .sm\:max-h-5\/12 {
    max-height: 41.6666666% !important;
  }
  .sm\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }
  .sm\:max-h-11\/12 {
    max-height: 91.6666666% !important;
  }
  .sm\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }
  .sm\:max-h-3\/4 {
    max-height: 75% !important;
  }
  .sm\:max-h-5\/6 {
    max-height: 83.3333333% !important;
  }
  .sm\:max-h-7\/6 {
    max-height: 116.6666666% !important;
  }
  .sm\:max-h-4\/3 {
    max-height: 133.3333333% !important;
  }
  .sm\:max-h-3\/2 {
    max-height: 150% !important;
  }
  .sm\:max-h-full {
    max-height: 100% !important;
  }
  .sm\:max-h-1\/6vh {
    max-height: 16.666666vh !important;
  }
  .sm\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .sm\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .sm\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .sm\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .sm\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .sm\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .sm\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .sm\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .sm\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .sm\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .sm\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .sm\:max-h-s4 {
    max-height: 1rem !important;
  }
  .sm\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .sm\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .sm\:max-h-s8 {
    max-height: 2rem !important;
  }
  .sm\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .sm\:max-h-s12 {
    max-height: 3rem !important;
  }
  .sm\:max-h-s14 {
    max-height: 3.5rem !important;
  }
  .sm\:max-h-s16 {
    max-height: 4rem !important;
  }
  .sm\:max-h-s18 {
    max-height: 4.5rem !important;
  }
  .sm\:max-h-s20 {
    max-height: 5rem !important;
  }
  .sm\:max-h-s24 {
    max-height: 6rem !important;
  }
  .sm\:max-h-s28 {
    max-height: 7rem !important;
  }
  .sm\:max-h-s32 {
    max-height: 8rem !important;
  }
  .sm\:max-h-s60 {
    max-height: 15rem !important;
  }
  .sm\:max-h-s70 {
    max-height: 17.5rem !important;
  }
  .sm\:max-h-s72 {
    max-height: 18rem !important;
  }
  .sm\:max-h-s40em {
    max-height: 10em !important;
  }
  .sm\:max-h-s44em {
    max-height: 11em !important;
  }
  .sm\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .sm\:max-h-s48em {
    max-height: 12em !important;
  }
  .sm\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .sm\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .sm\:max-h-s52em {
    max-height: 13em !important;
  }
  .sm\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .sm\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .sm\:max-h-s56em {
    max-height: 14em !important;
  }
  .sm\:max-h-s60em {
    max-height: 15em !important;
  }
  .sm\:max-h-s70em {
    max-height: 18em !important;
  }
  .sm\:max-h-none {
    max-height: none !important;
  }
  .sm\:max-h-fit-content {
    max-height: fit-content !important;
  }
  .sm\:max-h-auto {
    max-height: auto !important;
  }
  .sm\:w-0 {
    width: 0 !important;
  }
  .sm\:w-1 {
    width: 16rem !important;
  }
  .sm\:w-2 {
    width: 20rem !important;
  }
  .sm\:w-3 {
    width: 24rem !important;
  }
  .sm\:w-4 {
    width: 28rem !important;
  }
  .sm\:w-5 {
    width: 32rem !important;
  }
  .sm\:w-6 {
    width: 36rem !important;
  }
  .sm\:w-7 {
    width: 42rem !important;
  }
  .sm\:w-8 {
    width: 48rem !important;
  }
  .sm\:w-9 {
    width: 56rem !important;
  }
  .sm\:w-10 {
    width: 64rem !important;
  }
  .sm\:w-11 {
    width: 72rem !important;
  }
  .sm\:w-12 {
    width: 80rem !important;
  }
  .sm\:w-13 {
    width: 88rem !important;
  }
  .sm\:w-14 {
    width: 96rem !important;
  }
  .sm\:w-1em {
    width: 16em !important;
  }
  .sm\:w-2em {
    width: 20em !important;
  }
  .sm\:w-3em {
    width: 24em !important;
  }
  .sm\:w-4em {
    width: 28em !important;
  }
  .sm\:w-5em {
    width: 32em !important;
  }
  .sm\:w-6em {
    width: 36em !important;
  }
  .sm\:w-7em {
    width: 42em !important;
  }
  .sm\:w-8em {
    width: 48em !important;
  }
  .sm\:w-9em {
    width: 56em !important;
  }
  .sm\:w-10em {
    width: 64em !important;
  }
  .sm\:w-11em {
    width: 72em !important;
  }
  .sm\:w-1\/6 {
    width: 16.666666% !important;
  }
  .sm\:w-1\/4 {
    width: 25% !important;
  }
  .sm\:w-2\/7 {
    width: 28.57142857% !important;
  }
  .sm\:w-1\/3 {
    width: 33.333333% !important;
  }
  .sm\:w-1\/5 {
    width: 20% !important;
  }
  .sm\:w-2\/5 {
    width: 40% !important;
  }
  .sm\:w-3\/5 {
    width: 60% !important;
  }
  .sm\:w-4\/5 {
    width: 80% !important;
  }
  .sm\:w-1\/2 {
    width: 50% !important;
  }
  .sm\:w-1\/12 {
    width: 8.333333% !important;
  }
  .sm\:w-5\/12 {
    width: 41.6666666% !important;
  }
  .sm\:w-7\/12 {
    width: 58.333333% !important;
  }
  .sm\:w-11\/12 {
    width: 91.6666666% !important;
  }
  .sm\:w-2\/3 {
    width: 66.666667% !important;
  }
  .sm\:w-3\/4 {
    width: 75% !important;
  }
  .sm\:w-5\/6 {
    width: 83.3333333% !important;
  }
  .sm\:w-7\/6 {
    width: 116.6666666% !important;
  }
  .sm\:w-4\/3 {
    width: 133.3333333% !important;
  }
  .sm\:w-3\/2 {
    width: 150% !important;
  }
  .sm\:w-full {
    width: 100% !important;
  }
  .sm\:w-1\/6vh {
    width: 16.666666vh !important;
  }
  .sm\:w-1\/4vh {
    width: 25vh !important;
  }
  .sm\:w-1\/3vh {
    width: 33.333333vh !important;
  }
  .sm\:w-1\/2vh {
    width: 50vh !important;
  }
  .sm\:w-7\/12vh {
    width: 58.333333vh !important;
  }
  .sm\:w-2\/3vh {
    width: 66.666667vh !important;
  }
  .sm\:w-3\/4vh {
    width: 75vh !important;
  }
  .sm\:w-5\/6vh {
    width: 83.3333333vh !important;
  }
  .sm\:w-full-vh {
    width: 100vh !important;
  }
  .sm\:w-s1 {
    width: 0.25rem !important;
  }
  .sm\:w-s2 {
    width: 0.5rem !important;
  }
  .sm\:w-s3 {
    width: 0.75rem !important;
  }
  .sm\:w-s4 {
    width: 1rem !important;
  }
  .sm\:w-s5 {
    width: 1.25rem !important;
  }
  .sm\:w-s6 {
    width: 1.5rem !important;
  }
  .sm\:w-s8 {
    width: 2rem !important;
  }
  .sm\:w-s10 {
    width: 2.5rem !important;
  }
  .sm\:w-s12 {
    width: 3rem !important;
  }
  .sm\:w-s14 {
    width: 3.5rem !important;
  }
  .sm\:w-s16 {
    width: 4rem !important;
  }
  .sm\:w-s18 {
    width: 4.5rem !important;
  }
  .sm\:w-s20 {
    width: 5rem !important;
  }
  .sm\:w-s24 {
    width: 6rem !important;
  }
  .sm\:w-s28 {
    width: 7rem !important;
  }
  .sm\:w-s32 {
    width: 8rem !important;
  }
  .sm\:w-s60 {
    width: 15rem !important;
  }
  .sm\:w-s70 {
    width: 17.5rem !important;
  }
  .sm\:w-s72 {
    width: 18rem !important;
  }
  .sm\:w-s40em {
    width: 10em !important;
  }
  .sm\:w-s44em {
    width: 11em !important;
  }
  .sm\:w-s46em {
    width: 11.5em !important;
  }
  .sm\:w-s48em {
    width: 12em !important;
  }
  .sm\:w-s49em {
    width: 12.25em !important;
  }
  .sm\:w-s50em {
    width: 12.5em !important;
  }
  .sm\:w-s52em {
    width: 13em !important;
  }
  .sm\:w-s54em {
    width: 13.5em !important;
  }
  .sm\:w-s55em {
    width: 13.75em !important;
  }
  .sm\:w-s56em {
    width: 14em !important;
  }
  .sm\:w-s60em {
    width: 15em !important;
  }
  .sm\:w-s70em {
    width: 18em !important;
  }
  .sm\:w-none {
    width: none !important;
  }
  .sm\:w-fit-content {
    width: fit-content !important;
  }
  .sm\:w-auto {
    width: auto !important;
  }
  .sm\:min-w-0 {
    min-width: 0 !important;
  }
  .sm\:min-w-1 {
    min-width: 16rem !important;
  }
  .sm\:min-w-2 {
    min-width: 20rem !important;
  }
  .sm\:min-w-3 {
    min-width: 24rem !important;
  }
  .sm\:min-w-4 {
    min-width: 28rem !important;
  }
  .sm\:min-w-5 {
    min-width: 32rem !important;
  }
  .sm\:min-w-6 {
    min-width: 36rem !important;
  }
  .sm\:min-w-7 {
    min-width: 42rem !important;
  }
  .sm\:min-w-8 {
    min-width: 48rem !important;
  }
  .sm\:min-w-9 {
    min-width: 56rem !important;
  }
  .sm\:min-w-10 {
    min-width: 64rem !important;
  }
  .sm\:min-w-11 {
    min-width: 72rem !important;
  }
  .sm\:min-w-12 {
    min-width: 80rem !important;
  }
  .sm\:min-w-13 {
    min-width: 88rem !important;
  }
  .sm\:min-w-14 {
    min-width: 96rem !important;
  }
  .sm\:min-w-1em {
    min-width: 16em !important;
  }
  .sm\:min-w-2em {
    min-width: 20em !important;
  }
  .sm\:min-w-3em {
    min-width: 24em !important;
  }
  .sm\:min-w-4em {
    min-width: 28em !important;
  }
  .sm\:min-w-5em {
    min-width: 32em !important;
  }
  .sm\:min-w-6em {
    min-width: 36em !important;
  }
  .sm\:min-w-7em {
    min-width: 42em !important;
  }
  .sm\:min-w-8em {
    min-width: 48em !important;
  }
  .sm\:min-w-9em {
    min-width: 56em !important;
  }
  .sm\:min-w-10em {
    min-width: 64em !important;
  }
  .sm\:min-w-11em {
    min-width: 72em !important;
  }
  .sm\:min-w-1\/6 {
    min-width: 16.666666% !important;
  }
  .sm\:min-w-1\/4 {
    min-width: 25% !important;
  }
  .sm\:min-w-2\/7 {
    min-width: 28.57142857% !important;
  }
  .sm\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }
  .sm\:min-w-1\/5 {
    min-width: 20% !important;
  }
  .sm\:min-w-2\/5 {
    min-width: 40% !important;
  }
  .sm\:min-w-3\/5 {
    min-width: 60% !important;
  }
  .sm\:min-w-4\/5 {
    min-width: 80% !important;
  }
  .sm\:min-w-1\/2 {
    min-width: 50% !important;
  }
  .sm\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }
  .sm\:min-w-5\/12 {
    min-width: 41.6666666% !important;
  }
  .sm\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }
  .sm\:min-w-11\/12 {
    min-width: 91.6666666% !important;
  }
  .sm\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }
  .sm\:min-w-3\/4 {
    min-width: 75% !important;
  }
  .sm\:min-w-5\/6 {
    min-width: 83.3333333% !important;
  }
  .sm\:min-w-7\/6 {
    min-width: 116.6666666% !important;
  }
  .sm\:min-w-4\/3 {
    min-width: 133.3333333% !important;
  }
  .sm\:min-w-3\/2 {
    min-width: 150% !important;
  }
  .sm\:min-w-full {
    min-width: 100% !important;
  }
  .sm\:min-w-1\/6vh {
    min-width: 16.666666vh !important;
  }
  .sm\:min-w-1\/4vh {
    min-width: 25vh !important;
  }
  .sm\:min-w-1\/3vh {
    min-width: 33.333333vh !important;
  }
  .sm\:min-w-1\/2vh {
    min-width: 50vh !important;
  }
  .sm\:min-w-7\/12vh {
    min-width: 58.333333vh !important;
  }
  .sm\:min-w-2\/3vh {
    min-width: 66.666667vh !important;
  }
  .sm\:min-w-3\/4vh {
    min-width: 75vh !important;
  }
  .sm\:min-w-5\/6vh {
    min-width: 83.3333333vh !important;
  }
  .sm\:min-w-full-vh {
    min-width: 100vh !important;
  }
  .sm\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .sm\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .sm\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .sm\:min-w-s4 {
    min-width: 1rem !important;
  }
  .sm\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .sm\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .sm\:min-w-s8 {
    min-width: 2rem !important;
  }
  .sm\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .sm\:min-w-s12 {
    min-width: 3rem !important;
  }
  .sm\:min-w-s14 {
    min-width: 3.5rem !important;
  }
  .sm\:min-w-s16 {
    min-width: 4rem !important;
  }
  .sm\:min-w-s18 {
    min-width: 4.5rem !important;
  }
  .sm\:min-w-s20 {
    min-width: 5rem !important;
  }
  .sm\:min-w-s24 {
    min-width: 6rem !important;
  }
  .sm\:min-w-s28 {
    min-width: 7rem !important;
  }
  .sm\:min-w-s32 {
    min-width: 8rem !important;
  }
  .sm\:min-w-s60 {
    min-width: 15rem !important;
  }
  .sm\:min-w-s70 {
    min-width: 17.5rem !important;
  }
  .sm\:min-w-s72 {
    min-width: 18rem !important;
  }
  .sm\:min-w-s40em {
    min-width: 10em !important;
  }
  .sm\:min-w-s44em {
    min-width: 11em !important;
  }
  .sm\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .sm\:min-w-s48em {
    min-width: 12em !important;
  }
  .sm\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .sm\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .sm\:min-w-s52em {
    min-width: 13em !important;
  }
  .sm\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .sm\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .sm\:min-w-s56em {
    min-width: 14em !important;
  }
  .sm\:min-w-s60em {
    min-width: 15em !important;
  }
  .sm\:min-w-s70em {
    min-width: 18em !important;
  }
  .sm\:min-w-none {
    min-width: none !important;
  }
  .sm\:min-w-fit-content {
    min-width: fit-content !important;
  }
  .sm\:min-w-auto {
    min-width: auto !important;
  }
  .sm\:max-w-0 {
    max-width: 0 !important;
  }
  .sm\:max-w-1 {
    max-width: 16rem !important;
  }
  .sm\:max-w-2 {
    max-width: 20rem !important;
  }
  .sm\:max-w-3 {
    max-width: 24rem !important;
  }
  .sm\:max-w-4 {
    max-width: 28rem !important;
  }
  .sm\:max-w-5 {
    max-width: 32rem !important;
  }
  .sm\:max-w-6 {
    max-width: 36rem !important;
  }
  .sm\:max-w-7 {
    max-width: 42rem !important;
  }
  .sm\:max-w-8 {
    max-width: 48rem !important;
  }
  .sm\:max-w-9 {
    max-width: 56rem !important;
  }
  .sm\:max-w-10 {
    max-width: 64rem !important;
  }
  .sm\:max-w-11 {
    max-width: 72rem !important;
  }
  .sm\:max-w-12 {
    max-width: 80rem !important;
  }
  .sm\:max-w-13 {
    max-width: 88rem !important;
  }
  .sm\:max-w-14 {
    max-width: 96rem !important;
  }
  .sm\:max-w-1em {
    max-width: 16em !important;
  }
  .sm\:max-w-2em {
    max-width: 20em !important;
  }
  .sm\:max-w-3em {
    max-width: 24em !important;
  }
  .sm\:max-w-4em {
    max-width: 28em !important;
  }
  .sm\:max-w-5em {
    max-width: 32em !important;
  }
  .sm\:max-w-6em {
    max-width: 36em !important;
  }
  .sm\:max-w-7em {
    max-width: 42em !important;
  }
  .sm\:max-w-8em {
    max-width: 48em !important;
  }
  .sm\:max-w-9em {
    max-width: 56em !important;
  }
  .sm\:max-w-10em {
    max-width: 64em !important;
  }
  .sm\:max-w-11em {
    max-width: 72em !important;
  }
  .sm\:max-w-1\/6 {
    max-width: 16.666666% !important;
  }
  .sm\:max-w-1\/4 {
    max-width: 25% !important;
  }
  .sm\:max-w-2\/7 {
    max-width: 28.57142857% !important;
  }
  .sm\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }
  .sm\:max-w-1\/5 {
    max-width: 20% !important;
  }
  .sm\:max-w-2\/5 {
    max-width: 40% !important;
  }
  .sm\:max-w-3\/5 {
    max-width: 60% !important;
  }
  .sm\:max-w-4\/5 {
    max-width: 80% !important;
  }
  .sm\:max-w-1\/2 {
    max-width: 50% !important;
  }
  .sm\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }
  .sm\:max-w-5\/12 {
    max-width: 41.6666666% !important;
  }
  .sm\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }
  .sm\:max-w-11\/12 {
    max-width: 91.6666666% !important;
  }
  .sm\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }
  .sm\:max-w-3\/4 {
    max-width: 75% !important;
  }
  .sm\:max-w-5\/6 {
    max-width: 83.3333333% !important;
  }
  .sm\:max-w-7\/6 {
    max-width: 116.6666666% !important;
  }
  .sm\:max-w-4\/3 {
    max-width: 133.3333333% !important;
  }
  .sm\:max-w-3\/2 {
    max-width: 150% !important;
  }
  .sm\:max-w-full {
    max-width: 100% !important;
  }
  .sm\:max-w-1\/6vh {
    max-width: 16.666666vh !important;
  }
  .sm\:max-w-1\/4vh {
    max-width: 25vh !important;
  }
  .sm\:max-w-1\/3vh {
    max-width: 33.333333vh !important;
  }
  .sm\:max-w-1\/2vh {
    max-width: 50vh !important;
  }
  .sm\:max-w-7\/12vh {
    max-width: 58.333333vh !important;
  }
  .sm\:max-w-2\/3vh {
    max-width: 66.666667vh !important;
  }
  .sm\:max-w-3\/4vh {
    max-width: 75vh !important;
  }
  .sm\:max-w-5\/6vh {
    max-width: 83.3333333vh !important;
  }
  .sm\:max-w-full-vh {
    max-width: 100vh !important;
  }
  .sm\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .sm\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .sm\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .sm\:max-w-s4 {
    max-width: 1rem !important;
  }
  .sm\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .sm\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .sm\:max-w-s8 {
    max-width: 2rem !important;
  }
  .sm\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .sm\:max-w-s12 {
    max-width: 3rem !important;
  }
  .sm\:max-w-s14 {
    max-width: 3.5rem !important;
  }
  .sm\:max-w-s16 {
    max-width: 4rem !important;
  }
  .sm\:max-w-s18 {
    max-width: 4.5rem !important;
  }
  .sm\:max-w-s20 {
    max-width: 5rem !important;
  }
  .sm\:max-w-s24 {
    max-width: 6rem !important;
  }
  .sm\:max-w-s28 {
    max-width: 7rem !important;
  }
  .sm\:max-w-s32 {
    max-width: 8rem !important;
  }
  .sm\:max-w-s60 {
    max-width: 15rem !important;
  }
  .sm\:max-w-s70 {
    max-width: 17.5rem !important;
  }
  .sm\:max-w-s72 {
    max-width: 18rem !important;
  }
  .sm\:max-w-s40em {
    max-width: 10em !important;
  }
  .sm\:max-w-s44em {
    max-width: 11em !important;
  }
  .sm\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .sm\:max-w-s48em {
    max-width: 12em !important;
  }
  .sm\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .sm\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .sm\:max-w-s52em {
    max-width: 13em !important;
  }
  .sm\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .sm\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .sm\:max-w-s56em {
    max-width: 14em !important;
  }
  .sm\:max-w-s60em {
    max-width: 15em !important;
  }
  .sm\:max-w-s70em {
    max-width: 18em !important;
  }
  .sm\:max-w-none {
    max-width: none !important;
  }
  .sm\:max-w-fit-content {
    max-width: fit-content !important;
  }
  .sm\:max-w-auto {
    max-width: auto !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:h-0 {
    height: 0 !important;
  }
  .md\:h-1 {
    height: 16rem !important;
  }
  .md\:h-2 {
    height: 20rem !important;
  }
  .md\:h-3 {
    height: 24rem !important;
  }
  .md\:h-4 {
    height: 28rem !important;
  }
  .md\:h-5 {
    height: 32rem !important;
  }
  .md\:h-6 {
    height: 36rem !important;
  }
  .md\:h-7 {
    height: 42rem !important;
  }
  .md\:h-8 {
    height: 48rem !important;
  }
  .md\:h-9 {
    height: 56rem !important;
  }
  .md\:h-10 {
    height: 64rem !important;
  }
  .md\:h-11 {
    height: 72rem !important;
  }
  .md\:h-12 {
    height: 80rem !important;
  }
  .md\:h-13 {
    height: 88rem !important;
  }
  .md\:h-14 {
    height: 96rem !important;
  }
  .md\:h-1em {
    height: 16em !important;
  }
  .md\:h-2em {
    height: 20em !important;
  }
  .md\:h-3em {
    height: 24em !important;
  }
  .md\:h-4em {
    height: 28em !important;
  }
  .md\:h-5em {
    height: 32em !important;
  }
  .md\:h-6em {
    height: 36em !important;
  }
  .md\:h-7em {
    height: 42em !important;
  }
  .md\:h-8em {
    height: 48em !important;
  }
  .md\:h-9em {
    height: 56em !important;
  }
  .md\:h-10em {
    height: 64em !important;
  }
  .md\:h-11em {
    height: 72em !important;
  }
  .md\:h-1\/6 {
    height: 16.666666% !important;
  }
  .md\:h-1\/4 {
    height: 25% !important;
  }
  .md\:h-2\/7 {
    height: 28.57142857% !important;
  }
  .md\:h-1\/3 {
    height: 33.333333% !important;
  }
  .md\:h-1\/5 {
    height: 20% !important;
  }
  .md\:h-2\/5 {
    height: 40% !important;
  }
  .md\:h-3\/5 {
    height: 60% !important;
  }
  .md\:h-4\/5 {
    height: 80% !important;
  }
  .md\:h-1\/2 {
    height: 50% !important;
  }
  .md\:h-1\/12 {
    height: 8.333333% !important;
  }
  .md\:h-5\/12 {
    height: 41.6666666% !important;
  }
  .md\:h-7\/12 {
    height: 58.333333% !important;
  }
  .md\:h-11\/12 {
    height: 91.6666666% !important;
  }
  .md\:h-2\/3 {
    height: 66.666667% !important;
  }
  .md\:h-3\/4 {
    height: 75% !important;
  }
  .md\:h-5\/6 {
    height: 83.3333333% !important;
  }
  .md\:h-7\/6 {
    height: 116.6666666% !important;
  }
  .md\:h-4\/3 {
    height: 133.3333333% !important;
  }
  .md\:h-3\/2 {
    height: 150% !important;
  }
  .md\:h-full {
    height: 100% !important;
  }
  .md\:h-1\/6vh {
    height: 16.666666vh !important;
  }
  .md\:h-1\/4vh {
    height: 25vh !important;
  }
  .md\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .md\:h-1\/2vh {
    height: 50vh !important;
  }
  .md\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .md\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .md\:h-3\/4vh {
    height: 75vh !important;
  }
  .md\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .md\:h-full-vh {
    height: 100vh !important;
  }
  .md\:h-s1 {
    height: 0.25rem !important;
  }
  .md\:h-s2 {
    height: 0.5rem !important;
  }
  .md\:h-s3 {
    height: 0.75rem !important;
  }
  .md\:h-s4 {
    height: 1rem !important;
  }
  .md\:h-s5 {
    height: 1.25rem !important;
  }
  .md\:h-s6 {
    height: 1.5rem !important;
  }
  .md\:h-s8 {
    height: 2rem !important;
  }
  .md\:h-s10 {
    height: 2.5rem !important;
  }
  .md\:h-s12 {
    height: 3rem !important;
  }
  .md\:h-s14 {
    height: 3.5rem !important;
  }
  .md\:h-s16 {
    height: 4rem !important;
  }
  .md\:h-s18 {
    height: 4.5rem !important;
  }
  .md\:h-s20 {
    height: 5rem !important;
  }
  .md\:h-s24 {
    height: 6rem !important;
  }
  .md\:h-s28 {
    height: 7rem !important;
  }
  .md\:h-s32 {
    height: 8rem !important;
  }
  .md\:h-s60 {
    height: 15rem !important;
  }
  .md\:h-s70 {
    height: 17.5rem !important;
  }
  .md\:h-s72 {
    height: 18rem !important;
  }
  .md\:h-s40em {
    height: 10em !important;
  }
  .md\:h-s44em {
    height: 11em !important;
  }
  .md\:h-s46em {
    height: 11.5em !important;
  }
  .md\:h-s48em {
    height: 12em !important;
  }
  .md\:h-s49em {
    height: 12.25em !important;
  }
  .md\:h-s50em {
    height: 12.5em !important;
  }
  .md\:h-s52em {
    height: 13em !important;
  }
  .md\:h-s54em {
    height: 13.5em !important;
  }
  .md\:h-s55em {
    height: 13.75em !important;
  }
  .md\:h-s56em {
    height: 14em !important;
  }
  .md\:h-s60em {
    height: 15em !important;
  }
  .md\:h-s70em {
    height: 18em !important;
  }
  .md\:h-none {
    height: none !important;
  }
  .md\:h-fit-content {
    height: fit-content !important;
  }
  .md\:h-auto {
    height: auto !important;
  }
  .md\:min-h-0 {
    min-height: 0 !important;
  }
  .md\:min-h-1 {
    min-height: 16rem !important;
  }
  .md\:min-h-2 {
    min-height: 20rem !important;
  }
  .md\:min-h-3 {
    min-height: 24rem !important;
  }
  .md\:min-h-4 {
    min-height: 28rem !important;
  }
  .md\:min-h-5 {
    min-height: 32rem !important;
  }
  .md\:min-h-6 {
    min-height: 36rem !important;
  }
  .md\:min-h-7 {
    min-height: 42rem !important;
  }
  .md\:min-h-8 {
    min-height: 48rem !important;
  }
  .md\:min-h-9 {
    min-height: 56rem !important;
  }
  .md\:min-h-10 {
    min-height: 64rem !important;
  }
  .md\:min-h-11 {
    min-height: 72rem !important;
  }
  .md\:min-h-12 {
    min-height: 80rem !important;
  }
  .md\:min-h-13 {
    min-height: 88rem !important;
  }
  .md\:min-h-14 {
    min-height: 96rem !important;
  }
  .md\:min-h-1em {
    min-height: 16em !important;
  }
  .md\:min-h-2em {
    min-height: 20em !important;
  }
  .md\:min-h-3em {
    min-height: 24em !important;
  }
  .md\:min-h-4em {
    min-height: 28em !important;
  }
  .md\:min-h-5em {
    min-height: 32em !important;
  }
  .md\:min-h-6em {
    min-height: 36em !important;
  }
  .md\:min-h-7em {
    min-height: 42em !important;
  }
  .md\:min-h-8em {
    min-height: 48em !important;
  }
  .md\:min-h-9em {
    min-height: 56em !important;
  }
  .md\:min-h-10em {
    min-height: 64em !important;
  }
  .md\:min-h-11em {
    min-height: 72em !important;
  }
  .md\:min-h-1\/6 {
    min-height: 16.666666% !important;
  }
  .md\:min-h-1\/4 {
    min-height: 25% !important;
  }
  .md\:min-h-2\/7 {
    min-height: 28.57142857% !important;
  }
  .md\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }
  .md\:min-h-1\/5 {
    min-height: 20% !important;
  }
  .md\:min-h-2\/5 {
    min-height: 40% !important;
  }
  .md\:min-h-3\/5 {
    min-height: 60% !important;
  }
  .md\:min-h-4\/5 {
    min-height: 80% !important;
  }
  .md\:min-h-1\/2 {
    min-height: 50% !important;
  }
  .md\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }
  .md\:min-h-5\/12 {
    min-height: 41.6666666% !important;
  }
  .md\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }
  .md\:min-h-11\/12 {
    min-height: 91.6666666% !important;
  }
  .md\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }
  .md\:min-h-3\/4 {
    min-height: 75% !important;
  }
  .md\:min-h-5\/6 {
    min-height: 83.3333333% !important;
  }
  .md\:min-h-7\/6 {
    min-height: 116.6666666% !important;
  }
  .md\:min-h-4\/3 {
    min-height: 133.3333333% !important;
  }
  .md\:min-h-3\/2 {
    min-height: 150% !important;
  }
  .md\:min-h-full {
    min-height: 100% !important;
  }
  .md\:min-h-1\/6vh {
    min-height: 16.666666vh !important;
  }
  .md\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .md\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .md\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .md\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .md\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .md\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .md\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .md\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .md\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .md\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .md\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .md\:min-h-s4 {
    min-height: 1rem !important;
  }
  .md\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .md\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .md\:min-h-s8 {
    min-height: 2rem !important;
  }
  .md\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .md\:min-h-s12 {
    min-height: 3rem !important;
  }
  .md\:min-h-s14 {
    min-height: 3.5rem !important;
  }
  .md\:min-h-s16 {
    min-height: 4rem !important;
  }
  .md\:min-h-s18 {
    min-height: 4.5rem !important;
  }
  .md\:min-h-s20 {
    min-height: 5rem !important;
  }
  .md\:min-h-s24 {
    min-height: 6rem !important;
  }
  .md\:min-h-s28 {
    min-height: 7rem !important;
  }
  .md\:min-h-s32 {
    min-height: 8rem !important;
  }
  .md\:min-h-s60 {
    min-height: 15rem !important;
  }
  .md\:min-h-s70 {
    min-height: 17.5rem !important;
  }
  .md\:min-h-s72 {
    min-height: 18rem !important;
  }
  .md\:min-h-s40em {
    min-height: 10em !important;
  }
  .md\:min-h-s44em {
    min-height: 11em !important;
  }
  .md\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .md\:min-h-s48em {
    min-height: 12em !important;
  }
  .md\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .md\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .md\:min-h-s52em {
    min-height: 13em !important;
  }
  .md\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .md\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .md\:min-h-s56em {
    min-height: 14em !important;
  }
  .md\:min-h-s60em {
    min-height: 15em !important;
  }
  .md\:min-h-s70em {
    min-height: 18em !important;
  }
  .md\:min-h-none {
    min-height: none !important;
  }
  .md\:min-h-fit-content {
    min-height: fit-content !important;
  }
  .md\:min-h-auto {
    min-height: auto !important;
  }
  .md\:max-h-0 {
    max-height: 0 !important;
  }
  .md\:max-h-1 {
    max-height: 16rem !important;
  }
  .md\:max-h-2 {
    max-height: 20rem !important;
  }
  .md\:max-h-3 {
    max-height: 24rem !important;
  }
  .md\:max-h-4 {
    max-height: 28rem !important;
  }
  .md\:max-h-5 {
    max-height: 32rem !important;
  }
  .md\:max-h-6 {
    max-height: 36rem !important;
  }
  .md\:max-h-7 {
    max-height: 42rem !important;
  }
  .md\:max-h-8 {
    max-height: 48rem !important;
  }
  .md\:max-h-9 {
    max-height: 56rem !important;
  }
  .md\:max-h-10 {
    max-height: 64rem !important;
  }
  .md\:max-h-11 {
    max-height: 72rem !important;
  }
  .md\:max-h-12 {
    max-height: 80rem !important;
  }
  .md\:max-h-13 {
    max-height: 88rem !important;
  }
  .md\:max-h-14 {
    max-height: 96rem !important;
  }
  .md\:max-h-1em {
    max-height: 16em !important;
  }
  .md\:max-h-2em {
    max-height: 20em !important;
  }
  .md\:max-h-3em {
    max-height: 24em !important;
  }
  .md\:max-h-4em {
    max-height: 28em !important;
  }
  .md\:max-h-5em {
    max-height: 32em !important;
  }
  .md\:max-h-6em {
    max-height: 36em !important;
  }
  .md\:max-h-7em {
    max-height: 42em !important;
  }
  .md\:max-h-8em {
    max-height: 48em !important;
  }
  .md\:max-h-9em {
    max-height: 56em !important;
  }
  .md\:max-h-10em {
    max-height: 64em !important;
  }
  .md\:max-h-11em {
    max-height: 72em !important;
  }
  .md\:max-h-1\/6 {
    max-height: 16.666666% !important;
  }
  .md\:max-h-1\/4 {
    max-height: 25% !important;
  }
  .md\:max-h-2\/7 {
    max-height: 28.57142857% !important;
  }
  .md\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }
  .md\:max-h-1\/5 {
    max-height: 20% !important;
  }
  .md\:max-h-2\/5 {
    max-height: 40% !important;
  }
  .md\:max-h-3\/5 {
    max-height: 60% !important;
  }
  .md\:max-h-4\/5 {
    max-height: 80% !important;
  }
  .md\:max-h-1\/2 {
    max-height: 50% !important;
  }
  .md\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }
  .md\:max-h-5\/12 {
    max-height: 41.6666666% !important;
  }
  .md\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }
  .md\:max-h-11\/12 {
    max-height: 91.6666666% !important;
  }
  .md\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }
  .md\:max-h-3\/4 {
    max-height: 75% !important;
  }
  .md\:max-h-5\/6 {
    max-height: 83.3333333% !important;
  }
  .md\:max-h-7\/6 {
    max-height: 116.6666666% !important;
  }
  .md\:max-h-4\/3 {
    max-height: 133.3333333% !important;
  }
  .md\:max-h-3\/2 {
    max-height: 150% !important;
  }
  .md\:max-h-full {
    max-height: 100% !important;
  }
  .md\:max-h-1\/6vh {
    max-height: 16.666666vh !important;
  }
  .md\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .md\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .md\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .md\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .md\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .md\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .md\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .md\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .md\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .md\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .md\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .md\:max-h-s4 {
    max-height: 1rem !important;
  }
  .md\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .md\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .md\:max-h-s8 {
    max-height: 2rem !important;
  }
  .md\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .md\:max-h-s12 {
    max-height: 3rem !important;
  }
  .md\:max-h-s14 {
    max-height: 3.5rem !important;
  }
  .md\:max-h-s16 {
    max-height: 4rem !important;
  }
  .md\:max-h-s18 {
    max-height: 4.5rem !important;
  }
  .md\:max-h-s20 {
    max-height: 5rem !important;
  }
  .md\:max-h-s24 {
    max-height: 6rem !important;
  }
  .md\:max-h-s28 {
    max-height: 7rem !important;
  }
  .md\:max-h-s32 {
    max-height: 8rem !important;
  }
  .md\:max-h-s60 {
    max-height: 15rem !important;
  }
  .md\:max-h-s70 {
    max-height: 17.5rem !important;
  }
  .md\:max-h-s72 {
    max-height: 18rem !important;
  }
  .md\:max-h-s40em {
    max-height: 10em !important;
  }
  .md\:max-h-s44em {
    max-height: 11em !important;
  }
  .md\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .md\:max-h-s48em {
    max-height: 12em !important;
  }
  .md\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .md\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .md\:max-h-s52em {
    max-height: 13em !important;
  }
  .md\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .md\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .md\:max-h-s56em {
    max-height: 14em !important;
  }
  .md\:max-h-s60em {
    max-height: 15em !important;
  }
  .md\:max-h-s70em {
    max-height: 18em !important;
  }
  .md\:max-h-none {
    max-height: none !important;
  }
  .md\:max-h-fit-content {
    max-height: fit-content !important;
  }
  .md\:max-h-auto {
    max-height: auto !important;
  }
  .md\:w-0 {
    width: 0 !important;
  }
  .md\:w-1 {
    width: 16rem !important;
  }
  .md\:w-2 {
    width: 20rem !important;
  }
  .md\:w-3 {
    width: 24rem !important;
  }
  .md\:w-4 {
    width: 28rem !important;
  }
  .md\:w-5 {
    width: 32rem !important;
  }
  .md\:w-6 {
    width: 36rem !important;
  }
  .md\:w-7 {
    width: 42rem !important;
  }
  .md\:w-8 {
    width: 48rem !important;
  }
  .md\:w-9 {
    width: 56rem !important;
  }
  .md\:w-10 {
    width: 64rem !important;
  }
  .md\:w-11 {
    width: 72rem !important;
  }
  .md\:w-12 {
    width: 80rem !important;
  }
  .md\:w-13 {
    width: 88rem !important;
  }
  .md\:w-14 {
    width: 96rem !important;
  }
  .md\:w-1em {
    width: 16em !important;
  }
  .md\:w-2em {
    width: 20em !important;
  }
  .md\:w-3em {
    width: 24em !important;
  }
  .md\:w-4em {
    width: 28em !important;
  }
  .md\:w-5em {
    width: 32em !important;
  }
  .md\:w-6em {
    width: 36em !important;
  }
  .md\:w-7em {
    width: 42em !important;
  }
  .md\:w-8em {
    width: 48em !important;
  }
  .md\:w-9em {
    width: 56em !important;
  }
  .md\:w-10em {
    width: 64em !important;
  }
  .md\:w-11em {
    width: 72em !important;
  }
  .md\:w-1\/6 {
    width: 16.666666% !important;
  }
  .md\:w-1\/4 {
    width: 25% !important;
  }
  .md\:w-2\/7 {
    width: 28.57142857% !important;
  }
  .md\:w-1\/3 {
    width: 33.333333% !important;
  }
  .md\:w-1\/5 {
    width: 20% !important;
  }
  .md\:w-2\/5 {
    width: 40% !important;
  }
  .md\:w-3\/5 {
    width: 60% !important;
  }
  .md\:w-4\/5 {
    width: 80% !important;
  }
  .md\:w-1\/2 {
    width: 50% !important;
  }
  .md\:w-1\/12 {
    width: 8.333333% !important;
  }
  .md\:w-5\/12 {
    width: 41.6666666% !important;
  }
  .md\:w-7\/12 {
    width: 58.333333% !important;
  }
  .md\:w-11\/12 {
    width: 91.6666666% !important;
  }
  .md\:w-2\/3 {
    width: 66.666667% !important;
  }
  .md\:w-3\/4 {
    width: 75% !important;
  }
  .md\:w-5\/6 {
    width: 83.3333333% !important;
  }
  .md\:w-7\/6 {
    width: 116.6666666% !important;
  }
  .md\:w-4\/3 {
    width: 133.3333333% !important;
  }
  .md\:w-3\/2 {
    width: 150% !important;
  }
  .md\:w-full {
    width: 100% !important;
  }
  .md\:w-1\/6vh {
    width: 16.666666vh !important;
  }
  .md\:w-1\/4vh {
    width: 25vh !important;
  }
  .md\:w-1\/3vh {
    width: 33.333333vh !important;
  }
  .md\:w-1\/2vh {
    width: 50vh !important;
  }
  .md\:w-7\/12vh {
    width: 58.333333vh !important;
  }
  .md\:w-2\/3vh {
    width: 66.666667vh !important;
  }
  .md\:w-3\/4vh {
    width: 75vh !important;
  }
  .md\:w-5\/6vh {
    width: 83.3333333vh !important;
  }
  .md\:w-full-vh {
    width: 100vh !important;
  }
  .md\:w-s1 {
    width: 0.25rem !important;
  }
  .md\:w-s2 {
    width: 0.5rem !important;
  }
  .md\:w-s3 {
    width: 0.75rem !important;
  }
  .md\:w-s4 {
    width: 1rem !important;
  }
  .md\:w-s5 {
    width: 1.25rem !important;
  }
  .md\:w-s6 {
    width: 1.5rem !important;
  }
  .md\:w-s8 {
    width: 2rem !important;
  }
  .md\:w-s10 {
    width: 2.5rem !important;
  }
  .md\:w-s12 {
    width: 3rem !important;
  }
  .md\:w-s14 {
    width: 3.5rem !important;
  }
  .md\:w-s16 {
    width: 4rem !important;
  }
  .md\:w-s18 {
    width: 4.5rem !important;
  }
  .md\:w-s20 {
    width: 5rem !important;
  }
  .md\:w-s24 {
    width: 6rem !important;
  }
  .md\:w-s28 {
    width: 7rem !important;
  }
  .md\:w-s32 {
    width: 8rem !important;
  }
  .md\:w-s60 {
    width: 15rem !important;
  }
  .md\:w-s70 {
    width: 17.5rem !important;
  }
  .md\:w-s72 {
    width: 18rem !important;
  }
  .md\:w-s40em {
    width: 10em !important;
  }
  .md\:w-s44em {
    width: 11em !important;
  }
  .md\:w-s46em {
    width: 11.5em !important;
  }
  .md\:w-s48em {
    width: 12em !important;
  }
  .md\:w-s49em {
    width: 12.25em !important;
  }
  .md\:w-s50em {
    width: 12.5em !important;
  }
  .md\:w-s52em {
    width: 13em !important;
  }
  .md\:w-s54em {
    width: 13.5em !important;
  }
  .md\:w-s55em {
    width: 13.75em !important;
  }
  .md\:w-s56em {
    width: 14em !important;
  }
  .md\:w-s60em {
    width: 15em !important;
  }
  .md\:w-s70em {
    width: 18em !important;
  }
  .md\:w-none {
    width: none !important;
  }
  .md\:w-fit-content {
    width: fit-content !important;
  }
  .md\:w-auto {
    width: auto !important;
  }
  .md\:min-w-0 {
    min-width: 0 !important;
  }
  .md\:min-w-1 {
    min-width: 16rem !important;
  }
  .md\:min-w-2 {
    min-width: 20rem !important;
  }
  .md\:min-w-3 {
    min-width: 24rem !important;
  }
  .md\:min-w-4 {
    min-width: 28rem !important;
  }
  .md\:min-w-5 {
    min-width: 32rem !important;
  }
  .md\:min-w-6 {
    min-width: 36rem !important;
  }
  .md\:min-w-7 {
    min-width: 42rem !important;
  }
  .md\:min-w-8 {
    min-width: 48rem !important;
  }
  .md\:min-w-9 {
    min-width: 56rem !important;
  }
  .md\:min-w-10 {
    min-width: 64rem !important;
  }
  .md\:min-w-11 {
    min-width: 72rem !important;
  }
  .md\:min-w-12 {
    min-width: 80rem !important;
  }
  .md\:min-w-13 {
    min-width: 88rem !important;
  }
  .md\:min-w-14 {
    min-width: 96rem !important;
  }
  .md\:min-w-1em {
    min-width: 16em !important;
  }
  .md\:min-w-2em {
    min-width: 20em !important;
  }
  .md\:min-w-3em {
    min-width: 24em !important;
  }
  .md\:min-w-4em {
    min-width: 28em !important;
  }
  .md\:min-w-5em {
    min-width: 32em !important;
  }
  .md\:min-w-6em {
    min-width: 36em !important;
  }
  .md\:min-w-7em {
    min-width: 42em !important;
  }
  .md\:min-w-8em {
    min-width: 48em !important;
  }
  .md\:min-w-9em {
    min-width: 56em !important;
  }
  .md\:min-w-10em {
    min-width: 64em !important;
  }
  .md\:min-w-11em {
    min-width: 72em !important;
  }
  .md\:min-w-1\/6 {
    min-width: 16.666666% !important;
  }
  .md\:min-w-1\/4 {
    min-width: 25% !important;
  }
  .md\:min-w-2\/7 {
    min-width: 28.57142857% !important;
  }
  .md\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }
  .md\:min-w-1\/5 {
    min-width: 20% !important;
  }
  .md\:min-w-2\/5 {
    min-width: 40% !important;
  }
  .md\:min-w-3\/5 {
    min-width: 60% !important;
  }
  .md\:min-w-4\/5 {
    min-width: 80% !important;
  }
  .md\:min-w-1\/2 {
    min-width: 50% !important;
  }
  .md\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }
  .md\:min-w-5\/12 {
    min-width: 41.6666666% !important;
  }
  .md\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }
  .md\:min-w-11\/12 {
    min-width: 91.6666666% !important;
  }
  .md\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }
  .md\:min-w-3\/4 {
    min-width: 75% !important;
  }
  .md\:min-w-5\/6 {
    min-width: 83.3333333% !important;
  }
  .md\:min-w-7\/6 {
    min-width: 116.6666666% !important;
  }
  .md\:min-w-4\/3 {
    min-width: 133.3333333% !important;
  }
  .md\:min-w-3\/2 {
    min-width: 150% !important;
  }
  .md\:min-w-full {
    min-width: 100% !important;
  }
  .md\:min-w-1\/6vh {
    min-width: 16.666666vh !important;
  }
  .md\:min-w-1\/4vh {
    min-width: 25vh !important;
  }
  .md\:min-w-1\/3vh {
    min-width: 33.333333vh !important;
  }
  .md\:min-w-1\/2vh {
    min-width: 50vh !important;
  }
  .md\:min-w-7\/12vh {
    min-width: 58.333333vh !important;
  }
  .md\:min-w-2\/3vh {
    min-width: 66.666667vh !important;
  }
  .md\:min-w-3\/4vh {
    min-width: 75vh !important;
  }
  .md\:min-w-5\/6vh {
    min-width: 83.3333333vh !important;
  }
  .md\:min-w-full-vh {
    min-width: 100vh !important;
  }
  .md\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .md\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .md\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .md\:min-w-s4 {
    min-width: 1rem !important;
  }
  .md\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .md\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .md\:min-w-s8 {
    min-width: 2rem !important;
  }
  .md\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .md\:min-w-s12 {
    min-width: 3rem !important;
  }
  .md\:min-w-s14 {
    min-width: 3.5rem !important;
  }
  .md\:min-w-s16 {
    min-width: 4rem !important;
  }
  .md\:min-w-s18 {
    min-width: 4.5rem !important;
  }
  .md\:min-w-s20 {
    min-width: 5rem !important;
  }
  .md\:min-w-s24 {
    min-width: 6rem !important;
  }
  .md\:min-w-s28 {
    min-width: 7rem !important;
  }
  .md\:min-w-s32 {
    min-width: 8rem !important;
  }
  .md\:min-w-s60 {
    min-width: 15rem !important;
  }
  .md\:min-w-s70 {
    min-width: 17.5rem !important;
  }
  .md\:min-w-s72 {
    min-width: 18rem !important;
  }
  .md\:min-w-s40em {
    min-width: 10em !important;
  }
  .md\:min-w-s44em {
    min-width: 11em !important;
  }
  .md\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .md\:min-w-s48em {
    min-width: 12em !important;
  }
  .md\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .md\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .md\:min-w-s52em {
    min-width: 13em !important;
  }
  .md\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .md\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .md\:min-w-s56em {
    min-width: 14em !important;
  }
  .md\:min-w-s60em {
    min-width: 15em !important;
  }
  .md\:min-w-s70em {
    min-width: 18em !important;
  }
  .md\:min-w-none {
    min-width: none !important;
  }
  .md\:min-w-fit-content {
    min-width: fit-content !important;
  }
  .md\:min-w-auto {
    min-width: auto !important;
  }
  .md\:max-w-0 {
    max-width: 0 !important;
  }
  .md\:max-w-1 {
    max-width: 16rem !important;
  }
  .md\:max-w-2 {
    max-width: 20rem !important;
  }
  .md\:max-w-3 {
    max-width: 24rem !important;
  }
  .md\:max-w-4 {
    max-width: 28rem !important;
  }
  .md\:max-w-5 {
    max-width: 32rem !important;
  }
  .md\:max-w-6 {
    max-width: 36rem !important;
  }
  .md\:max-w-7 {
    max-width: 42rem !important;
  }
  .md\:max-w-8 {
    max-width: 48rem !important;
  }
  .md\:max-w-9 {
    max-width: 56rem !important;
  }
  .md\:max-w-10 {
    max-width: 64rem !important;
  }
  .md\:max-w-11 {
    max-width: 72rem !important;
  }
  .md\:max-w-12 {
    max-width: 80rem !important;
  }
  .md\:max-w-13 {
    max-width: 88rem !important;
  }
  .md\:max-w-14 {
    max-width: 96rem !important;
  }
  .md\:max-w-1em {
    max-width: 16em !important;
  }
  .md\:max-w-2em {
    max-width: 20em !important;
  }
  .md\:max-w-3em {
    max-width: 24em !important;
  }
  .md\:max-w-4em {
    max-width: 28em !important;
  }
  .md\:max-w-5em {
    max-width: 32em !important;
  }
  .md\:max-w-6em {
    max-width: 36em !important;
  }
  .md\:max-w-7em {
    max-width: 42em !important;
  }
  .md\:max-w-8em {
    max-width: 48em !important;
  }
  .md\:max-w-9em {
    max-width: 56em !important;
  }
  .md\:max-w-10em {
    max-width: 64em !important;
  }
  .md\:max-w-11em {
    max-width: 72em !important;
  }
  .md\:max-w-1\/6 {
    max-width: 16.666666% !important;
  }
  .md\:max-w-1\/4 {
    max-width: 25% !important;
  }
  .md\:max-w-2\/7 {
    max-width: 28.57142857% !important;
  }
  .md\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }
  .md\:max-w-1\/5 {
    max-width: 20% !important;
  }
  .md\:max-w-2\/5 {
    max-width: 40% !important;
  }
  .md\:max-w-3\/5 {
    max-width: 60% !important;
  }
  .md\:max-w-4\/5 {
    max-width: 80% !important;
  }
  .md\:max-w-1\/2 {
    max-width: 50% !important;
  }
  .md\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }
  .md\:max-w-5\/12 {
    max-width: 41.6666666% !important;
  }
  .md\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }
  .md\:max-w-11\/12 {
    max-width: 91.6666666% !important;
  }
  .md\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }
  .md\:max-w-3\/4 {
    max-width: 75% !important;
  }
  .md\:max-w-5\/6 {
    max-width: 83.3333333% !important;
  }
  .md\:max-w-7\/6 {
    max-width: 116.6666666% !important;
  }
  .md\:max-w-4\/3 {
    max-width: 133.3333333% !important;
  }
  .md\:max-w-3\/2 {
    max-width: 150% !important;
  }
  .md\:max-w-full {
    max-width: 100% !important;
  }
  .md\:max-w-1\/6vh {
    max-width: 16.666666vh !important;
  }
  .md\:max-w-1\/4vh {
    max-width: 25vh !important;
  }
  .md\:max-w-1\/3vh {
    max-width: 33.333333vh !important;
  }
  .md\:max-w-1\/2vh {
    max-width: 50vh !important;
  }
  .md\:max-w-7\/12vh {
    max-width: 58.333333vh !important;
  }
  .md\:max-w-2\/3vh {
    max-width: 66.666667vh !important;
  }
  .md\:max-w-3\/4vh {
    max-width: 75vh !important;
  }
  .md\:max-w-5\/6vh {
    max-width: 83.3333333vh !important;
  }
  .md\:max-w-full-vh {
    max-width: 100vh !important;
  }
  .md\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .md\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .md\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .md\:max-w-s4 {
    max-width: 1rem !important;
  }
  .md\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .md\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .md\:max-w-s8 {
    max-width: 2rem !important;
  }
  .md\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .md\:max-w-s12 {
    max-width: 3rem !important;
  }
  .md\:max-w-s14 {
    max-width: 3.5rem !important;
  }
  .md\:max-w-s16 {
    max-width: 4rem !important;
  }
  .md\:max-w-s18 {
    max-width: 4.5rem !important;
  }
  .md\:max-w-s20 {
    max-width: 5rem !important;
  }
  .md\:max-w-s24 {
    max-width: 6rem !important;
  }
  .md\:max-w-s28 {
    max-width: 7rem !important;
  }
  .md\:max-w-s32 {
    max-width: 8rem !important;
  }
  .md\:max-w-s60 {
    max-width: 15rem !important;
  }
  .md\:max-w-s70 {
    max-width: 17.5rem !important;
  }
  .md\:max-w-s72 {
    max-width: 18rem !important;
  }
  .md\:max-w-s40em {
    max-width: 10em !important;
  }
  .md\:max-w-s44em {
    max-width: 11em !important;
  }
  .md\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .md\:max-w-s48em {
    max-width: 12em !important;
  }
  .md\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .md\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .md\:max-w-s52em {
    max-width: 13em !important;
  }
  .md\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .md\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .md\:max-w-s56em {
    max-width: 14em !important;
  }
  .md\:max-w-s60em {
    max-width: 15em !important;
  }
  .md\:max-w-s70em {
    max-width: 18em !important;
  }
  .md\:max-w-none {
    max-width: none !important;
  }
  .md\:max-w-fit-content {
    max-width: fit-content !important;
  }
  .md\:max-w-auto {
    max-width: auto !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:h-0 {
    height: 0 !important;
  }
  .lg\:h-1 {
    height: 16rem !important;
  }
  .lg\:h-2 {
    height: 20rem !important;
  }
  .lg\:h-3 {
    height: 24rem !important;
  }
  .lg\:h-4 {
    height: 28rem !important;
  }
  .lg\:h-5 {
    height: 32rem !important;
  }
  .lg\:h-6 {
    height: 36rem !important;
  }
  .lg\:h-7 {
    height: 42rem !important;
  }
  .lg\:h-8 {
    height: 48rem !important;
  }
  .lg\:h-9 {
    height: 56rem !important;
  }
  .lg\:h-10 {
    height: 64rem !important;
  }
  .lg\:h-11 {
    height: 72rem !important;
  }
  .lg\:h-12 {
    height: 80rem !important;
  }
  .lg\:h-13 {
    height: 88rem !important;
  }
  .lg\:h-14 {
    height: 96rem !important;
  }
  .lg\:h-1em {
    height: 16em !important;
  }
  .lg\:h-2em {
    height: 20em !important;
  }
  .lg\:h-3em {
    height: 24em !important;
  }
  .lg\:h-4em {
    height: 28em !important;
  }
  .lg\:h-5em {
    height: 32em !important;
  }
  .lg\:h-6em {
    height: 36em !important;
  }
  .lg\:h-7em {
    height: 42em !important;
  }
  .lg\:h-8em {
    height: 48em !important;
  }
  .lg\:h-9em {
    height: 56em !important;
  }
  .lg\:h-10em {
    height: 64em !important;
  }
  .lg\:h-11em {
    height: 72em !important;
  }
  .lg\:h-1\/6 {
    height: 16.666666% !important;
  }
  .lg\:h-1\/4 {
    height: 25% !important;
  }
  .lg\:h-2\/7 {
    height: 28.57142857% !important;
  }
  .lg\:h-1\/3 {
    height: 33.333333% !important;
  }
  .lg\:h-1\/5 {
    height: 20% !important;
  }
  .lg\:h-2\/5 {
    height: 40% !important;
  }
  .lg\:h-3\/5 {
    height: 60% !important;
  }
  .lg\:h-4\/5 {
    height: 80% !important;
  }
  .lg\:h-1\/2 {
    height: 50% !important;
  }
  .lg\:h-1\/12 {
    height: 8.333333% !important;
  }
  .lg\:h-5\/12 {
    height: 41.6666666% !important;
  }
  .lg\:h-7\/12 {
    height: 58.333333% !important;
  }
  .lg\:h-11\/12 {
    height: 91.6666666% !important;
  }
  .lg\:h-2\/3 {
    height: 66.666667% !important;
  }
  .lg\:h-3\/4 {
    height: 75% !important;
  }
  .lg\:h-5\/6 {
    height: 83.3333333% !important;
  }
  .lg\:h-7\/6 {
    height: 116.6666666% !important;
  }
  .lg\:h-4\/3 {
    height: 133.3333333% !important;
  }
  .lg\:h-3\/2 {
    height: 150% !important;
  }
  .lg\:h-full {
    height: 100% !important;
  }
  .lg\:h-1\/6vh {
    height: 16.666666vh !important;
  }
  .lg\:h-1\/4vh {
    height: 25vh !important;
  }
  .lg\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .lg\:h-1\/2vh {
    height: 50vh !important;
  }
  .lg\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .lg\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .lg\:h-3\/4vh {
    height: 75vh !important;
  }
  .lg\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .lg\:h-full-vh {
    height: 100vh !important;
  }
  .lg\:h-s1 {
    height: 0.25rem !important;
  }
  .lg\:h-s2 {
    height: 0.5rem !important;
  }
  .lg\:h-s3 {
    height: 0.75rem !important;
  }
  .lg\:h-s4 {
    height: 1rem !important;
  }
  .lg\:h-s5 {
    height: 1.25rem !important;
  }
  .lg\:h-s6 {
    height: 1.5rem !important;
  }
  .lg\:h-s8 {
    height: 2rem !important;
  }
  .lg\:h-s10 {
    height: 2.5rem !important;
  }
  .lg\:h-s12 {
    height: 3rem !important;
  }
  .lg\:h-s14 {
    height: 3.5rem !important;
  }
  .lg\:h-s16 {
    height: 4rem !important;
  }
  .lg\:h-s18 {
    height: 4.5rem !important;
  }
  .lg\:h-s20 {
    height: 5rem !important;
  }
  .lg\:h-s24 {
    height: 6rem !important;
  }
  .lg\:h-s28 {
    height: 7rem !important;
  }
  .lg\:h-s32 {
    height: 8rem !important;
  }
  .lg\:h-s60 {
    height: 15rem !important;
  }
  .lg\:h-s70 {
    height: 17.5rem !important;
  }
  .lg\:h-s72 {
    height: 18rem !important;
  }
  .lg\:h-s40em {
    height: 10em !important;
  }
  .lg\:h-s44em {
    height: 11em !important;
  }
  .lg\:h-s46em {
    height: 11.5em !important;
  }
  .lg\:h-s48em {
    height: 12em !important;
  }
  .lg\:h-s49em {
    height: 12.25em !important;
  }
  .lg\:h-s50em {
    height: 12.5em !important;
  }
  .lg\:h-s52em {
    height: 13em !important;
  }
  .lg\:h-s54em {
    height: 13.5em !important;
  }
  .lg\:h-s55em {
    height: 13.75em !important;
  }
  .lg\:h-s56em {
    height: 14em !important;
  }
  .lg\:h-s60em {
    height: 15em !important;
  }
  .lg\:h-s70em {
    height: 18em !important;
  }
  .lg\:h-none {
    height: none !important;
  }
  .lg\:h-fit-content {
    height: fit-content !important;
  }
  .lg\:h-auto {
    height: auto !important;
  }
  .lg\:min-h-0 {
    min-height: 0 !important;
  }
  .lg\:min-h-1 {
    min-height: 16rem !important;
  }
  .lg\:min-h-2 {
    min-height: 20rem !important;
  }
  .lg\:min-h-3 {
    min-height: 24rem !important;
  }
  .lg\:min-h-4 {
    min-height: 28rem !important;
  }
  .lg\:min-h-5 {
    min-height: 32rem !important;
  }
  .lg\:min-h-6 {
    min-height: 36rem !important;
  }
  .lg\:min-h-7 {
    min-height: 42rem !important;
  }
  .lg\:min-h-8 {
    min-height: 48rem !important;
  }
  .lg\:min-h-9 {
    min-height: 56rem !important;
  }
  .lg\:min-h-10 {
    min-height: 64rem !important;
  }
  .lg\:min-h-11 {
    min-height: 72rem !important;
  }
  .lg\:min-h-12 {
    min-height: 80rem !important;
  }
  .lg\:min-h-13 {
    min-height: 88rem !important;
  }
  .lg\:min-h-14 {
    min-height: 96rem !important;
  }
  .lg\:min-h-1em {
    min-height: 16em !important;
  }
  .lg\:min-h-2em {
    min-height: 20em !important;
  }
  .lg\:min-h-3em {
    min-height: 24em !important;
  }
  .lg\:min-h-4em {
    min-height: 28em !important;
  }
  .lg\:min-h-5em {
    min-height: 32em !important;
  }
  .lg\:min-h-6em {
    min-height: 36em !important;
  }
  .lg\:min-h-7em {
    min-height: 42em !important;
  }
  .lg\:min-h-8em {
    min-height: 48em !important;
  }
  .lg\:min-h-9em {
    min-height: 56em !important;
  }
  .lg\:min-h-10em {
    min-height: 64em !important;
  }
  .lg\:min-h-11em {
    min-height: 72em !important;
  }
  .lg\:min-h-1\/6 {
    min-height: 16.666666% !important;
  }
  .lg\:min-h-1\/4 {
    min-height: 25% !important;
  }
  .lg\:min-h-2\/7 {
    min-height: 28.57142857% !important;
  }
  .lg\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }
  .lg\:min-h-1\/5 {
    min-height: 20% !important;
  }
  .lg\:min-h-2\/5 {
    min-height: 40% !important;
  }
  .lg\:min-h-3\/5 {
    min-height: 60% !important;
  }
  .lg\:min-h-4\/5 {
    min-height: 80% !important;
  }
  .lg\:min-h-1\/2 {
    min-height: 50% !important;
  }
  .lg\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }
  .lg\:min-h-5\/12 {
    min-height: 41.6666666% !important;
  }
  .lg\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }
  .lg\:min-h-11\/12 {
    min-height: 91.6666666% !important;
  }
  .lg\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }
  .lg\:min-h-3\/4 {
    min-height: 75% !important;
  }
  .lg\:min-h-5\/6 {
    min-height: 83.3333333% !important;
  }
  .lg\:min-h-7\/6 {
    min-height: 116.6666666% !important;
  }
  .lg\:min-h-4\/3 {
    min-height: 133.3333333% !important;
  }
  .lg\:min-h-3\/2 {
    min-height: 150% !important;
  }
  .lg\:min-h-full {
    min-height: 100% !important;
  }
  .lg\:min-h-1\/6vh {
    min-height: 16.666666vh !important;
  }
  .lg\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .lg\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .lg\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .lg\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .lg\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .lg\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .lg\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .lg\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .lg\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .lg\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .lg\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .lg\:min-h-s4 {
    min-height: 1rem !important;
  }
  .lg\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .lg\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .lg\:min-h-s8 {
    min-height: 2rem !important;
  }
  .lg\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .lg\:min-h-s12 {
    min-height: 3rem !important;
  }
  .lg\:min-h-s14 {
    min-height: 3.5rem !important;
  }
  .lg\:min-h-s16 {
    min-height: 4rem !important;
  }
  .lg\:min-h-s18 {
    min-height: 4.5rem !important;
  }
  .lg\:min-h-s20 {
    min-height: 5rem !important;
  }
  .lg\:min-h-s24 {
    min-height: 6rem !important;
  }
  .lg\:min-h-s28 {
    min-height: 7rem !important;
  }
  .lg\:min-h-s32 {
    min-height: 8rem !important;
  }
  .lg\:min-h-s60 {
    min-height: 15rem !important;
  }
  .lg\:min-h-s70 {
    min-height: 17.5rem !important;
  }
  .lg\:min-h-s72 {
    min-height: 18rem !important;
  }
  .lg\:min-h-s40em {
    min-height: 10em !important;
  }
  .lg\:min-h-s44em {
    min-height: 11em !important;
  }
  .lg\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .lg\:min-h-s48em {
    min-height: 12em !important;
  }
  .lg\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .lg\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .lg\:min-h-s52em {
    min-height: 13em !important;
  }
  .lg\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .lg\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .lg\:min-h-s56em {
    min-height: 14em !important;
  }
  .lg\:min-h-s60em {
    min-height: 15em !important;
  }
  .lg\:min-h-s70em {
    min-height: 18em !important;
  }
  .lg\:min-h-none {
    min-height: none !important;
  }
  .lg\:min-h-fit-content {
    min-height: fit-content !important;
  }
  .lg\:min-h-auto {
    min-height: auto !important;
  }
  .lg\:max-h-0 {
    max-height: 0 !important;
  }
  .lg\:max-h-1 {
    max-height: 16rem !important;
  }
  .lg\:max-h-2 {
    max-height: 20rem !important;
  }
  .lg\:max-h-3 {
    max-height: 24rem !important;
  }
  .lg\:max-h-4 {
    max-height: 28rem !important;
  }
  .lg\:max-h-5 {
    max-height: 32rem !important;
  }
  .lg\:max-h-6 {
    max-height: 36rem !important;
  }
  .lg\:max-h-7 {
    max-height: 42rem !important;
  }
  .lg\:max-h-8 {
    max-height: 48rem !important;
  }
  .lg\:max-h-9 {
    max-height: 56rem !important;
  }
  .lg\:max-h-10 {
    max-height: 64rem !important;
  }
  .lg\:max-h-11 {
    max-height: 72rem !important;
  }
  .lg\:max-h-12 {
    max-height: 80rem !important;
  }
  .lg\:max-h-13 {
    max-height: 88rem !important;
  }
  .lg\:max-h-14 {
    max-height: 96rem !important;
  }
  .lg\:max-h-1em {
    max-height: 16em !important;
  }
  .lg\:max-h-2em {
    max-height: 20em !important;
  }
  .lg\:max-h-3em {
    max-height: 24em !important;
  }
  .lg\:max-h-4em {
    max-height: 28em !important;
  }
  .lg\:max-h-5em {
    max-height: 32em !important;
  }
  .lg\:max-h-6em {
    max-height: 36em !important;
  }
  .lg\:max-h-7em {
    max-height: 42em !important;
  }
  .lg\:max-h-8em {
    max-height: 48em !important;
  }
  .lg\:max-h-9em {
    max-height: 56em !important;
  }
  .lg\:max-h-10em {
    max-height: 64em !important;
  }
  .lg\:max-h-11em {
    max-height: 72em !important;
  }
  .lg\:max-h-1\/6 {
    max-height: 16.666666% !important;
  }
  .lg\:max-h-1\/4 {
    max-height: 25% !important;
  }
  .lg\:max-h-2\/7 {
    max-height: 28.57142857% !important;
  }
  .lg\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }
  .lg\:max-h-1\/5 {
    max-height: 20% !important;
  }
  .lg\:max-h-2\/5 {
    max-height: 40% !important;
  }
  .lg\:max-h-3\/5 {
    max-height: 60% !important;
  }
  .lg\:max-h-4\/5 {
    max-height: 80% !important;
  }
  .lg\:max-h-1\/2 {
    max-height: 50% !important;
  }
  .lg\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }
  .lg\:max-h-5\/12 {
    max-height: 41.6666666% !important;
  }
  .lg\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }
  .lg\:max-h-11\/12 {
    max-height: 91.6666666% !important;
  }
  .lg\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }
  .lg\:max-h-3\/4 {
    max-height: 75% !important;
  }
  .lg\:max-h-5\/6 {
    max-height: 83.3333333% !important;
  }
  .lg\:max-h-7\/6 {
    max-height: 116.6666666% !important;
  }
  .lg\:max-h-4\/3 {
    max-height: 133.3333333% !important;
  }
  .lg\:max-h-3\/2 {
    max-height: 150% !important;
  }
  .lg\:max-h-full {
    max-height: 100% !important;
  }
  .lg\:max-h-1\/6vh {
    max-height: 16.666666vh !important;
  }
  .lg\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .lg\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .lg\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .lg\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .lg\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .lg\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .lg\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .lg\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .lg\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .lg\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .lg\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .lg\:max-h-s4 {
    max-height: 1rem !important;
  }
  .lg\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .lg\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .lg\:max-h-s8 {
    max-height: 2rem !important;
  }
  .lg\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .lg\:max-h-s12 {
    max-height: 3rem !important;
  }
  .lg\:max-h-s14 {
    max-height: 3.5rem !important;
  }
  .lg\:max-h-s16 {
    max-height: 4rem !important;
  }
  .lg\:max-h-s18 {
    max-height: 4.5rem !important;
  }
  .lg\:max-h-s20 {
    max-height: 5rem !important;
  }
  .lg\:max-h-s24 {
    max-height: 6rem !important;
  }
  .lg\:max-h-s28 {
    max-height: 7rem !important;
  }
  .lg\:max-h-s32 {
    max-height: 8rem !important;
  }
  .lg\:max-h-s60 {
    max-height: 15rem !important;
  }
  .lg\:max-h-s70 {
    max-height: 17.5rem !important;
  }
  .lg\:max-h-s72 {
    max-height: 18rem !important;
  }
  .lg\:max-h-s40em {
    max-height: 10em !important;
  }
  .lg\:max-h-s44em {
    max-height: 11em !important;
  }
  .lg\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .lg\:max-h-s48em {
    max-height: 12em !important;
  }
  .lg\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .lg\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .lg\:max-h-s52em {
    max-height: 13em !important;
  }
  .lg\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .lg\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .lg\:max-h-s56em {
    max-height: 14em !important;
  }
  .lg\:max-h-s60em {
    max-height: 15em !important;
  }
  .lg\:max-h-s70em {
    max-height: 18em !important;
  }
  .lg\:max-h-none {
    max-height: none !important;
  }
  .lg\:max-h-fit-content {
    max-height: fit-content !important;
  }
  .lg\:max-h-auto {
    max-height: auto !important;
  }
  .lg\:w-0 {
    width: 0 !important;
  }
  .lg\:w-1 {
    width: 16rem !important;
  }
  .lg\:w-2 {
    width: 20rem !important;
  }
  .lg\:w-3 {
    width: 24rem !important;
  }
  .lg\:w-4 {
    width: 28rem !important;
  }
  .lg\:w-5 {
    width: 32rem !important;
  }
  .lg\:w-6 {
    width: 36rem !important;
  }
  .lg\:w-7 {
    width: 42rem !important;
  }
  .lg\:w-8 {
    width: 48rem !important;
  }
  .lg\:w-9 {
    width: 56rem !important;
  }
  .lg\:w-10 {
    width: 64rem !important;
  }
  .lg\:w-11 {
    width: 72rem !important;
  }
  .lg\:w-12 {
    width: 80rem !important;
  }
  .lg\:w-13 {
    width: 88rem !important;
  }
  .lg\:w-14 {
    width: 96rem !important;
  }
  .lg\:w-1em {
    width: 16em !important;
  }
  .lg\:w-2em {
    width: 20em !important;
  }
  .lg\:w-3em {
    width: 24em !important;
  }
  .lg\:w-4em {
    width: 28em !important;
  }
  .lg\:w-5em {
    width: 32em !important;
  }
  .lg\:w-6em {
    width: 36em !important;
  }
  .lg\:w-7em {
    width: 42em !important;
  }
  .lg\:w-8em {
    width: 48em !important;
  }
  .lg\:w-9em {
    width: 56em !important;
  }
  .lg\:w-10em {
    width: 64em !important;
  }
  .lg\:w-11em {
    width: 72em !important;
  }
  .lg\:w-1\/6 {
    width: 16.666666% !important;
  }
  .lg\:w-1\/4 {
    width: 25% !important;
  }
  .lg\:w-2\/7 {
    width: 28.57142857% !important;
  }
  .lg\:w-1\/3 {
    width: 33.333333% !important;
  }
  .lg\:w-1\/5 {
    width: 20% !important;
  }
  .lg\:w-2\/5 {
    width: 40% !important;
  }
  .lg\:w-3\/5 {
    width: 60% !important;
  }
  .lg\:w-4\/5 {
    width: 80% !important;
  }
  .lg\:w-1\/2 {
    width: 50% !important;
  }
  .lg\:w-1\/12 {
    width: 8.333333% !important;
  }
  .lg\:w-5\/12 {
    width: 41.6666666% !important;
  }
  .lg\:w-7\/12 {
    width: 58.333333% !important;
  }
  .lg\:w-11\/12 {
    width: 91.6666666% !important;
  }
  .lg\:w-2\/3 {
    width: 66.666667% !important;
  }
  .lg\:w-3\/4 {
    width: 75% !important;
  }
  .lg\:w-5\/6 {
    width: 83.3333333% !important;
  }
  .lg\:w-7\/6 {
    width: 116.6666666% !important;
  }
  .lg\:w-4\/3 {
    width: 133.3333333% !important;
  }
  .lg\:w-3\/2 {
    width: 150% !important;
  }
  .lg\:w-full {
    width: 100% !important;
  }
  .lg\:w-1\/6vh {
    width: 16.666666vh !important;
  }
  .lg\:w-1\/4vh {
    width: 25vh !important;
  }
  .lg\:w-1\/3vh {
    width: 33.333333vh !important;
  }
  .lg\:w-1\/2vh {
    width: 50vh !important;
  }
  .lg\:w-7\/12vh {
    width: 58.333333vh !important;
  }
  .lg\:w-2\/3vh {
    width: 66.666667vh !important;
  }
  .lg\:w-3\/4vh {
    width: 75vh !important;
  }
  .lg\:w-5\/6vh {
    width: 83.3333333vh !important;
  }
  .lg\:w-full-vh {
    width: 100vh !important;
  }
  .lg\:w-s1 {
    width: 0.25rem !important;
  }
  .lg\:w-s2 {
    width: 0.5rem !important;
  }
  .lg\:w-s3 {
    width: 0.75rem !important;
  }
  .lg\:w-s4 {
    width: 1rem !important;
  }
  .lg\:w-s5 {
    width: 1.25rem !important;
  }
  .lg\:w-s6 {
    width: 1.5rem !important;
  }
  .lg\:w-s8 {
    width: 2rem !important;
  }
  .lg\:w-s10 {
    width: 2.5rem !important;
  }
  .lg\:w-s12 {
    width: 3rem !important;
  }
  .lg\:w-s14 {
    width: 3.5rem !important;
  }
  .lg\:w-s16 {
    width: 4rem !important;
  }
  .lg\:w-s18 {
    width: 4.5rem !important;
  }
  .lg\:w-s20 {
    width: 5rem !important;
  }
  .lg\:w-s24 {
    width: 6rem !important;
  }
  .lg\:w-s28 {
    width: 7rem !important;
  }
  .lg\:w-s32 {
    width: 8rem !important;
  }
  .lg\:w-s60 {
    width: 15rem !important;
  }
  .lg\:w-s70 {
    width: 17.5rem !important;
  }
  .lg\:w-s72 {
    width: 18rem !important;
  }
  .lg\:w-s40em {
    width: 10em !important;
  }
  .lg\:w-s44em {
    width: 11em !important;
  }
  .lg\:w-s46em {
    width: 11.5em !important;
  }
  .lg\:w-s48em {
    width: 12em !important;
  }
  .lg\:w-s49em {
    width: 12.25em !important;
  }
  .lg\:w-s50em {
    width: 12.5em !important;
  }
  .lg\:w-s52em {
    width: 13em !important;
  }
  .lg\:w-s54em {
    width: 13.5em !important;
  }
  .lg\:w-s55em {
    width: 13.75em !important;
  }
  .lg\:w-s56em {
    width: 14em !important;
  }
  .lg\:w-s60em {
    width: 15em !important;
  }
  .lg\:w-s70em {
    width: 18em !important;
  }
  .lg\:w-none {
    width: none !important;
  }
  .lg\:w-fit-content {
    width: fit-content !important;
  }
  .lg\:w-auto {
    width: auto !important;
  }
  .lg\:min-w-0 {
    min-width: 0 !important;
  }
  .lg\:min-w-1 {
    min-width: 16rem !important;
  }
  .lg\:min-w-2 {
    min-width: 20rem !important;
  }
  .lg\:min-w-3 {
    min-width: 24rem !important;
  }
  .lg\:min-w-4 {
    min-width: 28rem !important;
  }
  .lg\:min-w-5 {
    min-width: 32rem !important;
  }
  .lg\:min-w-6 {
    min-width: 36rem !important;
  }
  .lg\:min-w-7 {
    min-width: 42rem !important;
  }
  .lg\:min-w-8 {
    min-width: 48rem !important;
  }
  .lg\:min-w-9 {
    min-width: 56rem !important;
  }
  .lg\:min-w-10 {
    min-width: 64rem !important;
  }
  .lg\:min-w-11 {
    min-width: 72rem !important;
  }
  .lg\:min-w-12 {
    min-width: 80rem !important;
  }
  .lg\:min-w-13 {
    min-width: 88rem !important;
  }
  .lg\:min-w-14 {
    min-width: 96rem !important;
  }
  .lg\:min-w-1em {
    min-width: 16em !important;
  }
  .lg\:min-w-2em {
    min-width: 20em !important;
  }
  .lg\:min-w-3em {
    min-width: 24em !important;
  }
  .lg\:min-w-4em {
    min-width: 28em !important;
  }
  .lg\:min-w-5em {
    min-width: 32em !important;
  }
  .lg\:min-w-6em {
    min-width: 36em !important;
  }
  .lg\:min-w-7em {
    min-width: 42em !important;
  }
  .lg\:min-w-8em {
    min-width: 48em !important;
  }
  .lg\:min-w-9em {
    min-width: 56em !important;
  }
  .lg\:min-w-10em {
    min-width: 64em !important;
  }
  .lg\:min-w-11em {
    min-width: 72em !important;
  }
  .lg\:min-w-1\/6 {
    min-width: 16.666666% !important;
  }
  .lg\:min-w-1\/4 {
    min-width: 25% !important;
  }
  .lg\:min-w-2\/7 {
    min-width: 28.57142857% !important;
  }
  .lg\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }
  .lg\:min-w-1\/5 {
    min-width: 20% !important;
  }
  .lg\:min-w-2\/5 {
    min-width: 40% !important;
  }
  .lg\:min-w-3\/5 {
    min-width: 60% !important;
  }
  .lg\:min-w-4\/5 {
    min-width: 80% !important;
  }
  .lg\:min-w-1\/2 {
    min-width: 50% !important;
  }
  .lg\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }
  .lg\:min-w-5\/12 {
    min-width: 41.6666666% !important;
  }
  .lg\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }
  .lg\:min-w-11\/12 {
    min-width: 91.6666666% !important;
  }
  .lg\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }
  .lg\:min-w-3\/4 {
    min-width: 75% !important;
  }
  .lg\:min-w-5\/6 {
    min-width: 83.3333333% !important;
  }
  .lg\:min-w-7\/6 {
    min-width: 116.6666666% !important;
  }
  .lg\:min-w-4\/3 {
    min-width: 133.3333333% !important;
  }
  .lg\:min-w-3\/2 {
    min-width: 150% !important;
  }
  .lg\:min-w-full {
    min-width: 100% !important;
  }
  .lg\:min-w-1\/6vh {
    min-width: 16.666666vh !important;
  }
  .lg\:min-w-1\/4vh {
    min-width: 25vh !important;
  }
  .lg\:min-w-1\/3vh {
    min-width: 33.333333vh !important;
  }
  .lg\:min-w-1\/2vh {
    min-width: 50vh !important;
  }
  .lg\:min-w-7\/12vh {
    min-width: 58.333333vh !important;
  }
  .lg\:min-w-2\/3vh {
    min-width: 66.666667vh !important;
  }
  .lg\:min-w-3\/4vh {
    min-width: 75vh !important;
  }
  .lg\:min-w-5\/6vh {
    min-width: 83.3333333vh !important;
  }
  .lg\:min-w-full-vh {
    min-width: 100vh !important;
  }
  .lg\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .lg\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .lg\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .lg\:min-w-s4 {
    min-width: 1rem !important;
  }
  .lg\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .lg\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .lg\:min-w-s8 {
    min-width: 2rem !important;
  }
  .lg\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .lg\:min-w-s12 {
    min-width: 3rem !important;
  }
  .lg\:min-w-s14 {
    min-width: 3.5rem !important;
  }
  .lg\:min-w-s16 {
    min-width: 4rem !important;
  }
  .lg\:min-w-s18 {
    min-width: 4.5rem !important;
  }
  .lg\:min-w-s20 {
    min-width: 5rem !important;
  }
  .lg\:min-w-s24 {
    min-width: 6rem !important;
  }
  .lg\:min-w-s28 {
    min-width: 7rem !important;
  }
  .lg\:min-w-s32 {
    min-width: 8rem !important;
  }
  .lg\:min-w-s60 {
    min-width: 15rem !important;
  }
  .lg\:min-w-s70 {
    min-width: 17.5rem !important;
  }
  .lg\:min-w-s72 {
    min-width: 18rem !important;
  }
  .lg\:min-w-s40em {
    min-width: 10em !important;
  }
  .lg\:min-w-s44em {
    min-width: 11em !important;
  }
  .lg\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .lg\:min-w-s48em {
    min-width: 12em !important;
  }
  .lg\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .lg\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .lg\:min-w-s52em {
    min-width: 13em !important;
  }
  .lg\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .lg\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .lg\:min-w-s56em {
    min-width: 14em !important;
  }
  .lg\:min-w-s60em {
    min-width: 15em !important;
  }
  .lg\:min-w-s70em {
    min-width: 18em !important;
  }
  .lg\:min-w-none {
    min-width: none !important;
  }
  .lg\:min-w-fit-content {
    min-width: fit-content !important;
  }
  .lg\:min-w-auto {
    min-width: auto !important;
  }
  .lg\:max-w-0 {
    max-width: 0 !important;
  }
  .lg\:max-w-1 {
    max-width: 16rem !important;
  }
  .lg\:max-w-2 {
    max-width: 20rem !important;
  }
  .lg\:max-w-3 {
    max-width: 24rem !important;
  }
  .lg\:max-w-4 {
    max-width: 28rem !important;
  }
  .lg\:max-w-5 {
    max-width: 32rem !important;
  }
  .lg\:max-w-6 {
    max-width: 36rem !important;
  }
  .lg\:max-w-7 {
    max-width: 42rem !important;
  }
  .lg\:max-w-8 {
    max-width: 48rem !important;
  }
  .lg\:max-w-9 {
    max-width: 56rem !important;
  }
  .lg\:max-w-10 {
    max-width: 64rem !important;
  }
  .lg\:max-w-11 {
    max-width: 72rem !important;
  }
  .lg\:max-w-12 {
    max-width: 80rem !important;
  }
  .lg\:max-w-13 {
    max-width: 88rem !important;
  }
  .lg\:max-w-14 {
    max-width: 96rem !important;
  }
  .lg\:max-w-1em {
    max-width: 16em !important;
  }
  .lg\:max-w-2em {
    max-width: 20em !important;
  }
  .lg\:max-w-3em {
    max-width: 24em !important;
  }
  .lg\:max-w-4em {
    max-width: 28em !important;
  }
  .lg\:max-w-5em {
    max-width: 32em !important;
  }
  .lg\:max-w-6em {
    max-width: 36em !important;
  }
  .lg\:max-w-7em {
    max-width: 42em !important;
  }
  .lg\:max-w-8em {
    max-width: 48em !important;
  }
  .lg\:max-w-9em {
    max-width: 56em !important;
  }
  .lg\:max-w-10em {
    max-width: 64em !important;
  }
  .lg\:max-w-11em {
    max-width: 72em !important;
  }
  .lg\:max-w-1\/6 {
    max-width: 16.666666% !important;
  }
  .lg\:max-w-1\/4 {
    max-width: 25% !important;
  }
  .lg\:max-w-2\/7 {
    max-width: 28.57142857% !important;
  }
  .lg\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }
  .lg\:max-w-1\/5 {
    max-width: 20% !important;
  }
  .lg\:max-w-2\/5 {
    max-width: 40% !important;
  }
  .lg\:max-w-3\/5 {
    max-width: 60% !important;
  }
  .lg\:max-w-4\/5 {
    max-width: 80% !important;
  }
  .lg\:max-w-1\/2 {
    max-width: 50% !important;
  }
  .lg\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }
  .lg\:max-w-5\/12 {
    max-width: 41.6666666% !important;
  }
  .lg\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }
  .lg\:max-w-11\/12 {
    max-width: 91.6666666% !important;
  }
  .lg\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }
  .lg\:max-w-3\/4 {
    max-width: 75% !important;
  }
  .lg\:max-w-5\/6 {
    max-width: 83.3333333% !important;
  }
  .lg\:max-w-7\/6 {
    max-width: 116.6666666% !important;
  }
  .lg\:max-w-4\/3 {
    max-width: 133.3333333% !important;
  }
  .lg\:max-w-3\/2 {
    max-width: 150% !important;
  }
  .lg\:max-w-full {
    max-width: 100% !important;
  }
  .lg\:max-w-1\/6vh {
    max-width: 16.666666vh !important;
  }
  .lg\:max-w-1\/4vh {
    max-width: 25vh !important;
  }
  .lg\:max-w-1\/3vh {
    max-width: 33.333333vh !important;
  }
  .lg\:max-w-1\/2vh {
    max-width: 50vh !important;
  }
  .lg\:max-w-7\/12vh {
    max-width: 58.333333vh !important;
  }
  .lg\:max-w-2\/3vh {
    max-width: 66.666667vh !important;
  }
  .lg\:max-w-3\/4vh {
    max-width: 75vh !important;
  }
  .lg\:max-w-5\/6vh {
    max-width: 83.3333333vh !important;
  }
  .lg\:max-w-full-vh {
    max-width: 100vh !important;
  }
  .lg\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .lg\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .lg\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .lg\:max-w-s4 {
    max-width: 1rem !important;
  }
  .lg\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .lg\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .lg\:max-w-s8 {
    max-width: 2rem !important;
  }
  .lg\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .lg\:max-w-s12 {
    max-width: 3rem !important;
  }
  .lg\:max-w-s14 {
    max-width: 3.5rem !important;
  }
  .lg\:max-w-s16 {
    max-width: 4rem !important;
  }
  .lg\:max-w-s18 {
    max-width: 4.5rem !important;
  }
  .lg\:max-w-s20 {
    max-width: 5rem !important;
  }
  .lg\:max-w-s24 {
    max-width: 6rem !important;
  }
  .lg\:max-w-s28 {
    max-width: 7rem !important;
  }
  .lg\:max-w-s32 {
    max-width: 8rem !important;
  }
  .lg\:max-w-s60 {
    max-width: 15rem !important;
  }
  .lg\:max-w-s70 {
    max-width: 17.5rem !important;
  }
  .lg\:max-w-s72 {
    max-width: 18rem !important;
  }
  .lg\:max-w-s40em {
    max-width: 10em !important;
  }
  .lg\:max-w-s44em {
    max-width: 11em !important;
  }
  .lg\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .lg\:max-w-s48em {
    max-width: 12em !important;
  }
  .lg\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .lg\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .lg\:max-w-s52em {
    max-width: 13em !important;
  }
  .lg\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .lg\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .lg\:max-w-s56em {
    max-width: 14em !important;
  }
  .lg\:max-w-s60em {
    max-width: 15em !important;
  }
  .lg\:max-w-s70em {
    max-width: 18em !important;
  }
  .lg\:max-w-none {
    max-width: none !important;
  }
  .lg\:max-w-fit-content {
    max-width: fit-content !important;
  }
  .lg\:max-w-auto {
    max-width: auto !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:h-0 {
    height: 0 !important;
  }
  .xl\:h-1 {
    height: 16rem !important;
  }
  .xl\:h-2 {
    height: 20rem !important;
  }
  .xl\:h-3 {
    height: 24rem !important;
  }
  .xl\:h-4 {
    height: 28rem !important;
  }
  .xl\:h-5 {
    height: 32rem !important;
  }
  .xl\:h-6 {
    height: 36rem !important;
  }
  .xl\:h-7 {
    height: 42rem !important;
  }
  .xl\:h-8 {
    height: 48rem !important;
  }
  .xl\:h-9 {
    height: 56rem !important;
  }
  .xl\:h-10 {
    height: 64rem !important;
  }
  .xl\:h-11 {
    height: 72rem !important;
  }
  .xl\:h-12 {
    height: 80rem !important;
  }
  .xl\:h-13 {
    height: 88rem !important;
  }
  .xl\:h-14 {
    height: 96rem !important;
  }
  .xl\:h-1em {
    height: 16em !important;
  }
  .xl\:h-2em {
    height: 20em !important;
  }
  .xl\:h-3em {
    height: 24em !important;
  }
  .xl\:h-4em {
    height: 28em !important;
  }
  .xl\:h-5em {
    height: 32em !important;
  }
  .xl\:h-6em {
    height: 36em !important;
  }
  .xl\:h-7em {
    height: 42em !important;
  }
  .xl\:h-8em {
    height: 48em !important;
  }
  .xl\:h-9em {
    height: 56em !important;
  }
  .xl\:h-10em {
    height: 64em !important;
  }
  .xl\:h-11em {
    height: 72em !important;
  }
  .xl\:h-1\/6 {
    height: 16.666666% !important;
  }
  .xl\:h-1\/4 {
    height: 25% !important;
  }
  .xl\:h-2\/7 {
    height: 28.57142857% !important;
  }
  .xl\:h-1\/3 {
    height: 33.333333% !important;
  }
  .xl\:h-1\/5 {
    height: 20% !important;
  }
  .xl\:h-2\/5 {
    height: 40% !important;
  }
  .xl\:h-3\/5 {
    height: 60% !important;
  }
  .xl\:h-4\/5 {
    height: 80% !important;
  }
  .xl\:h-1\/2 {
    height: 50% !important;
  }
  .xl\:h-1\/12 {
    height: 8.333333% !important;
  }
  .xl\:h-5\/12 {
    height: 41.6666666% !important;
  }
  .xl\:h-7\/12 {
    height: 58.333333% !important;
  }
  .xl\:h-11\/12 {
    height: 91.6666666% !important;
  }
  .xl\:h-2\/3 {
    height: 66.666667% !important;
  }
  .xl\:h-3\/4 {
    height: 75% !important;
  }
  .xl\:h-5\/6 {
    height: 83.3333333% !important;
  }
  .xl\:h-7\/6 {
    height: 116.6666666% !important;
  }
  .xl\:h-4\/3 {
    height: 133.3333333% !important;
  }
  .xl\:h-3\/2 {
    height: 150% !important;
  }
  .xl\:h-full {
    height: 100% !important;
  }
  .xl\:h-1\/6vh {
    height: 16.666666vh !important;
  }
  .xl\:h-1\/4vh {
    height: 25vh !important;
  }
  .xl\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .xl\:h-1\/2vh {
    height: 50vh !important;
  }
  .xl\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .xl\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .xl\:h-3\/4vh {
    height: 75vh !important;
  }
  .xl\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .xl\:h-full-vh {
    height: 100vh !important;
  }
  .xl\:h-s1 {
    height: 0.25rem !important;
  }
  .xl\:h-s2 {
    height: 0.5rem !important;
  }
  .xl\:h-s3 {
    height: 0.75rem !important;
  }
  .xl\:h-s4 {
    height: 1rem !important;
  }
  .xl\:h-s5 {
    height: 1.25rem !important;
  }
  .xl\:h-s6 {
    height: 1.5rem !important;
  }
  .xl\:h-s8 {
    height: 2rem !important;
  }
  .xl\:h-s10 {
    height: 2.5rem !important;
  }
  .xl\:h-s12 {
    height: 3rem !important;
  }
  .xl\:h-s14 {
    height: 3.5rem !important;
  }
  .xl\:h-s16 {
    height: 4rem !important;
  }
  .xl\:h-s18 {
    height: 4.5rem !important;
  }
  .xl\:h-s20 {
    height: 5rem !important;
  }
  .xl\:h-s24 {
    height: 6rem !important;
  }
  .xl\:h-s28 {
    height: 7rem !important;
  }
  .xl\:h-s32 {
    height: 8rem !important;
  }
  .xl\:h-s60 {
    height: 15rem !important;
  }
  .xl\:h-s70 {
    height: 17.5rem !important;
  }
  .xl\:h-s72 {
    height: 18rem !important;
  }
  .xl\:h-s40em {
    height: 10em !important;
  }
  .xl\:h-s44em {
    height: 11em !important;
  }
  .xl\:h-s46em {
    height: 11.5em !important;
  }
  .xl\:h-s48em {
    height: 12em !important;
  }
  .xl\:h-s49em {
    height: 12.25em !important;
  }
  .xl\:h-s50em {
    height: 12.5em !important;
  }
  .xl\:h-s52em {
    height: 13em !important;
  }
  .xl\:h-s54em {
    height: 13.5em !important;
  }
  .xl\:h-s55em {
    height: 13.75em !important;
  }
  .xl\:h-s56em {
    height: 14em !important;
  }
  .xl\:h-s60em {
    height: 15em !important;
  }
  .xl\:h-s70em {
    height: 18em !important;
  }
  .xl\:h-none {
    height: none !important;
  }
  .xl\:h-fit-content {
    height: fit-content !important;
  }
  .xl\:h-auto {
    height: auto !important;
  }
  .xl\:min-h-0 {
    min-height: 0 !important;
  }
  .xl\:min-h-1 {
    min-height: 16rem !important;
  }
  .xl\:min-h-2 {
    min-height: 20rem !important;
  }
  .xl\:min-h-3 {
    min-height: 24rem !important;
  }
  .xl\:min-h-4 {
    min-height: 28rem !important;
  }
  .xl\:min-h-5 {
    min-height: 32rem !important;
  }
  .xl\:min-h-6 {
    min-height: 36rem !important;
  }
  .xl\:min-h-7 {
    min-height: 42rem !important;
  }
  .xl\:min-h-8 {
    min-height: 48rem !important;
  }
  .xl\:min-h-9 {
    min-height: 56rem !important;
  }
  .xl\:min-h-10 {
    min-height: 64rem !important;
  }
  .xl\:min-h-11 {
    min-height: 72rem !important;
  }
  .xl\:min-h-12 {
    min-height: 80rem !important;
  }
  .xl\:min-h-13 {
    min-height: 88rem !important;
  }
  .xl\:min-h-14 {
    min-height: 96rem !important;
  }
  .xl\:min-h-1em {
    min-height: 16em !important;
  }
  .xl\:min-h-2em {
    min-height: 20em !important;
  }
  .xl\:min-h-3em {
    min-height: 24em !important;
  }
  .xl\:min-h-4em {
    min-height: 28em !important;
  }
  .xl\:min-h-5em {
    min-height: 32em !important;
  }
  .xl\:min-h-6em {
    min-height: 36em !important;
  }
  .xl\:min-h-7em {
    min-height: 42em !important;
  }
  .xl\:min-h-8em {
    min-height: 48em !important;
  }
  .xl\:min-h-9em {
    min-height: 56em !important;
  }
  .xl\:min-h-10em {
    min-height: 64em !important;
  }
  .xl\:min-h-11em {
    min-height: 72em !important;
  }
  .xl\:min-h-1\/6 {
    min-height: 16.666666% !important;
  }
  .xl\:min-h-1\/4 {
    min-height: 25% !important;
  }
  .xl\:min-h-2\/7 {
    min-height: 28.57142857% !important;
  }
  .xl\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }
  .xl\:min-h-1\/5 {
    min-height: 20% !important;
  }
  .xl\:min-h-2\/5 {
    min-height: 40% !important;
  }
  .xl\:min-h-3\/5 {
    min-height: 60% !important;
  }
  .xl\:min-h-4\/5 {
    min-height: 80% !important;
  }
  .xl\:min-h-1\/2 {
    min-height: 50% !important;
  }
  .xl\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }
  .xl\:min-h-5\/12 {
    min-height: 41.6666666% !important;
  }
  .xl\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }
  .xl\:min-h-11\/12 {
    min-height: 91.6666666% !important;
  }
  .xl\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }
  .xl\:min-h-3\/4 {
    min-height: 75% !important;
  }
  .xl\:min-h-5\/6 {
    min-height: 83.3333333% !important;
  }
  .xl\:min-h-7\/6 {
    min-height: 116.6666666% !important;
  }
  .xl\:min-h-4\/3 {
    min-height: 133.3333333% !important;
  }
  .xl\:min-h-3\/2 {
    min-height: 150% !important;
  }
  .xl\:min-h-full {
    min-height: 100% !important;
  }
  .xl\:min-h-1\/6vh {
    min-height: 16.666666vh !important;
  }
  .xl\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .xl\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .xl\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .xl\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .xl\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .xl\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .xl\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .xl\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .xl\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .xl\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .xl\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .xl\:min-h-s4 {
    min-height: 1rem !important;
  }
  .xl\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .xl\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .xl\:min-h-s8 {
    min-height: 2rem !important;
  }
  .xl\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .xl\:min-h-s12 {
    min-height: 3rem !important;
  }
  .xl\:min-h-s14 {
    min-height: 3.5rem !important;
  }
  .xl\:min-h-s16 {
    min-height: 4rem !important;
  }
  .xl\:min-h-s18 {
    min-height: 4.5rem !important;
  }
  .xl\:min-h-s20 {
    min-height: 5rem !important;
  }
  .xl\:min-h-s24 {
    min-height: 6rem !important;
  }
  .xl\:min-h-s28 {
    min-height: 7rem !important;
  }
  .xl\:min-h-s32 {
    min-height: 8rem !important;
  }
  .xl\:min-h-s60 {
    min-height: 15rem !important;
  }
  .xl\:min-h-s70 {
    min-height: 17.5rem !important;
  }
  .xl\:min-h-s72 {
    min-height: 18rem !important;
  }
  .xl\:min-h-s40em {
    min-height: 10em !important;
  }
  .xl\:min-h-s44em {
    min-height: 11em !important;
  }
  .xl\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .xl\:min-h-s48em {
    min-height: 12em !important;
  }
  .xl\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .xl\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .xl\:min-h-s52em {
    min-height: 13em !important;
  }
  .xl\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .xl\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .xl\:min-h-s56em {
    min-height: 14em !important;
  }
  .xl\:min-h-s60em {
    min-height: 15em !important;
  }
  .xl\:min-h-s70em {
    min-height: 18em !important;
  }
  .xl\:min-h-none {
    min-height: none !important;
  }
  .xl\:min-h-fit-content {
    min-height: fit-content !important;
  }
  .xl\:min-h-auto {
    min-height: auto !important;
  }
  .xl\:max-h-0 {
    max-height: 0 !important;
  }
  .xl\:max-h-1 {
    max-height: 16rem !important;
  }
  .xl\:max-h-2 {
    max-height: 20rem !important;
  }
  .xl\:max-h-3 {
    max-height: 24rem !important;
  }
  .xl\:max-h-4 {
    max-height: 28rem !important;
  }
  .xl\:max-h-5 {
    max-height: 32rem !important;
  }
  .xl\:max-h-6 {
    max-height: 36rem !important;
  }
  .xl\:max-h-7 {
    max-height: 42rem !important;
  }
  .xl\:max-h-8 {
    max-height: 48rem !important;
  }
  .xl\:max-h-9 {
    max-height: 56rem !important;
  }
  .xl\:max-h-10 {
    max-height: 64rem !important;
  }
  .xl\:max-h-11 {
    max-height: 72rem !important;
  }
  .xl\:max-h-12 {
    max-height: 80rem !important;
  }
  .xl\:max-h-13 {
    max-height: 88rem !important;
  }
  .xl\:max-h-14 {
    max-height: 96rem !important;
  }
  .xl\:max-h-1em {
    max-height: 16em !important;
  }
  .xl\:max-h-2em {
    max-height: 20em !important;
  }
  .xl\:max-h-3em {
    max-height: 24em !important;
  }
  .xl\:max-h-4em {
    max-height: 28em !important;
  }
  .xl\:max-h-5em {
    max-height: 32em !important;
  }
  .xl\:max-h-6em {
    max-height: 36em !important;
  }
  .xl\:max-h-7em {
    max-height: 42em !important;
  }
  .xl\:max-h-8em {
    max-height: 48em !important;
  }
  .xl\:max-h-9em {
    max-height: 56em !important;
  }
  .xl\:max-h-10em {
    max-height: 64em !important;
  }
  .xl\:max-h-11em {
    max-height: 72em !important;
  }
  .xl\:max-h-1\/6 {
    max-height: 16.666666% !important;
  }
  .xl\:max-h-1\/4 {
    max-height: 25% !important;
  }
  .xl\:max-h-2\/7 {
    max-height: 28.57142857% !important;
  }
  .xl\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }
  .xl\:max-h-1\/5 {
    max-height: 20% !important;
  }
  .xl\:max-h-2\/5 {
    max-height: 40% !important;
  }
  .xl\:max-h-3\/5 {
    max-height: 60% !important;
  }
  .xl\:max-h-4\/5 {
    max-height: 80% !important;
  }
  .xl\:max-h-1\/2 {
    max-height: 50% !important;
  }
  .xl\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }
  .xl\:max-h-5\/12 {
    max-height: 41.6666666% !important;
  }
  .xl\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }
  .xl\:max-h-11\/12 {
    max-height: 91.6666666% !important;
  }
  .xl\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }
  .xl\:max-h-3\/4 {
    max-height: 75% !important;
  }
  .xl\:max-h-5\/6 {
    max-height: 83.3333333% !important;
  }
  .xl\:max-h-7\/6 {
    max-height: 116.6666666% !important;
  }
  .xl\:max-h-4\/3 {
    max-height: 133.3333333% !important;
  }
  .xl\:max-h-3\/2 {
    max-height: 150% !important;
  }
  .xl\:max-h-full {
    max-height: 100% !important;
  }
  .xl\:max-h-1\/6vh {
    max-height: 16.666666vh !important;
  }
  .xl\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .xl\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .xl\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .xl\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .xl\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .xl\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .xl\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .xl\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .xl\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .xl\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .xl\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .xl\:max-h-s4 {
    max-height: 1rem !important;
  }
  .xl\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .xl\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .xl\:max-h-s8 {
    max-height: 2rem !important;
  }
  .xl\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .xl\:max-h-s12 {
    max-height: 3rem !important;
  }
  .xl\:max-h-s14 {
    max-height: 3.5rem !important;
  }
  .xl\:max-h-s16 {
    max-height: 4rem !important;
  }
  .xl\:max-h-s18 {
    max-height: 4.5rem !important;
  }
  .xl\:max-h-s20 {
    max-height: 5rem !important;
  }
  .xl\:max-h-s24 {
    max-height: 6rem !important;
  }
  .xl\:max-h-s28 {
    max-height: 7rem !important;
  }
  .xl\:max-h-s32 {
    max-height: 8rem !important;
  }
  .xl\:max-h-s60 {
    max-height: 15rem !important;
  }
  .xl\:max-h-s70 {
    max-height: 17.5rem !important;
  }
  .xl\:max-h-s72 {
    max-height: 18rem !important;
  }
  .xl\:max-h-s40em {
    max-height: 10em !important;
  }
  .xl\:max-h-s44em {
    max-height: 11em !important;
  }
  .xl\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .xl\:max-h-s48em {
    max-height: 12em !important;
  }
  .xl\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .xl\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .xl\:max-h-s52em {
    max-height: 13em !important;
  }
  .xl\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .xl\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .xl\:max-h-s56em {
    max-height: 14em !important;
  }
  .xl\:max-h-s60em {
    max-height: 15em !important;
  }
  .xl\:max-h-s70em {
    max-height: 18em !important;
  }
  .xl\:max-h-none {
    max-height: none !important;
  }
  .xl\:max-h-fit-content {
    max-height: fit-content !important;
  }
  .xl\:max-h-auto {
    max-height: auto !important;
  }
  .xl\:w-0 {
    width: 0 !important;
  }
  .xl\:w-1 {
    width: 16rem !important;
  }
  .xl\:w-2 {
    width: 20rem !important;
  }
  .xl\:w-3 {
    width: 24rem !important;
  }
  .xl\:w-4 {
    width: 28rem !important;
  }
  .xl\:w-5 {
    width: 32rem !important;
  }
  .xl\:w-6 {
    width: 36rem !important;
  }
  .xl\:w-7 {
    width: 42rem !important;
  }
  .xl\:w-8 {
    width: 48rem !important;
  }
  .xl\:w-9 {
    width: 56rem !important;
  }
  .xl\:w-10 {
    width: 64rem !important;
  }
  .xl\:w-11 {
    width: 72rem !important;
  }
  .xl\:w-12 {
    width: 80rem !important;
  }
  .xl\:w-13 {
    width: 88rem !important;
  }
  .xl\:w-14 {
    width: 96rem !important;
  }
  .xl\:w-1em {
    width: 16em !important;
  }
  .xl\:w-2em {
    width: 20em !important;
  }
  .xl\:w-3em {
    width: 24em !important;
  }
  .xl\:w-4em {
    width: 28em !important;
  }
  .xl\:w-5em {
    width: 32em !important;
  }
  .xl\:w-6em {
    width: 36em !important;
  }
  .xl\:w-7em {
    width: 42em !important;
  }
  .xl\:w-8em {
    width: 48em !important;
  }
  .xl\:w-9em {
    width: 56em !important;
  }
  .xl\:w-10em {
    width: 64em !important;
  }
  .xl\:w-11em {
    width: 72em !important;
  }
  .xl\:w-1\/6 {
    width: 16.666666% !important;
  }
  .xl\:w-1\/4 {
    width: 25% !important;
  }
  .xl\:w-2\/7 {
    width: 28.57142857% !important;
  }
  .xl\:w-1\/3 {
    width: 33.333333% !important;
  }
  .xl\:w-1\/5 {
    width: 20% !important;
  }
  .xl\:w-2\/5 {
    width: 40% !important;
  }
  .xl\:w-3\/5 {
    width: 60% !important;
  }
  .xl\:w-4\/5 {
    width: 80% !important;
  }
  .xl\:w-1\/2 {
    width: 50% !important;
  }
  .xl\:w-1\/12 {
    width: 8.333333% !important;
  }
  .xl\:w-5\/12 {
    width: 41.6666666% !important;
  }
  .xl\:w-7\/12 {
    width: 58.333333% !important;
  }
  .xl\:w-11\/12 {
    width: 91.6666666% !important;
  }
  .xl\:w-2\/3 {
    width: 66.666667% !important;
  }
  .xl\:w-3\/4 {
    width: 75% !important;
  }
  .xl\:w-5\/6 {
    width: 83.3333333% !important;
  }
  .xl\:w-7\/6 {
    width: 116.6666666% !important;
  }
  .xl\:w-4\/3 {
    width: 133.3333333% !important;
  }
  .xl\:w-3\/2 {
    width: 150% !important;
  }
  .xl\:w-full {
    width: 100% !important;
  }
  .xl\:w-1\/6vh {
    width: 16.666666vh !important;
  }
  .xl\:w-1\/4vh {
    width: 25vh !important;
  }
  .xl\:w-1\/3vh {
    width: 33.333333vh !important;
  }
  .xl\:w-1\/2vh {
    width: 50vh !important;
  }
  .xl\:w-7\/12vh {
    width: 58.333333vh !important;
  }
  .xl\:w-2\/3vh {
    width: 66.666667vh !important;
  }
  .xl\:w-3\/4vh {
    width: 75vh !important;
  }
  .xl\:w-5\/6vh {
    width: 83.3333333vh !important;
  }
  .xl\:w-full-vh {
    width: 100vh !important;
  }
  .xl\:w-s1 {
    width: 0.25rem !important;
  }
  .xl\:w-s2 {
    width: 0.5rem !important;
  }
  .xl\:w-s3 {
    width: 0.75rem !important;
  }
  .xl\:w-s4 {
    width: 1rem !important;
  }
  .xl\:w-s5 {
    width: 1.25rem !important;
  }
  .xl\:w-s6 {
    width: 1.5rem !important;
  }
  .xl\:w-s8 {
    width: 2rem !important;
  }
  .xl\:w-s10 {
    width: 2.5rem !important;
  }
  .xl\:w-s12 {
    width: 3rem !important;
  }
  .xl\:w-s14 {
    width: 3.5rem !important;
  }
  .xl\:w-s16 {
    width: 4rem !important;
  }
  .xl\:w-s18 {
    width: 4.5rem !important;
  }
  .xl\:w-s20 {
    width: 5rem !important;
  }
  .xl\:w-s24 {
    width: 6rem !important;
  }
  .xl\:w-s28 {
    width: 7rem !important;
  }
  .xl\:w-s32 {
    width: 8rem !important;
  }
  .xl\:w-s60 {
    width: 15rem !important;
  }
  .xl\:w-s70 {
    width: 17.5rem !important;
  }
  .xl\:w-s72 {
    width: 18rem !important;
  }
  .xl\:w-s40em {
    width: 10em !important;
  }
  .xl\:w-s44em {
    width: 11em !important;
  }
  .xl\:w-s46em {
    width: 11.5em !important;
  }
  .xl\:w-s48em {
    width: 12em !important;
  }
  .xl\:w-s49em {
    width: 12.25em !important;
  }
  .xl\:w-s50em {
    width: 12.5em !important;
  }
  .xl\:w-s52em {
    width: 13em !important;
  }
  .xl\:w-s54em {
    width: 13.5em !important;
  }
  .xl\:w-s55em {
    width: 13.75em !important;
  }
  .xl\:w-s56em {
    width: 14em !important;
  }
  .xl\:w-s60em {
    width: 15em !important;
  }
  .xl\:w-s70em {
    width: 18em !important;
  }
  .xl\:w-none {
    width: none !important;
  }
  .xl\:w-fit-content {
    width: fit-content !important;
  }
  .xl\:w-auto {
    width: auto !important;
  }
  .xl\:min-w-0 {
    min-width: 0 !important;
  }
  .xl\:min-w-1 {
    min-width: 16rem !important;
  }
  .xl\:min-w-2 {
    min-width: 20rem !important;
  }
  .xl\:min-w-3 {
    min-width: 24rem !important;
  }
  .xl\:min-w-4 {
    min-width: 28rem !important;
  }
  .xl\:min-w-5 {
    min-width: 32rem !important;
  }
  .xl\:min-w-6 {
    min-width: 36rem !important;
  }
  .xl\:min-w-7 {
    min-width: 42rem !important;
  }
  .xl\:min-w-8 {
    min-width: 48rem !important;
  }
  .xl\:min-w-9 {
    min-width: 56rem !important;
  }
  .xl\:min-w-10 {
    min-width: 64rem !important;
  }
  .xl\:min-w-11 {
    min-width: 72rem !important;
  }
  .xl\:min-w-12 {
    min-width: 80rem !important;
  }
  .xl\:min-w-13 {
    min-width: 88rem !important;
  }
  .xl\:min-w-14 {
    min-width: 96rem !important;
  }
  .xl\:min-w-1em {
    min-width: 16em !important;
  }
  .xl\:min-w-2em {
    min-width: 20em !important;
  }
  .xl\:min-w-3em {
    min-width: 24em !important;
  }
  .xl\:min-w-4em {
    min-width: 28em !important;
  }
  .xl\:min-w-5em {
    min-width: 32em !important;
  }
  .xl\:min-w-6em {
    min-width: 36em !important;
  }
  .xl\:min-w-7em {
    min-width: 42em !important;
  }
  .xl\:min-w-8em {
    min-width: 48em !important;
  }
  .xl\:min-w-9em {
    min-width: 56em !important;
  }
  .xl\:min-w-10em {
    min-width: 64em !important;
  }
  .xl\:min-w-11em {
    min-width: 72em !important;
  }
  .xl\:min-w-1\/6 {
    min-width: 16.666666% !important;
  }
  .xl\:min-w-1\/4 {
    min-width: 25% !important;
  }
  .xl\:min-w-2\/7 {
    min-width: 28.57142857% !important;
  }
  .xl\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }
  .xl\:min-w-1\/5 {
    min-width: 20% !important;
  }
  .xl\:min-w-2\/5 {
    min-width: 40% !important;
  }
  .xl\:min-w-3\/5 {
    min-width: 60% !important;
  }
  .xl\:min-w-4\/5 {
    min-width: 80% !important;
  }
  .xl\:min-w-1\/2 {
    min-width: 50% !important;
  }
  .xl\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }
  .xl\:min-w-5\/12 {
    min-width: 41.6666666% !important;
  }
  .xl\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }
  .xl\:min-w-11\/12 {
    min-width: 91.6666666% !important;
  }
  .xl\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }
  .xl\:min-w-3\/4 {
    min-width: 75% !important;
  }
  .xl\:min-w-5\/6 {
    min-width: 83.3333333% !important;
  }
  .xl\:min-w-7\/6 {
    min-width: 116.6666666% !important;
  }
  .xl\:min-w-4\/3 {
    min-width: 133.3333333% !important;
  }
  .xl\:min-w-3\/2 {
    min-width: 150% !important;
  }
  .xl\:min-w-full {
    min-width: 100% !important;
  }
  .xl\:min-w-1\/6vh {
    min-width: 16.666666vh !important;
  }
  .xl\:min-w-1\/4vh {
    min-width: 25vh !important;
  }
  .xl\:min-w-1\/3vh {
    min-width: 33.333333vh !important;
  }
  .xl\:min-w-1\/2vh {
    min-width: 50vh !important;
  }
  .xl\:min-w-7\/12vh {
    min-width: 58.333333vh !important;
  }
  .xl\:min-w-2\/3vh {
    min-width: 66.666667vh !important;
  }
  .xl\:min-w-3\/4vh {
    min-width: 75vh !important;
  }
  .xl\:min-w-5\/6vh {
    min-width: 83.3333333vh !important;
  }
  .xl\:min-w-full-vh {
    min-width: 100vh !important;
  }
  .xl\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .xl\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .xl\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .xl\:min-w-s4 {
    min-width: 1rem !important;
  }
  .xl\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .xl\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .xl\:min-w-s8 {
    min-width: 2rem !important;
  }
  .xl\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .xl\:min-w-s12 {
    min-width: 3rem !important;
  }
  .xl\:min-w-s14 {
    min-width: 3.5rem !important;
  }
  .xl\:min-w-s16 {
    min-width: 4rem !important;
  }
  .xl\:min-w-s18 {
    min-width: 4.5rem !important;
  }
  .xl\:min-w-s20 {
    min-width: 5rem !important;
  }
  .xl\:min-w-s24 {
    min-width: 6rem !important;
  }
  .xl\:min-w-s28 {
    min-width: 7rem !important;
  }
  .xl\:min-w-s32 {
    min-width: 8rem !important;
  }
  .xl\:min-w-s60 {
    min-width: 15rem !important;
  }
  .xl\:min-w-s70 {
    min-width: 17.5rem !important;
  }
  .xl\:min-w-s72 {
    min-width: 18rem !important;
  }
  .xl\:min-w-s40em {
    min-width: 10em !important;
  }
  .xl\:min-w-s44em {
    min-width: 11em !important;
  }
  .xl\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .xl\:min-w-s48em {
    min-width: 12em !important;
  }
  .xl\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .xl\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .xl\:min-w-s52em {
    min-width: 13em !important;
  }
  .xl\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .xl\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .xl\:min-w-s56em {
    min-width: 14em !important;
  }
  .xl\:min-w-s60em {
    min-width: 15em !important;
  }
  .xl\:min-w-s70em {
    min-width: 18em !important;
  }
  .xl\:min-w-none {
    min-width: none !important;
  }
  .xl\:min-w-fit-content {
    min-width: fit-content !important;
  }
  .xl\:min-w-auto {
    min-width: auto !important;
  }
  .xl\:max-w-0 {
    max-width: 0 !important;
  }
  .xl\:max-w-1 {
    max-width: 16rem !important;
  }
  .xl\:max-w-2 {
    max-width: 20rem !important;
  }
  .xl\:max-w-3 {
    max-width: 24rem !important;
  }
  .xl\:max-w-4 {
    max-width: 28rem !important;
  }
  .xl\:max-w-5 {
    max-width: 32rem !important;
  }
  .xl\:max-w-6 {
    max-width: 36rem !important;
  }
  .xl\:max-w-7 {
    max-width: 42rem !important;
  }
  .xl\:max-w-8 {
    max-width: 48rem !important;
  }
  .xl\:max-w-9 {
    max-width: 56rem !important;
  }
  .xl\:max-w-10 {
    max-width: 64rem !important;
  }
  .xl\:max-w-11 {
    max-width: 72rem !important;
  }
  .xl\:max-w-12 {
    max-width: 80rem !important;
  }
  .xl\:max-w-13 {
    max-width: 88rem !important;
  }
  .xl\:max-w-14 {
    max-width: 96rem !important;
  }
  .xl\:max-w-1em {
    max-width: 16em !important;
  }
  .xl\:max-w-2em {
    max-width: 20em !important;
  }
  .xl\:max-w-3em {
    max-width: 24em !important;
  }
  .xl\:max-w-4em {
    max-width: 28em !important;
  }
  .xl\:max-w-5em {
    max-width: 32em !important;
  }
  .xl\:max-w-6em {
    max-width: 36em !important;
  }
  .xl\:max-w-7em {
    max-width: 42em !important;
  }
  .xl\:max-w-8em {
    max-width: 48em !important;
  }
  .xl\:max-w-9em {
    max-width: 56em !important;
  }
  .xl\:max-w-10em {
    max-width: 64em !important;
  }
  .xl\:max-w-11em {
    max-width: 72em !important;
  }
  .xl\:max-w-1\/6 {
    max-width: 16.666666% !important;
  }
  .xl\:max-w-1\/4 {
    max-width: 25% !important;
  }
  .xl\:max-w-2\/7 {
    max-width: 28.57142857% !important;
  }
  .xl\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }
  .xl\:max-w-1\/5 {
    max-width: 20% !important;
  }
  .xl\:max-w-2\/5 {
    max-width: 40% !important;
  }
  .xl\:max-w-3\/5 {
    max-width: 60% !important;
  }
  .xl\:max-w-4\/5 {
    max-width: 80% !important;
  }
  .xl\:max-w-1\/2 {
    max-width: 50% !important;
  }
  .xl\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }
  .xl\:max-w-5\/12 {
    max-width: 41.6666666% !important;
  }
  .xl\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }
  .xl\:max-w-11\/12 {
    max-width: 91.6666666% !important;
  }
  .xl\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }
  .xl\:max-w-3\/4 {
    max-width: 75% !important;
  }
  .xl\:max-w-5\/6 {
    max-width: 83.3333333% !important;
  }
  .xl\:max-w-7\/6 {
    max-width: 116.6666666% !important;
  }
  .xl\:max-w-4\/3 {
    max-width: 133.3333333% !important;
  }
  .xl\:max-w-3\/2 {
    max-width: 150% !important;
  }
  .xl\:max-w-full {
    max-width: 100% !important;
  }
  .xl\:max-w-1\/6vh {
    max-width: 16.666666vh !important;
  }
  .xl\:max-w-1\/4vh {
    max-width: 25vh !important;
  }
  .xl\:max-w-1\/3vh {
    max-width: 33.333333vh !important;
  }
  .xl\:max-w-1\/2vh {
    max-width: 50vh !important;
  }
  .xl\:max-w-7\/12vh {
    max-width: 58.333333vh !important;
  }
  .xl\:max-w-2\/3vh {
    max-width: 66.666667vh !important;
  }
  .xl\:max-w-3\/4vh {
    max-width: 75vh !important;
  }
  .xl\:max-w-5\/6vh {
    max-width: 83.3333333vh !important;
  }
  .xl\:max-w-full-vh {
    max-width: 100vh !important;
  }
  .xl\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .xl\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .xl\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .xl\:max-w-s4 {
    max-width: 1rem !important;
  }
  .xl\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .xl\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .xl\:max-w-s8 {
    max-width: 2rem !important;
  }
  .xl\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .xl\:max-w-s12 {
    max-width: 3rem !important;
  }
  .xl\:max-w-s14 {
    max-width: 3.5rem !important;
  }
  .xl\:max-w-s16 {
    max-width: 4rem !important;
  }
  .xl\:max-w-s18 {
    max-width: 4.5rem !important;
  }
  .xl\:max-w-s20 {
    max-width: 5rem !important;
  }
  .xl\:max-w-s24 {
    max-width: 6rem !important;
  }
  .xl\:max-w-s28 {
    max-width: 7rem !important;
  }
  .xl\:max-w-s32 {
    max-width: 8rem !important;
  }
  .xl\:max-w-s60 {
    max-width: 15rem !important;
  }
  .xl\:max-w-s70 {
    max-width: 17.5rem !important;
  }
  .xl\:max-w-s72 {
    max-width: 18rem !important;
  }
  .xl\:max-w-s40em {
    max-width: 10em !important;
  }
  .xl\:max-w-s44em {
    max-width: 11em !important;
  }
  .xl\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .xl\:max-w-s48em {
    max-width: 12em !important;
  }
  .xl\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .xl\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .xl\:max-w-s52em {
    max-width: 13em !important;
  }
  .xl\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .xl\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .xl\:max-w-s56em {
    max-width: 14em !important;
  }
  .xl\:max-w-s60em {
    max-width: 15em !important;
  }
  .xl\:max-w-s70em {
    max-width: 18em !important;
  }
  .xl\:max-w-none {
    max-width: none !important;
  }
  .xl\:max-w-fit-content {
    max-width: fit-content !important;
  }
  .xl\:max-w-auto {
    max-width: auto !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:h-0 {
    height: 0 !important;
  }
  .xxl\:h-1 {
    height: 16rem !important;
  }
  .xxl\:h-2 {
    height: 20rem !important;
  }
  .xxl\:h-3 {
    height: 24rem !important;
  }
  .xxl\:h-4 {
    height: 28rem !important;
  }
  .xxl\:h-5 {
    height: 32rem !important;
  }
  .xxl\:h-6 {
    height: 36rem !important;
  }
  .xxl\:h-7 {
    height: 42rem !important;
  }
  .xxl\:h-8 {
    height: 48rem !important;
  }
  .xxl\:h-9 {
    height: 56rem !important;
  }
  .xxl\:h-10 {
    height: 64rem !important;
  }
  .xxl\:h-11 {
    height: 72rem !important;
  }
  .xxl\:h-12 {
    height: 80rem !important;
  }
  .xxl\:h-13 {
    height: 88rem !important;
  }
  .xxl\:h-14 {
    height: 96rem !important;
  }
  .xxl\:h-1em {
    height: 16em !important;
  }
  .xxl\:h-2em {
    height: 20em !important;
  }
  .xxl\:h-3em {
    height: 24em !important;
  }
  .xxl\:h-4em {
    height: 28em !important;
  }
  .xxl\:h-5em {
    height: 32em !important;
  }
  .xxl\:h-6em {
    height: 36em !important;
  }
  .xxl\:h-7em {
    height: 42em !important;
  }
  .xxl\:h-8em {
    height: 48em !important;
  }
  .xxl\:h-9em {
    height: 56em !important;
  }
  .xxl\:h-10em {
    height: 64em !important;
  }
  .xxl\:h-11em {
    height: 72em !important;
  }
  .xxl\:h-1\/6 {
    height: 16.666666% !important;
  }
  .xxl\:h-1\/4 {
    height: 25% !important;
  }
  .xxl\:h-2\/7 {
    height: 28.57142857% !important;
  }
  .xxl\:h-1\/3 {
    height: 33.333333% !important;
  }
  .xxl\:h-1\/5 {
    height: 20% !important;
  }
  .xxl\:h-2\/5 {
    height: 40% !important;
  }
  .xxl\:h-3\/5 {
    height: 60% !important;
  }
  .xxl\:h-4\/5 {
    height: 80% !important;
  }
  .xxl\:h-1\/2 {
    height: 50% !important;
  }
  .xxl\:h-1\/12 {
    height: 8.333333% !important;
  }
  .xxl\:h-5\/12 {
    height: 41.6666666% !important;
  }
  .xxl\:h-7\/12 {
    height: 58.333333% !important;
  }
  .xxl\:h-11\/12 {
    height: 91.6666666% !important;
  }
  .xxl\:h-2\/3 {
    height: 66.666667% !important;
  }
  .xxl\:h-3\/4 {
    height: 75% !important;
  }
  .xxl\:h-5\/6 {
    height: 83.3333333% !important;
  }
  .xxl\:h-7\/6 {
    height: 116.6666666% !important;
  }
  .xxl\:h-4\/3 {
    height: 133.3333333% !important;
  }
  .xxl\:h-3\/2 {
    height: 150% !important;
  }
  .xxl\:h-full {
    height: 100% !important;
  }
  .xxl\:h-1\/6vh {
    height: 16.666666vh !important;
  }
  .xxl\:h-1\/4vh {
    height: 25vh !important;
  }
  .xxl\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .xxl\:h-1\/2vh {
    height: 50vh !important;
  }
  .xxl\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .xxl\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .xxl\:h-3\/4vh {
    height: 75vh !important;
  }
  .xxl\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .xxl\:h-full-vh {
    height: 100vh !important;
  }
  .xxl\:h-s1 {
    height: 0.25rem !important;
  }
  .xxl\:h-s2 {
    height: 0.5rem !important;
  }
  .xxl\:h-s3 {
    height: 0.75rem !important;
  }
  .xxl\:h-s4 {
    height: 1rem !important;
  }
  .xxl\:h-s5 {
    height: 1.25rem !important;
  }
  .xxl\:h-s6 {
    height: 1.5rem !important;
  }
  .xxl\:h-s8 {
    height: 2rem !important;
  }
  .xxl\:h-s10 {
    height: 2.5rem !important;
  }
  .xxl\:h-s12 {
    height: 3rem !important;
  }
  .xxl\:h-s14 {
    height: 3.5rem !important;
  }
  .xxl\:h-s16 {
    height: 4rem !important;
  }
  .xxl\:h-s18 {
    height: 4.5rem !important;
  }
  .xxl\:h-s20 {
    height: 5rem !important;
  }
  .xxl\:h-s24 {
    height: 6rem !important;
  }
  .xxl\:h-s28 {
    height: 7rem !important;
  }
  .xxl\:h-s32 {
    height: 8rem !important;
  }
  .xxl\:h-s60 {
    height: 15rem !important;
  }
  .xxl\:h-s70 {
    height: 17.5rem !important;
  }
  .xxl\:h-s72 {
    height: 18rem !important;
  }
  .xxl\:h-s40em {
    height: 10em !important;
  }
  .xxl\:h-s44em {
    height: 11em !important;
  }
  .xxl\:h-s46em {
    height: 11.5em !important;
  }
  .xxl\:h-s48em {
    height: 12em !important;
  }
  .xxl\:h-s49em {
    height: 12.25em !important;
  }
  .xxl\:h-s50em {
    height: 12.5em !important;
  }
  .xxl\:h-s52em {
    height: 13em !important;
  }
  .xxl\:h-s54em {
    height: 13.5em !important;
  }
  .xxl\:h-s55em {
    height: 13.75em !important;
  }
  .xxl\:h-s56em {
    height: 14em !important;
  }
  .xxl\:h-s60em {
    height: 15em !important;
  }
  .xxl\:h-s70em {
    height: 18em !important;
  }
  .xxl\:h-none {
    height: none !important;
  }
  .xxl\:h-fit-content {
    height: fit-content !important;
  }
  .xxl\:h-auto {
    height: auto !important;
  }
  .xxl\:min-h-0 {
    min-height: 0 !important;
  }
  .xxl\:min-h-1 {
    min-height: 16rem !important;
  }
  .xxl\:min-h-2 {
    min-height: 20rem !important;
  }
  .xxl\:min-h-3 {
    min-height: 24rem !important;
  }
  .xxl\:min-h-4 {
    min-height: 28rem !important;
  }
  .xxl\:min-h-5 {
    min-height: 32rem !important;
  }
  .xxl\:min-h-6 {
    min-height: 36rem !important;
  }
  .xxl\:min-h-7 {
    min-height: 42rem !important;
  }
  .xxl\:min-h-8 {
    min-height: 48rem !important;
  }
  .xxl\:min-h-9 {
    min-height: 56rem !important;
  }
  .xxl\:min-h-10 {
    min-height: 64rem !important;
  }
  .xxl\:min-h-11 {
    min-height: 72rem !important;
  }
  .xxl\:min-h-12 {
    min-height: 80rem !important;
  }
  .xxl\:min-h-13 {
    min-height: 88rem !important;
  }
  .xxl\:min-h-14 {
    min-height: 96rem !important;
  }
  .xxl\:min-h-1em {
    min-height: 16em !important;
  }
  .xxl\:min-h-2em {
    min-height: 20em !important;
  }
  .xxl\:min-h-3em {
    min-height: 24em !important;
  }
  .xxl\:min-h-4em {
    min-height: 28em !important;
  }
  .xxl\:min-h-5em {
    min-height: 32em !important;
  }
  .xxl\:min-h-6em {
    min-height: 36em !important;
  }
  .xxl\:min-h-7em {
    min-height: 42em !important;
  }
  .xxl\:min-h-8em {
    min-height: 48em !important;
  }
  .xxl\:min-h-9em {
    min-height: 56em !important;
  }
  .xxl\:min-h-10em {
    min-height: 64em !important;
  }
  .xxl\:min-h-11em {
    min-height: 72em !important;
  }
  .xxl\:min-h-1\/6 {
    min-height: 16.666666% !important;
  }
  .xxl\:min-h-1\/4 {
    min-height: 25% !important;
  }
  .xxl\:min-h-2\/7 {
    min-height: 28.57142857% !important;
  }
  .xxl\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }
  .xxl\:min-h-1\/5 {
    min-height: 20% !important;
  }
  .xxl\:min-h-2\/5 {
    min-height: 40% !important;
  }
  .xxl\:min-h-3\/5 {
    min-height: 60% !important;
  }
  .xxl\:min-h-4\/5 {
    min-height: 80% !important;
  }
  .xxl\:min-h-1\/2 {
    min-height: 50% !important;
  }
  .xxl\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }
  .xxl\:min-h-5\/12 {
    min-height: 41.6666666% !important;
  }
  .xxl\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }
  .xxl\:min-h-11\/12 {
    min-height: 91.6666666% !important;
  }
  .xxl\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }
  .xxl\:min-h-3\/4 {
    min-height: 75% !important;
  }
  .xxl\:min-h-5\/6 {
    min-height: 83.3333333% !important;
  }
  .xxl\:min-h-7\/6 {
    min-height: 116.6666666% !important;
  }
  .xxl\:min-h-4\/3 {
    min-height: 133.3333333% !important;
  }
  .xxl\:min-h-3\/2 {
    min-height: 150% !important;
  }
  .xxl\:min-h-full {
    min-height: 100% !important;
  }
  .xxl\:min-h-1\/6vh {
    min-height: 16.666666vh !important;
  }
  .xxl\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .xxl\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .xxl\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .xxl\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .xxl\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .xxl\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .xxl\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .xxl\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .xxl\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .xxl\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .xxl\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .xxl\:min-h-s4 {
    min-height: 1rem !important;
  }
  .xxl\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .xxl\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .xxl\:min-h-s8 {
    min-height: 2rem !important;
  }
  .xxl\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .xxl\:min-h-s12 {
    min-height: 3rem !important;
  }
  .xxl\:min-h-s14 {
    min-height: 3.5rem !important;
  }
  .xxl\:min-h-s16 {
    min-height: 4rem !important;
  }
  .xxl\:min-h-s18 {
    min-height: 4.5rem !important;
  }
  .xxl\:min-h-s20 {
    min-height: 5rem !important;
  }
  .xxl\:min-h-s24 {
    min-height: 6rem !important;
  }
  .xxl\:min-h-s28 {
    min-height: 7rem !important;
  }
  .xxl\:min-h-s32 {
    min-height: 8rem !important;
  }
  .xxl\:min-h-s60 {
    min-height: 15rem !important;
  }
  .xxl\:min-h-s70 {
    min-height: 17.5rem !important;
  }
  .xxl\:min-h-s72 {
    min-height: 18rem !important;
  }
  .xxl\:min-h-s40em {
    min-height: 10em !important;
  }
  .xxl\:min-h-s44em {
    min-height: 11em !important;
  }
  .xxl\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .xxl\:min-h-s48em {
    min-height: 12em !important;
  }
  .xxl\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .xxl\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .xxl\:min-h-s52em {
    min-height: 13em !important;
  }
  .xxl\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .xxl\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .xxl\:min-h-s56em {
    min-height: 14em !important;
  }
  .xxl\:min-h-s60em {
    min-height: 15em !important;
  }
  .xxl\:min-h-s70em {
    min-height: 18em !important;
  }
  .xxl\:min-h-none {
    min-height: none !important;
  }
  .xxl\:min-h-fit-content {
    min-height: fit-content !important;
  }
  .xxl\:min-h-auto {
    min-height: auto !important;
  }
  .xxl\:max-h-0 {
    max-height: 0 !important;
  }
  .xxl\:max-h-1 {
    max-height: 16rem !important;
  }
  .xxl\:max-h-2 {
    max-height: 20rem !important;
  }
  .xxl\:max-h-3 {
    max-height: 24rem !important;
  }
  .xxl\:max-h-4 {
    max-height: 28rem !important;
  }
  .xxl\:max-h-5 {
    max-height: 32rem !important;
  }
  .xxl\:max-h-6 {
    max-height: 36rem !important;
  }
  .xxl\:max-h-7 {
    max-height: 42rem !important;
  }
  .xxl\:max-h-8 {
    max-height: 48rem !important;
  }
  .xxl\:max-h-9 {
    max-height: 56rem !important;
  }
  .xxl\:max-h-10 {
    max-height: 64rem !important;
  }
  .xxl\:max-h-11 {
    max-height: 72rem !important;
  }
  .xxl\:max-h-12 {
    max-height: 80rem !important;
  }
  .xxl\:max-h-13 {
    max-height: 88rem !important;
  }
  .xxl\:max-h-14 {
    max-height: 96rem !important;
  }
  .xxl\:max-h-1em {
    max-height: 16em !important;
  }
  .xxl\:max-h-2em {
    max-height: 20em !important;
  }
  .xxl\:max-h-3em {
    max-height: 24em !important;
  }
  .xxl\:max-h-4em {
    max-height: 28em !important;
  }
  .xxl\:max-h-5em {
    max-height: 32em !important;
  }
  .xxl\:max-h-6em {
    max-height: 36em !important;
  }
  .xxl\:max-h-7em {
    max-height: 42em !important;
  }
  .xxl\:max-h-8em {
    max-height: 48em !important;
  }
  .xxl\:max-h-9em {
    max-height: 56em !important;
  }
  .xxl\:max-h-10em {
    max-height: 64em !important;
  }
  .xxl\:max-h-11em {
    max-height: 72em !important;
  }
  .xxl\:max-h-1\/6 {
    max-height: 16.666666% !important;
  }
  .xxl\:max-h-1\/4 {
    max-height: 25% !important;
  }
  .xxl\:max-h-2\/7 {
    max-height: 28.57142857% !important;
  }
  .xxl\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }
  .xxl\:max-h-1\/5 {
    max-height: 20% !important;
  }
  .xxl\:max-h-2\/5 {
    max-height: 40% !important;
  }
  .xxl\:max-h-3\/5 {
    max-height: 60% !important;
  }
  .xxl\:max-h-4\/5 {
    max-height: 80% !important;
  }
  .xxl\:max-h-1\/2 {
    max-height: 50% !important;
  }
  .xxl\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }
  .xxl\:max-h-5\/12 {
    max-height: 41.6666666% !important;
  }
  .xxl\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }
  .xxl\:max-h-11\/12 {
    max-height: 91.6666666% !important;
  }
  .xxl\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }
  .xxl\:max-h-3\/4 {
    max-height: 75% !important;
  }
  .xxl\:max-h-5\/6 {
    max-height: 83.3333333% !important;
  }
  .xxl\:max-h-7\/6 {
    max-height: 116.6666666% !important;
  }
  .xxl\:max-h-4\/3 {
    max-height: 133.3333333% !important;
  }
  .xxl\:max-h-3\/2 {
    max-height: 150% !important;
  }
  .xxl\:max-h-full {
    max-height: 100% !important;
  }
  .xxl\:max-h-1\/6vh {
    max-height: 16.666666vh !important;
  }
  .xxl\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .xxl\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .xxl\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .xxl\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .xxl\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .xxl\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .xxl\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .xxl\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .xxl\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .xxl\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .xxl\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .xxl\:max-h-s4 {
    max-height: 1rem !important;
  }
  .xxl\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .xxl\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .xxl\:max-h-s8 {
    max-height: 2rem !important;
  }
  .xxl\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .xxl\:max-h-s12 {
    max-height: 3rem !important;
  }
  .xxl\:max-h-s14 {
    max-height: 3.5rem !important;
  }
  .xxl\:max-h-s16 {
    max-height: 4rem !important;
  }
  .xxl\:max-h-s18 {
    max-height: 4.5rem !important;
  }
  .xxl\:max-h-s20 {
    max-height: 5rem !important;
  }
  .xxl\:max-h-s24 {
    max-height: 6rem !important;
  }
  .xxl\:max-h-s28 {
    max-height: 7rem !important;
  }
  .xxl\:max-h-s32 {
    max-height: 8rem !important;
  }
  .xxl\:max-h-s60 {
    max-height: 15rem !important;
  }
  .xxl\:max-h-s70 {
    max-height: 17.5rem !important;
  }
  .xxl\:max-h-s72 {
    max-height: 18rem !important;
  }
  .xxl\:max-h-s40em {
    max-height: 10em !important;
  }
  .xxl\:max-h-s44em {
    max-height: 11em !important;
  }
  .xxl\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .xxl\:max-h-s48em {
    max-height: 12em !important;
  }
  .xxl\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .xxl\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .xxl\:max-h-s52em {
    max-height: 13em !important;
  }
  .xxl\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .xxl\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .xxl\:max-h-s56em {
    max-height: 14em !important;
  }
  .xxl\:max-h-s60em {
    max-height: 15em !important;
  }
  .xxl\:max-h-s70em {
    max-height: 18em !important;
  }
  .xxl\:max-h-none {
    max-height: none !important;
  }
  .xxl\:max-h-fit-content {
    max-height: fit-content !important;
  }
  .xxl\:max-h-auto {
    max-height: auto !important;
  }
  .xxl\:w-0 {
    width: 0 !important;
  }
  .xxl\:w-1 {
    width: 16rem !important;
  }
  .xxl\:w-2 {
    width: 20rem !important;
  }
  .xxl\:w-3 {
    width: 24rem !important;
  }
  .xxl\:w-4 {
    width: 28rem !important;
  }
  .xxl\:w-5 {
    width: 32rem !important;
  }
  .xxl\:w-6 {
    width: 36rem !important;
  }
  .xxl\:w-7 {
    width: 42rem !important;
  }
  .xxl\:w-8 {
    width: 48rem !important;
  }
  .xxl\:w-9 {
    width: 56rem !important;
  }
  .xxl\:w-10 {
    width: 64rem !important;
  }
  .xxl\:w-11 {
    width: 72rem !important;
  }
  .xxl\:w-12 {
    width: 80rem !important;
  }
  .xxl\:w-13 {
    width: 88rem !important;
  }
  .xxl\:w-14 {
    width: 96rem !important;
  }
  .xxl\:w-1em {
    width: 16em !important;
  }
  .xxl\:w-2em {
    width: 20em !important;
  }
  .xxl\:w-3em {
    width: 24em !important;
  }
  .xxl\:w-4em {
    width: 28em !important;
  }
  .xxl\:w-5em {
    width: 32em !important;
  }
  .xxl\:w-6em {
    width: 36em !important;
  }
  .xxl\:w-7em {
    width: 42em !important;
  }
  .xxl\:w-8em {
    width: 48em !important;
  }
  .xxl\:w-9em {
    width: 56em !important;
  }
  .xxl\:w-10em {
    width: 64em !important;
  }
  .xxl\:w-11em {
    width: 72em !important;
  }
  .xxl\:w-1\/6 {
    width: 16.666666% !important;
  }
  .xxl\:w-1\/4 {
    width: 25% !important;
  }
  .xxl\:w-2\/7 {
    width: 28.57142857% !important;
  }
  .xxl\:w-1\/3 {
    width: 33.333333% !important;
  }
  .xxl\:w-1\/5 {
    width: 20% !important;
  }
  .xxl\:w-2\/5 {
    width: 40% !important;
  }
  .xxl\:w-3\/5 {
    width: 60% !important;
  }
  .xxl\:w-4\/5 {
    width: 80% !important;
  }
  .xxl\:w-1\/2 {
    width: 50% !important;
  }
  .xxl\:w-1\/12 {
    width: 8.333333% !important;
  }
  .xxl\:w-5\/12 {
    width: 41.6666666% !important;
  }
  .xxl\:w-7\/12 {
    width: 58.333333% !important;
  }
  .xxl\:w-11\/12 {
    width: 91.6666666% !important;
  }
  .xxl\:w-2\/3 {
    width: 66.666667% !important;
  }
  .xxl\:w-3\/4 {
    width: 75% !important;
  }
  .xxl\:w-5\/6 {
    width: 83.3333333% !important;
  }
  .xxl\:w-7\/6 {
    width: 116.6666666% !important;
  }
  .xxl\:w-4\/3 {
    width: 133.3333333% !important;
  }
  .xxl\:w-3\/2 {
    width: 150% !important;
  }
  .xxl\:w-full {
    width: 100% !important;
  }
  .xxl\:w-1\/6vh {
    width: 16.666666vh !important;
  }
  .xxl\:w-1\/4vh {
    width: 25vh !important;
  }
  .xxl\:w-1\/3vh {
    width: 33.333333vh !important;
  }
  .xxl\:w-1\/2vh {
    width: 50vh !important;
  }
  .xxl\:w-7\/12vh {
    width: 58.333333vh !important;
  }
  .xxl\:w-2\/3vh {
    width: 66.666667vh !important;
  }
  .xxl\:w-3\/4vh {
    width: 75vh !important;
  }
  .xxl\:w-5\/6vh {
    width: 83.3333333vh !important;
  }
  .xxl\:w-full-vh {
    width: 100vh !important;
  }
  .xxl\:w-s1 {
    width: 0.25rem !important;
  }
  .xxl\:w-s2 {
    width: 0.5rem !important;
  }
  .xxl\:w-s3 {
    width: 0.75rem !important;
  }
  .xxl\:w-s4 {
    width: 1rem !important;
  }
  .xxl\:w-s5 {
    width: 1.25rem !important;
  }
  .xxl\:w-s6 {
    width: 1.5rem !important;
  }
  .xxl\:w-s8 {
    width: 2rem !important;
  }
  .xxl\:w-s10 {
    width: 2.5rem !important;
  }
  .xxl\:w-s12 {
    width: 3rem !important;
  }
  .xxl\:w-s14 {
    width: 3.5rem !important;
  }
  .xxl\:w-s16 {
    width: 4rem !important;
  }
  .xxl\:w-s18 {
    width: 4.5rem !important;
  }
  .xxl\:w-s20 {
    width: 5rem !important;
  }
  .xxl\:w-s24 {
    width: 6rem !important;
  }
  .xxl\:w-s28 {
    width: 7rem !important;
  }
  .xxl\:w-s32 {
    width: 8rem !important;
  }
  .xxl\:w-s60 {
    width: 15rem !important;
  }
  .xxl\:w-s70 {
    width: 17.5rem !important;
  }
  .xxl\:w-s72 {
    width: 18rem !important;
  }
  .xxl\:w-s40em {
    width: 10em !important;
  }
  .xxl\:w-s44em {
    width: 11em !important;
  }
  .xxl\:w-s46em {
    width: 11.5em !important;
  }
  .xxl\:w-s48em {
    width: 12em !important;
  }
  .xxl\:w-s49em {
    width: 12.25em !important;
  }
  .xxl\:w-s50em {
    width: 12.5em !important;
  }
  .xxl\:w-s52em {
    width: 13em !important;
  }
  .xxl\:w-s54em {
    width: 13.5em !important;
  }
  .xxl\:w-s55em {
    width: 13.75em !important;
  }
  .xxl\:w-s56em {
    width: 14em !important;
  }
  .xxl\:w-s60em {
    width: 15em !important;
  }
  .xxl\:w-s70em {
    width: 18em !important;
  }
  .xxl\:w-none {
    width: none !important;
  }
  .xxl\:w-fit-content {
    width: fit-content !important;
  }
  .xxl\:w-auto {
    width: auto !important;
  }
  .xxl\:min-w-0 {
    min-width: 0 !important;
  }
  .xxl\:min-w-1 {
    min-width: 16rem !important;
  }
  .xxl\:min-w-2 {
    min-width: 20rem !important;
  }
  .xxl\:min-w-3 {
    min-width: 24rem !important;
  }
  .xxl\:min-w-4 {
    min-width: 28rem !important;
  }
  .xxl\:min-w-5 {
    min-width: 32rem !important;
  }
  .xxl\:min-w-6 {
    min-width: 36rem !important;
  }
  .xxl\:min-w-7 {
    min-width: 42rem !important;
  }
  .xxl\:min-w-8 {
    min-width: 48rem !important;
  }
  .xxl\:min-w-9 {
    min-width: 56rem !important;
  }
  .xxl\:min-w-10 {
    min-width: 64rem !important;
  }
  .xxl\:min-w-11 {
    min-width: 72rem !important;
  }
  .xxl\:min-w-12 {
    min-width: 80rem !important;
  }
  .xxl\:min-w-13 {
    min-width: 88rem !important;
  }
  .xxl\:min-w-14 {
    min-width: 96rem !important;
  }
  .xxl\:min-w-1em {
    min-width: 16em !important;
  }
  .xxl\:min-w-2em {
    min-width: 20em !important;
  }
  .xxl\:min-w-3em {
    min-width: 24em !important;
  }
  .xxl\:min-w-4em {
    min-width: 28em !important;
  }
  .xxl\:min-w-5em {
    min-width: 32em !important;
  }
  .xxl\:min-w-6em {
    min-width: 36em !important;
  }
  .xxl\:min-w-7em {
    min-width: 42em !important;
  }
  .xxl\:min-w-8em {
    min-width: 48em !important;
  }
  .xxl\:min-w-9em {
    min-width: 56em !important;
  }
  .xxl\:min-w-10em {
    min-width: 64em !important;
  }
  .xxl\:min-w-11em {
    min-width: 72em !important;
  }
  .xxl\:min-w-1\/6 {
    min-width: 16.666666% !important;
  }
  .xxl\:min-w-1\/4 {
    min-width: 25% !important;
  }
  .xxl\:min-w-2\/7 {
    min-width: 28.57142857% !important;
  }
  .xxl\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }
  .xxl\:min-w-1\/5 {
    min-width: 20% !important;
  }
  .xxl\:min-w-2\/5 {
    min-width: 40% !important;
  }
  .xxl\:min-w-3\/5 {
    min-width: 60% !important;
  }
  .xxl\:min-w-4\/5 {
    min-width: 80% !important;
  }
  .xxl\:min-w-1\/2 {
    min-width: 50% !important;
  }
  .xxl\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }
  .xxl\:min-w-5\/12 {
    min-width: 41.6666666% !important;
  }
  .xxl\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }
  .xxl\:min-w-11\/12 {
    min-width: 91.6666666% !important;
  }
  .xxl\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }
  .xxl\:min-w-3\/4 {
    min-width: 75% !important;
  }
  .xxl\:min-w-5\/6 {
    min-width: 83.3333333% !important;
  }
  .xxl\:min-w-7\/6 {
    min-width: 116.6666666% !important;
  }
  .xxl\:min-w-4\/3 {
    min-width: 133.3333333% !important;
  }
  .xxl\:min-w-3\/2 {
    min-width: 150% !important;
  }
  .xxl\:min-w-full {
    min-width: 100% !important;
  }
  .xxl\:min-w-1\/6vh {
    min-width: 16.666666vh !important;
  }
  .xxl\:min-w-1\/4vh {
    min-width: 25vh !important;
  }
  .xxl\:min-w-1\/3vh {
    min-width: 33.333333vh !important;
  }
  .xxl\:min-w-1\/2vh {
    min-width: 50vh !important;
  }
  .xxl\:min-w-7\/12vh {
    min-width: 58.333333vh !important;
  }
  .xxl\:min-w-2\/3vh {
    min-width: 66.666667vh !important;
  }
  .xxl\:min-w-3\/4vh {
    min-width: 75vh !important;
  }
  .xxl\:min-w-5\/6vh {
    min-width: 83.3333333vh !important;
  }
  .xxl\:min-w-full-vh {
    min-width: 100vh !important;
  }
  .xxl\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .xxl\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .xxl\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .xxl\:min-w-s4 {
    min-width: 1rem !important;
  }
  .xxl\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .xxl\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .xxl\:min-w-s8 {
    min-width: 2rem !important;
  }
  .xxl\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .xxl\:min-w-s12 {
    min-width: 3rem !important;
  }
  .xxl\:min-w-s14 {
    min-width: 3.5rem !important;
  }
  .xxl\:min-w-s16 {
    min-width: 4rem !important;
  }
  .xxl\:min-w-s18 {
    min-width: 4.5rem !important;
  }
  .xxl\:min-w-s20 {
    min-width: 5rem !important;
  }
  .xxl\:min-w-s24 {
    min-width: 6rem !important;
  }
  .xxl\:min-w-s28 {
    min-width: 7rem !important;
  }
  .xxl\:min-w-s32 {
    min-width: 8rem !important;
  }
  .xxl\:min-w-s60 {
    min-width: 15rem !important;
  }
  .xxl\:min-w-s70 {
    min-width: 17.5rem !important;
  }
  .xxl\:min-w-s72 {
    min-width: 18rem !important;
  }
  .xxl\:min-w-s40em {
    min-width: 10em !important;
  }
  .xxl\:min-w-s44em {
    min-width: 11em !important;
  }
  .xxl\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .xxl\:min-w-s48em {
    min-width: 12em !important;
  }
  .xxl\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .xxl\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .xxl\:min-w-s52em {
    min-width: 13em !important;
  }
  .xxl\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .xxl\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .xxl\:min-w-s56em {
    min-width: 14em !important;
  }
  .xxl\:min-w-s60em {
    min-width: 15em !important;
  }
  .xxl\:min-w-s70em {
    min-width: 18em !important;
  }
  .xxl\:min-w-none {
    min-width: none !important;
  }
  .xxl\:min-w-fit-content {
    min-width: fit-content !important;
  }
  .xxl\:min-w-auto {
    min-width: auto !important;
  }
  .xxl\:max-w-0 {
    max-width: 0 !important;
  }
  .xxl\:max-w-1 {
    max-width: 16rem !important;
  }
  .xxl\:max-w-2 {
    max-width: 20rem !important;
  }
  .xxl\:max-w-3 {
    max-width: 24rem !important;
  }
  .xxl\:max-w-4 {
    max-width: 28rem !important;
  }
  .xxl\:max-w-5 {
    max-width: 32rem !important;
  }
  .xxl\:max-w-6 {
    max-width: 36rem !important;
  }
  .xxl\:max-w-7 {
    max-width: 42rem !important;
  }
  .xxl\:max-w-8 {
    max-width: 48rem !important;
  }
  .xxl\:max-w-9 {
    max-width: 56rem !important;
  }
  .xxl\:max-w-10 {
    max-width: 64rem !important;
  }
  .xxl\:max-w-11 {
    max-width: 72rem !important;
  }
  .xxl\:max-w-12 {
    max-width: 80rem !important;
  }
  .xxl\:max-w-13 {
    max-width: 88rem !important;
  }
  .xxl\:max-w-14 {
    max-width: 96rem !important;
  }
  .xxl\:max-w-1em {
    max-width: 16em !important;
  }
  .xxl\:max-w-2em {
    max-width: 20em !important;
  }
  .xxl\:max-w-3em {
    max-width: 24em !important;
  }
  .xxl\:max-w-4em {
    max-width: 28em !important;
  }
  .xxl\:max-w-5em {
    max-width: 32em !important;
  }
  .xxl\:max-w-6em {
    max-width: 36em !important;
  }
  .xxl\:max-w-7em {
    max-width: 42em !important;
  }
  .xxl\:max-w-8em {
    max-width: 48em !important;
  }
  .xxl\:max-w-9em {
    max-width: 56em !important;
  }
  .xxl\:max-w-10em {
    max-width: 64em !important;
  }
  .xxl\:max-w-11em {
    max-width: 72em !important;
  }
  .xxl\:max-w-1\/6 {
    max-width: 16.666666% !important;
  }
  .xxl\:max-w-1\/4 {
    max-width: 25% !important;
  }
  .xxl\:max-w-2\/7 {
    max-width: 28.57142857% !important;
  }
  .xxl\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }
  .xxl\:max-w-1\/5 {
    max-width: 20% !important;
  }
  .xxl\:max-w-2\/5 {
    max-width: 40% !important;
  }
  .xxl\:max-w-3\/5 {
    max-width: 60% !important;
  }
  .xxl\:max-w-4\/5 {
    max-width: 80% !important;
  }
  .xxl\:max-w-1\/2 {
    max-width: 50% !important;
  }
  .xxl\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }
  .xxl\:max-w-5\/12 {
    max-width: 41.6666666% !important;
  }
  .xxl\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }
  .xxl\:max-w-11\/12 {
    max-width: 91.6666666% !important;
  }
  .xxl\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }
  .xxl\:max-w-3\/4 {
    max-width: 75% !important;
  }
  .xxl\:max-w-5\/6 {
    max-width: 83.3333333% !important;
  }
  .xxl\:max-w-7\/6 {
    max-width: 116.6666666% !important;
  }
  .xxl\:max-w-4\/3 {
    max-width: 133.3333333% !important;
  }
  .xxl\:max-w-3\/2 {
    max-width: 150% !important;
  }
  .xxl\:max-w-full {
    max-width: 100% !important;
  }
  .xxl\:max-w-1\/6vh {
    max-width: 16.666666vh !important;
  }
  .xxl\:max-w-1\/4vh {
    max-width: 25vh !important;
  }
  .xxl\:max-w-1\/3vh {
    max-width: 33.333333vh !important;
  }
  .xxl\:max-w-1\/2vh {
    max-width: 50vh !important;
  }
  .xxl\:max-w-7\/12vh {
    max-width: 58.333333vh !important;
  }
  .xxl\:max-w-2\/3vh {
    max-width: 66.666667vh !important;
  }
  .xxl\:max-w-3\/4vh {
    max-width: 75vh !important;
  }
  .xxl\:max-w-5\/6vh {
    max-width: 83.3333333vh !important;
  }
  .xxl\:max-w-full-vh {
    max-width: 100vh !important;
  }
  .xxl\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .xxl\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .xxl\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .xxl\:max-w-s4 {
    max-width: 1rem !important;
  }
  .xxl\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .xxl\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .xxl\:max-w-s8 {
    max-width: 2rem !important;
  }
  .xxl\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .xxl\:max-w-s12 {
    max-width: 3rem !important;
  }
  .xxl\:max-w-s14 {
    max-width: 3.5rem !important;
  }
  .xxl\:max-w-s16 {
    max-width: 4rem !important;
  }
  .xxl\:max-w-s18 {
    max-width: 4.5rem !important;
  }
  .xxl\:max-w-s20 {
    max-width: 5rem !important;
  }
  .xxl\:max-w-s24 {
    max-width: 6rem !important;
  }
  .xxl\:max-w-s28 {
    max-width: 7rem !important;
  }
  .xxl\:max-w-s32 {
    max-width: 8rem !important;
  }
  .xxl\:max-w-s60 {
    max-width: 15rem !important;
  }
  .xxl\:max-w-s70 {
    max-width: 17.5rem !important;
  }
  .xxl\:max-w-s72 {
    max-width: 18rem !important;
  }
  .xxl\:max-w-s40em {
    max-width: 10em !important;
  }
  .xxl\:max-w-s44em {
    max-width: 11em !important;
  }
  .xxl\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .xxl\:max-w-s48em {
    max-width: 12em !important;
  }
  .xxl\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .xxl\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .xxl\:max-w-s52em {
    max-width: 13em !important;
  }
  .xxl\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .xxl\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .xxl\:max-w-s56em {
    max-width: 14em !important;
  }
  .xxl\:max-w-s60em {
    max-width: 15em !important;
  }
  .xxl\:max-w-s70em {
    max-width: 18em !important;
  }
  .xxl\:max-w-none {
    max-width: none !important;
  }
  .xxl\:max-w-fit-content {
    max-width: fit-content !important;
  }
  .xxl\:max-w-auto {
    max-width: auto !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:h-0 {
    height: 0 !important;
  }
  .max\:h-1 {
    height: 16rem !important;
  }
  .max\:h-2 {
    height: 20rem !important;
  }
  .max\:h-3 {
    height: 24rem !important;
  }
  .max\:h-4 {
    height: 28rem !important;
  }
  .max\:h-5 {
    height: 32rem !important;
  }
  .max\:h-6 {
    height: 36rem !important;
  }
  .max\:h-7 {
    height: 42rem !important;
  }
  .max\:h-8 {
    height: 48rem !important;
  }
  .max\:h-9 {
    height: 56rem !important;
  }
  .max\:h-10 {
    height: 64rem !important;
  }
  .max\:h-11 {
    height: 72rem !important;
  }
  .max\:h-12 {
    height: 80rem !important;
  }
  .max\:h-13 {
    height: 88rem !important;
  }
  .max\:h-14 {
    height: 96rem !important;
  }
  .max\:h-1em {
    height: 16em !important;
  }
  .max\:h-2em {
    height: 20em !important;
  }
  .max\:h-3em {
    height: 24em !important;
  }
  .max\:h-4em {
    height: 28em !important;
  }
  .max\:h-5em {
    height: 32em !important;
  }
  .max\:h-6em {
    height: 36em !important;
  }
  .max\:h-7em {
    height: 42em !important;
  }
  .max\:h-8em {
    height: 48em !important;
  }
  .max\:h-9em {
    height: 56em !important;
  }
  .max\:h-10em {
    height: 64em !important;
  }
  .max\:h-11em {
    height: 72em !important;
  }
  .max\:h-1\/6 {
    height: 16.666666% !important;
  }
  .max\:h-1\/4 {
    height: 25% !important;
  }
  .max\:h-2\/7 {
    height: 28.57142857% !important;
  }
  .max\:h-1\/3 {
    height: 33.333333% !important;
  }
  .max\:h-1\/5 {
    height: 20% !important;
  }
  .max\:h-2\/5 {
    height: 40% !important;
  }
  .max\:h-3\/5 {
    height: 60% !important;
  }
  .max\:h-4\/5 {
    height: 80% !important;
  }
  .max\:h-1\/2 {
    height: 50% !important;
  }
  .max\:h-1\/12 {
    height: 8.333333% !important;
  }
  .max\:h-5\/12 {
    height: 41.6666666% !important;
  }
  .max\:h-7\/12 {
    height: 58.333333% !important;
  }
  .max\:h-11\/12 {
    height: 91.6666666% !important;
  }
  .max\:h-2\/3 {
    height: 66.666667% !important;
  }
  .max\:h-3\/4 {
    height: 75% !important;
  }
  .max\:h-5\/6 {
    height: 83.3333333% !important;
  }
  .max\:h-7\/6 {
    height: 116.6666666% !important;
  }
  .max\:h-4\/3 {
    height: 133.3333333% !important;
  }
  .max\:h-3\/2 {
    height: 150% !important;
  }
  .max\:h-full {
    height: 100% !important;
  }
  .max\:h-1\/6vh {
    height: 16.666666vh !important;
  }
  .max\:h-1\/4vh {
    height: 25vh !important;
  }
  .max\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .max\:h-1\/2vh {
    height: 50vh !important;
  }
  .max\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .max\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .max\:h-3\/4vh {
    height: 75vh !important;
  }
  .max\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .max\:h-full-vh {
    height: 100vh !important;
  }
  .max\:h-s1 {
    height: 0.25rem !important;
  }
  .max\:h-s2 {
    height: 0.5rem !important;
  }
  .max\:h-s3 {
    height: 0.75rem !important;
  }
  .max\:h-s4 {
    height: 1rem !important;
  }
  .max\:h-s5 {
    height: 1.25rem !important;
  }
  .max\:h-s6 {
    height: 1.5rem !important;
  }
  .max\:h-s8 {
    height: 2rem !important;
  }
  .max\:h-s10 {
    height: 2.5rem !important;
  }
  .max\:h-s12 {
    height: 3rem !important;
  }
  .max\:h-s14 {
    height: 3.5rem !important;
  }
  .max\:h-s16 {
    height: 4rem !important;
  }
  .max\:h-s18 {
    height: 4.5rem !important;
  }
  .max\:h-s20 {
    height: 5rem !important;
  }
  .max\:h-s24 {
    height: 6rem !important;
  }
  .max\:h-s28 {
    height: 7rem !important;
  }
  .max\:h-s32 {
    height: 8rem !important;
  }
  .max\:h-s60 {
    height: 15rem !important;
  }
  .max\:h-s70 {
    height: 17.5rem !important;
  }
  .max\:h-s72 {
    height: 18rem !important;
  }
  .max\:h-s40em {
    height: 10em !important;
  }
  .max\:h-s44em {
    height: 11em !important;
  }
  .max\:h-s46em {
    height: 11.5em !important;
  }
  .max\:h-s48em {
    height: 12em !important;
  }
  .max\:h-s49em {
    height: 12.25em !important;
  }
  .max\:h-s50em {
    height: 12.5em !important;
  }
  .max\:h-s52em {
    height: 13em !important;
  }
  .max\:h-s54em {
    height: 13.5em !important;
  }
  .max\:h-s55em {
    height: 13.75em !important;
  }
  .max\:h-s56em {
    height: 14em !important;
  }
  .max\:h-s60em {
    height: 15em !important;
  }
  .max\:h-s70em {
    height: 18em !important;
  }
  .max\:h-none {
    height: none !important;
  }
  .max\:h-fit-content {
    height: fit-content !important;
  }
  .max\:h-auto {
    height: auto !important;
  }
  .max\:min-h-0 {
    min-height: 0 !important;
  }
  .max\:min-h-1 {
    min-height: 16rem !important;
  }
  .max\:min-h-2 {
    min-height: 20rem !important;
  }
  .max\:min-h-3 {
    min-height: 24rem !important;
  }
  .max\:min-h-4 {
    min-height: 28rem !important;
  }
  .max\:min-h-5 {
    min-height: 32rem !important;
  }
  .max\:min-h-6 {
    min-height: 36rem !important;
  }
  .max\:min-h-7 {
    min-height: 42rem !important;
  }
  .max\:min-h-8 {
    min-height: 48rem !important;
  }
  .max\:min-h-9 {
    min-height: 56rem !important;
  }
  .max\:min-h-10 {
    min-height: 64rem !important;
  }
  .max\:min-h-11 {
    min-height: 72rem !important;
  }
  .max\:min-h-12 {
    min-height: 80rem !important;
  }
  .max\:min-h-13 {
    min-height: 88rem !important;
  }
  .max\:min-h-14 {
    min-height: 96rem !important;
  }
  .max\:min-h-1em {
    min-height: 16em !important;
  }
  .max\:min-h-2em {
    min-height: 20em !important;
  }
  .max\:min-h-3em {
    min-height: 24em !important;
  }
  .max\:min-h-4em {
    min-height: 28em !important;
  }
  .max\:min-h-5em {
    min-height: 32em !important;
  }
  .max\:min-h-6em {
    min-height: 36em !important;
  }
  .max\:min-h-7em {
    min-height: 42em !important;
  }
  .max\:min-h-8em {
    min-height: 48em !important;
  }
  .max\:min-h-9em {
    min-height: 56em !important;
  }
  .max\:min-h-10em {
    min-height: 64em !important;
  }
  .max\:min-h-11em {
    min-height: 72em !important;
  }
  .max\:min-h-1\/6 {
    min-height: 16.666666% !important;
  }
  .max\:min-h-1\/4 {
    min-height: 25% !important;
  }
  .max\:min-h-2\/7 {
    min-height: 28.57142857% !important;
  }
  .max\:min-h-1\/3 {
    min-height: 33.333333% !important;
  }
  .max\:min-h-1\/5 {
    min-height: 20% !important;
  }
  .max\:min-h-2\/5 {
    min-height: 40% !important;
  }
  .max\:min-h-3\/5 {
    min-height: 60% !important;
  }
  .max\:min-h-4\/5 {
    min-height: 80% !important;
  }
  .max\:min-h-1\/2 {
    min-height: 50% !important;
  }
  .max\:min-h-1\/12 {
    min-height: 8.333333% !important;
  }
  .max\:min-h-5\/12 {
    min-height: 41.6666666% !important;
  }
  .max\:min-h-7\/12 {
    min-height: 58.333333% !important;
  }
  .max\:min-h-11\/12 {
    min-height: 91.6666666% !important;
  }
  .max\:min-h-2\/3 {
    min-height: 66.666667% !important;
  }
  .max\:min-h-3\/4 {
    min-height: 75% !important;
  }
  .max\:min-h-5\/6 {
    min-height: 83.3333333% !important;
  }
  .max\:min-h-7\/6 {
    min-height: 116.6666666% !important;
  }
  .max\:min-h-4\/3 {
    min-height: 133.3333333% !important;
  }
  .max\:min-h-3\/2 {
    min-height: 150% !important;
  }
  .max\:min-h-full {
    min-height: 100% !important;
  }
  .max\:min-h-1\/6vh {
    min-height: 16.666666vh !important;
  }
  .max\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .max\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .max\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .max\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .max\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .max\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .max\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .max\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .max\:min-h-s1 {
    min-height: 0.25rem !important;
  }
  .max\:min-h-s2 {
    min-height: 0.5rem !important;
  }
  .max\:min-h-s3 {
    min-height: 0.75rem !important;
  }
  .max\:min-h-s4 {
    min-height: 1rem !important;
  }
  .max\:min-h-s5 {
    min-height: 1.25rem !important;
  }
  .max\:min-h-s6 {
    min-height: 1.5rem !important;
  }
  .max\:min-h-s8 {
    min-height: 2rem !important;
  }
  .max\:min-h-s10 {
    min-height: 2.5rem !important;
  }
  .max\:min-h-s12 {
    min-height: 3rem !important;
  }
  .max\:min-h-s14 {
    min-height: 3.5rem !important;
  }
  .max\:min-h-s16 {
    min-height: 4rem !important;
  }
  .max\:min-h-s18 {
    min-height: 4.5rem !important;
  }
  .max\:min-h-s20 {
    min-height: 5rem !important;
  }
  .max\:min-h-s24 {
    min-height: 6rem !important;
  }
  .max\:min-h-s28 {
    min-height: 7rem !important;
  }
  .max\:min-h-s32 {
    min-height: 8rem !important;
  }
  .max\:min-h-s60 {
    min-height: 15rem !important;
  }
  .max\:min-h-s70 {
    min-height: 17.5rem !important;
  }
  .max\:min-h-s72 {
    min-height: 18rem !important;
  }
  .max\:min-h-s40em {
    min-height: 10em !important;
  }
  .max\:min-h-s44em {
    min-height: 11em !important;
  }
  .max\:min-h-s46em {
    min-height: 11.5em !important;
  }
  .max\:min-h-s48em {
    min-height: 12em !important;
  }
  .max\:min-h-s49em {
    min-height: 12.25em !important;
  }
  .max\:min-h-s50em {
    min-height: 12.5em !important;
  }
  .max\:min-h-s52em {
    min-height: 13em !important;
  }
  .max\:min-h-s54em {
    min-height: 13.5em !important;
  }
  .max\:min-h-s55em {
    min-height: 13.75em !important;
  }
  .max\:min-h-s56em {
    min-height: 14em !important;
  }
  .max\:min-h-s60em {
    min-height: 15em !important;
  }
  .max\:min-h-s70em {
    min-height: 18em !important;
  }
  .max\:min-h-none {
    min-height: none !important;
  }
  .max\:min-h-fit-content {
    min-height: fit-content !important;
  }
  .max\:min-h-auto {
    min-height: auto !important;
  }
  .max\:max-h-0 {
    max-height: 0 !important;
  }
  .max\:max-h-1 {
    max-height: 16rem !important;
  }
  .max\:max-h-2 {
    max-height: 20rem !important;
  }
  .max\:max-h-3 {
    max-height: 24rem !important;
  }
  .max\:max-h-4 {
    max-height: 28rem !important;
  }
  .max\:max-h-5 {
    max-height: 32rem !important;
  }
  .max\:max-h-6 {
    max-height: 36rem !important;
  }
  .max\:max-h-7 {
    max-height: 42rem !important;
  }
  .max\:max-h-8 {
    max-height: 48rem !important;
  }
  .max\:max-h-9 {
    max-height: 56rem !important;
  }
  .max\:max-h-10 {
    max-height: 64rem !important;
  }
  .max\:max-h-11 {
    max-height: 72rem !important;
  }
  .max\:max-h-12 {
    max-height: 80rem !important;
  }
  .max\:max-h-13 {
    max-height: 88rem !important;
  }
  .max\:max-h-14 {
    max-height: 96rem !important;
  }
  .max\:max-h-1em {
    max-height: 16em !important;
  }
  .max\:max-h-2em {
    max-height: 20em !important;
  }
  .max\:max-h-3em {
    max-height: 24em !important;
  }
  .max\:max-h-4em {
    max-height: 28em !important;
  }
  .max\:max-h-5em {
    max-height: 32em !important;
  }
  .max\:max-h-6em {
    max-height: 36em !important;
  }
  .max\:max-h-7em {
    max-height: 42em !important;
  }
  .max\:max-h-8em {
    max-height: 48em !important;
  }
  .max\:max-h-9em {
    max-height: 56em !important;
  }
  .max\:max-h-10em {
    max-height: 64em !important;
  }
  .max\:max-h-11em {
    max-height: 72em !important;
  }
  .max\:max-h-1\/6 {
    max-height: 16.666666% !important;
  }
  .max\:max-h-1\/4 {
    max-height: 25% !important;
  }
  .max\:max-h-2\/7 {
    max-height: 28.57142857% !important;
  }
  .max\:max-h-1\/3 {
    max-height: 33.333333% !important;
  }
  .max\:max-h-1\/5 {
    max-height: 20% !important;
  }
  .max\:max-h-2\/5 {
    max-height: 40% !important;
  }
  .max\:max-h-3\/5 {
    max-height: 60% !important;
  }
  .max\:max-h-4\/5 {
    max-height: 80% !important;
  }
  .max\:max-h-1\/2 {
    max-height: 50% !important;
  }
  .max\:max-h-1\/12 {
    max-height: 8.333333% !important;
  }
  .max\:max-h-5\/12 {
    max-height: 41.6666666% !important;
  }
  .max\:max-h-7\/12 {
    max-height: 58.333333% !important;
  }
  .max\:max-h-11\/12 {
    max-height: 91.6666666% !important;
  }
  .max\:max-h-2\/3 {
    max-height: 66.666667% !important;
  }
  .max\:max-h-3\/4 {
    max-height: 75% !important;
  }
  .max\:max-h-5\/6 {
    max-height: 83.3333333% !important;
  }
  .max\:max-h-7\/6 {
    max-height: 116.6666666% !important;
  }
  .max\:max-h-4\/3 {
    max-height: 133.3333333% !important;
  }
  .max\:max-h-3\/2 {
    max-height: 150% !important;
  }
  .max\:max-h-full {
    max-height: 100% !important;
  }
  .max\:max-h-1\/6vh {
    max-height: 16.666666vh !important;
  }
  .max\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .max\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .max\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .max\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .max\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .max\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .max\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .max\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .max\:max-h-s1 {
    max-height: 0.25rem !important;
  }
  .max\:max-h-s2 {
    max-height: 0.5rem !important;
  }
  .max\:max-h-s3 {
    max-height: 0.75rem !important;
  }
  .max\:max-h-s4 {
    max-height: 1rem !important;
  }
  .max\:max-h-s5 {
    max-height: 1.25rem !important;
  }
  .max\:max-h-s6 {
    max-height: 1.5rem !important;
  }
  .max\:max-h-s8 {
    max-height: 2rem !important;
  }
  .max\:max-h-s10 {
    max-height: 2.5rem !important;
  }
  .max\:max-h-s12 {
    max-height: 3rem !important;
  }
  .max\:max-h-s14 {
    max-height: 3.5rem !important;
  }
  .max\:max-h-s16 {
    max-height: 4rem !important;
  }
  .max\:max-h-s18 {
    max-height: 4.5rem !important;
  }
  .max\:max-h-s20 {
    max-height: 5rem !important;
  }
  .max\:max-h-s24 {
    max-height: 6rem !important;
  }
  .max\:max-h-s28 {
    max-height: 7rem !important;
  }
  .max\:max-h-s32 {
    max-height: 8rem !important;
  }
  .max\:max-h-s60 {
    max-height: 15rem !important;
  }
  .max\:max-h-s70 {
    max-height: 17.5rem !important;
  }
  .max\:max-h-s72 {
    max-height: 18rem !important;
  }
  .max\:max-h-s40em {
    max-height: 10em !important;
  }
  .max\:max-h-s44em {
    max-height: 11em !important;
  }
  .max\:max-h-s46em {
    max-height: 11.5em !important;
  }
  .max\:max-h-s48em {
    max-height: 12em !important;
  }
  .max\:max-h-s49em {
    max-height: 12.25em !important;
  }
  .max\:max-h-s50em {
    max-height: 12.5em !important;
  }
  .max\:max-h-s52em {
    max-height: 13em !important;
  }
  .max\:max-h-s54em {
    max-height: 13.5em !important;
  }
  .max\:max-h-s55em {
    max-height: 13.75em !important;
  }
  .max\:max-h-s56em {
    max-height: 14em !important;
  }
  .max\:max-h-s60em {
    max-height: 15em !important;
  }
  .max\:max-h-s70em {
    max-height: 18em !important;
  }
  .max\:max-h-none {
    max-height: none !important;
  }
  .max\:max-h-fit-content {
    max-height: fit-content !important;
  }
  .max\:max-h-auto {
    max-height: auto !important;
  }
  .max\:w-0 {
    width: 0 !important;
  }
  .max\:w-1 {
    width: 16rem !important;
  }
  .max\:w-2 {
    width: 20rem !important;
  }
  .max\:w-3 {
    width: 24rem !important;
  }
  .max\:w-4 {
    width: 28rem !important;
  }
  .max\:w-5 {
    width: 32rem !important;
  }
  .max\:w-6 {
    width: 36rem !important;
  }
  .max\:w-7 {
    width: 42rem !important;
  }
  .max\:w-8 {
    width: 48rem !important;
  }
  .max\:w-9 {
    width: 56rem !important;
  }
  .max\:w-10 {
    width: 64rem !important;
  }
  .max\:w-11 {
    width: 72rem !important;
  }
  .max\:w-12 {
    width: 80rem !important;
  }
  .max\:w-13 {
    width: 88rem !important;
  }
  .max\:w-14 {
    width: 96rem !important;
  }
  .max\:w-1em {
    width: 16em !important;
  }
  .max\:w-2em {
    width: 20em !important;
  }
  .max\:w-3em {
    width: 24em !important;
  }
  .max\:w-4em {
    width: 28em !important;
  }
  .max\:w-5em {
    width: 32em !important;
  }
  .max\:w-6em {
    width: 36em !important;
  }
  .max\:w-7em {
    width: 42em !important;
  }
  .max\:w-8em {
    width: 48em !important;
  }
  .max\:w-9em {
    width: 56em !important;
  }
  .max\:w-10em {
    width: 64em !important;
  }
  .max\:w-11em {
    width: 72em !important;
  }
  .max\:w-1\/6 {
    width: 16.666666% !important;
  }
  .max\:w-1\/4 {
    width: 25% !important;
  }
  .max\:w-2\/7 {
    width: 28.57142857% !important;
  }
  .max\:w-1\/3 {
    width: 33.333333% !important;
  }
  .max\:w-1\/5 {
    width: 20% !important;
  }
  .max\:w-2\/5 {
    width: 40% !important;
  }
  .max\:w-3\/5 {
    width: 60% !important;
  }
  .max\:w-4\/5 {
    width: 80% !important;
  }
  .max\:w-1\/2 {
    width: 50% !important;
  }
  .max\:w-1\/12 {
    width: 8.333333% !important;
  }
  .max\:w-5\/12 {
    width: 41.6666666% !important;
  }
  .max\:w-7\/12 {
    width: 58.333333% !important;
  }
  .max\:w-11\/12 {
    width: 91.6666666% !important;
  }
  .max\:w-2\/3 {
    width: 66.666667% !important;
  }
  .max\:w-3\/4 {
    width: 75% !important;
  }
  .max\:w-5\/6 {
    width: 83.3333333% !important;
  }
  .max\:w-7\/6 {
    width: 116.6666666% !important;
  }
  .max\:w-4\/3 {
    width: 133.3333333% !important;
  }
  .max\:w-3\/2 {
    width: 150% !important;
  }
  .max\:w-full {
    width: 100% !important;
  }
  .max\:w-1\/6vh {
    width: 16.666666vh !important;
  }
  .max\:w-1\/4vh {
    width: 25vh !important;
  }
  .max\:w-1\/3vh {
    width: 33.333333vh !important;
  }
  .max\:w-1\/2vh {
    width: 50vh !important;
  }
  .max\:w-7\/12vh {
    width: 58.333333vh !important;
  }
  .max\:w-2\/3vh {
    width: 66.666667vh !important;
  }
  .max\:w-3\/4vh {
    width: 75vh !important;
  }
  .max\:w-5\/6vh {
    width: 83.3333333vh !important;
  }
  .max\:w-full-vh {
    width: 100vh !important;
  }
  .max\:w-s1 {
    width: 0.25rem !important;
  }
  .max\:w-s2 {
    width: 0.5rem !important;
  }
  .max\:w-s3 {
    width: 0.75rem !important;
  }
  .max\:w-s4 {
    width: 1rem !important;
  }
  .max\:w-s5 {
    width: 1.25rem !important;
  }
  .max\:w-s6 {
    width: 1.5rem !important;
  }
  .max\:w-s8 {
    width: 2rem !important;
  }
  .max\:w-s10 {
    width: 2.5rem !important;
  }
  .max\:w-s12 {
    width: 3rem !important;
  }
  .max\:w-s14 {
    width: 3.5rem !important;
  }
  .max\:w-s16 {
    width: 4rem !important;
  }
  .max\:w-s18 {
    width: 4.5rem !important;
  }
  .max\:w-s20 {
    width: 5rem !important;
  }
  .max\:w-s24 {
    width: 6rem !important;
  }
  .max\:w-s28 {
    width: 7rem !important;
  }
  .max\:w-s32 {
    width: 8rem !important;
  }
  .max\:w-s60 {
    width: 15rem !important;
  }
  .max\:w-s70 {
    width: 17.5rem !important;
  }
  .max\:w-s72 {
    width: 18rem !important;
  }
  .max\:w-s40em {
    width: 10em !important;
  }
  .max\:w-s44em {
    width: 11em !important;
  }
  .max\:w-s46em {
    width: 11.5em !important;
  }
  .max\:w-s48em {
    width: 12em !important;
  }
  .max\:w-s49em {
    width: 12.25em !important;
  }
  .max\:w-s50em {
    width: 12.5em !important;
  }
  .max\:w-s52em {
    width: 13em !important;
  }
  .max\:w-s54em {
    width: 13.5em !important;
  }
  .max\:w-s55em {
    width: 13.75em !important;
  }
  .max\:w-s56em {
    width: 14em !important;
  }
  .max\:w-s60em {
    width: 15em !important;
  }
  .max\:w-s70em {
    width: 18em !important;
  }
  .max\:w-none {
    width: none !important;
  }
  .max\:w-fit-content {
    width: fit-content !important;
  }
  .max\:w-auto {
    width: auto !important;
  }
  .max\:min-w-0 {
    min-width: 0 !important;
  }
  .max\:min-w-1 {
    min-width: 16rem !important;
  }
  .max\:min-w-2 {
    min-width: 20rem !important;
  }
  .max\:min-w-3 {
    min-width: 24rem !important;
  }
  .max\:min-w-4 {
    min-width: 28rem !important;
  }
  .max\:min-w-5 {
    min-width: 32rem !important;
  }
  .max\:min-w-6 {
    min-width: 36rem !important;
  }
  .max\:min-w-7 {
    min-width: 42rem !important;
  }
  .max\:min-w-8 {
    min-width: 48rem !important;
  }
  .max\:min-w-9 {
    min-width: 56rem !important;
  }
  .max\:min-w-10 {
    min-width: 64rem !important;
  }
  .max\:min-w-11 {
    min-width: 72rem !important;
  }
  .max\:min-w-12 {
    min-width: 80rem !important;
  }
  .max\:min-w-13 {
    min-width: 88rem !important;
  }
  .max\:min-w-14 {
    min-width: 96rem !important;
  }
  .max\:min-w-1em {
    min-width: 16em !important;
  }
  .max\:min-w-2em {
    min-width: 20em !important;
  }
  .max\:min-w-3em {
    min-width: 24em !important;
  }
  .max\:min-w-4em {
    min-width: 28em !important;
  }
  .max\:min-w-5em {
    min-width: 32em !important;
  }
  .max\:min-w-6em {
    min-width: 36em !important;
  }
  .max\:min-w-7em {
    min-width: 42em !important;
  }
  .max\:min-w-8em {
    min-width: 48em !important;
  }
  .max\:min-w-9em {
    min-width: 56em !important;
  }
  .max\:min-w-10em {
    min-width: 64em !important;
  }
  .max\:min-w-11em {
    min-width: 72em !important;
  }
  .max\:min-w-1\/6 {
    min-width: 16.666666% !important;
  }
  .max\:min-w-1\/4 {
    min-width: 25% !important;
  }
  .max\:min-w-2\/7 {
    min-width: 28.57142857% !important;
  }
  .max\:min-w-1\/3 {
    min-width: 33.333333% !important;
  }
  .max\:min-w-1\/5 {
    min-width: 20% !important;
  }
  .max\:min-w-2\/5 {
    min-width: 40% !important;
  }
  .max\:min-w-3\/5 {
    min-width: 60% !important;
  }
  .max\:min-w-4\/5 {
    min-width: 80% !important;
  }
  .max\:min-w-1\/2 {
    min-width: 50% !important;
  }
  .max\:min-w-1\/12 {
    min-width: 8.333333% !important;
  }
  .max\:min-w-5\/12 {
    min-width: 41.6666666% !important;
  }
  .max\:min-w-7\/12 {
    min-width: 58.333333% !important;
  }
  .max\:min-w-11\/12 {
    min-width: 91.6666666% !important;
  }
  .max\:min-w-2\/3 {
    min-width: 66.666667% !important;
  }
  .max\:min-w-3\/4 {
    min-width: 75% !important;
  }
  .max\:min-w-5\/6 {
    min-width: 83.3333333% !important;
  }
  .max\:min-w-7\/6 {
    min-width: 116.6666666% !important;
  }
  .max\:min-w-4\/3 {
    min-width: 133.3333333% !important;
  }
  .max\:min-w-3\/2 {
    min-width: 150% !important;
  }
  .max\:min-w-full {
    min-width: 100% !important;
  }
  .max\:min-w-1\/6vh {
    min-width: 16.666666vh !important;
  }
  .max\:min-w-1\/4vh {
    min-width: 25vh !important;
  }
  .max\:min-w-1\/3vh {
    min-width: 33.333333vh !important;
  }
  .max\:min-w-1\/2vh {
    min-width: 50vh !important;
  }
  .max\:min-w-7\/12vh {
    min-width: 58.333333vh !important;
  }
  .max\:min-w-2\/3vh {
    min-width: 66.666667vh !important;
  }
  .max\:min-w-3\/4vh {
    min-width: 75vh !important;
  }
  .max\:min-w-5\/6vh {
    min-width: 83.3333333vh !important;
  }
  .max\:min-w-full-vh {
    min-width: 100vh !important;
  }
  .max\:min-w-s1 {
    min-width: 0.25rem !important;
  }
  .max\:min-w-s2 {
    min-width: 0.5rem !important;
  }
  .max\:min-w-s3 {
    min-width: 0.75rem !important;
  }
  .max\:min-w-s4 {
    min-width: 1rem !important;
  }
  .max\:min-w-s5 {
    min-width: 1.25rem !important;
  }
  .max\:min-w-s6 {
    min-width: 1.5rem !important;
  }
  .max\:min-w-s8 {
    min-width: 2rem !important;
  }
  .max\:min-w-s10 {
    min-width: 2.5rem !important;
  }
  .max\:min-w-s12 {
    min-width: 3rem !important;
  }
  .max\:min-w-s14 {
    min-width: 3.5rem !important;
  }
  .max\:min-w-s16 {
    min-width: 4rem !important;
  }
  .max\:min-w-s18 {
    min-width: 4.5rem !important;
  }
  .max\:min-w-s20 {
    min-width: 5rem !important;
  }
  .max\:min-w-s24 {
    min-width: 6rem !important;
  }
  .max\:min-w-s28 {
    min-width: 7rem !important;
  }
  .max\:min-w-s32 {
    min-width: 8rem !important;
  }
  .max\:min-w-s60 {
    min-width: 15rem !important;
  }
  .max\:min-w-s70 {
    min-width: 17.5rem !important;
  }
  .max\:min-w-s72 {
    min-width: 18rem !important;
  }
  .max\:min-w-s40em {
    min-width: 10em !important;
  }
  .max\:min-w-s44em {
    min-width: 11em !important;
  }
  .max\:min-w-s46em {
    min-width: 11.5em !important;
  }
  .max\:min-w-s48em {
    min-width: 12em !important;
  }
  .max\:min-w-s49em {
    min-width: 12.25em !important;
  }
  .max\:min-w-s50em {
    min-width: 12.5em !important;
  }
  .max\:min-w-s52em {
    min-width: 13em !important;
  }
  .max\:min-w-s54em {
    min-width: 13.5em !important;
  }
  .max\:min-w-s55em {
    min-width: 13.75em !important;
  }
  .max\:min-w-s56em {
    min-width: 14em !important;
  }
  .max\:min-w-s60em {
    min-width: 15em !important;
  }
  .max\:min-w-s70em {
    min-width: 18em !important;
  }
  .max\:min-w-none {
    min-width: none !important;
  }
  .max\:min-w-fit-content {
    min-width: fit-content !important;
  }
  .max\:min-w-auto {
    min-width: auto !important;
  }
  .max\:max-w-0 {
    max-width: 0 !important;
  }
  .max\:max-w-1 {
    max-width: 16rem !important;
  }
  .max\:max-w-2 {
    max-width: 20rem !important;
  }
  .max\:max-w-3 {
    max-width: 24rem !important;
  }
  .max\:max-w-4 {
    max-width: 28rem !important;
  }
  .max\:max-w-5 {
    max-width: 32rem !important;
  }
  .max\:max-w-6 {
    max-width: 36rem !important;
  }
  .max\:max-w-7 {
    max-width: 42rem !important;
  }
  .max\:max-w-8 {
    max-width: 48rem !important;
  }
  .max\:max-w-9 {
    max-width: 56rem !important;
  }
  .max\:max-w-10 {
    max-width: 64rem !important;
  }
  .max\:max-w-11 {
    max-width: 72rem !important;
  }
  .max\:max-w-12 {
    max-width: 80rem !important;
  }
  .max\:max-w-13 {
    max-width: 88rem !important;
  }
  .max\:max-w-14 {
    max-width: 96rem !important;
  }
  .max\:max-w-1em {
    max-width: 16em !important;
  }
  .max\:max-w-2em {
    max-width: 20em !important;
  }
  .max\:max-w-3em {
    max-width: 24em !important;
  }
  .max\:max-w-4em {
    max-width: 28em !important;
  }
  .max\:max-w-5em {
    max-width: 32em !important;
  }
  .max\:max-w-6em {
    max-width: 36em !important;
  }
  .max\:max-w-7em {
    max-width: 42em !important;
  }
  .max\:max-w-8em {
    max-width: 48em !important;
  }
  .max\:max-w-9em {
    max-width: 56em !important;
  }
  .max\:max-w-10em {
    max-width: 64em !important;
  }
  .max\:max-w-11em {
    max-width: 72em !important;
  }
  .max\:max-w-1\/6 {
    max-width: 16.666666% !important;
  }
  .max\:max-w-1\/4 {
    max-width: 25% !important;
  }
  .max\:max-w-2\/7 {
    max-width: 28.57142857% !important;
  }
  .max\:max-w-1\/3 {
    max-width: 33.333333% !important;
  }
  .max\:max-w-1\/5 {
    max-width: 20% !important;
  }
  .max\:max-w-2\/5 {
    max-width: 40% !important;
  }
  .max\:max-w-3\/5 {
    max-width: 60% !important;
  }
  .max\:max-w-4\/5 {
    max-width: 80% !important;
  }
  .max\:max-w-1\/2 {
    max-width: 50% !important;
  }
  .max\:max-w-1\/12 {
    max-width: 8.333333% !important;
  }
  .max\:max-w-5\/12 {
    max-width: 41.6666666% !important;
  }
  .max\:max-w-7\/12 {
    max-width: 58.333333% !important;
  }
  .max\:max-w-11\/12 {
    max-width: 91.6666666% !important;
  }
  .max\:max-w-2\/3 {
    max-width: 66.666667% !important;
  }
  .max\:max-w-3\/4 {
    max-width: 75% !important;
  }
  .max\:max-w-5\/6 {
    max-width: 83.3333333% !important;
  }
  .max\:max-w-7\/6 {
    max-width: 116.6666666% !important;
  }
  .max\:max-w-4\/3 {
    max-width: 133.3333333% !important;
  }
  .max\:max-w-3\/2 {
    max-width: 150% !important;
  }
  .max\:max-w-full {
    max-width: 100% !important;
  }
  .max\:max-w-1\/6vh {
    max-width: 16.666666vh !important;
  }
  .max\:max-w-1\/4vh {
    max-width: 25vh !important;
  }
  .max\:max-w-1\/3vh {
    max-width: 33.333333vh !important;
  }
  .max\:max-w-1\/2vh {
    max-width: 50vh !important;
  }
  .max\:max-w-7\/12vh {
    max-width: 58.333333vh !important;
  }
  .max\:max-w-2\/3vh {
    max-width: 66.666667vh !important;
  }
  .max\:max-w-3\/4vh {
    max-width: 75vh !important;
  }
  .max\:max-w-5\/6vh {
    max-width: 83.3333333vh !important;
  }
  .max\:max-w-full-vh {
    max-width: 100vh !important;
  }
  .max\:max-w-s1 {
    max-width: 0.25rem !important;
  }
  .max\:max-w-s2 {
    max-width: 0.5rem !important;
  }
  .max\:max-w-s3 {
    max-width: 0.75rem !important;
  }
  .max\:max-w-s4 {
    max-width: 1rem !important;
  }
  .max\:max-w-s5 {
    max-width: 1.25rem !important;
  }
  .max\:max-w-s6 {
    max-width: 1.5rem !important;
  }
  .max\:max-w-s8 {
    max-width: 2rem !important;
  }
  .max\:max-w-s10 {
    max-width: 2.5rem !important;
  }
  .max\:max-w-s12 {
    max-width: 3rem !important;
  }
  .max\:max-w-s14 {
    max-width: 3.5rem !important;
  }
  .max\:max-w-s16 {
    max-width: 4rem !important;
  }
  .max\:max-w-s18 {
    max-width: 4.5rem !important;
  }
  .max\:max-w-s20 {
    max-width: 5rem !important;
  }
  .max\:max-w-s24 {
    max-width: 6rem !important;
  }
  .max\:max-w-s28 {
    max-width: 7rem !important;
  }
  .max\:max-w-s32 {
    max-width: 8rem !important;
  }
  .max\:max-w-s60 {
    max-width: 15rem !important;
  }
  .max\:max-w-s70 {
    max-width: 17.5rem !important;
  }
  .max\:max-w-s72 {
    max-width: 18rem !important;
  }
  .max\:max-w-s40em {
    max-width: 10em !important;
  }
  .max\:max-w-s44em {
    max-width: 11em !important;
  }
  .max\:max-w-s46em {
    max-width: 11.5em !important;
  }
  .max\:max-w-s48em {
    max-width: 12em !important;
  }
  .max\:max-w-s49em {
    max-width: 12.25em !important;
  }
  .max\:max-w-s50em {
    max-width: 12.5em !important;
  }
  .max\:max-w-s52em {
    max-width: 13em !important;
  }
  .max\:max-w-s54em {
    max-width: 13.5em !important;
  }
  .max\:max-w-s55em {
    max-width: 13.75em !important;
  }
  .max\:max-w-s56em {
    max-width: 14em !important;
  }
  .max\:max-w-s60em {
    max-width: 15em !important;
  }
  .max\:max-w-s70em {
    max-width: 18em !important;
  }
  .max\:max-w-none {
    max-width: none !important;
  }
  .max\:max-w-fit-content {
    max-width: fit-content !important;
  }
  .max\:max-w-auto {
    max-width: auto !important;
  }
}
.h-0\:after:after {
  height: 0 !important;
}

.h-1\:after:after {
  height: 16rem !important;
}

.h-2\:after:after {
  height: 20rem !important;
}

.h-1\/6\:after:after {
  height: 16.666666% !important;
}

.h-1\/4\:after:after {
  height: 25% !important;
}

.h-2\/7\:after:after {
  height: 28.57142857% !important;
}

.h-1\/3\:after:after {
  height: 33.333333% !important;
}

.h-1\/5\:after:after {
  height: 20% !important;
}

.h-2\/5\:after:after {
  height: 40% !important;
}

.h-3\/5\:after:after {
  height: 60% !important;
}

.h-4\/5\:after:after {
  height: 80% !important;
}

.h-1\/2\:after:after {
  height: 50% !important;
}

.h-1\/12\:after:after {
  height: 8.333333% !important;
}

.h-5\/12\:after:after {
  height: 41.6666666% !important;
}

.h-7\/12\:after:after {
  height: 58.333333% !important;
}

.h-11\/12\:after:after {
  height: 91.6666666% !important;
}

.h-2\/3\:after:after {
  height: 66.666667% !important;
}

.h-3\/4\:after:after {
  height: 75% !important;
}

.h-5\/6\:after:after {
  height: 83.3333333% !important;
}

.h-7\/6\:after:after {
  height: 116.6666666% !important;
}

.h-4\/3\:after:after {
  height: 133.3333333% !important;
}

.h-3\/2\:after:after {
  height: 150% !important;
}

.h-2\/1\:after:after {
  height: 200% !important;
}

.h-3\/1\:after:after {
  height: 300% !important;
}

.h-4\/1\:after:after {
  height: 400% !important;
}

.h-10\/1\:after:after {
  height: 1000% !important;
}

.h-full\:after:after {
  height: 100% !important;
}

.h-s1\:after:after {
  height: 0.25rem !important;
}

.h-s2\:after:after {
  height: 0.5rem !important;
}

.h-s3\:after:after {
  height: 0.75rem !important;
}

.h-s4\:after:after {
  height: 1rem !important;
}

.h-s5\:after:after {
  height: 1.25rem !important;
}

.h-s6\:after:after {
  height: 1.5rem !important;
}

.h-s8\:after:after {
  height: 2rem !important;
}

.h-s10\:after:after {
  height: 2.5rem !important;
}

.h-s12\:after:after {
  height: 3rem !important;
}

.h-s14\:after:after {
  height: 3.5rem !important;
}

.h-s16\:after:after {
  height: 4rem !important;
}

.h-s18\:after:after {
  height: 4.5rem !important;
}

.h-s20\:after:after {
  height: 5rem !important;
}

.h-s24\:after:after {
  height: 6rem !important;
}

.h-s28\:after:after {
  height: 7rem !important;
}

.h-s32\:after:after {
  height: 8rem !important;
}

.h-s60\:after:after {
  height: 15rem !important;
}

.h-s70\:after:after {
  height: 17.5rem !important;
}

.h-s72\:after:after {
  height: 18rem !important;
}

.h-fit-content\:after:after {
  height: fit-content !important;
}

.w-0\:after:after {
  width: 0 !important;
}

.w-1\:after:after {
  width: 16rem !important;
}

.w-2\:after:after {
  width: 20rem !important;
}

.w-1\/6\:after:after {
  width: 16.666666% !important;
}

.w-1\/4\:after:after {
  width: 25% !important;
}

.w-2\/7\:after:after {
  width: 28.57142857% !important;
}

.w-1\/3\:after:after {
  width: 33.333333% !important;
}

.w-1\/5\:after:after {
  width: 20% !important;
}

.w-2\/5\:after:after {
  width: 40% !important;
}

.w-3\/5\:after:after {
  width: 60% !important;
}

.w-4\/5\:after:after {
  width: 80% !important;
}

.w-1\/2\:after:after {
  width: 50% !important;
}

.w-1\/12\:after:after {
  width: 8.333333% !important;
}

.w-5\/12\:after:after {
  width: 41.6666666% !important;
}

.w-7\/12\:after:after {
  width: 58.333333% !important;
}

.w-11\/12\:after:after {
  width: 91.6666666% !important;
}

.w-2\/3\:after:after {
  width: 66.666667% !important;
}

.w-3\/4\:after:after {
  width: 75% !important;
}

.w-5\/6\:after:after {
  width: 83.3333333% !important;
}

.w-7\/6\:after:after {
  width: 116.6666666% !important;
}

.w-4\/3\:after:after {
  width: 133.3333333% !important;
}

.w-3\/2\:after:after {
  width: 150% !important;
}

.w-2\/1\:after:after {
  width: 200% !important;
}

.w-3\/1\:after:after {
  width: 300% !important;
}

.w-4\/1\:after:after {
  width: 400% !important;
}

.w-10\/1\:after:after {
  width: 1000% !important;
}

.w-full\:after:after {
  width: 100% !important;
}

.w-s1\:after:after {
  width: 0.25rem !important;
}

.w-s2\:after:after {
  width: 0.5rem !important;
}

.w-s3\:after:after {
  width: 0.75rem !important;
}

.w-s4\:after:after {
  width: 1rem !important;
}

.w-s5\:after:after {
  width: 1.25rem !important;
}

.w-s6\:after:after {
  width: 1.5rem !important;
}

.w-s8\:after:after {
  width: 2rem !important;
}

.w-s10\:after:after {
  width: 2.5rem !important;
}

.w-s12\:after:after {
  width: 3rem !important;
}

.w-s14\:after:after {
  width: 3.5rem !important;
}

.w-s16\:after:after {
  width: 4rem !important;
}

.w-s18\:after:after {
  width: 4.5rem !important;
}

.w-s20\:after:after {
  width: 5rem !important;
}

.w-s24\:after:after {
  width: 6rem !important;
}

.w-s28\:after:after {
  width: 7rem !important;
}

.w-s32\:after:after {
  width: 8rem !important;
}

.w-s60\:after:after {
  width: 15rem !important;
}

.w-s70\:after:after {
  width: 17.5rem !important;
}

.w-s72\:after:after {
  width: 18rem !important;
}

.w-fit-content\:after:after {
  width: fit-content !important;
}

@media screen and (min-width: 360px) {
  .xs\:h-0\:after:after {
    height: 0 !important;
  }
  .xs\:h-1\:after:after {
    height: 16rem !important;
  }
  .xs\:h-2\:after:after {
    height: 20rem !important;
  }
  .xs\:h-1\/6\:after:after {
    height: 16.666666% !important;
  }
  .xs\:h-1\/4\:after:after {
    height: 25% !important;
  }
  .xs\:h-2\/7\:after:after {
    height: 28.57142857% !important;
  }
  .xs\:h-1\/3\:after:after {
    height: 33.333333% !important;
  }
  .xs\:h-1\/5\:after:after {
    height: 20% !important;
  }
  .xs\:h-2\/5\:after:after {
    height: 40% !important;
  }
  .xs\:h-3\/5\:after:after {
    height: 60% !important;
  }
  .xs\:h-4\/5\:after:after {
    height: 80% !important;
  }
  .xs\:h-1\/2\:after:after {
    height: 50% !important;
  }
  .xs\:h-1\/12\:after:after {
    height: 8.333333% !important;
  }
  .xs\:h-5\/12\:after:after {
    height: 41.6666666% !important;
  }
  .xs\:h-7\/12\:after:after {
    height: 58.333333% !important;
  }
  .xs\:h-11\/12\:after:after {
    height: 91.6666666% !important;
  }
  .xs\:h-2\/3\:after:after {
    height: 66.666667% !important;
  }
  .xs\:h-3\/4\:after:after {
    height: 75% !important;
  }
  .xs\:h-5\/6\:after:after {
    height: 83.3333333% !important;
  }
  .xs\:h-7\/6\:after:after {
    height: 116.6666666% !important;
  }
  .xs\:h-4\/3\:after:after {
    height: 133.3333333% !important;
  }
  .xs\:h-3\/2\:after:after {
    height: 150% !important;
  }
  .xs\:h-2\/1\:after:after {
    height: 200% !important;
  }
  .xs\:h-3\/1\:after:after {
    height: 300% !important;
  }
  .xs\:h-4\/1\:after:after {
    height: 400% !important;
  }
  .xs\:h-10\/1\:after:after {
    height: 1000% !important;
  }
  .xs\:h-full\:after:after {
    height: 100% !important;
  }
  .xs\:h-s1\:after:after {
    height: 0.25rem !important;
  }
  .xs\:h-s2\:after:after {
    height: 0.5rem !important;
  }
  .xs\:h-s3\:after:after {
    height: 0.75rem !important;
  }
  .xs\:h-s4\:after:after {
    height: 1rem !important;
  }
  .xs\:h-s5\:after:after {
    height: 1.25rem !important;
  }
  .xs\:h-s6\:after:after {
    height: 1.5rem !important;
  }
  .xs\:h-s8\:after:after {
    height: 2rem !important;
  }
  .xs\:h-s10\:after:after {
    height: 2.5rem !important;
  }
  .xs\:h-s12\:after:after {
    height: 3rem !important;
  }
  .xs\:h-s14\:after:after {
    height: 3.5rem !important;
  }
  .xs\:h-s16\:after:after {
    height: 4rem !important;
  }
  .xs\:h-s18\:after:after {
    height: 4.5rem !important;
  }
  .xs\:h-s20\:after:after {
    height: 5rem !important;
  }
  .xs\:h-s24\:after:after {
    height: 6rem !important;
  }
  .xs\:h-s28\:after:after {
    height: 7rem !important;
  }
  .xs\:h-s32\:after:after {
    height: 8rem !important;
  }
  .xs\:h-s60\:after:after {
    height: 15rem !important;
  }
  .xs\:h-s70\:after:after {
    height: 17.5rem !important;
  }
  .xs\:h-s72\:after:after {
    height: 18rem !important;
  }
  .xs\:h-fit-content\:after:after {
    height: fit-content !important;
  }
  .xs\:w-0\:after:after {
    width: 0 !important;
  }
  .xs\:w-1\:after:after {
    width: 16rem !important;
  }
  .xs\:w-2\:after:after {
    width: 20rem !important;
  }
  .xs\:w-1\/6\:after:after {
    width: 16.666666% !important;
  }
  .xs\:w-1\/4\:after:after {
    width: 25% !important;
  }
  .xs\:w-2\/7\:after:after {
    width: 28.57142857% !important;
  }
  .xs\:w-1\/3\:after:after {
    width: 33.333333% !important;
  }
  .xs\:w-1\/5\:after:after {
    width: 20% !important;
  }
  .xs\:w-2\/5\:after:after {
    width: 40% !important;
  }
  .xs\:w-3\/5\:after:after {
    width: 60% !important;
  }
  .xs\:w-4\/5\:after:after {
    width: 80% !important;
  }
  .xs\:w-1\/2\:after:after {
    width: 50% !important;
  }
  .xs\:w-1\/12\:after:after {
    width: 8.333333% !important;
  }
  .xs\:w-5\/12\:after:after {
    width: 41.6666666% !important;
  }
  .xs\:w-7\/12\:after:after {
    width: 58.333333% !important;
  }
  .xs\:w-11\/12\:after:after {
    width: 91.6666666% !important;
  }
  .xs\:w-2\/3\:after:after {
    width: 66.666667% !important;
  }
  .xs\:w-3\/4\:after:after {
    width: 75% !important;
  }
  .xs\:w-5\/6\:after:after {
    width: 83.3333333% !important;
  }
  .xs\:w-7\/6\:after:after {
    width: 116.6666666% !important;
  }
  .xs\:w-4\/3\:after:after {
    width: 133.3333333% !important;
  }
  .xs\:w-3\/2\:after:after {
    width: 150% !important;
  }
  .xs\:w-2\/1\:after:after {
    width: 200% !important;
  }
  .xs\:w-3\/1\:after:after {
    width: 300% !important;
  }
  .xs\:w-4\/1\:after:after {
    width: 400% !important;
  }
  .xs\:w-10\/1\:after:after {
    width: 1000% !important;
  }
  .xs\:w-full\:after:after {
    width: 100% !important;
  }
  .xs\:w-s1\:after:after {
    width: 0.25rem !important;
  }
  .xs\:w-s2\:after:after {
    width: 0.5rem !important;
  }
  .xs\:w-s3\:after:after {
    width: 0.75rem !important;
  }
  .xs\:w-s4\:after:after {
    width: 1rem !important;
  }
  .xs\:w-s5\:after:after {
    width: 1.25rem !important;
  }
  .xs\:w-s6\:after:after {
    width: 1.5rem !important;
  }
  .xs\:w-s8\:after:after {
    width: 2rem !important;
  }
  .xs\:w-s10\:after:after {
    width: 2.5rem !important;
  }
  .xs\:w-s12\:after:after {
    width: 3rem !important;
  }
  .xs\:w-s14\:after:after {
    width: 3.5rem !important;
  }
  .xs\:w-s16\:after:after {
    width: 4rem !important;
  }
  .xs\:w-s18\:after:after {
    width: 4.5rem !important;
  }
  .xs\:w-s20\:after:after {
    width: 5rem !important;
  }
  .xs\:w-s24\:after:after {
    width: 6rem !important;
  }
  .xs\:w-s28\:after:after {
    width: 7rem !important;
  }
  .xs\:w-s32\:after:after {
    width: 8rem !important;
  }
  .xs\:w-s60\:after:after {
    width: 15rem !important;
  }
  .xs\:w-s70\:after:after {
    width: 17.5rem !important;
  }
  .xs\:w-s72\:after:after {
    width: 18rem !important;
  }
  .xs\:w-fit-content\:after:after {
    width: fit-content !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:h-0\:after:after {
    height: 0 !important;
  }
  .sm\:h-1\:after:after {
    height: 16rem !important;
  }
  .sm\:h-2\:after:after {
    height: 20rem !important;
  }
  .sm\:h-1\/6\:after:after {
    height: 16.666666% !important;
  }
  .sm\:h-1\/4\:after:after {
    height: 25% !important;
  }
  .sm\:h-2\/7\:after:after {
    height: 28.57142857% !important;
  }
  .sm\:h-1\/3\:after:after {
    height: 33.333333% !important;
  }
  .sm\:h-1\/5\:after:after {
    height: 20% !important;
  }
  .sm\:h-2\/5\:after:after {
    height: 40% !important;
  }
  .sm\:h-3\/5\:after:after {
    height: 60% !important;
  }
  .sm\:h-4\/5\:after:after {
    height: 80% !important;
  }
  .sm\:h-1\/2\:after:after {
    height: 50% !important;
  }
  .sm\:h-1\/12\:after:after {
    height: 8.333333% !important;
  }
  .sm\:h-5\/12\:after:after {
    height: 41.6666666% !important;
  }
  .sm\:h-7\/12\:after:after {
    height: 58.333333% !important;
  }
  .sm\:h-11\/12\:after:after {
    height: 91.6666666% !important;
  }
  .sm\:h-2\/3\:after:after {
    height: 66.666667% !important;
  }
  .sm\:h-3\/4\:after:after {
    height: 75% !important;
  }
  .sm\:h-5\/6\:after:after {
    height: 83.3333333% !important;
  }
  .sm\:h-7\/6\:after:after {
    height: 116.6666666% !important;
  }
  .sm\:h-4\/3\:after:after {
    height: 133.3333333% !important;
  }
  .sm\:h-3\/2\:after:after {
    height: 150% !important;
  }
  .sm\:h-2\/1\:after:after {
    height: 200% !important;
  }
  .sm\:h-3\/1\:after:after {
    height: 300% !important;
  }
  .sm\:h-4\/1\:after:after {
    height: 400% !important;
  }
  .sm\:h-10\/1\:after:after {
    height: 1000% !important;
  }
  .sm\:h-full\:after:after {
    height: 100% !important;
  }
  .sm\:h-s1\:after:after {
    height: 0.25rem !important;
  }
  .sm\:h-s2\:after:after {
    height: 0.5rem !important;
  }
  .sm\:h-s3\:after:after {
    height: 0.75rem !important;
  }
  .sm\:h-s4\:after:after {
    height: 1rem !important;
  }
  .sm\:h-s5\:after:after {
    height: 1.25rem !important;
  }
  .sm\:h-s6\:after:after {
    height: 1.5rem !important;
  }
  .sm\:h-s8\:after:after {
    height: 2rem !important;
  }
  .sm\:h-s10\:after:after {
    height: 2.5rem !important;
  }
  .sm\:h-s12\:after:after {
    height: 3rem !important;
  }
  .sm\:h-s14\:after:after {
    height: 3.5rem !important;
  }
  .sm\:h-s16\:after:after {
    height: 4rem !important;
  }
  .sm\:h-s18\:after:after {
    height: 4.5rem !important;
  }
  .sm\:h-s20\:after:after {
    height: 5rem !important;
  }
  .sm\:h-s24\:after:after {
    height: 6rem !important;
  }
  .sm\:h-s28\:after:after {
    height: 7rem !important;
  }
  .sm\:h-s32\:after:after {
    height: 8rem !important;
  }
  .sm\:h-s60\:after:after {
    height: 15rem !important;
  }
  .sm\:h-s70\:after:after {
    height: 17.5rem !important;
  }
  .sm\:h-s72\:after:after {
    height: 18rem !important;
  }
  .sm\:h-fit-content\:after:after {
    height: fit-content !important;
  }
  .sm\:w-0\:after:after {
    width: 0 !important;
  }
  .sm\:w-1\:after:after {
    width: 16rem !important;
  }
  .sm\:w-2\:after:after {
    width: 20rem !important;
  }
  .sm\:w-1\/6\:after:after {
    width: 16.666666% !important;
  }
  .sm\:w-1\/4\:after:after {
    width: 25% !important;
  }
  .sm\:w-2\/7\:after:after {
    width: 28.57142857% !important;
  }
  .sm\:w-1\/3\:after:after {
    width: 33.333333% !important;
  }
  .sm\:w-1\/5\:after:after {
    width: 20% !important;
  }
  .sm\:w-2\/5\:after:after {
    width: 40% !important;
  }
  .sm\:w-3\/5\:after:after {
    width: 60% !important;
  }
  .sm\:w-4\/5\:after:after {
    width: 80% !important;
  }
  .sm\:w-1\/2\:after:after {
    width: 50% !important;
  }
  .sm\:w-1\/12\:after:after {
    width: 8.333333% !important;
  }
  .sm\:w-5\/12\:after:after {
    width: 41.6666666% !important;
  }
  .sm\:w-7\/12\:after:after {
    width: 58.333333% !important;
  }
  .sm\:w-11\/12\:after:after {
    width: 91.6666666% !important;
  }
  .sm\:w-2\/3\:after:after {
    width: 66.666667% !important;
  }
  .sm\:w-3\/4\:after:after {
    width: 75% !important;
  }
  .sm\:w-5\/6\:after:after {
    width: 83.3333333% !important;
  }
  .sm\:w-7\/6\:after:after {
    width: 116.6666666% !important;
  }
  .sm\:w-4\/3\:after:after {
    width: 133.3333333% !important;
  }
  .sm\:w-3\/2\:after:after {
    width: 150% !important;
  }
  .sm\:w-2\/1\:after:after {
    width: 200% !important;
  }
  .sm\:w-3\/1\:after:after {
    width: 300% !important;
  }
  .sm\:w-4\/1\:after:after {
    width: 400% !important;
  }
  .sm\:w-10\/1\:after:after {
    width: 1000% !important;
  }
  .sm\:w-full\:after:after {
    width: 100% !important;
  }
  .sm\:w-s1\:after:after {
    width: 0.25rem !important;
  }
  .sm\:w-s2\:after:after {
    width: 0.5rem !important;
  }
  .sm\:w-s3\:after:after {
    width: 0.75rem !important;
  }
  .sm\:w-s4\:after:after {
    width: 1rem !important;
  }
  .sm\:w-s5\:after:after {
    width: 1.25rem !important;
  }
  .sm\:w-s6\:after:after {
    width: 1.5rem !important;
  }
  .sm\:w-s8\:after:after {
    width: 2rem !important;
  }
  .sm\:w-s10\:after:after {
    width: 2.5rem !important;
  }
  .sm\:w-s12\:after:after {
    width: 3rem !important;
  }
  .sm\:w-s14\:after:after {
    width: 3.5rem !important;
  }
  .sm\:w-s16\:after:after {
    width: 4rem !important;
  }
  .sm\:w-s18\:after:after {
    width: 4.5rem !important;
  }
  .sm\:w-s20\:after:after {
    width: 5rem !important;
  }
  .sm\:w-s24\:after:after {
    width: 6rem !important;
  }
  .sm\:w-s28\:after:after {
    width: 7rem !important;
  }
  .sm\:w-s32\:after:after {
    width: 8rem !important;
  }
  .sm\:w-s60\:after:after {
    width: 15rem !important;
  }
  .sm\:w-s70\:after:after {
    width: 17.5rem !important;
  }
  .sm\:w-s72\:after:after {
    width: 18rem !important;
  }
  .sm\:w-fit-content\:after:after {
    width: fit-content !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:h-0\:after:after {
    height: 0 !important;
  }
  .md\:h-1\:after:after {
    height: 16rem !important;
  }
  .md\:h-2\:after:after {
    height: 20rem !important;
  }
  .md\:h-1\/6\:after:after {
    height: 16.666666% !important;
  }
  .md\:h-1\/4\:after:after {
    height: 25% !important;
  }
  .md\:h-2\/7\:after:after {
    height: 28.57142857% !important;
  }
  .md\:h-1\/3\:after:after {
    height: 33.333333% !important;
  }
  .md\:h-1\/5\:after:after {
    height: 20% !important;
  }
  .md\:h-2\/5\:after:after {
    height: 40% !important;
  }
  .md\:h-3\/5\:after:after {
    height: 60% !important;
  }
  .md\:h-4\/5\:after:after {
    height: 80% !important;
  }
  .md\:h-1\/2\:after:after {
    height: 50% !important;
  }
  .md\:h-1\/12\:after:after {
    height: 8.333333% !important;
  }
  .md\:h-5\/12\:after:after {
    height: 41.6666666% !important;
  }
  .md\:h-7\/12\:after:after {
    height: 58.333333% !important;
  }
  .md\:h-11\/12\:after:after {
    height: 91.6666666% !important;
  }
  .md\:h-2\/3\:after:after {
    height: 66.666667% !important;
  }
  .md\:h-3\/4\:after:after {
    height: 75% !important;
  }
  .md\:h-5\/6\:after:after {
    height: 83.3333333% !important;
  }
  .md\:h-7\/6\:after:after {
    height: 116.6666666% !important;
  }
  .md\:h-4\/3\:after:after {
    height: 133.3333333% !important;
  }
  .md\:h-3\/2\:after:after {
    height: 150% !important;
  }
  .md\:h-2\/1\:after:after {
    height: 200% !important;
  }
  .md\:h-3\/1\:after:after {
    height: 300% !important;
  }
  .md\:h-4\/1\:after:after {
    height: 400% !important;
  }
  .md\:h-10\/1\:after:after {
    height: 1000% !important;
  }
  .md\:h-full\:after:after {
    height: 100% !important;
  }
  .md\:h-s1\:after:after {
    height: 0.25rem !important;
  }
  .md\:h-s2\:after:after {
    height: 0.5rem !important;
  }
  .md\:h-s3\:after:after {
    height: 0.75rem !important;
  }
  .md\:h-s4\:after:after {
    height: 1rem !important;
  }
  .md\:h-s5\:after:after {
    height: 1.25rem !important;
  }
  .md\:h-s6\:after:after {
    height: 1.5rem !important;
  }
  .md\:h-s8\:after:after {
    height: 2rem !important;
  }
  .md\:h-s10\:after:after {
    height: 2.5rem !important;
  }
  .md\:h-s12\:after:after {
    height: 3rem !important;
  }
  .md\:h-s14\:after:after {
    height: 3.5rem !important;
  }
  .md\:h-s16\:after:after {
    height: 4rem !important;
  }
  .md\:h-s18\:after:after {
    height: 4.5rem !important;
  }
  .md\:h-s20\:after:after {
    height: 5rem !important;
  }
  .md\:h-s24\:after:after {
    height: 6rem !important;
  }
  .md\:h-s28\:after:after {
    height: 7rem !important;
  }
  .md\:h-s32\:after:after {
    height: 8rem !important;
  }
  .md\:h-s60\:after:after {
    height: 15rem !important;
  }
  .md\:h-s70\:after:after {
    height: 17.5rem !important;
  }
  .md\:h-s72\:after:after {
    height: 18rem !important;
  }
  .md\:h-fit-content\:after:after {
    height: fit-content !important;
  }
  .md\:w-0\:after:after {
    width: 0 !important;
  }
  .md\:w-1\:after:after {
    width: 16rem !important;
  }
  .md\:w-2\:after:after {
    width: 20rem !important;
  }
  .md\:w-1\/6\:after:after {
    width: 16.666666% !important;
  }
  .md\:w-1\/4\:after:after {
    width: 25% !important;
  }
  .md\:w-2\/7\:after:after {
    width: 28.57142857% !important;
  }
  .md\:w-1\/3\:after:after {
    width: 33.333333% !important;
  }
  .md\:w-1\/5\:after:after {
    width: 20% !important;
  }
  .md\:w-2\/5\:after:after {
    width: 40% !important;
  }
  .md\:w-3\/5\:after:after {
    width: 60% !important;
  }
  .md\:w-4\/5\:after:after {
    width: 80% !important;
  }
  .md\:w-1\/2\:after:after {
    width: 50% !important;
  }
  .md\:w-1\/12\:after:after {
    width: 8.333333% !important;
  }
  .md\:w-5\/12\:after:after {
    width: 41.6666666% !important;
  }
  .md\:w-7\/12\:after:after {
    width: 58.333333% !important;
  }
  .md\:w-11\/12\:after:after {
    width: 91.6666666% !important;
  }
  .md\:w-2\/3\:after:after {
    width: 66.666667% !important;
  }
  .md\:w-3\/4\:after:after {
    width: 75% !important;
  }
  .md\:w-5\/6\:after:after {
    width: 83.3333333% !important;
  }
  .md\:w-7\/6\:after:after {
    width: 116.6666666% !important;
  }
  .md\:w-4\/3\:after:after {
    width: 133.3333333% !important;
  }
  .md\:w-3\/2\:after:after {
    width: 150% !important;
  }
  .md\:w-2\/1\:after:after {
    width: 200% !important;
  }
  .md\:w-3\/1\:after:after {
    width: 300% !important;
  }
  .md\:w-4\/1\:after:after {
    width: 400% !important;
  }
  .md\:w-10\/1\:after:after {
    width: 1000% !important;
  }
  .md\:w-full\:after:after {
    width: 100% !important;
  }
  .md\:w-s1\:after:after {
    width: 0.25rem !important;
  }
  .md\:w-s2\:after:after {
    width: 0.5rem !important;
  }
  .md\:w-s3\:after:after {
    width: 0.75rem !important;
  }
  .md\:w-s4\:after:after {
    width: 1rem !important;
  }
  .md\:w-s5\:after:after {
    width: 1.25rem !important;
  }
  .md\:w-s6\:after:after {
    width: 1.5rem !important;
  }
  .md\:w-s8\:after:after {
    width: 2rem !important;
  }
  .md\:w-s10\:after:after {
    width: 2.5rem !important;
  }
  .md\:w-s12\:after:after {
    width: 3rem !important;
  }
  .md\:w-s14\:after:after {
    width: 3.5rem !important;
  }
  .md\:w-s16\:after:after {
    width: 4rem !important;
  }
  .md\:w-s18\:after:after {
    width: 4.5rem !important;
  }
  .md\:w-s20\:after:after {
    width: 5rem !important;
  }
  .md\:w-s24\:after:after {
    width: 6rem !important;
  }
  .md\:w-s28\:after:after {
    width: 7rem !important;
  }
  .md\:w-s32\:after:after {
    width: 8rem !important;
  }
  .md\:w-s60\:after:after {
    width: 15rem !important;
  }
  .md\:w-s70\:after:after {
    width: 17.5rem !important;
  }
  .md\:w-s72\:after:after {
    width: 18rem !important;
  }
  .md\:w-fit-content\:after:after {
    width: fit-content !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:h-0\:after:after {
    height: 0 !important;
  }
  .lg\:h-1\:after:after {
    height: 16rem !important;
  }
  .lg\:h-2\:after:after {
    height: 20rem !important;
  }
  .lg\:h-1\/6\:after:after {
    height: 16.666666% !important;
  }
  .lg\:h-1\/4\:after:after {
    height: 25% !important;
  }
  .lg\:h-2\/7\:after:after {
    height: 28.57142857% !important;
  }
  .lg\:h-1\/3\:after:after {
    height: 33.333333% !important;
  }
  .lg\:h-1\/5\:after:after {
    height: 20% !important;
  }
  .lg\:h-2\/5\:after:after {
    height: 40% !important;
  }
  .lg\:h-3\/5\:after:after {
    height: 60% !important;
  }
  .lg\:h-4\/5\:after:after {
    height: 80% !important;
  }
  .lg\:h-1\/2\:after:after {
    height: 50% !important;
  }
  .lg\:h-1\/12\:after:after {
    height: 8.333333% !important;
  }
  .lg\:h-5\/12\:after:after {
    height: 41.6666666% !important;
  }
  .lg\:h-7\/12\:after:after {
    height: 58.333333% !important;
  }
  .lg\:h-11\/12\:after:after {
    height: 91.6666666% !important;
  }
  .lg\:h-2\/3\:after:after {
    height: 66.666667% !important;
  }
  .lg\:h-3\/4\:after:after {
    height: 75% !important;
  }
  .lg\:h-5\/6\:after:after {
    height: 83.3333333% !important;
  }
  .lg\:h-7\/6\:after:after {
    height: 116.6666666% !important;
  }
  .lg\:h-4\/3\:after:after {
    height: 133.3333333% !important;
  }
  .lg\:h-3\/2\:after:after {
    height: 150% !important;
  }
  .lg\:h-2\/1\:after:after {
    height: 200% !important;
  }
  .lg\:h-3\/1\:after:after {
    height: 300% !important;
  }
  .lg\:h-4\/1\:after:after {
    height: 400% !important;
  }
  .lg\:h-10\/1\:after:after {
    height: 1000% !important;
  }
  .lg\:h-full\:after:after {
    height: 100% !important;
  }
  .lg\:h-s1\:after:after {
    height: 0.25rem !important;
  }
  .lg\:h-s2\:after:after {
    height: 0.5rem !important;
  }
  .lg\:h-s3\:after:after {
    height: 0.75rem !important;
  }
  .lg\:h-s4\:after:after {
    height: 1rem !important;
  }
  .lg\:h-s5\:after:after {
    height: 1.25rem !important;
  }
  .lg\:h-s6\:after:after {
    height: 1.5rem !important;
  }
  .lg\:h-s8\:after:after {
    height: 2rem !important;
  }
  .lg\:h-s10\:after:after {
    height: 2.5rem !important;
  }
  .lg\:h-s12\:after:after {
    height: 3rem !important;
  }
  .lg\:h-s14\:after:after {
    height: 3.5rem !important;
  }
  .lg\:h-s16\:after:after {
    height: 4rem !important;
  }
  .lg\:h-s18\:after:after {
    height: 4.5rem !important;
  }
  .lg\:h-s20\:after:after {
    height: 5rem !important;
  }
  .lg\:h-s24\:after:after {
    height: 6rem !important;
  }
  .lg\:h-s28\:after:after {
    height: 7rem !important;
  }
  .lg\:h-s32\:after:after {
    height: 8rem !important;
  }
  .lg\:h-s60\:after:after {
    height: 15rem !important;
  }
  .lg\:h-s70\:after:after {
    height: 17.5rem !important;
  }
  .lg\:h-s72\:after:after {
    height: 18rem !important;
  }
  .lg\:h-fit-content\:after:after {
    height: fit-content !important;
  }
  .lg\:w-0\:after:after {
    width: 0 !important;
  }
  .lg\:w-1\:after:after {
    width: 16rem !important;
  }
  .lg\:w-2\:after:after {
    width: 20rem !important;
  }
  .lg\:w-1\/6\:after:after {
    width: 16.666666% !important;
  }
  .lg\:w-1\/4\:after:after {
    width: 25% !important;
  }
  .lg\:w-2\/7\:after:after {
    width: 28.57142857% !important;
  }
  .lg\:w-1\/3\:after:after {
    width: 33.333333% !important;
  }
  .lg\:w-1\/5\:after:after {
    width: 20% !important;
  }
  .lg\:w-2\/5\:after:after {
    width: 40% !important;
  }
  .lg\:w-3\/5\:after:after {
    width: 60% !important;
  }
  .lg\:w-4\/5\:after:after {
    width: 80% !important;
  }
  .lg\:w-1\/2\:after:after {
    width: 50% !important;
  }
  .lg\:w-1\/12\:after:after {
    width: 8.333333% !important;
  }
  .lg\:w-5\/12\:after:after {
    width: 41.6666666% !important;
  }
  .lg\:w-7\/12\:after:after {
    width: 58.333333% !important;
  }
  .lg\:w-11\/12\:after:after {
    width: 91.6666666% !important;
  }
  .lg\:w-2\/3\:after:after {
    width: 66.666667% !important;
  }
  .lg\:w-3\/4\:after:after {
    width: 75% !important;
  }
  .lg\:w-5\/6\:after:after {
    width: 83.3333333% !important;
  }
  .lg\:w-7\/6\:after:after {
    width: 116.6666666% !important;
  }
  .lg\:w-4\/3\:after:after {
    width: 133.3333333% !important;
  }
  .lg\:w-3\/2\:after:after {
    width: 150% !important;
  }
  .lg\:w-2\/1\:after:after {
    width: 200% !important;
  }
  .lg\:w-3\/1\:after:after {
    width: 300% !important;
  }
  .lg\:w-4\/1\:after:after {
    width: 400% !important;
  }
  .lg\:w-10\/1\:after:after {
    width: 1000% !important;
  }
  .lg\:w-full\:after:after {
    width: 100% !important;
  }
  .lg\:w-s1\:after:after {
    width: 0.25rem !important;
  }
  .lg\:w-s2\:after:after {
    width: 0.5rem !important;
  }
  .lg\:w-s3\:after:after {
    width: 0.75rem !important;
  }
  .lg\:w-s4\:after:after {
    width: 1rem !important;
  }
  .lg\:w-s5\:after:after {
    width: 1.25rem !important;
  }
  .lg\:w-s6\:after:after {
    width: 1.5rem !important;
  }
  .lg\:w-s8\:after:after {
    width: 2rem !important;
  }
  .lg\:w-s10\:after:after {
    width: 2.5rem !important;
  }
  .lg\:w-s12\:after:after {
    width: 3rem !important;
  }
  .lg\:w-s14\:after:after {
    width: 3.5rem !important;
  }
  .lg\:w-s16\:after:after {
    width: 4rem !important;
  }
  .lg\:w-s18\:after:after {
    width: 4.5rem !important;
  }
  .lg\:w-s20\:after:after {
    width: 5rem !important;
  }
  .lg\:w-s24\:after:after {
    width: 6rem !important;
  }
  .lg\:w-s28\:after:after {
    width: 7rem !important;
  }
  .lg\:w-s32\:after:after {
    width: 8rem !important;
  }
  .lg\:w-s60\:after:after {
    width: 15rem !important;
  }
  .lg\:w-s70\:after:after {
    width: 17.5rem !important;
  }
  .lg\:w-s72\:after:after {
    width: 18rem !important;
  }
  .lg\:w-fit-content\:after:after {
    width: fit-content !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:h-0\:after:after {
    height: 0 !important;
  }
  .xl\:h-1\:after:after {
    height: 16rem !important;
  }
  .xl\:h-2\:after:after {
    height: 20rem !important;
  }
  .xl\:h-1\/6\:after:after {
    height: 16.666666% !important;
  }
  .xl\:h-1\/4\:after:after {
    height: 25% !important;
  }
  .xl\:h-2\/7\:after:after {
    height: 28.57142857% !important;
  }
  .xl\:h-1\/3\:after:after {
    height: 33.333333% !important;
  }
  .xl\:h-1\/5\:after:after {
    height: 20% !important;
  }
  .xl\:h-2\/5\:after:after {
    height: 40% !important;
  }
  .xl\:h-3\/5\:after:after {
    height: 60% !important;
  }
  .xl\:h-4\/5\:after:after {
    height: 80% !important;
  }
  .xl\:h-1\/2\:after:after {
    height: 50% !important;
  }
  .xl\:h-1\/12\:after:after {
    height: 8.333333% !important;
  }
  .xl\:h-5\/12\:after:after {
    height: 41.6666666% !important;
  }
  .xl\:h-7\/12\:after:after {
    height: 58.333333% !important;
  }
  .xl\:h-11\/12\:after:after {
    height: 91.6666666% !important;
  }
  .xl\:h-2\/3\:after:after {
    height: 66.666667% !important;
  }
  .xl\:h-3\/4\:after:after {
    height: 75% !important;
  }
  .xl\:h-5\/6\:after:after {
    height: 83.3333333% !important;
  }
  .xl\:h-7\/6\:after:after {
    height: 116.6666666% !important;
  }
  .xl\:h-4\/3\:after:after {
    height: 133.3333333% !important;
  }
  .xl\:h-3\/2\:after:after {
    height: 150% !important;
  }
  .xl\:h-2\/1\:after:after {
    height: 200% !important;
  }
  .xl\:h-3\/1\:after:after {
    height: 300% !important;
  }
  .xl\:h-4\/1\:after:after {
    height: 400% !important;
  }
  .xl\:h-10\/1\:after:after {
    height: 1000% !important;
  }
  .xl\:h-full\:after:after {
    height: 100% !important;
  }
  .xl\:h-s1\:after:after {
    height: 0.25rem !important;
  }
  .xl\:h-s2\:after:after {
    height: 0.5rem !important;
  }
  .xl\:h-s3\:after:after {
    height: 0.75rem !important;
  }
  .xl\:h-s4\:after:after {
    height: 1rem !important;
  }
  .xl\:h-s5\:after:after {
    height: 1.25rem !important;
  }
  .xl\:h-s6\:after:after {
    height: 1.5rem !important;
  }
  .xl\:h-s8\:after:after {
    height: 2rem !important;
  }
  .xl\:h-s10\:after:after {
    height: 2.5rem !important;
  }
  .xl\:h-s12\:after:after {
    height: 3rem !important;
  }
  .xl\:h-s14\:after:after {
    height: 3.5rem !important;
  }
  .xl\:h-s16\:after:after {
    height: 4rem !important;
  }
  .xl\:h-s18\:after:after {
    height: 4.5rem !important;
  }
  .xl\:h-s20\:after:after {
    height: 5rem !important;
  }
  .xl\:h-s24\:after:after {
    height: 6rem !important;
  }
  .xl\:h-s28\:after:after {
    height: 7rem !important;
  }
  .xl\:h-s32\:after:after {
    height: 8rem !important;
  }
  .xl\:h-s60\:after:after {
    height: 15rem !important;
  }
  .xl\:h-s70\:after:after {
    height: 17.5rem !important;
  }
  .xl\:h-s72\:after:after {
    height: 18rem !important;
  }
  .xl\:h-fit-content\:after:after {
    height: fit-content !important;
  }
  .xl\:w-0\:after:after {
    width: 0 !important;
  }
  .xl\:w-1\:after:after {
    width: 16rem !important;
  }
  .xl\:w-2\:after:after {
    width: 20rem !important;
  }
  .xl\:w-1\/6\:after:after {
    width: 16.666666% !important;
  }
  .xl\:w-1\/4\:after:after {
    width: 25% !important;
  }
  .xl\:w-2\/7\:after:after {
    width: 28.57142857% !important;
  }
  .xl\:w-1\/3\:after:after {
    width: 33.333333% !important;
  }
  .xl\:w-1\/5\:after:after {
    width: 20% !important;
  }
  .xl\:w-2\/5\:after:after {
    width: 40% !important;
  }
  .xl\:w-3\/5\:after:after {
    width: 60% !important;
  }
  .xl\:w-4\/5\:after:after {
    width: 80% !important;
  }
  .xl\:w-1\/2\:after:after {
    width: 50% !important;
  }
  .xl\:w-1\/12\:after:after {
    width: 8.333333% !important;
  }
  .xl\:w-5\/12\:after:after {
    width: 41.6666666% !important;
  }
  .xl\:w-7\/12\:after:after {
    width: 58.333333% !important;
  }
  .xl\:w-11\/12\:after:after {
    width: 91.6666666% !important;
  }
  .xl\:w-2\/3\:after:after {
    width: 66.666667% !important;
  }
  .xl\:w-3\/4\:after:after {
    width: 75% !important;
  }
  .xl\:w-5\/6\:after:after {
    width: 83.3333333% !important;
  }
  .xl\:w-7\/6\:after:after {
    width: 116.6666666% !important;
  }
  .xl\:w-4\/3\:after:after {
    width: 133.3333333% !important;
  }
  .xl\:w-3\/2\:after:after {
    width: 150% !important;
  }
  .xl\:w-2\/1\:after:after {
    width: 200% !important;
  }
  .xl\:w-3\/1\:after:after {
    width: 300% !important;
  }
  .xl\:w-4\/1\:after:after {
    width: 400% !important;
  }
  .xl\:w-10\/1\:after:after {
    width: 1000% !important;
  }
  .xl\:w-full\:after:after {
    width: 100% !important;
  }
  .xl\:w-s1\:after:after {
    width: 0.25rem !important;
  }
  .xl\:w-s2\:after:after {
    width: 0.5rem !important;
  }
  .xl\:w-s3\:after:after {
    width: 0.75rem !important;
  }
  .xl\:w-s4\:after:after {
    width: 1rem !important;
  }
  .xl\:w-s5\:after:after {
    width: 1.25rem !important;
  }
  .xl\:w-s6\:after:after {
    width: 1.5rem !important;
  }
  .xl\:w-s8\:after:after {
    width: 2rem !important;
  }
  .xl\:w-s10\:after:after {
    width: 2.5rem !important;
  }
  .xl\:w-s12\:after:after {
    width: 3rem !important;
  }
  .xl\:w-s14\:after:after {
    width: 3.5rem !important;
  }
  .xl\:w-s16\:after:after {
    width: 4rem !important;
  }
  .xl\:w-s18\:after:after {
    width: 4.5rem !important;
  }
  .xl\:w-s20\:after:after {
    width: 5rem !important;
  }
  .xl\:w-s24\:after:after {
    width: 6rem !important;
  }
  .xl\:w-s28\:after:after {
    width: 7rem !important;
  }
  .xl\:w-s32\:after:after {
    width: 8rem !important;
  }
  .xl\:w-s60\:after:after {
    width: 15rem !important;
  }
  .xl\:w-s70\:after:after {
    width: 17.5rem !important;
  }
  .xl\:w-s72\:after:after {
    width: 18rem !important;
  }
  .xl\:w-fit-content\:after:after {
    width: fit-content !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:h-0\:after:after {
    height: 0 !important;
  }
  .xxl\:h-1\:after:after {
    height: 16rem !important;
  }
  .xxl\:h-2\:after:after {
    height: 20rem !important;
  }
  .xxl\:h-1\/6\:after:after {
    height: 16.666666% !important;
  }
  .xxl\:h-1\/4\:after:after {
    height: 25% !important;
  }
  .xxl\:h-2\/7\:after:after {
    height: 28.57142857% !important;
  }
  .xxl\:h-1\/3\:after:after {
    height: 33.333333% !important;
  }
  .xxl\:h-1\/5\:after:after {
    height: 20% !important;
  }
  .xxl\:h-2\/5\:after:after {
    height: 40% !important;
  }
  .xxl\:h-3\/5\:after:after {
    height: 60% !important;
  }
  .xxl\:h-4\/5\:after:after {
    height: 80% !important;
  }
  .xxl\:h-1\/2\:after:after {
    height: 50% !important;
  }
  .xxl\:h-1\/12\:after:after {
    height: 8.333333% !important;
  }
  .xxl\:h-5\/12\:after:after {
    height: 41.6666666% !important;
  }
  .xxl\:h-7\/12\:after:after {
    height: 58.333333% !important;
  }
  .xxl\:h-11\/12\:after:after {
    height: 91.6666666% !important;
  }
  .xxl\:h-2\/3\:after:after {
    height: 66.666667% !important;
  }
  .xxl\:h-3\/4\:after:after {
    height: 75% !important;
  }
  .xxl\:h-5\/6\:after:after {
    height: 83.3333333% !important;
  }
  .xxl\:h-7\/6\:after:after {
    height: 116.6666666% !important;
  }
  .xxl\:h-4\/3\:after:after {
    height: 133.3333333% !important;
  }
  .xxl\:h-3\/2\:after:after {
    height: 150% !important;
  }
  .xxl\:h-2\/1\:after:after {
    height: 200% !important;
  }
  .xxl\:h-3\/1\:after:after {
    height: 300% !important;
  }
  .xxl\:h-4\/1\:after:after {
    height: 400% !important;
  }
  .xxl\:h-10\/1\:after:after {
    height: 1000% !important;
  }
  .xxl\:h-full\:after:after {
    height: 100% !important;
  }
  .xxl\:h-s1\:after:after {
    height: 0.25rem !important;
  }
  .xxl\:h-s2\:after:after {
    height: 0.5rem !important;
  }
  .xxl\:h-s3\:after:after {
    height: 0.75rem !important;
  }
  .xxl\:h-s4\:after:after {
    height: 1rem !important;
  }
  .xxl\:h-s5\:after:after {
    height: 1.25rem !important;
  }
  .xxl\:h-s6\:after:after {
    height: 1.5rem !important;
  }
  .xxl\:h-s8\:after:after {
    height: 2rem !important;
  }
  .xxl\:h-s10\:after:after {
    height: 2.5rem !important;
  }
  .xxl\:h-s12\:after:after {
    height: 3rem !important;
  }
  .xxl\:h-s14\:after:after {
    height: 3.5rem !important;
  }
  .xxl\:h-s16\:after:after {
    height: 4rem !important;
  }
  .xxl\:h-s18\:after:after {
    height: 4.5rem !important;
  }
  .xxl\:h-s20\:after:after {
    height: 5rem !important;
  }
  .xxl\:h-s24\:after:after {
    height: 6rem !important;
  }
  .xxl\:h-s28\:after:after {
    height: 7rem !important;
  }
  .xxl\:h-s32\:after:after {
    height: 8rem !important;
  }
  .xxl\:h-s60\:after:after {
    height: 15rem !important;
  }
  .xxl\:h-s70\:after:after {
    height: 17.5rem !important;
  }
  .xxl\:h-s72\:after:after {
    height: 18rem !important;
  }
  .xxl\:h-fit-content\:after:after {
    height: fit-content !important;
  }
  .xxl\:w-0\:after:after {
    width: 0 !important;
  }
  .xxl\:w-1\:after:after {
    width: 16rem !important;
  }
  .xxl\:w-2\:after:after {
    width: 20rem !important;
  }
  .xxl\:w-1\/6\:after:after {
    width: 16.666666% !important;
  }
  .xxl\:w-1\/4\:after:after {
    width: 25% !important;
  }
  .xxl\:w-2\/7\:after:after {
    width: 28.57142857% !important;
  }
  .xxl\:w-1\/3\:after:after {
    width: 33.333333% !important;
  }
  .xxl\:w-1\/5\:after:after {
    width: 20% !important;
  }
  .xxl\:w-2\/5\:after:after {
    width: 40% !important;
  }
  .xxl\:w-3\/5\:after:after {
    width: 60% !important;
  }
  .xxl\:w-4\/5\:after:after {
    width: 80% !important;
  }
  .xxl\:w-1\/2\:after:after {
    width: 50% !important;
  }
  .xxl\:w-1\/12\:after:after {
    width: 8.333333% !important;
  }
  .xxl\:w-5\/12\:after:after {
    width: 41.6666666% !important;
  }
  .xxl\:w-7\/12\:after:after {
    width: 58.333333% !important;
  }
  .xxl\:w-11\/12\:after:after {
    width: 91.6666666% !important;
  }
  .xxl\:w-2\/3\:after:after {
    width: 66.666667% !important;
  }
  .xxl\:w-3\/4\:after:after {
    width: 75% !important;
  }
  .xxl\:w-5\/6\:after:after {
    width: 83.3333333% !important;
  }
  .xxl\:w-7\/6\:after:after {
    width: 116.6666666% !important;
  }
  .xxl\:w-4\/3\:after:after {
    width: 133.3333333% !important;
  }
  .xxl\:w-3\/2\:after:after {
    width: 150% !important;
  }
  .xxl\:w-2\/1\:after:after {
    width: 200% !important;
  }
  .xxl\:w-3\/1\:after:after {
    width: 300% !important;
  }
  .xxl\:w-4\/1\:after:after {
    width: 400% !important;
  }
  .xxl\:w-10\/1\:after:after {
    width: 1000% !important;
  }
  .xxl\:w-full\:after:after {
    width: 100% !important;
  }
  .xxl\:w-s1\:after:after {
    width: 0.25rem !important;
  }
  .xxl\:w-s2\:after:after {
    width: 0.5rem !important;
  }
  .xxl\:w-s3\:after:after {
    width: 0.75rem !important;
  }
  .xxl\:w-s4\:after:after {
    width: 1rem !important;
  }
  .xxl\:w-s5\:after:after {
    width: 1.25rem !important;
  }
  .xxl\:w-s6\:after:after {
    width: 1.5rem !important;
  }
  .xxl\:w-s8\:after:after {
    width: 2rem !important;
  }
  .xxl\:w-s10\:after:after {
    width: 2.5rem !important;
  }
  .xxl\:w-s12\:after:after {
    width: 3rem !important;
  }
  .xxl\:w-s14\:after:after {
    width: 3.5rem !important;
  }
  .xxl\:w-s16\:after:after {
    width: 4rem !important;
  }
  .xxl\:w-s18\:after:after {
    width: 4.5rem !important;
  }
  .xxl\:w-s20\:after:after {
    width: 5rem !important;
  }
  .xxl\:w-s24\:after:after {
    width: 6rem !important;
  }
  .xxl\:w-s28\:after:after {
    width: 7rem !important;
  }
  .xxl\:w-s32\:after:after {
    width: 8rem !important;
  }
  .xxl\:w-s60\:after:after {
    width: 15rem !important;
  }
  .xxl\:w-s70\:after:after {
    width: 17.5rem !important;
  }
  .xxl\:w-s72\:after:after {
    width: 18rem !important;
  }
  .xxl\:w-fit-content\:after:after {
    width: fit-content !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:h-0\:after:after {
    height: 0 !important;
  }
  .max\:h-1\:after:after {
    height: 16rem !important;
  }
  .max\:h-2\:after:after {
    height: 20rem !important;
  }
  .max\:h-1\/6\:after:after {
    height: 16.666666% !important;
  }
  .max\:h-1\/4\:after:after {
    height: 25% !important;
  }
  .max\:h-2\/7\:after:after {
    height: 28.57142857% !important;
  }
  .max\:h-1\/3\:after:after {
    height: 33.333333% !important;
  }
  .max\:h-1\/5\:after:after {
    height: 20% !important;
  }
  .max\:h-2\/5\:after:after {
    height: 40% !important;
  }
  .max\:h-3\/5\:after:after {
    height: 60% !important;
  }
  .max\:h-4\/5\:after:after {
    height: 80% !important;
  }
  .max\:h-1\/2\:after:after {
    height: 50% !important;
  }
  .max\:h-1\/12\:after:after {
    height: 8.333333% !important;
  }
  .max\:h-5\/12\:after:after {
    height: 41.6666666% !important;
  }
  .max\:h-7\/12\:after:after {
    height: 58.333333% !important;
  }
  .max\:h-11\/12\:after:after {
    height: 91.6666666% !important;
  }
  .max\:h-2\/3\:after:after {
    height: 66.666667% !important;
  }
  .max\:h-3\/4\:after:after {
    height: 75% !important;
  }
  .max\:h-5\/6\:after:after {
    height: 83.3333333% !important;
  }
  .max\:h-7\/6\:after:after {
    height: 116.6666666% !important;
  }
  .max\:h-4\/3\:after:after {
    height: 133.3333333% !important;
  }
  .max\:h-3\/2\:after:after {
    height: 150% !important;
  }
  .max\:h-2\/1\:after:after {
    height: 200% !important;
  }
  .max\:h-3\/1\:after:after {
    height: 300% !important;
  }
  .max\:h-4\/1\:after:after {
    height: 400% !important;
  }
  .max\:h-10\/1\:after:after {
    height: 1000% !important;
  }
  .max\:h-full\:after:after {
    height: 100% !important;
  }
  .max\:h-s1\:after:after {
    height: 0.25rem !important;
  }
  .max\:h-s2\:after:after {
    height: 0.5rem !important;
  }
  .max\:h-s3\:after:after {
    height: 0.75rem !important;
  }
  .max\:h-s4\:after:after {
    height: 1rem !important;
  }
  .max\:h-s5\:after:after {
    height: 1.25rem !important;
  }
  .max\:h-s6\:after:after {
    height: 1.5rem !important;
  }
  .max\:h-s8\:after:after {
    height: 2rem !important;
  }
  .max\:h-s10\:after:after {
    height: 2.5rem !important;
  }
  .max\:h-s12\:after:after {
    height: 3rem !important;
  }
  .max\:h-s14\:after:after {
    height: 3.5rem !important;
  }
  .max\:h-s16\:after:after {
    height: 4rem !important;
  }
  .max\:h-s18\:after:after {
    height: 4.5rem !important;
  }
  .max\:h-s20\:after:after {
    height: 5rem !important;
  }
  .max\:h-s24\:after:after {
    height: 6rem !important;
  }
  .max\:h-s28\:after:after {
    height: 7rem !important;
  }
  .max\:h-s32\:after:after {
    height: 8rem !important;
  }
  .max\:h-s60\:after:after {
    height: 15rem !important;
  }
  .max\:h-s70\:after:after {
    height: 17.5rem !important;
  }
  .max\:h-s72\:after:after {
    height: 18rem !important;
  }
  .max\:h-fit-content\:after:after {
    height: fit-content !important;
  }
  .max\:w-0\:after:after {
    width: 0 !important;
  }
  .max\:w-1\:after:after {
    width: 16rem !important;
  }
  .max\:w-2\:after:after {
    width: 20rem !important;
  }
  .max\:w-1\/6\:after:after {
    width: 16.666666% !important;
  }
  .max\:w-1\/4\:after:after {
    width: 25% !important;
  }
  .max\:w-2\/7\:after:after {
    width: 28.57142857% !important;
  }
  .max\:w-1\/3\:after:after {
    width: 33.333333% !important;
  }
  .max\:w-1\/5\:after:after {
    width: 20% !important;
  }
  .max\:w-2\/5\:after:after {
    width: 40% !important;
  }
  .max\:w-3\/5\:after:after {
    width: 60% !important;
  }
  .max\:w-4\/5\:after:after {
    width: 80% !important;
  }
  .max\:w-1\/2\:after:after {
    width: 50% !important;
  }
  .max\:w-1\/12\:after:after {
    width: 8.333333% !important;
  }
  .max\:w-5\/12\:after:after {
    width: 41.6666666% !important;
  }
  .max\:w-7\/12\:after:after {
    width: 58.333333% !important;
  }
  .max\:w-11\/12\:after:after {
    width: 91.6666666% !important;
  }
  .max\:w-2\/3\:after:after {
    width: 66.666667% !important;
  }
  .max\:w-3\/4\:after:after {
    width: 75% !important;
  }
  .max\:w-5\/6\:after:after {
    width: 83.3333333% !important;
  }
  .max\:w-7\/6\:after:after {
    width: 116.6666666% !important;
  }
  .max\:w-4\/3\:after:after {
    width: 133.3333333% !important;
  }
  .max\:w-3\/2\:after:after {
    width: 150% !important;
  }
  .max\:w-2\/1\:after:after {
    width: 200% !important;
  }
  .max\:w-3\/1\:after:after {
    width: 300% !important;
  }
  .max\:w-4\/1\:after:after {
    width: 400% !important;
  }
  .max\:w-10\/1\:after:after {
    width: 1000% !important;
  }
  .max\:w-full\:after:after {
    width: 100% !important;
  }
  .max\:w-s1\:after:after {
    width: 0.25rem !important;
  }
  .max\:w-s2\:after:after {
    width: 0.5rem !important;
  }
  .max\:w-s3\:after:after {
    width: 0.75rem !important;
  }
  .max\:w-s4\:after:after {
    width: 1rem !important;
  }
  .max\:w-s5\:after:after {
    width: 1.25rem !important;
  }
  .max\:w-s6\:after:after {
    width: 1.5rem !important;
  }
  .max\:w-s8\:after:after {
    width: 2rem !important;
  }
  .max\:w-s10\:after:after {
    width: 2.5rem !important;
  }
  .max\:w-s12\:after:after {
    width: 3rem !important;
  }
  .max\:w-s14\:after:after {
    width: 3.5rem !important;
  }
  .max\:w-s16\:after:after {
    width: 4rem !important;
  }
  .max\:w-s18\:after:after {
    width: 4.5rem !important;
  }
  .max\:w-s20\:after:after {
    width: 5rem !important;
  }
  .max\:w-s24\:after:after {
    width: 6rem !important;
  }
  .max\:w-s28\:after:after {
    width: 7rem !important;
  }
  .max\:w-s32\:after:after {
    width: 8rem !important;
  }
  .max\:w-s60\:after:after {
    width: 15rem !important;
  }
  .max\:w-s70\:after:after {
    width: 17.5rem !important;
  }
  .max\:w-s72\:after:after {
    width: 18rem !important;
  }
  .max\:w-fit-content\:after:after {
    width: fit-content !important;
  }
}
.top-0 {
  top: 0 !important;
}

.top-1 {
  top: 16rem !important;
}

.top-2 {
  top: 20rem !important;
}

.top-3 {
  top: 24rem !important;
}

.top-4 {
  top: 28rem !important;
}

.top-5 {
  top: 32rem !important;
}

.top-6 {
  top: 36rem !important;
}

.top-7 {
  top: 42rem !important;
}

.top-8 {
  top: 48rem !important;
}

.top-9 {
  top: 56rem !important;
}

.top-10 {
  top: 64rem !important;
}

.top-11 {
  top: 72rem !important;
}

.top-1em {
  top: 16em !important;
}

.top-2em {
  top: 20em !important;
}

.top-3em {
  top: 24em !important;
}

.top-4em {
  top: 28em !important;
}

.top-5em {
  top: 32em !important;
}

.top-6em {
  top: 36em !important;
}

.top-7em {
  top: 42em !important;
}

.top-8em {
  top: 48em !important;
}

.top-9em {
  top: 56em !important;
}

.top-10em {
  top: 64em !important;
}

.top-11em {
  top: 72em !important;
}

.top-1\/6 {
  top: 16.666666% !important;
}

.top-1\/4 {
  top: 25% !important;
}

.top-2\/7 {
  top: 28.57142857% !important;
}

.top-1\/3 {
  top: 33.333333% !important;
}

.top-1\/5 {
  top: 20% !important;
}

.top-2\/5 {
  top: 40% !important;
}

.top-3\/5 {
  top: 60% !important;
}

.top-4\/5 {
  top: 80% !important;
}

.top-1\/2 {
  top: 50% !important;
}

.top-1\/12 {
  top: 8.333333% !important;
}

.top-5\/12 {
  top: 41.6666666% !important;
}

.top-7\/12 {
  top: 58.333333% !important;
}

.top-11\/12 {
  top: 91.6666666% !important;
}

.top-2\/3 {
  top: 66.666667% !important;
}

.top-3\/4 {
  top: 75% !important;
}

.top-5\/6 {
  top: 83.3333333% !important;
}

.top-7\/6 {
  top: 116.6666666% !important;
}

.top-4\/3 {
  top: 133.3333333% !important;
}

.top-3\/2 {
  top: 150% !important;
}

.top-1\/24 {
  top: 4.1666666% !important;
}

.top-full {
  top: 100% !important;
}

.top-1\/6vh {
  top: 16.666666vh !important;
}

.top-1\/4vh {
  top: 25vh !important;
}

.top-1\/3vh {
  top: 33.333333vh !important;
}

.top-1\/2vh {
  top: 50vh !important;
}

.top-7\/12vh {
  top: 58.333333vh !important;
}

.top-2\/3vh {
  top: 66.666667vh !important;
}

.top-3\/4vh {
  top: 75vh !important;
}

.top-5\/6vh {
  top: 83.3333333vh !important;
}

.top-full-vh {
  top: 100vh !important;
}

.top--1 {
  top: -16rem !important;
}

.top--2 {
  top: -20rem !important;
}

.top--3 {
  top: -24rem !important;
}

.top--4 {
  top: -28rem !important;
}

.top--s1 {
  top: -0.25rem !important;
}

.top--s2 {
  top: -0.5rem !important;
}

.top--s3 {
  top: -0.75rem !important;
}

.top--s4 {
  top: -1rem !important;
}

.top--s5 {
  top: -1.25rem !important;
}

.top--s6 {
  top: -1.5rem !important;
}

.top--s8 {
  top: -2rem !important;
}

.top--s10 {
  top: -2.5rem !important;
}

.top--s12 {
  top: -3rem !important;
}

.top--s16 {
  top: -4rem !important;
}

.top--s18 {
  top: -4.5rem !important;
}

.top--s20 {
  top: -5rem !important;
}

.top--s24 {
  top: -6rem !important;
}

.top--s40em {
  top: -10em !important;
}

.top--s44em {
  top: -11em !important;
}

.top--s46em {
  top: -11.5em !important;
}

.top--s48em {
  top: -12em !important;
}

.top--s49em {
  top: -12.25em !important;
}

.top--s50em {
  top: -12.5em !important;
}

.top--s52em {
  top: -13em !important;
}

.top--s54em {
  top: -13.5em !important;
}

.top--s55em {
  top: -13.75em !important;
}

.top--s56em {
  top: -14em !important;
}

.top--s70em {
  top: -18em !important;
}

.top-s1 {
  top: 0.25rem !important;
}

.top-s2 {
  top: 0.5rem !important;
}

.top-s3 {
  top: 0.75rem !important;
}

.top-s4 {
  top: 1rem !important;
}

.top-s5 {
  top: 1.25rem !important;
}

.top-s6 {
  top: 1.5rem !important;
}

.top-s8 {
  top: 2rem !important;
}

.top-s10 {
  top: 2.5rem !important;
}

.top-s12 {
  top: 3rem !important;
}

.top-s16 {
  top: 4rem !important;
}

.top-s20 {
  top: 5rem !important;
}

.top-s24 {
  top: 6rem !important;
}

.top-s28 {
  top: 7rem !important;
}

.top-s32 {
  top: 8rem !important;
}

.top-s60 {
  top: 15rem !important;
}

.top-s70 {
  top: 17.5rem !important;
}

.top-s72 {
  top: 18rem !important;
}

.top-s40em {
  top: 10em !important;
}

.top-s44em {
  top: 11em !important;
}

.top-s46em {
  top: 11.5em !important;
}

.top-s48em {
  top: 12em !important;
}

.top-s49em {
  top: 12.25em !important;
}

.top-s50em {
  top: 12.5em !important;
}

.top-s52em {
  top: 13em !important;
}

.top-s54em {
  top: 13.5em !important;
}

.top-s55em {
  top: 13.75em !important;
}

.top-s56em {
  top: 14em !important;
}

.top-s70em {
  top: 18em !important;
}

.top-auto {
  top: auto !important;
}

.right-0 {
  right: 0 !important;
}

.right-1 {
  right: 16rem !important;
}

.right-2 {
  right: 20rem !important;
}

.right-3 {
  right: 24rem !important;
}

.right-4 {
  right: 28rem !important;
}

.right-5 {
  right: 32rem !important;
}

.right-6 {
  right: 36rem !important;
}

.right-7 {
  right: 42rem !important;
}

.right-8 {
  right: 48rem !important;
}

.right-9 {
  right: 56rem !important;
}

.right-10 {
  right: 64rem !important;
}

.right-11 {
  right: 72rem !important;
}

.right-1em {
  right: 16em !important;
}

.right-2em {
  right: 20em !important;
}

.right-3em {
  right: 24em !important;
}

.right-4em {
  right: 28em !important;
}

.right-5em {
  right: 32em !important;
}

.right-6em {
  right: 36em !important;
}

.right-7em {
  right: 42em !important;
}

.right-8em {
  right: 48em !important;
}

.right-9em {
  right: 56em !important;
}

.right-10em {
  right: 64em !important;
}

.right-11em {
  right: 72em !important;
}

.right-1\/6 {
  right: 16.666666% !important;
}

.right-1\/4 {
  right: 25% !important;
}

.right-2\/7 {
  right: 28.57142857% !important;
}

.right-1\/3 {
  right: 33.333333% !important;
}

.right-1\/5 {
  right: 20% !important;
}

.right-2\/5 {
  right: 40% !important;
}

.right-3\/5 {
  right: 60% !important;
}

.right-4\/5 {
  right: 80% !important;
}

.right-1\/2 {
  right: 50% !important;
}

.right-1\/12 {
  right: 8.333333% !important;
}

.right-5\/12 {
  right: 41.6666666% !important;
}

.right-7\/12 {
  right: 58.333333% !important;
}

.right-11\/12 {
  right: 91.6666666% !important;
}

.right-2\/3 {
  right: 66.666667% !important;
}

.right-3\/4 {
  right: 75% !important;
}

.right-5\/6 {
  right: 83.3333333% !important;
}

.right-7\/6 {
  right: 116.6666666% !important;
}

.right-4\/3 {
  right: 133.3333333% !important;
}

.right-3\/2 {
  right: 150% !important;
}

.right-1\/24 {
  right: 4.1666666% !important;
}

.right-full {
  right: 100% !important;
}

.right-1\/6vh {
  right: 16.666666vh !important;
}

.right-1\/4vh {
  right: 25vh !important;
}

.right-1\/3vh {
  right: 33.333333vh !important;
}

.right-1\/2vh {
  right: 50vh !important;
}

.right-7\/12vh {
  right: 58.333333vh !important;
}

.right-2\/3vh {
  right: 66.666667vh !important;
}

.right-3\/4vh {
  right: 75vh !important;
}

.right-5\/6vh {
  right: 83.3333333vh !important;
}

.right-full-vh {
  right: 100vh !important;
}

.right--1 {
  right: -16rem !important;
}

.right--2 {
  right: -20rem !important;
}

.right--3 {
  right: -24rem !important;
}

.right--4 {
  right: -28rem !important;
}

.right--s1 {
  right: -0.25rem !important;
}

.right--s2 {
  right: -0.5rem !important;
}

.right--s3 {
  right: -0.75rem !important;
}

.right--s4 {
  right: -1rem !important;
}

.right--s5 {
  right: -1.25rem !important;
}

.right--s6 {
  right: -1.5rem !important;
}

.right--s8 {
  right: -2rem !important;
}

.right--s10 {
  right: -2.5rem !important;
}

.right--s12 {
  right: -3rem !important;
}

.right--s16 {
  right: -4rem !important;
}

.right--s18 {
  right: -4.5rem !important;
}

.right--s20 {
  right: -5rem !important;
}

.right--s24 {
  right: -6rem !important;
}

.right--s40em {
  right: -10em !important;
}

.right--s44em {
  right: -11em !important;
}

.right--s46em {
  right: -11.5em !important;
}

.right--s48em {
  right: -12em !important;
}

.right--s49em {
  right: -12.25em !important;
}

.right--s50em {
  right: -12.5em !important;
}

.right--s52em {
  right: -13em !important;
}

.right--s54em {
  right: -13.5em !important;
}

.right--s55em {
  right: -13.75em !important;
}

.right--s56em {
  right: -14em !important;
}

.right--s70em {
  right: -18em !important;
}

.right-s1 {
  right: 0.25rem !important;
}

.right-s2 {
  right: 0.5rem !important;
}

.right-s3 {
  right: 0.75rem !important;
}

.right-s4 {
  right: 1rem !important;
}

.right-s5 {
  right: 1.25rem !important;
}

.right-s6 {
  right: 1.5rem !important;
}

.right-s8 {
  right: 2rem !important;
}

.right-s10 {
  right: 2.5rem !important;
}

.right-s12 {
  right: 3rem !important;
}

.right-s16 {
  right: 4rem !important;
}

.right-s20 {
  right: 5rem !important;
}

.right-s24 {
  right: 6rem !important;
}

.right-s28 {
  right: 7rem !important;
}

.right-s32 {
  right: 8rem !important;
}

.right-s60 {
  right: 15rem !important;
}

.right-s70 {
  right: 17.5rem !important;
}

.right-s72 {
  right: 18rem !important;
}

.right-s40em {
  right: 10em !important;
}

.right-s44em {
  right: 11em !important;
}

.right-s46em {
  right: 11.5em !important;
}

.right-s48em {
  right: 12em !important;
}

.right-s49em {
  right: 12.25em !important;
}

.right-s50em {
  right: 12.5em !important;
}

.right-s52em {
  right: 13em !important;
}

.right-s54em {
  right: 13.5em !important;
}

.right-s55em {
  right: 13.75em !important;
}

.right-s56em {
  right: 14em !important;
}

.right-s70em {
  right: 18em !important;
}

.right-auto {
  right: auto !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-1 {
  bottom: 16rem !important;
}

.bottom-2 {
  bottom: 20rem !important;
}

.bottom-3 {
  bottom: 24rem !important;
}

.bottom-4 {
  bottom: 28rem !important;
}

.bottom-5 {
  bottom: 32rem !important;
}

.bottom-6 {
  bottom: 36rem !important;
}

.bottom-7 {
  bottom: 42rem !important;
}

.bottom-8 {
  bottom: 48rem !important;
}

.bottom-9 {
  bottom: 56rem !important;
}

.bottom-10 {
  bottom: 64rem !important;
}

.bottom-11 {
  bottom: 72rem !important;
}

.bottom-1em {
  bottom: 16em !important;
}

.bottom-2em {
  bottom: 20em !important;
}

.bottom-3em {
  bottom: 24em !important;
}

.bottom-4em {
  bottom: 28em !important;
}

.bottom-5em {
  bottom: 32em !important;
}

.bottom-6em {
  bottom: 36em !important;
}

.bottom-7em {
  bottom: 42em !important;
}

.bottom-8em {
  bottom: 48em !important;
}

.bottom-9em {
  bottom: 56em !important;
}

.bottom-10em {
  bottom: 64em !important;
}

.bottom-11em {
  bottom: 72em !important;
}

.bottom-1\/6 {
  bottom: 16.666666% !important;
}

.bottom-1\/4 {
  bottom: 25% !important;
}

.bottom-2\/7 {
  bottom: 28.57142857% !important;
}

.bottom-1\/3 {
  bottom: 33.333333% !important;
}

.bottom-1\/5 {
  bottom: 20% !important;
}

.bottom-2\/5 {
  bottom: 40% !important;
}

.bottom-3\/5 {
  bottom: 60% !important;
}

.bottom-4\/5 {
  bottom: 80% !important;
}

.bottom-1\/2 {
  bottom: 50% !important;
}

.bottom-1\/12 {
  bottom: 8.333333% !important;
}

.bottom-5\/12 {
  bottom: 41.6666666% !important;
}

.bottom-7\/12 {
  bottom: 58.333333% !important;
}

.bottom-11\/12 {
  bottom: 91.6666666% !important;
}

.bottom-2\/3 {
  bottom: 66.666667% !important;
}

.bottom-3\/4 {
  bottom: 75% !important;
}

.bottom-5\/6 {
  bottom: 83.3333333% !important;
}

.bottom-7\/6 {
  bottom: 116.6666666% !important;
}

.bottom-4\/3 {
  bottom: 133.3333333% !important;
}

.bottom-3\/2 {
  bottom: 150% !important;
}

.bottom-1\/24 {
  bottom: 4.1666666% !important;
}

.bottom-full {
  bottom: 100% !important;
}

.bottom-1\/6vh {
  bottom: 16.666666vh !important;
}

.bottom-1\/4vh {
  bottom: 25vh !important;
}

.bottom-1\/3vh {
  bottom: 33.333333vh !important;
}

.bottom-1\/2vh {
  bottom: 50vh !important;
}

.bottom-7\/12vh {
  bottom: 58.333333vh !important;
}

.bottom-2\/3vh {
  bottom: 66.666667vh !important;
}

.bottom-3\/4vh {
  bottom: 75vh !important;
}

.bottom-5\/6vh {
  bottom: 83.3333333vh !important;
}

.bottom-full-vh {
  bottom: 100vh !important;
}

.bottom--1 {
  bottom: -16rem !important;
}

.bottom--2 {
  bottom: -20rem !important;
}

.bottom--3 {
  bottom: -24rem !important;
}

.bottom--4 {
  bottom: -28rem !important;
}

.bottom--s1 {
  bottom: -0.25rem !important;
}

.bottom--s2 {
  bottom: -0.5rem !important;
}

.bottom--s3 {
  bottom: -0.75rem !important;
}

.bottom--s4 {
  bottom: -1rem !important;
}

.bottom--s5 {
  bottom: -1.25rem !important;
}

.bottom--s6 {
  bottom: -1.5rem !important;
}

.bottom--s8 {
  bottom: -2rem !important;
}

.bottom--s10 {
  bottom: -2.5rem !important;
}

.bottom--s12 {
  bottom: -3rem !important;
}

.bottom--s16 {
  bottom: -4rem !important;
}

.bottom--s18 {
  bottom: -4.5rem !important;
}

.bottom--s20 {
  bottom: -5rem !important;
}

.bottom--s24 {
  bottom: -6rem !important;
}

.bottom--s40em {
  bottom: -10em !important;
}

.bottom--s44em {
  bottom: -11em !important;
}

.bottom--s46em {
  bottom: -11.5em !important;
}

.bottom--s48em {
  bottom: -12em !important;
}

.bottom--s49em {
  bottom: -12.25em !important;
}

.bottom--s50em {
  bottom: -12.5em !important;
}

.bottom--s52em {
  bottom: -13em !important;
}

.bottom--s54em {
  bottom: -13.5em !important;
}

.bottom--s55em {
  bottom: -13.75em !important;
}

.bottom--s56em {
  bottom: -14em !important;
}

.bottom--s70em {
  bottom: -18em !important;
}

.bottom-s1 {
  bottom: 0.25rem !important;
}

.bottom-s2 {
  bottom: 0.5rem !important;
}

.bottom-s3 {
  bottom: 0.75rem !important;
}

.bottom-s4 {
  bottom: 1rem !important;
}

.bottom-s5 {
  bottom: 1.25rem !important;
}

.bottom-s6 {
  bottom: 1.5rem !important;
}

.bottom-s8 {
  bottom: 2rem !important;
}

.bottom-s10 {
  bottom: 2.5rem !important;
}

.bottom-s12 {
  bottom: 3rem !important;
}

.bottom-s16 {
  bottom: 4rem !important;
}

.bottom-s20 {
  bottom: 5rem !important;
}

.bottom-s24 {
  bottom: 6rem !important;
}

.bottom-s28 {
  bottom: 7rem !important;
}

.bottom-s32 {
  bottom: 8rem !important;
}

.bottom-s60 {
  bottom: 15rem !important;
}

.bottom-s70 {
  bottom: 17.5rem !important;
}

.bottom-s72 {
  bottom: 18rem !important;
}

.bottom-s40em {
  bottom: 10em !important;
}

.bottom-s44em {
  bottom: 11em !important;
}

.bottom-s46em {
  bottom: 11.5em !important;
}

.bottom-s48em {
  bottom: 12em !important;
}

.bottom-s49em {
  bottom: 12.25em !important;
}

.bottom-s50em {
  bottom: 12.5em !important;
}

.bottom-s52em {
  bottom: 13em !important;
}

.bottom-s54em {
  bottom: 13.5em !important;
}

.bottom-s55em {
  bottom: 13.75em !important;
}

.bottom-s56em {
  bottom: 14em !important;
}

.bottom-s70em {
  bottom: 18em !important;
}

.bottom-auto {
  bottom: auto !important;
}

.left-0 {
  left: 0 !important;
}

.left-1 {
  left: 16rem !important;
}

.left-2 {
  left: 20rem !important;
}

.left-3 {
  left: 24rem !important;
}

.left-4 {
  left: 28rem !important;
}

.left-5 {
  left: 32rem !important;
}

.left-6 {
  left: 36rem !important;
}

.left-7 {
  left: 42rem !important;
}

.left-8 {
  left: 48rem !important;
}

.left-9 {
  left: 56rem !important;
}

.left-10 {
  left: 64rem !important;
}

.left-11 {
  left: 72rem !important;
}

.left-1em {
  left: 16em !important;
}

.left-2em {
  left: 20em !important;
}

.left-3em {
  left: 24em !important;
}

.left-4em {
  left: 28em !important;
}

.left-5em {
  left: 32em !important;
}

.left-6em {
  left: 36em !important;
}

.left-7em {
  left: 42em !important;
}

.left-8em {
  left: 48em !important;
}

.left-9em {
  left: 56em !important;
}

.left-10em {
  left: 64em !important;
}

.left-11em {
  left: 72em !important;
}

.left-1\/6 {
  left: 16.666666% !important;
}

.left-1\/4 {
  left: 25% !important;
}

.left-2\/7 {
  left: 28.57142857% !important;
}

.left-1\/3 {
  left: 33.333333% !important;
}

.left-1\/5 {
  left: 20% !important;
}

.left-2\/5 {
  left: 40% !important;
}

.left-3\/5 {
  left: 60% !important;
}

.left-4\/5 {
  left: 80% !important;
}

.left-1\/2 {
  left: 50% !important;
}

.left-1\/12 {
  left: 8.333333% !important;
}

.left-5\/12 {
  left: 41.6666666% !important;
}

.left-7\/12 {
  left: 58.333333% !important;
}

.left-11\/12 {
  left: 91.6666666% !important;
}

.left-2\/3 {
  left: 66.666667% !important;
}

.left-3\/4 {
  left: 75% !important;
}

.left-5\/6 {
  left: 83.3333333% !important;
}

.left-7\/6 {
  left: 116.6666666% !important;
}

.left-4\/3 {
  left: 133.3333333% !important;
}

.left-3\/2 {
  left: 150% !important;
}

.left-1\/24 {
  left: 4.1666666% !important;
}

.left-full {
  left: 100% !important;
}

.left-1\/6vh {
  left: 16.666666vh !important;
}

.left-1\/4vh {
  left: 25vh !important;
}

.left-1\/3vh {
  left: 33.333333vh !important;
}

.left-1\/2vh {
  left: 50vh !important;
}

.left-7\/12vh {
  left: 58.333333vh !important;
}

.left-2\/3vh {
  left: 66.666667vh !important;
}

.left-3\/4vh {
  left: 75vh !important;
}

.left-5\/6vh {
  left: 83.3333333vh !important;
}

.left-full-vh {
  left: 100vh !important;
}

.left--1 {
  left: -16rem !important;
}

.left--2 {
  left: -20rem !important;
}

.left--3 {
  left: -24rem !important;
}

.left--4 {
  left: -28rem !important;
}

.left--s1 {
  left: -0.25rem !important;
}

.left--s2 {
  left: -0.5rem !important;
}

.left--s3 {
  left: -0.75rem !important;
}

.left--s4 {
  left: -1rem !important;
}

.left--s5 {
  left: -1.25rem !important;
}

.left--s6 {
  left: -1.5rem !important;
}

.left--s8 {
  left: -2rem !important;
}

.left--s10 {
  left: -2.5rem !important;
}

.left--s12 {
  left: -3rem !important;
}

.left--s16 {
  left: -4rem !important;
}

.left--s18 {
  left: -4.5rem !important;
}

.left--s20 {
  left: -5rem !important;
}

.left--s24 {
  left: -6rem !important;
}

.left--s40em {
  left: -10em !important;
}

.left--s44em {
  left: -11em !important;
}

.left--s46em {
  left: -11.5em !important;
}

.left--s48em {
  left: -12em !important;
}

.left--s49em {
  left: -12.25em !important;
}

.left--s50em {
  left: -12.5em !important;
}

.left--s52em {
  left: -13em !important;
}

.left--s54em {
  left: -13.5em !important;
}

.left--s55em {
  left: -13.75em !important;
}

.left--s56em {
  left: -14em !important;
}

.left--s70em {
  left: -18em !important;
}

.left-s1 {
  left: 0.25rem !important;
}

.left-s2 {
  left: 0.5rem !important;
}

.left-s3 {
  left: 0.75rem !important;
}

.left-s4 {
  left: 1rem !important;
}

.left-s5 {
  left: 1.25rem !important;
}

.left-s6 {
  left: 1.5rem !important;
}

.left-s8 {
  left: 2rem !important;
}

.left-s10 {
  left: 2.5rem !important;
}

.left-s12 {
  left: 3rem !important;
}

.left-s16 {
  left: 4rem !important;
}

.left-s20 {
  left: 5rem !important;
}

.left-s24 {
  left: 6rem !important;
}

.left-s28 {
  left: 7rem !important;
}

.left-s32 {
  left: 8rem !important;
}

.left-s60 {
  left: 15rem !important;
}

.left-s70 {
  left: 17.5rem !important;
}

.left-s72 {
  left: 18rem !important;
}

.left-s40em {
  left: 10em !important;
}

.left-s44em {
  left: 11em !important;
}

.left-s46em {
  left: 11.5em !important;
}

.left-s48em {
  left: 12em !important;
}

.left-s49em {
  left: 12.25em !important;
}

.left-s50em {
  left: 12.5em !important;
}

.left-s52em {
  left: 13em !important;
}

.left-s54em {
  left: 13.5em !important;
}

.left-s55em {
  left: 13.75em !important;
}

.left-s56em {
  left: 14em !important;
}

.left-s70em {
  left: 18em !important;
}

.left-auto {
  left: auto !important;
}

.inset-0 {
  inset: 0 !important;
}

.inset-1 {
  inset: 16rem !important;
}

.inset-2 {
  inset: 20rem !important;
}

.inset-3 {
  inset: 24rem !important;
}

.inset-4 {
  inset: 28rem !important;
}

.inset-5 {
  inset: 32rem !important;
}

.inset-6 {
  inset: 36rem !important;
}

.inset-7 {
  inset: 42rem !important;
}

.inset-8 {
  inset: 48rem !important;
}

.inset-9 {
  inset: 56rem !important;
}

.inset-10 {
  inset: 64rem !important;
}

.inset-11 {
  inset: 72rem !important;
}

.inset-1em {
  inset: 16em !important;
}

.inset-2em {
  inset: 20em !important;
}

.inset-3em {
  inset: 24em !important;
}

.inset-4em {
  inset: 28em !important;
}

.inset-5em {
  inset: 32em !important;
}

.inset-6em {
  inset: 36em !important;
}

.inset-7em {
  inset: 42em !important;
}

.inset-8em {
  inset: 48em !important;
}

.inset-9em {
  inset: 56em !important;
}

.inset-10em {
  inset: 64em !important;
}

.inset-11em {
  inset: 72em !important;
}

.inset-1\/6 {
  inset: 16.666666% !important;
}

.inset-1\/4 {
  inset: 25% !important;
}

.inset-2\/7 {
  inset: 28.57142857% !important;
}

.inset-1\/3 {
  inset: 33.333333% !important;
}

.inset-1\/5 {
  inset: 20% !important;
}

.inset-2\/5 {
  inset: 40% !important;
}

.inset-3\/5 {
  inset: 60% !important;
}

.inset-4\/5 {
  inset: 80% !important;
}

.inset-1\/2 {
  inset: 50% !important;
}

.inset-1\/12 {
  inset: 8.333333% !important;
}

.inset-5\/12 {
  inset: 41.6666666% !important;
}

.inset-7\/12 {
  inset: 58.333333% !important;
}

.inset-11\/12 {
  inset: 91.6666666% !important;
}

.inset-2\/3 {
  inset: 66.666667% !important;
}

.inset-3\/4 {
  inset: 75% !important;
}

.inset-5\/6 {
  inset: 83.3333333% !important;
}

.inset-7\/6 {
  inset: 116.6666666% !important;
}

.inset-4\/3 {
  inset: 133.3333333% !important;
}

.inset-3\/2 {
  inset: 150% !important;
}

.inset-1\/24 {
  inset: 4.1666666% !important;
}

.inset-full {
  inset: 100% !important;
}

.inset-1\/6vh {
  inset: 16.666666vh !important;
}

.inset-1\/4vh {
  inset: 25vh !important;
}

.inset-1\/3vh {
  inset: 33.333333vh !important;
}

.inset-1\/2vh {
  inset: 50vh !important;
}

.inset-7\/12vh {
  inset: 58.333333vh !important;
}

.inset-2\/3vh {
  inset: 66.666667vh !important;
}

.inset-3\/4vh {
  inset: 75vh !important;
}

.inset-5\/6vh {
  inset: 83.3333333vh !important;
}

.inset-full-vh {
  inset: 100vh !important;
}

.inset--1 {
  inset: -16rem !important;
}

.inset--2 {
  inset: -20rem !important;
}

.inset--3 {
  inset: -24rem !important;
}

.inset--4 {
  inset: -28rem !important;
}

.inset--s1 {
  inset: -0.25rem !important;
}

.inset--s2 {
  inset: -0.5rem !important;
}

.inset--s3 {
  inset: -0.75rem !important;
}

.inset--s4 {
  inset: -1rem !important;
}

.inset--s5 {
  inset: -1.25rem !important;
}

.inset--s6 {
  inset: -1.5rem !important;
}

.inset--s8 {
  inset: -2rem !important;
}

.inset--s10 {
  inset: -2.5rem !important;
}

.inset--s12 {
  inset: -3rem !important;
}

.inset--s16 {
  inset: -4rem !important;
}

.inset--s18 {
  inset: -4.5rem !important;
}

.inset--s20 {
  inset: -5rem !important;
}

.inset--s24 {
  inset: -6rem !important;
}

.inset--s40em {
  inset: -10em !important;
}

.inset--s44em {
  inset: -11em !important;
}

.inset--s46em {
  inset: -11.5em !important;
}

.inset--s48em {
  inset: -12em !important;
}

.inset--s49em {
  inset: -12.25em !important;
}

.inset--s50em {
  inset: -12.5em !important;
}

.inset--s52em {
  inset: -13em !important;
}

.inset--s54em {
  inset: -13.5em !important;
}

.inset--s55em {
  inset: -13.75em !important;
}

.inset--s56em {
  inset: -14em !important;
}

.inset--s70em {
  inset: -18em !important;
}

.inset-s1 {
  inset: 0.25rem !important;
}

.inset-s2 {
  inset: 0.5rem !important;
}

.inset-s3 {
  inset: 0.75rem !important;
}

.inset-s4 {
  inset: 1rem !important;
}

.inset-s5 {
  inset: 1.25rem !important;
}

.inset-s6 {
  inset: 1.5rem !important;
}

.inset-s8 {
  inset: 2rem !important;
}

.inset-s10 {
  inset: 2.5rem !important;
}

.inset-s12 {
  inset: 3rem !important;
}

.inset-s16 {
  inset: 4rem !important;
}

.inset-s20 {
  inset: 5rem !important;
}

.inset-s24 {
  inset: 6rem !important;
}

.inset-s28 {
  inset: 7rem !important;
}

.inset-s32 {
  inset: 8rem !important;
}

.inset-s60 {
  inset: 15rem !important;
}

.inset-s70 {
  inset: 17.5rem !important;
}

.inset-s72 {
  inset: 18rem !important;
}

.inset-s40em {
  inset: 10em !important;
}

.inset-s44em {
  inset: 11em !important;
}

.inset-s46em {
  inset: 11.5em !important;
}

.inset-s48em {
  inset: 12em !important;
}

.inset-s49em {
  inset: 12.25em !important;
}

.inset-s50em {
  inset: 12.5em !important;
}

.inset-s52em {
  inset: 13em !important;
}

.inset-s54em {
  inset: 13.5em !important;
}

.inset-s55em {
  inset: 13.75em !important;
}

.inset-s56em {
  inset: 14em !important;
}

.inset-s70em {
  inset: 18em !important;
}

.inset-auto {
  inset: auto !important;
}

@media screen and (min-width: 360px) {
  .xs\:top-0 {
    top: 0 !important;
  }
  .xs\:top-1 {
    top: 16rem !important;
  }
  .xs\:top-2 {
    top: 20rem !important;
  }
  .xs\:top-3 {
    top: 24rem !important;
  }
  .xs\:top-4 {
    top: 28rem !important;
  }
  .xs\:top-5 {
    top: 32rem !important;
  }
  .xs\:top-6 {
    top: 36rem !important;
  }
  .xs\:top-7 {
    top: 42rem !important;
  }
  .xs\:top-8 {
    top: 48rem !important;
  }
  .xs\:top-9 {
    top: 56rem !important;
  }
  .xs\:top-10 {
    top: 64rem !important;
  }
  .xs\:top-11 {
    top: 72rem !important;
  }
  .xs\:top-1em {
    top: 16em !important;
  }
  .xs\:top-2em {
    top: 20em !important;
  }
  .xs\:top-3em {
    top: 24em !important;
  }
  .xs\:top-4em {
    top: 28em !important;
  }
  .xs\:top-5em {
    top: 32em !important;
  }
  .xs\:top-6em {
    top: 36em !important;
  }
  .xs\:top-7em {
    top: 42em !important;
  }
  .xs\:top-8em {
    top: 48em !important;
  }
  .xs\:top-9em {
    top: 56em !important;
  }
  .xs\:top-10em {
    top: 64em !important;
  }
  .xs\:top-11em {
    top: 72em !important;
  }
  .xs\:top-1\/6 {
    top: 16.666666% !important;
  }
  .xs\:top-1\/4 {
    top: 25% !important;
  }
  .xs\:top-2\/7 {
    top: 28.57142857% !important;
  }
  .xs\:top-1\/3 {
    top: 33.333333% !important;
  }
  .xs\:top-1\/5 {
    top: 20% !important;
  }
  .xs\:top-2\/5 {
    top: 40% !important;
  }
  .xs\:top-3\/5 {
    top: 60% !important;
  }
  .xs\:top-4\/5 {
    top: 80% !important;
  }
  .xs\:top-1\/2 {
    top: 50% !important;
  }
  .xs\:top-1\/12 {
    top: 8.333333% !important;
  }
  .xs\:top-5\/12 {
    top: 41.6666666% !important;
  }
  .xs\:top-7\/12 {
    top: 58.333333% !important;
  }
  .xs\:top-11\/12 {
    top: 91.6666666% !important;
  }
  .xs\:top-2\/3 {
    top: 66.666667% !important;
  }
  .xs\:top-3\/4 {
    top: 75% !important;
  }
  .xs\:top-5\/6 {
    top: 83.3333333% !important;
  }
  .xs\:top-7\/6 {
    top: 116.6666666% !important;
  }
  .xs\:top-4\/3 {
    top: 133.3333333% !important;
  }
  .xs\:top-3\/2 {
    top: 150% !important;
  }
  .xs\:top-1\/24 {
    top: 4.1666666% !important;
  }
  .xs\:top-full {
    top: 100% !important;
  }
  .xs\:top-1\/6vh {
    top: 16.666666vh !important;
  }
  .xs\:top-1\/4vh {
    top: 25vh !important;
  }
  .xs\:top-1\/3vh {
    top: 33.333333vh !important;
  }
  .xs\:top-1\/2vh {
    top: 50vh !important;
  }
  .xs\:top-7\/12vh {
    top: 58.333333vh !important;
  }
  .xs\:top-2\/3vh {
    top: 66.666667vh !important;
  }
  .xs\:top-3\/4vh {
    top: 75vh !important;
  }
  .xs\:top-5\/6vh {
    top: 83.3333333vh !important;
  }
  .xs\:top-full-vh {
    top: 100vh !important;
  }
  .xs\:top--1 {
    top: -16rem !important;
  }
  .xs\:top--2 {
    top: -20rem !important;
  }
  .xs\:top--3 {
    top: -24rem !important;
  }
  .xs\:top--4 {
    top: -28rem !important;
  }
  .xs\:top--s1 {
    top: -0.25rem !important;
  }
  .xs\:top--s2 {
    top: -0.5rem !important;
  }
  .xs\:top--s3 {
    top: -0.75rem !important;
  }
  .xs\:top--s4 {
    top: -1rem !important;
  }
  .xs\:top--s5 {
    top: -1.25rem !important;
  }
  .xs\:top--s6 {
    top: -1.5rem !important;
  }
  .xs\:top--s8 {
    top: -2rem !important;
  }
  .xs\:top--s10 {
    top: -2.5rem !important;
  }
  .xs\:top--s12 {
    top: -3rem !important;
  }
  .xs\:top--s16 {
    top: -4rem !important;
  }
  .xs\:top--s18 {
    top: -4.5rem !important;
  }
  .xs\:top--s20 {
    top: -5rem !important;
  }
  .xs\:top--s24 {
    top: -6rem !important;
  }
  .xs\:top--s40em {
    top: -10em !important;
  }
  .xs\:top--s44em {
    top: -11em !important;
  }
  .xs\:top--s46em {
    top: -11.5em !important;
  }
  .xs\:top--s48em {
    top: -12em !important;
  }
  .xs\:top--s49em {
    top: -12.25em !important;
  }
  .xs\:top--s50em {
    top: -12.5em !important;
  }
  .xs\:top--s52em {
    top: -13em !important;
  }
  .xs\:top--s54em {
    top: -13.5em !important;
  }
  .xs\:top--s55em {
    top: -13.75em !important;
  }
  .xs\:top--s56em {
    top: -14em !important;
  }
  .xs\:top--s70em {
    top: -18em !important;
  }
  .xs\:top-s1 {
    top: 0.25rem !important;
  }
  .xs\:top-s2 {
    top: 0.5rem !important;
  }
  .xs\:top-s3 {
    top: 0.75rem !important;
  }
  .xs\:top-s4 {
    top: 1rem !important;
  }
  .xs\:top-s5 {
    top: 1.25rem !important;
  }
  .xs\:top-s6 {
    top: 1.5rem !important;
  }
  .xs\:top-s8 {
    top: 2rem !important;
  }
  .xs\:top-s10 {
    top: 2.5rem !important;
  }
  .xs\:top-s12 {
    top: 3rem !important;
  }
  .xs\:top-s16 {
    top: 4rem !important;
  }
  .xs\:top-s20 {
    top: 5rem !important;
  }
  .xs\:top-s24 {
    top: 6rem !important;
  }
  .xs\:top-s28 {
    top: 7rem !important;
  }
  .xs\:top-s32 {
    top: 8rem !important;
  }
  .xs\:top-s60 {
    top: 15rem !important;
  }
  .xs\:top-s70 {
    top: 17.5rem !important;
  }
  .xs\:top-s72 {
    top: 18rem !important;
  }
  .xs\:top-s40em {
    top: 10em !important;
  }
  .xs\:top-s44em {
    top: 11em !important;
  }
  .xs\:top-s46em {
    top: 11.5em !important;
  }
  .xs\:top-s48em {
    top: 12em !important;
  }
  .xs\:top-s49em {
    top: 12.25em !important;
  }
  .xs\:top-s50em {
    top: 12.5em !important;
  }
  .xs\:top-s52em {
    top: 13em !important;
  }
  .xs\:top-s54em {
    top: 13.5em !important;
  }
  .xs\:top-s55em {
    top: 13.75em !important;
  }
  .xs\:top-s56em {
    top: 14em !important;
  }
  .xs\:top-s70em {
    top: 18em !important;
  }
  .xs\:top-auto {
    top: auto !important;
  }
  .xs\:right-0 {
    right: 0 !important;
  }
  .xs\:right-1 {
    right: 16rem !important;
  }
  .xs\:right-2 {
    right: 20rem !important;
  }
  .xs\:right-3 {
    right: 24rem !important;
  }
  .xs\:right-4 {
    right: 28rem !important;
  }
  .xs\:right-5 {
    right: 32rem !important;
  }
  .xs\:right-6 {
    right: 36rem !important;
  }
  .xs\:right-7 {
    right: 42rem !important;
  }
  .xs\:right-8 {
    right: 48rem !important;
  }
  .xs\:right-9 {
    right: 56rem !important;
  }
  .xs\:right-10 {
    right: 64rem !important;
  }
  .xs\:right-11 {
    right: 72rem !important;
  }
  .xs\:right-1em {
    right: 16em !important;
  }
  .xs\:right-2em {
    right: 20em !important;
  }
  .xs\:right-3em {
    right: 24em !important;
  }
  .xs\:right-4em {
    right: 28em !important;
  }
  .xs\:right-5em {
    right: 32em !important;
  }
  .xs\:right-6em {
    right: 36em !important;
  }
  .xs\:right-7em {
    right: 42em !important;
  }
  .xs\:right-8em {
    right: 48em !important;
  }
  .xs\:right-9em {
    right: 56em !important;
  }
  .xs\:right-10em {
    right: 64em !important;
  }
  .xs\:right-11em {
    right: 72em !important;
  }
  .xs\:right-1\/6 {
    right: 16.666666% !important;
  }
  .xs\:right-1\/4 {
    right: 25% !important;
  }
  .xs\:right-2\/7 {
    right: 28.57142857% !important;
  }
  .xs\:right-1\/3 {
    right: 33.333333% !important;
  }
  .xs\:right-1\/5 {
    right: 20% !important;
  }
  .xs\:right-2\/5 {
    right: 40% !important;
  }
  .xs\:right-3\/5 {
    right: 60% !important;
  }
  .xs\:right-4\/5 {
    right: 80% !important;
  }
  .xs\:right-1\/2 {
    right: 50% !important;
  }
  .xs\:right-1\/12 {
    right: 8.333333% !important;
  }
  .xs\:right-5\/12 {
    right: 41.6666666% !important;
  }
  .xs\:right-7\/12 {
    right: 58.333333% !important;
  }
  .xs\:right-11\/12 {
    right: 91.6666666% !important;
  }
  .xs\:right-2\/3 {
    right: 66.666667% !important;
  }
  .xs\:right-3\/4 {
    right: 75% !important;
  }
  .xs\:right-5\/6 {
    right: 83.3333333% !important;
  }
  .xs\:right-7\/6 {
    right: 116.6666666% !important;
  }
  .xs\:right-4\/3 {
    right: 133.3333333% !important;
  }
  .xs\:right-3\/2 {
    right: 150% !important;
  }
  .xs\:right-1\/24 {
    right: 4.1666666% !important;
  }
  .xs\:right-full {
    right: 100% !important;
  }
  .xs\:right-1\/6vh {
    right: 16.666666vh !important;
  }
  .xs\:right-1\/4vh {
    right: 25vh !important;
  }
  .xs\:right-1\/3vh {
    right: 33.333333vh !important;
  }
  .xs\:right-1\/2vh {
    right: 50vh !important;
  }
  .xs\:right-7\/12vh {
    right: 58.333333vh !important;
  }
  .xs\:right-2\/3vh {
    right: 66.666667vh !important;
  }
  .xs\:right-3\/4vh {
    right: 75vh !important;
  }
  .xs\:right-5\/6vh {
    right: 83.3333333vh !important;
  }
  .xs\:right-full-vh {
    right: 100vh !important;
  }
  .xs\:right--1 {
    right: -16rem !important;
  }
  .xs\:right--2 {
    right: -20rem !important;
  }
  .xs\:right--3 {
    right: -24rem !important;
  }
  .xs\:right--4 {
    right: -28rem !important;
  }
  .xs\:right--s1 {
    right: -0.25rem !important;
  }
  .xs\:right--s2 {
    right: -0.5rem !important;
  }
  .xs\:right--s3 {
    right: -0.75rem !important;
  }
  .xs\:right--s4 {
    right: -1rem !important;
  }
  .xs\:right--s5 {
    right: -1.25rem !important;
  }
  .xs\:right--s6 {
    right: -1.5rem !important;
  }
  .xs\:right--s8 {
    right: -2rem !important;
  }
  .xs\:right--s10 {
    right: -2.5rem !important;
  }
  .xs\:right--s12 {
    right: -3rem !important;
  }
  .xs\:right--s16 {
    right: -4rem !important;
  }
  .xs\:right--s18 {
    right: -4.5rem !important;
  }
  .xs\:right--s20 {
    right: -5rem !important;
  }
  .xs\:right--s24 {
    right: -6rem !important;
  }
  .xs\:right--s40em {
    right: -10em !important;
  }
  .xs\:right--s44em {
    right: -11em !important;
  }
  .xs\:right--s46em {
    right: -11.5em !important;
  }
  .xs\:right--s48em {
    right: -12em !important;
  }
  .xs\:right--s49em {
    right: -12.25em !important;
  }
  .xs\:right--s50em {
    right: -12.5em !important;
  }
  .xs\:right--s52em {
    right: -13em !important;
  }
  .xs\:right--s54em {
    right: -13.5em !important;
  }
  .xs\:right--s55em {
    right: -13.75em !important;
  }
  .xs\:right--s56em {
    right: -14em !important;
  }
  .xs\:right--s70em {
    right: -18em !important;
  }
  .xs\:right-s1 {
    right: 0.25rem !important;
  }
  .xs\:right-s2 {
    right: 0.5rem !important;
  }
  .xs\:right-s3 {
    right: 0.75rem !important;
  }
  .xs\:right-s4 {
    right: 1rem !important;
  }
  .xs\:right-s5 {
    right: 1.25rem !important;
  }
  .xs\:right-s6 {
    right: 1.5rem !important;
  }
  .xs\:right-s8 {
    right: 2rem !important;
  }
  .xs\:right-s10 {
    right: 2.5rem !important;
  }
  .xs\:right-s12 {
    right: 3rem !important;
  }
  .xs\:right-s16 {
    right: 4rem !important;
  }
  .xs\:right-s20 {
    right: 5rem !important;
  }
  .xs\:right-s24 {
    right: 6rem !important;
  }
  .xs\:right-s28 {
    right: 7rem !important;
  }
  .xs\:right-s32 {
    right: 8rem !important;
  }
  .xs\:right-s60 {
    right: 15rem !important;
  }
  .xs\:right-s70 {
    right: 17.5rem !important;
  }
  .xs\:right-s72 {
    right: 18rem !important;
  }
  .xs\:right-s40em {
    right: 10em !important;
  }
  .xs\:right-s44em {
    right: 11em !important;
  }
  .xs\:right-s46em {
    right: 11.5em !important;
  }
  .xs\:right-s48em {
    right: 12em !important;
  }
  .xs\:right-s49em {
    right: 12.25em !important;
  }
  .xs\:right-s50em {
    right: 12.5em !important;
  }
  .xs\:right-s52em {
    right: 13em !important;
  }
  .xs\:right-s54em {
    right: 13.5em !important;
  }
  .xs\:right-s55em {
    right: 13.75em !important;
  }
  .xs\:right-s56em {
    right: 14em !important;
  }
  .xs\:right-s70em {
    right: 18em !important;
  }
  .xs\:right-auto {
    right: auto !important;
  }
  .xs\:bottom-0 {
    bottom: 0 !important;
  }
  .xs\:bottom-1 {
    bottom: 16rem !important;
  }
  .xs\:bottom-2 {
    bottom: 20rem !important;
  }
  .xs\:bottom-3 {
    bottom: 24rem !important;
  }
  .xs\:bottom-4 {
    bottom: 28rem !important;
  }
  .xs\:bottom-5 {
    bottom: 32rem !important;
  }
  .xs\:bottom-6 {
    bottom: 36rem !important;
  }
  .xs\:bottom-7 {
    bottom: 42rem !important;
  }
  .xs\:bottom-8 {
    bottom: 48rem !important;
  }
  .xs\:bottom-9 {
    bottom: 56rem !important;
  }
  .xs\:bottom-10 {
    bottom: 64rem !important;
  }
  .xs\:bottom-11 {
    bottom: 72rem !important;
  }
  .xs\:bottom-1em {
    bottom: 16em !important;
  }
  .xs\:bottom-2em {
    bottom: 20em !important;
  }
  .xs\:bottom-3em {
    bottom: 24em !important;
  }
  .xs\:bottom-4em {
    bottom: 28em !important;
  }
  .xs\:bottom-5em {
    bottom: 32em !important;
  }
  .xs\:bottom-6em {
    bottom: 36em !important;
  }
  .xs\:bottom-7em {
    bottom: 42em !important;
  }
  .xs\:bottom-8em {
    bottom: 48em !important;
  }
  .xs\:bottom-9em {
    bottom: 56em !important;
  }
  .xs\:bottom-10em {
    bottom: 64em !important;
  }
  .xs\:bottom-11em {
    bottom: 72em !important;
  }
  .xs\:bottom-1\/6 {
    bottom: 16.666666% !important;
  }
  .xs\:bottom-1\/4 {
    bottom: 25% !important;
  }
  .xs\:bottom-2\/7 {
    bottom: 28.57142857% !important;
  }
  .xs\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }
  .xs\:bottom-1\/5 {
    bottom: 20% !important;
  }
  .xs\:bottom-2\/5 {
    bottom: 40% !important;
  }
  .xs\:bottom-3\/5 {
    bottom: 60% !important;
  }
  .xs\:bottom-4\/5 {
    bottom: 80% !important;
  }
  .xs\:bottom-1\/2 {
    bottom: 50% !important;
  }
  .xs\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }
  .xs\:bottom-5\/12 {
    bottom: 41.6666666% !important;
  }
  .xs\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }
  .xs\:bottom-11\/12 {
    bottom: 91.6666666% !important;
  }
  .xs\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }
  .xs\:bottom-3\/4 {
    bottom: 75% !important;
  }
  .xs\:bottom-5\/6 {
    bottom: 83.3333333% !important;
  }
  .xs\:bottom-7\/6 {
    bottom: 116.6666666% !important;
  }
  .xs\:bottom-4\/3 {
    bottom: 133.3333333% !important;
  }
  .xs\:bottom-3\/2 {
    bottom: 150% !important;
  }
  .xs\:bottom-1\/24 {
    bottom: 4.1666666% !important;
  }
  .xs\:bottom-full {
    bottom: 100% !important;
  }
  .xs\:bottom-1\/6vh {
    bottom: 16.666666vh !important;
  }
  .xs\:bottom-1\/4vh {
    bottom: 25vh !important;
  }
  .xs\:bottom-1\/3vh {
    bottom: 33.333333vh !important;
  }
  .xs\:bottom-1\/2vh {
    bottom: 50vh !important;
  }
  .xs\:bottom-7\/12vh {
    bottom: 58.333333vh !important;
  }
  .xs\:bottom-2\/3vh {
    bottom: 66.666667vh !important;
  }
  .xs\:bottom-3\/4vh {
    bottom: 75vh !important;
  }
  .xs\:bottom-5\/6vh {
    bottom: 83.3333333vh !important;
  }
  .xs\:bottom-full-vh {
    bottom: 100vh !important;
  }
  .xs\:bottom--1 {
    bottom: -16rem !important;
  }
  .xs\:bottom--2 {
    bottom: -20rem !important;
  }
  .xs\:bottom--3 {
    bottom: -24rem !important;
  }
  .xs\:bottom--4 {
    bottom: -28rem !important;
  }
  .xs\:bottom--s1 {
    bottom: -0.25rem !important;
  }
  .xs\:bottom--s2 {
    bottom: -0.5rem !important;
  }
  .xs\:bottom--s3 {
    bottom: -0.75rem !important;
  }
  .xs\:bottom--s4 {
    bottom: -1rem !important;
  }
  .xs\:bottom--s5 {
    bottom: -1.25rem !important;
  }
  .xs\:bottom--s6 {
    bottom: -1.5rem !important;
  }
  .xs\:bottom--s8 {
    bottom: -2rem !important;
  }
  .xs\:bottom--s10 {
    bottom: -2.5rem !important;
  }
  .xs\:bottom--s12 {
    bottom: -3rem !important;
  }
  .xs\:bottom--s16 {
    bottom: -4rem !important;
  }
  .xs\:bottom--s18 {
    bottom: -4.5rem !important;
  }
  .xs\:bottom--s20 {
    bottom: -5rem !important;
  }
  .xs\:bottom--s24 {
    bottom: -6rem !important;
  }
  .xs\:bottom--s40em {
    bottom: -10em !important;
  }
  .xs\:bottom--s44em {
    bottom: -11em !important;
  }
  .xs\:bottom--s46em {
    bottom: -11.5em !important;
  }
  .xs\:bottom--s48em {
    bottom: -12em !important;
  }
  .xs\:bottom--s49em {
    bottom: -12.25em !important;
  }
  .xs\:bottom--s50em {
    bottom: -12.5em !important;
  }
  .xs\:bottom--s52em {
    bottom: -13em !important;
  }
  .xs\:bottom--s54em {
    bottom: -13.5em !important;
  }
  .xs\:bottom--s55em {
    bottom: -13.75em !important;
  }
  .xs\:bottom--s56em {
    bottom: -14em !important;
  }
  .xs\:bottom--s70em {
    bottom: -18em !important;
  }
  .xs\:bottom-s1 {
    bottom: 0.25rem !important;
  }
  .xs\:bottom-s2 {
    bottom: 0.5rem !important;
  }
  .xs\:bottom-s3 {
    bottom: 0.75rem !important;
  }
  .xs\:bottom-s4 {
    bottom: 1rem !important;
  }
  .xs\:bottom-s5 {
    bottom: 1.25rem !important;
  }
  .xs\:bottom-s6 {
    bottom: 1.5rem !important;
  }
  .xs\:bottom-s8 {
    bottom: 2rem !important;
  }
  .xs\:bottom-s10 {
    bottom: 2.5rem !important;
  }
  .xs\:bottom-s12 {
    bottom: 3rem !important;
  }
  .xs\:bottom-s16 {
    bottom: 4rem !important;
  }
  .xs\:bottom-s20 {
    bottom: 5rem !important;
  }
  .xs\:bottom-s24 {
    bottom: 6rem !important;
  }
  .xs\:bottom-s28 {
    bottom: 7rem !important;
  }
  .xs\:bottom-s32 {
    bottom: 8rem !important;
  }
  .xs\:bottom-s60 {
    bottom: 15rem !important;
  }
  .xs\:bottom-s70 {
    bottom: 17.5rem !important;
  }
  .xs\:bottom-s72 {
    bottom: 18rem !important;
  }
  .xs\:bottom-s40em {
    bottom: 10em !important;
  }
  .xs\:bottom-s44em {
    bottom: 11em !important;
  }
  .xs\:bottom-s46em {
    bottom: 11.5em !important;
  }
  .xs\:bottom-s48em {
    bottom: 12em !important;
  }
  .xs\:bottom-s49em {
    bottom: 12.25em !important;
  }
  .xs\:bottom-s50em {
    bottom: 12.5em !important;
  }
  .xs\:bottom-s52em {
    bottom: 13em !important;
  }
  .xs\:bottom-s54em {
    bottom: 13.5em !important;
  }
  .xs\:bottom-s55em {
    bottom: 13.75em !important;
  }
  .xs\:bottom-s56em {
    bottom: 14em !important;
  }
  .xs\:bottom-s70em {
    bottom: 18em !important;
  }
  .xs\:bottom-auto {
    bottom: auto !important;
  }
  .xs\:left-0 {
    left: 0 !important;
  }
  .xs\:left-1 {
    left: 16rem !important;
  }
  .xs\:left-2 {
    left: 20rem !important;
  }
  .xs\:left-3 {
    left: 24rem !important;
  }
  .xs\:left-4 {
    left: 28rem !important;
  }
  .xs\:left-5 {
    left: 32rem !important;
  }
  .xs\:left-6 {
    left: 36rem !important;
  }
  .xs\:left-7 {
    left: 42rem !important;
  }
  .xs\:left-8 {
    left: 48rem !important;
  }
  .xs\:left-9 {
    left: 56rem !important;
  }
  .xs\:left-10 {
    left: 64rem !important;
  }
  .xs\:left-11 {
    left: 72rem !important;
  }
  .xs\:left-1em {
    left: 16em !important;
  }
  .xs\:left-2em {
    left: 20em !important;
  }
  .xs\:left-3em {
    left: 24em !important;
  }
  .xs\:left-4em {
    left: 28em !important;
  }
  .xs\:left-5em {
    left: 32em !important;
  }
  .xs\:left-6em {
    left: 36em !important;
  }
  .xs\:left-7em {
    left: 42em !important;
  }
  .xs\:left-8em {
    left: 48em !important;
  }
  .xs\:left-9em {
    left: 56em !important;
  }
  .xs\:left-10em {
    left: 64em !important;
  }
  .xs\:left-11em {
    left: 72em !important;
  }
  .xs\:left-1\/6 {
    left: 16.666666% !important;
  }
  .xs\:left-1\/4 {
    left: 25% !important;
  }
  .xs\:left-2\/7 {
    left: 28.57142857% !important;
  }
  .xs\:left-1\/3 {
    left: 33.333333% !important;
  }
  .xs\:left-1\/5 {
    left: 20% !important;
  }
  .xs\:left-2\/5 {
    left: 40% !important;
  }
  .xs\:left-3\/5 {
    left: 60% !important;
  }
  .xs\:left-4\/5 {
    left: 80% !important;
  }
  .xs\:left-1\/2 {
    left: 50% !important;
  }
  .xs\:left-1\/12 {
    left: 8.333333% !important;
  }
  .xs\:left-5\/12 {
    left: 41.6666666% !important;
  }
  .xs\:left-7\/12 {
    left: 58.333333% !important;
  }
  .xs\:left-11\/12 {
    left: 91.6666666% !important;
  }
  .xs\:left-2\/3 {
    left: 66.666667% !important;
  }
  .xs\:left-3\/4 {
    left: 75% !important;
  }
  .xs\:left-5\/6 {
    left: 83.3333333% !important;
  }
  .xs\:left-7\/6 {
    left: 116.6666666% !important;
  }
  .xs\:left-4\/3 {
    left: 133.3333333% !important;
  }
  .xs\:left-3\/2 {
    left: 150% !important;
  }
  .xs\:left-1\/24 {
    left: 4.1666666% !important;
  }
  .xs\:left-full {
    left: 100% !important;
  }
  .xs\:left-1\/6vh {
    left: 16.666666vh !important;
  }
  .xs\:left-1\/4vh {
    left: 25vh !important;
  }
  .xs\:left-1\/3vh {
    left: 33.333333vh !important;
  }
  .xs\:left-1\/2vh {
    left: 50vh !important;
  }
  .xs\:left-7\/12vh {
    left: 58.333333vh !important;
  }
  .xs\:left-2\/3vh {
    left: 66.666667vh !important;
  }
  .xs\:left-3\/4vh {
    left: 75vh !important;
  }
  .xs\:left-5\/6vh {
    left: 83.3333333vh !important;
  }
  .xs\:left-full-vh {
    left: 100vh !important;
  }
  .xs\:left--1 {
    left: -16rem !important;
  }
  .xs\:left--2 {
    left: -20rem !important;
  }
  .xs\:left--3 {
    left: -24rem !important;
  }
  .xs\:left--4 {
    left: -28rem !important;
  }
  .xs\:left--s1 {
    left: -0.25rem !important;
  }
  .xs\:left--s2 {
    left: -0.5rem !important;
  }
  .xs\:left--s3 {
    left: -0.75rem !important;
  }
  .xs\:left--s4 {
    left: -1rem !important;
  }
  .xs\:left--s5 {
    left: -1.25rem !important;
  }
  .xs\:left--s6 {
    left: -1.5rem !important;
  }
  .xs\:left--s8 {
    left: -2rem !important;
  }
  .xs\:left--s10 {
    left: -2.5rem !important;
  }
  .xs\:left--s12 {
    left: -3rem !important;
  }
  .xs\:left--s16 {
    left: -4rem !important;
  }
  .xs\:left--s18 {
    left: -4.5rem !important;
  }
  .xs\:left--s20 {
    left: -5rem !important;
  }
  .xs\:left--s24 {
    left: -6rem !important;
  }
  .xs\:left--s40em {
    left: -10em !important;
  }
  .xs\:left--s44em {
    left: -11em !important;
  }
  .xs\:left--s46em {
    left: -11.5em !important;
  }
  .xs\:left--s48em {
    left: -12em !important;
  }
  .xs\:left--s49em {
    left: -12.25em !important;
  }
  .xs\:left--s50em {
    left: -12.5em !important;
  }
  .xs\:left--s52em {
    left: -13em !important;
  }
  .xs\:left--s54em {
    left: -13.5em !important;
  }
  .xs\:left--s55em {
    left: -13.75em !important;
  }
  .xs\:left--s56em {
    left: -14em !important;
  }
  .xs\:left--s70em {
    left: -18em !important;
  }
  .xs\:left-s1 {
    left: 0.25rem !important;
  }
  .xs\:left-s2 {
    left: 0.5rem !important;
  }
  .xs\:left-s3 {
    left: 0.75rem !important;
  }
  .xs\:left-s4 {
    left: 1rem !important;
  }
  .xs\:left-s5 {
    left: 1.25rem !important;
  }
  .xs\:left-s6 {
    left: 1.5rem !important;
  }
  .xs\:left-s8 {
    left: 2rem !important;
  }
  .xs\:left-s10 {
    left: 2.5rem !important;
  }
  .xs\:left-s12 {
    left: 3rem !important;
  }
  .xs\:left-s16 {
    left: 4rem !important;
  }
  .xs\:left-s20 {
    left: 5rem !important;
  }
  .xs\:left-s24 {
    left: 6rem !important;
  }
  .xs\:left-s28 {
    left: 7rem !important;
  }
  .xs\:left-s32 {
    left: 8rem !important;
  }
  .xs\:left-s60 {
    left: 15rem !important;
  }
  .xs\:left-s70 {
    left: 17.5rem !important;
  }
  .xs\:left-s72 {
    left: 18rem !important;
  }
  .xs\:left-s40em {
    left: 10em !important;
  }
  .xs\:left-s44em {
    left: 11em !important;
  }
  .xs\:left-s46em {
    left: 11.5em !important;
  }
  .xs\:left-s48em {
    left: 12em !important;
  }
  .xs\:left-s49em {
    left: 12.25em !important;
  }
  .xs\:left-s50em {
    left: 12.5em !important;
  }
  .xs\:left-s52em {
    left: 13em !important;
  }
  .xs\:left-s54em {
    left: 13.5em !important;
  }
  .xs\:left-s55em {
    left: 13.75em !important;
  }
  .xs\:left-s56em {
    left: 14em !important;
  }
  .xs\:left-s70em {
    left: 18em !important;
  }
  .xs\:left-auto {
    left: auto !important;
  }
  .xs\:inset-0 {
    inset: 0 !important;
  }
  .xs\:inset-1 {
    inset: 16rem !important;
  }
  .xs\:inset-2 {
    inset: 20rem !important;
  }
  .xs\:inset-3 {
    inset: 24rem !important;
  }
  .xs\:inset-4 {
    inset: 28rem !important;
  }
  .xs\:inset-5 {
    inset: 32rem !important;
  }
  .xs\:inset-6 {
    inset: 36rem !important;
  }
  .xs\:inset-7 {
    inset: 42rem !important;
  }
  .xs\:inset-8 {
    inset: 48rem !important;
  }
  .xs\:inset-9 {
    inset: 56rem !important;
  }
  .xs\:inset-10 {
    inset: 64rem !important;
  }
  .xs\:inset-11 {
    inset: 72rem !important;
  }
  .xs\:inset-1em {
    inset: 16em !important;
  }
  .xs\:inset-2em {
    inset: 20em !important;
  }
  .xs\:inset-3em {
    inset: 24em !important;
  }
  .xs\:inset-4em {
    inset: 28em !important;
  }
  .xs\:inset-5em {
    inset: 32em !important;
  }
  .xs\:inset-6em {
    inset: 36em !important;
  }
  .xs\:inset-7em {
    inset: 42em !important;
  }
  .xs\:inset-8em {
    inset: 48em !important;
  }
  .xs\:inset-9em {
    inset: 56em !important;
  }
  .xs\:inset-10em {
    inset: 64em !important;
  }
  .xs\:inset-11em {
    inset: 72em !important;
  }
  .xs\:inset-1\/6 {
    inset: 16.666666% !important;
  }
  .xs\:inset-1\/4 {
    inset: 25% !important;
  }
  .xs\:inset-2\/7 {
    inset: 28.57142857% !important;
  }
  .xs\:inset-1\/3 {
    inset: 33.333333% !important;
  }
  .xs\:inset-1\/5 {
    inset: 20% !important;
  }
  .xs\:inset-2\/5 {
    inset: 40% !important;
  }
  .xs\:inset-3\/5 {
    inset: 60% !important;
  }
  .xs\:inset-4\/5 {
    inset: 80% !important;
  }
  .xs\:inset-1\/2 {
    inset: 50% !important;
  }
  .xs\:inset-1\/12 {
    inset: 8.333333% !important;
  }
  .xs\:inset-5\/12 {
    inset: 41.6666666% !important;
  }
  .xs\:inset-7\/12 {
    inset: 58.333333% !important;
  }
  .xs\:inset-11\/12 {
    inset: 91.6666666% !important;
  }
  .xs\:inset-2\/3 {
    inset: 66.666667% !important;
  }
  .xs\:inset-3\/4 {
    inset: 75% !important;
  }
  .xs\:inset-5\/6 {
    inset: 83.3333333% !important;
  }
  .xs\:inset-7\/6 {
    inset: 116.6666666% !important;
  }
  .xs\:inset-4\/3 {
    inset: 133.3333333% !important;
  }
  .xs\:inset-3\/2 {
    inset: 150% !important;
  }
  .xs\:inset-1\/24 {
    inset: 4.1666666% !important;
  }
  .xs\:inset-full {
    inset: 100% !important;
  }
  .xs\:inset-1\/6vh {
    inset: 16.666666vh !important;
  }
  .xs\:inset-1\/4vh {
    inset: 25vh !important;
  }
  .xs\:inset-1\/3vh {
    inset: 33.333333vh !important;
  }
  .xs\:inset-1\/2vh {
    inset: 50vh !important;
  }
  .xs\:inset-7\/12vh {
    inset: 58.333333vh !important;
  }
  .xs\:inset-2\/3vh {
    inset: 66.666667vh !important;
  }
  .xs\:inset-3\/4vh {
    inset: 75vh !important;
  }
  .xs\:inset-5\/6vh {
    inset: 83.3333333vh !important;
  }
  .xs\:inset-full-vh {
    inset: 100vh !important;
  }
  .xs\:inset--1 {
    inset: -16rem !important;
  }
  .xs\:inset--2 {
    inset: -20rem !important;
  }
  .xs\:inset--3 {
    inset: -24rem !important;
  }
  .xs\:inset--4 {
    inset: -28rem !important;
  }
  .xs\:inset--s1 {
    inset: -0.25rem !important;
  }
  .xs\:inset--s2 {
    inset: -0.5rem !important;
  }
  .xs\:inset--s3 {
    inset: -0.75rem !important;
  }
  .xs\:inset--s4 {
    inset: -1rem !important;
  }
  .xs\:inset--s5 {
    inset: -1.25rem !important;
  }
  .xs\:inset--s6 {
    inset: -1.5rem !important;
  }
  .xs\:inset--s8 {
    inset: -2rem !important;
  }
  .xs\:inset--s10 {
    inset: -2.5rem !important;
  }
  .xs\:inset--s12 {
    inset: -3rem !important;
  }
  .xs\:inset--s16 {
    inset: -4rem !important;
  }
  .xs\:inset--s18 {
    inset: -4.5rem !important;
  }
  .xs\:inset--s20 {
    inset: -5rem !important;
  }
  .xs\:inset--s24 {
    inset: -6rem !important;
  }
  .xs\:inset--s40em {
    inset: -10em !important;
  }
  .xs\:inset--s44em {
    inset: -11em !important;
  }
  .xs\:inset--s46em {
    inset: -11.5em !important;
  }
  .xs\:inset--s48em {
    inset: -12em !important;
  }
  .xs\:inset--s49em {
    inset: -12.25em !important;
  }
  .xs\:inset--s50em {
    inset: -12.5em !important;
  }
  .xs\:inset--s52em {
    inset: -13em !important;
  }
  .xs\:inset--s54em {
    inset: -13.5em !important;
  }
  .xs\:inset--s55em {
    inset: -13.75em !important;
  }
  .xs\:inset--s56em {
    inset: -14em !important;
  }
  .xs\:inset--s70em {
    inset: -18em !important;
  }
  .xs\:inset-s1 {
    inset: 0.25rem !important;
  }
  .xs\:inset-s2 {
    inset: 0.5rem !important;
  }
  .xs\:inset-s3 {
    inset: 0.75rem !important;
  }
  .xs\:inset-s4 {
    inset: 1rem !important;
  }
  .xs\:inset-s5 {
    inset: 1.25rem !important;
  }
  .xs\:inset-s6 {
    inset: 1.5rem !important;
  }
  .xs\:inset-s8 {
    inset: 2rem !important;
  }
  .xs\:inset-s10 {
    inset: 2.5rem !important;
  }
  .xs\:inset-s12 {
    inset: 3rem !important;
  }
  .xs\:inset-s16 {
    inset: 4rem !important;
  }
  .xs\:inset-s20 {
    inset: 5rem !important;
  }
  .xs\:inset-s24 {
    inset: 6rem !important;
  }
  .xs\:inset-s28 {
    inset: 7rem !important;
  }
  .xs\:inset-s32 {
    inset: 8rem !important;
  }
  .xs\:inset-s60 {
    inset: 15rem !important;
  }
  .xs\:inset-s70 {
    inset: 17.5rem !important;
  }
  .xs\:inset-s72 {
    inset: 18rem !important;
  }
  .xs\:inset-s40em {
    inset: 10em !important;
  }
  .xs\:inset-s44em {
    inset: 11em !important;
  }
  .xs\:inset-s46em {
    inset: 11.5em !important;
  }
  .xs\:inset-s48em {
    inset: 12em !important;
  }
  .xs\:inset-s49em {
    inset: 12.25em !important;
  }
  .xs\:inset-s50em {
    inset: 12.5em !important;
  }
  .xs\:inset-s52em {
    inset: 13em !important;
  }
  .xs\:inset-s54em {
    inset: 13.5em !important;
  }
  .xs\:inset-s55em {
    inset: 13.75em !important;
  }
  .xs\:inset-s56em {
    inset: 14em !important;
  }
  .xs\:inset-s70em {
    inset: 18em !important;
  }
  .xs\:inset-auto {
    inset: auto !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:top-0 {
    top: 0 !important;
  }
  .sm\:top-1 {
    top: 16rem !important;
  }
  .sm\:top-2 {
    top: 20rem !important;
  }
  .sm\:top-3 {
    top: 24rem !important;
  }
  .sm\:top-4 {
    top: 28rem !important;
  }
  .sm\:top-5 {
    top: 32rem !important;
  }
  .sm\:top-6 {
    top: 36rem !important;
  }
  .sm\:top-7 {
    top: 42rem !important;
  }
  .sm\:top-8 {
    top: 48rem !important;
  }
  .sm\:top-9 {
    top: 56rem !important;
  }
  .sm\:top-10 {
    top: 64rem !important;
  }
  .sm\:top-11 {
    top: 72rem !important;
  }
  .sm\:top-1em {
    top: 16em !important;
  }
  .sm\:top-2em {
    top: 20em !important;
  }
  .sm\:top-3em {
    top: 24em !important;
  }
  .sm\:top-4em {
    top: 28em !important;
  }
  .sm\:top-5em {
    top: 32em !important;
  }
  .sm\:top-6em {
    top: 36em !important;
  }
  .sm\:top-7em {
    top: 42em !important;
  }
  .sm\:top-8em {
    top: 48em !important;
  }
  .sm\:top-9em {
    top: 56em !important;
  }
  .sm\:top-10em {
    top: 64em !important;
  }
  .sm\:top-11em {
    top: 72em !important;
  }
  .sm\:top-1\/6 {
    top: 16.666666% !important;
  }
  .sm\:top-1\/4 {
    top: 25% !important;
  }
  .sm\:top-2\/7 {
    top: 28.57142857% !important;
  }
  .sm\:top-1\/3 {
    top: 33.333333% !important;
  }
  .sm\:top-1\/5 {
    top: 20% !important;
  }
  .sm\:top-2\/5 {
    top: 40% !important;
  }
  .sm\:top-3\/5 {
    top: 60% !important;
  }
  .sm\:top-4\/5 {
    top: 80% !important;
  }
  .sm\:top-1\/2 {
    top: 50% !important;
  }
  .sm\:top-1\/12 {
    top: 8.333333% !important;
  }
  .sm\:top-5\/12 {
    top: 41.6666666% !important;
  }
  .sm\:top-7\/12 {
    top: 58.333333% !important;
  }
  .sm\:top-11\/12 {
    top: 91.6666666% !important;
  }
  .sm\:top-2\/3 {
    top: 66.666667% !important;
  }
  .sm\:top-3\/4 {
    top: 75% !important;
  }
  .sm\:top-5\/6 {
    top: 83.3333333% !important;
  }
  .sm\:top-7\/6 {
    top: 116.6666666% !important;
  }
  .sm\:top-4\/3 {
    top: 133.3333333% !important;
  }
  .sm\:top-3\/2 {
    top: 150% !important;
  }
  .sm\:top-1\/24 {
    top: 4.1666666% !important;
  }
  .sm\:top-full {
    top: 100% !important;
  }
  .sm\:top-1\/6vh {
    top: 16.666666vh !important;
  }
  .sm\:top-1\/4vh {
    top: 25vh !important;
  }
  .sm\:top-1\/3vh {
    top: 33.333333vh !important;
  }
  .sm\:top-1\/2vh {
    top: 50vh !important;
  }
  .sm\:top-7\/12vh {
    top: 58.333333vh !important;
  }
  .sm\:top-2\/3vh {
    top: 66.666667vh !important;
  }
  .sm\:top-3\/4vh {
    top: 75vh !important;
  }
  .sm\:top-5\/6vh {
    top: 83.3333333vh !important;
  }
  .sm\:top-full-vh {
    top: 100vh !important;
  }
  .sm\:top--1 {
    top: -16rem !important;
  }
  .sm\:top--2 {
    top: -20rem !important;
  }
  .sm\:top--3 {
    top: -24rem !important;
  }
  .sm\:top--4 {
    top: -28rem !important;
  }
  .sm\:top--s1 {
    top: -0.25rem !important;
  }
  .sm\:top--s2 {
    top: -0.5rem !important;
  }
  .sm\:top--s3 {
    top: -0.75rem !important;
  }
  .sm\:top--s4 {
    top: -1rem !important;
  }
  .sm\:top--s5 {
    top: -1.25rem !important;
  }
  .sm\:top--s6 {
    top: -1.5rem !important;
  }
  .sm\:top--s8 {
    top: -2rem !important;
  }
  .sm\:top--s10 {
    top: -2.5rem !important;
  }
  .sm\:top--s12 {
    top: -3rem !important;
  }
  .sm\:top--s16 {
    top: -4rem !important;
  }
  .sm\:top--s18 {
    top: -4.5rem !important;
  }
  .sm\:top--s20 {
    top: -5rem !important;
  }
  .sm\:top--s24 {
    top: -6rem !important;
  }
  .sm\:top--s40em {
    top: -10em !important;
  }
  .sm\:top--s44em {
    top: -11em !important;
  }
  .sm\:top--s46em {
    top: -11.5em !important;
  }
  .sm\:top--s48em {
    top: -12em !important;
  }
  .sm\:top--s49em {
    top: -12.25em !important;
  }
  .sm\:top--s50em {
    top: -12.5em !important;
  }
  .sm\:top--s52em {
    top: -13em !important;
  }
  .sm\:top--s54em {
    top: -13.5em !important;
  }
  .sm\:top--s55em {
    top: -13.75em !important;
  }
  .sm\:top--s56em {
    top: -14em !important;
  }
  .sm\:top--s70em {
    top: -18em !important;
  }
  .sm\:top-s1 {
    top: 0.25rem !important;
  }
  .sm\:top-s2 {
    top: 0.5rem !important;
  }
  .sm\:top-s3 {
    top: 0.75rem !important;
  }
  .sm\:top-s4 {
    top: 1rem !important;
  }
  .sm\:top-s5 {
    top: 1.25rem !important;
  }
  .sm\:top-s6 {
    top: 1.5rem !important;
  }
  .sm\:top-s8 {
    top: 2rem !important;
  }
  .sm\:top-s10 {
    top: 2.5rem !important;
  }
  .sm\:top-s12 {
    top: 3rem !important;
  }
  .sm\:top-s16 {
    top: 4rem !important;
  }
  .sm\:top-s20 {
    top: 5rem !important;
  }
  .sm\:top-s24 {
    top: 6rem !important;
  }
  .sm\:top-s28 {
    top: 7rem !important;
  }
  .sm\:top-s32 {
    top: 8rem !important;
  }
  .sm\:top-s60 {
    top: 15rem !important;
  }
  .sm\:top-s70 {
    top: 17.5rem !important;
  }
  .sm\:top-s72 {
    top: 18rem !important;
  }
  .sm\:top-s40em {
    top: 10em !important;
  }
  .sm\:top-s44em {
    top: 11em !important;
  }
  .sm\:top-s46em {
    top: 11.5em !important;
  }
  .sm\:top-s48em {
    top: 12em !important;
  }
  .sm\:top-s49em {
    top: 12.25em !important;
  }
  .sm\:top-s50em {
    top: 12.5em !important;
  }
  .sm\:top-s52em {
    top: 13em !important;
  }
  .sm\:top-s54em {
    top: 13.5em !important;
  }
  .sm\:top-s55em {
    top: 13.75em !important;
  }
  .sm\:top-s56em {
    top: 14em !important;
  }
  .sm\:top-s70em {
    top: 18em !important;
  }
  .sm\:top-auto {
    top: auto !important;
  }
  .sm\:right-0 {
    right: 0 !important;
  }
  .sm\:right-1 {
    right: 16rem !important;
  }
  .sm\:right-2 {
    right: 20rem !important;
  }
  .sm\:right-3 {
    right: 24rem !important;
  }
  .sm\:right-4 {
    right: 28rem !important;
  }
  .sm\:right-5 {
    right: 32rem !important;
  }
  .sm\:right-6 {
    right: 36rem !important;
  }
  .sm\:right-7 {
    right: 42rem !important;
  }
  .sm\:right-8 {
    right: 48rem !important;
  }
  .sm\:right-9 {
    right: 56rem !important;
  }
  .sm\:right-10 {
    right: 64rem !important;
  }
  .sm\:right-11 {
    right: 72rem !important;
  }
  .sm\:right-1em {
    right: 16em !important;
  }
  .sm\:right-2em {
    right: 20em !important;
  }
  .sm\:right-3em {
    right: 24em !important;
  }
  .sm\:right-4em {
    right: 28em !important;
  }
  .sm\:right-5em {
    right: 32em !important;
  }
  .sm\:right-6em {
    right: 36em !important;
  }
  .sm\:right-7em {
    right: 42em !important;
  }
  .sm\:right-8em {
    right: 48em !important;
  }
  .sm\:right-9em {
    right: 56em !important;
  }
  .sm\:right-10em {
    right: 64em !important;
  }
  .sm\:right-11em {
    right: 72em !important;
  }
  .sm\:right-1\/6 {
    right: 16.666666% !important;
  }
  .sm\:right-1\/4 {
    right: 25% !important;
  }
  .sm\:right-2\/7 {
    right: 28.57142857% !important;
  }
  .sm\:right-1\/3 {
    right: 33.333333% !important;
  }
  .sm\:right-1\/5 {
    right: 20% !important;
  }
  .sm\:right-2\/5 {
    right: 40% !important;
  }
  .sm\:right-3\/5 {
    right: 60% !important;
  }
  .sm\:right-4\/5 {
    right: 80% !important;
  }
  .sm\:right-1\/2 {
    right: 50% !important;
  }
  .sm\:right-1\/12 {
    right: 8.333333% !important;
  }
  .sm\:right-5\/12 {
    right: 41.6666666% !important;
  }
  .sm\:right-7\/12 {
    right: 58.333333% !important;
  }
  .sm\:right-11\/12 {
    right: 91.6666666% !important;
  }
  .sm\:right-2\/3 {
    right: 66.666667% !important;
  }
  .sm\:right-3\/4 {
    right: 75% !important;
  }
  .sm\:right-5\/6 {
    right: 83.3333333% !important;
  }
  .sm\:right-7\/6 {
    right: 116.6666666% !important;
  }
  .sm\:right-4\/3 {
    right: 133.3333333% !important;
  }
  .sm\:right-3\/2 {
    right: 150% !important;
  }
  .sm\:right-1\/24 {
    right: 4.1666666% !important;
  }
  .sm\:right-full {
    right: 100% !important;
  }
  .sm\:right-1\/6vh {
    right: 16.666666vh !important;
  }
  .sm\:right-1\/4vh {
    right: 25vh !important;
  }
  .sm\:right-1\/3vh {
    right: 33.333333vh !important;
  }
  .sm\:right-1\/2vh {
    right: 50vh !important;
  }
  .sm\:right-7\/12vh {
    right: 58.333333vh !important;
  }
  .sm\:right-2\/3vh {
    right: 66.666667vh !important;
  }
  .sm\:right-3\/4vh {
    right: 75vh !important;
  }
  .sm\:right-5\/6vh {
    right: 83.3333333vh !important;
  }
  .sm\:right-full-vh {
    right: 100vh !important;
  }
  .sm\:right--1 {
    right: -16rem !important;
  }
  .sm\:right--2 {
    right: -20rem !important;
  }
  .sm\:right--3 {
    right: -24rem !important;
  }
  .sm\:right--4 {
    right: -28rem !important;
  }
  .sm\:right--s1 {
    right: -0.25rem !important;
  }
  .sm\:right--s2 {
    right: -0.5rem !important;
  }
  .sm\:right--s3 {
    right: -0.75rem !important;
  }
  .sm\:right--s4 {
    right: -1rem !important;
  }
  .sm\:right--s5 {
    right: -1.25rem !important;
  }
  .sm\:right--s6 {
    right: -1.5rem !important;
  }
  .sm\:right--s8 {
    right: -2rem !important;
  }
  .sm\:right--s10 {
    right: -2.5rem !important;
  }
  .sm\:right--s12 {
    right: -3rem !important;
  }
  .sm\:right--s16 {
    right: -4rem !important;
  }
  .sm\:right--s18 {
    right: -4.5rem !important;
  }
  .sm\:right--s20 {
    right: -5rem !important;
  }
  .sm\:right--s24 {
    right: -6rem !important;
  }
  .sm\:right--s40em {
    right: -10em !important;
  }
  .sm\:right--s44em {
    right: -11em !important;
  }
  .sm\:right--s46em {
    right: -11.5em !important;
  }
  .sm\:right--s48em {
    right: -12em !important;
  }
  .sm\:right--s49em {
    right: -12.25em !important;
  }
  .sm\:right--s50em {
    right: -12.5em !important;
  }
  .sm\:right--s52em {
    right: -13em !important;
  }
  .sm\:right--s54em {
    right: -13.5em !important;
  }
  .sm\:right--s55em {
    right: -13.75em !important;
  }
  .sm\:right--s56em {
    right: -14em !important;
  }
  .sm\:right--s70em {
    right: -18em !important;
  }
  .sm\:right-s1 {
    right: 0.25rem !important;
  }
  .sm\:right-s2 {
    right: 0.5rem !important;
  }
  .sm\:right-s3 {
    right: 0.75rem !important;
  }
  .sm\:right-s4 {
    right: 1rem !important;
  }
  .sm\:right-s5 {
    right: 1.25rem !important;
  }
  .sm\:right-s6 {
    right: 1.5rem !important;
  }
  .sm\:right-s8 {
    right: 2rem !important;
  }
  .sm\:right-s10 {
    right: 2.5rem !important;
  }
  .sm\:right-s12 {
    right: 3rem !important;
  }
  .sm\:right-s16 {
    right: 4rem !important;
  }
  .sm\:right-s20 {
    right: 5rem !important;
  }
  .sm\:right-s24 {
    right: 6rem !important;
  }
  .sm\:right-s28 {
    right: 7rem !important;
  }
  .sm\:right-s32 {
    right: 8rem !important;
  }
  .sm\:right-s60 {
    right: 15rem !important;
  }
  .sm\:right-s70 {
    right: 17.5rem !important;
  }
  .sm\:right-s72 {
    right: 18rem !important;
  }
  .sm\:right-s40em {
    right: 10em !important;
  }
  .sm\:right-s44em {
    right: 11em !important;
  }
  .sm\:right-s46em {
    right: 11.5em !important;
  }
  .sm\:right-s48em {
    right: 12em !important;
  }
  .sm\:right-s49em {
    right: 12.25em !important;
  }
  .sm\:right-s50em {
    right: 12.5em !important;
  }
  .sm\:right-s52em {
    right: 13em !important;
  }
  .sm\:right-s54em {
    right: 13.5em !important;
  }
  .sm\:right-s55em {
    right: 13.75em !important;
  }
  .sm\:right-s56em {
    right: 14em !important;
  }
  .sm\:right-s70em {
    right: 18em !important;
  }
  .sm\:right-auto {
    right: auto !important;
  }
  .sm\:bottom-0 {
    bottom: 0 !important;
  }
  .sm\:bottom-1 {
    bottom: 16rem !important;
  }
  .sm\:bottom-2 {
    bottom: 20rem !important;
  }
  .sm\:bottom-3 {
    bottom: 24rem !important;
  }
  .sm\:bottom-4 {
    bottom: 28rem !important;
  }
  .sm\:bottom-5 {
    bottom: 32rem !important;
  }
  .sm\:bottom-6 {
    bottom: 36rem !important;
  }
  .sm\:bottom-7 {
    bottom: 42rem !important;
  }
  .sm\:bottom-8 {
    bottom: 48rem !important;
  }
  .sm\:bottom-9 {
    bottom: 56rem !important;
  }
  .sm\:bottom-10 {
    bottom: 64rem !important;
  }
  .sm\:bottom-11 {
    bottom: 72rem !important;
  }
  .sm\:bottom-1em {
    bottom: 16em !important;
  }
  .sm\:bottom-2em {
    bottom: 20em !important;
  }
  .sm\:bottom-3em {
    bottom: 24em !important;
  }
  .sm\:bottom-4em {
    bottom: 28em !important;
  }
  .sm\:bottom-5em {
    bottom: 32em !important;
  }
  .sm\:bottom-6em {
    bottom: 36em !important;
  }
  .sm\:bottom-7em {
    bottom: 42em !important;
  }
  .sm\:bottom-8em {
    bottom: 48em !important;
  }
  .sm\:bottom-9em {
    bottom: 56em !important;
  }
  .sm\:bottom-10em {
    bottom: 64em !important;
  }
  .sm\:bottom-11em {
    bottom: 72em !important;
  }
  .sm\:bottom-1\/6 {
    bottom: 16.666666% !important;
  }
  .sm\:bottom-1\/4 {
    bottom: 25% !important;
  }
  .sm\:bottom-2\/7 {
    bottom: 28.57142857% !important;
  }
  .sm\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }
  .sm\:bottom-1\/5 {
    bottom: 20% !important;
  }
  .sm\:bottom-2\/5 {
    bottom: 40% !important;
  }
  .sm\:bottom-3\/5 {
    bottom: 60% !important;
  }
  .sm\:bottom-4\/5 {
    bottom: 80% !important;
  }
  .sm\:bottom-1\/2 {
    bottom: 50% !important;
  }
  .sm\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }
  .sm\:bottom-5\/12 {
    bottom: 41.6666666% !important;
  }
  .sm\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }
  .sm\:bottom-11\/12 {
    bottom: 91.6666666% !important;
  }
  .sm\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }
  .sm\:bottom-3\/4 {
    bottom: 75% !important;
  }
  .sm\:bottom-5\/6 {
    bottom: 83.3333333% !important;
  }
  .sm\:bottom-7\/6 {
    bottom: 116.6666666% !important;
  }
  .sm\:bottom-4\/3 {
    bottom: 133.3333333% !important;
  }
  .sm\:bottom-3\/2 {
    bottom: 150% !important;
  }
  .sm\:bottom-1\/24 {
    bottom: 4.1666666% !important;
  }
  .sm\:bottom-full {
    bottom: 100% !important;
  }
  .sm\:bottom-1\/6vh {
    bottom: 16.666666vh !important;
  }
  .sm\:bottom-1\/4vh {
    bottom: 25vh !important;
  }
  .sm\:bottom-1\/3vh {
    bottom: 33.333333vh !important;
  }
  .sm\:bottom-1\/2vh {
    bottom: 50vh !important;
  }
  .sm\:bottom-7\/12vh {
    bottom: 58.333333vh !important;
  }
  .sm\:bottom-2\/3vh {
    bottom: 66.666667vh !important;
  }
  .sm\:bottom-3\/4vh {
    bottom: 75vh !important;
  }
  .sm\:bottom-5\/6vh {
    bottom: 83.3333333vh !important;
  }
  .sm\:bottom-full-vh {
    bottom: 100vh !important;
  }
  .sm\:bottom--1 {
    bottom: -16rem !important;
  }
  .sm\:bottom--2 {
    bottom: -20rem !important;
  }
  .sm\:bottom--3 {
    bottom: -24rem !important;
  }
  .sm\:bottom--4 {
    bottom: -28rem !important;
  }
  .sm\:bottom--s1 {
    bottom: -0.25rem !important;
  }
  .sm\:bottom--s2 {
    bottom: -0.5rem !important;
  }
  .sm\:bottom--s3 {
    bottom: -0.75rem !important;
  }
  .sm\:bottom--s4 {
    bottom: -1rem !important;
  }
  .sm\:bottom--s5 {
    bottom: -1.25rem !important;
  }
  .sm\:bottom--s6 {
    bottom: -1.5rem !important;
  }
  .sm\:bottom--s8 {
    bottom: -2rem !important;
  }
  .sm\:bottom--s10 {
    bottom: -2.5rem !important;
  }
  .sm\:bottom--s12 {
    bottom: -3rem !important;
  }
  .sm\:bottom--s16 {
    bottom: -4rem !important;
  }
  .sm\:bottom--s18 {
    bottom: -4.5rem !important;
  }
  .sm\:bottom--s20 {
    bottom: -5rem !important;
  }
  .sm\:bottom--s24 {
    bottom: -6rem !important;
  }
  .sm\:bottom--s40em {
    bottom: -10em !important;
  }
  .sm\:bottom--s44em {
    bottom: -11em !important;
  }
  .sm\:bottom--s46em {
    bottom: -11.5em !important;
  }
  .sm\:bottom--s48em {
    bottom: -12em !important;
  }
  .sm\:bottom--s49em {
    bottom: -12.25em !important;
  }
  .sm\:bottom--s50em {
    bottom: -12.5em !important;
  }
  .sm\:bottom--s52em {
    bottom: -13em !important;
  }
  .sm\:bottom--s54em {
    bottom: -13.5em !important;
  }
  .sm\:bottom--s55em {
    bottom: -13.75em !important;
  }
  .sm\:bottom--s56em {
    bottom: -14em !important;
  }
  .sm\:bottom--s70em {
    bottom: -18em !important;
  }
  .sm\:bottom-s1 {
    bottom: 0.25rem !important;
  }
  .sm\:bottom-s2 {
    bottom: 0.5rem !important;
  }
  .sm\:bottom-s3 {
    bottom: 0.75rem !important;
  }
  .sm\:bottom-s4 {
    bottom: 1rem !important;
  }
  .sm\:bottom-s5 {
    bottom: 1.25rem !important;
  }
  .sm\:bottom-s6 {
    bottom: 1.5rem !important;
  }
  .sm\:bottom-s8 {
    bottom: 2rem !important;
  }
  .sm\:bottom-s10 {
    bottom: 2.5rem !important;
  }
  .sm\:bottom-s12 {
    bottom: 3rem !important;
  }
  .sm\:bottom-s16 {
    bottom: 4rem !important;
  }
  .sm\:bottom-s20 {
    bottom: 5rem !important;
  }
  .sm\:bottom-s24 {
    bottom: 6rem !important;
  }
  .sm\:bottom-s28 {
    bottom: 7rem !important;
  }
  .sm\:bottom-s32 {
    bottom: 8rem !important;
  }
  .sm\:bottom-s60 {
    bottom: 15rem !important;
  }
  .sm\:bottom-s70 {
    bottom: 17.5rem !important;
  }
  .sm\:bottom-s72 {
    bottom: 18rem !important;
  }
  .sm\:bottom-s40em {
    bottom: 10em !important;
  }
  .sm\:bottom-s44em {
    bottom: 11em !important;
  }
  .sm\:bottom-s46em {
    bottom: 11.5em !important;
  }
  .sm\:bottom-s48em {
    bottom: 12em !important;
  }
  .sm\:bottom-s49em {
    bottom: 12.25em !important;
  }
  .sm\:bottom-s50em {
    bottom: 12.5em !important;
  }
  .sm\:bottom-s52em {
    bottom: 13em !important;
  }
  .sm\:bottom-s54em {
    bottom: 13.5em !important;
  }
  .sm\:bottom-s55em {
    bottom: 13.75em !important;
  }
  .sm\:bottom-s56em {
    bottom: 14em !important;
  }
  .sm\:bottom-s70em {
    bottom: 18em !important;
  }
  .sm\:bottom-auto {
    bottom: auto !important;
  }
  .sm\:left-0 {
    left: 0 !important;
  }
  .sm\:left-1 {
    left: 16rem !important;
  }
  .sm\:left-2 {
    left: 20rem !important;
  }
  .sm\:left-3 {
    left: 24rem !important;
  }
  .sm\:left-4 {
    left: 28rem !important;
  }
  .sm\:left-5 {
    left: 32rem !important;
  }
  .sm\:left-6 {
    left: 36rem !important;
  }
  .sm\:left-7 {
    left: 42rem !important;
  }
  .sm\:left-8 {
    left: 48rem !important;
  }
  .sm\:left-9 {
    left: 56rem !important;
  }
  .sm\:left-10 {
    left: 64rem !important;
  }
  .sm\:left-11 {
    left: 72rem !important;
  }
  .sm\:left-1em {
    left: 16em !important;
  }
  .sm\:left-2em {
    left: 20em !important;
  }
  .sm\:left-3em {
    left: 24em !important;
  }
  .sm\:left-4em {
    left: 28em !important;
  }
  .sm\:left-5em {
    left: 32em !important;
  }
  .sm\:left-6em {
    left: 36em !important;
  }
  .sm\:left-7em {
    left: 42em !important;
  }
  .sm\:left-8em {
    left: 48em !important;
  }
  .sm\:left-9em {
    left: 56em !important;
  }
  .sm\:left-10em {
    left: 64em !important;
  }
  .sm\:left-11em {
    left: 72em !important;
  }
  .sm\:left-1\/6 {
    left: 16.666666% !important;
  }
  .sm\:left-1\/4 {
    left: 25% !important;
  }
  .sm\:left-2\/7 {
    left: 28.57142857% !important;
  }
  .sm\:left-1\/3 {
    left: 33.333333% !important;
  }
  .sm\:left-1\/5 {
    left: 20% !important;
  }
  .sm\:left-2\/5 {
    left: 40% !important;
  }
  .sm\:left-3\/5 {
    left: 60% !important;
  }
  .sm\:left-4\/5 {
    left: 80% !important;
  }
  .sm\:left-1\/2 {
    left: 50% !important;
  }
  .sm\:left-1\/12 {
    left: 8.333333% !important;
  }
  .sm\:left-5\/12 {
    left: 41.6666666% !important;
  }
  .sm\:left-7\/12 {
    left: 58.333333% !important;
  }
  .sm\:left-11\/12 {
    left: 91.6666666% !important;
  }
  .sm\:left-2\/3 {
    left: 66.666667% !important;
  }
  .sm\:left-3\/4 {
    left: 75% !important;
  }
  .sm\:left-5\/6 {
    left: 83.3333333% !important;
  }
  .sm\:left-7\/6 {
    left: 116.6666666% !important;
  }
  .sm\:left-4\/3 {
    left: 133.3333333% !important;
  }
  .sm\:left-3\/2 {
    left: 150% !important;
  }
  .sm\:left-1\/24 {
    left: 4.1666666% !important;
  }
  .sm\:left-full {
    left: 100% !important;
  }
  .sm\:left-1\/6vh {
    left: 16.666666vh !important;
  }
  .sm\:left-1\/4vh {
    left: 25vh !important;
  }
  .sm\:left-1\/3vh {
    left: 33.333333vh !important;
  }
  .sm\:left-1\/2vh {
    left: 50vh !important;
  }
  .sm\:left-7\/12vh {
    left: 58.333333vh !important;
  }
  .sm\:left-2\/3vh {
    left: 66.666667vh !important;
  }
  .sm\:left-3\/4vh {
    left: 75vh !important;
  }
  .sm\:left-5\/6vh {
    left: 83.3333333vh !important;
  }
  .sm\:left-full-vh {
    left: 100vh !important;
  }
  .sm\:left--1 {
    left: -16rem !important;
  }
  .sm\:left--2 {
    left: -20rem !important;
  }
  .sm\:left--3 {
    left: -24rem !important;
  }
  .sm\:left--4 {
    left: -28rem !important;
  }
  .sm\:left--s1 {
    left: -0.25rem !important;
  }
  .sm\:left--s2 {
    left: -0.5rem !important;
  }
  .sm\:left--s3 {
    left: -0.75rem !important;
  }
  .sm\:left--s4 {
    left: -1rem !important;
  }
  .sm\:left--s5 {
    left: -1.25rem !important;
  }
  .sm\:left--s6 {
    left: -1.5rem !important;
  }
  .sm\:left--s8 {
    left: -2rem !important;
  }
  .sm\:left--s10 {
    left: -2.5rem !important;
  }
  .sm\:left--s12 {
    left: -3rem !important;
  }
  .sm\:left--s16 {
    left: -4rem !important;
  }
  .sm\:left--s18 {
    left: -4.5rem !important;
  }
  .sm\:left--s20 {
    left: -5rem !important;
  }
  .sm\:left--s24 {
    left: -6rem !important;
  }
  .sm\:left--s40em {
    left: -10em !important;
  }
  .sm\:left--s44em {
    left: -11em !important;
  }
  .sm\:left--s46em {
    left: -11.5em !important;
  }
  .sm\:left--s48em {
    left: -12em !important;
  }
  .sm\:left--s49em {
    left: -12.25em !important;
  }
  .sm\:left--s50em {
    left: -12.5em !important;
  }
  .sm\:left--s52em {
    left: -13em !important;
  }
  .sm\:left--s54em {
    left: -13.5em !important;
  }
  .sm\:left--s55em {
    left: -13.75em !important;
  }
  .sm\:left--s56em {
    left: -14em !important;
  }
  .sm\:left--s70em {
    left: -18em !important;
  }
  .sm\:left-s1 {
    left: 0.25rem !important;
  }
  .sm\:left-s2 {
    left: 0.5rem !important;
  }
  .sm\:left-s3 {
    left: 0.75rem !important;
  }
  .sm\:left-s4 {
    left: 1rem !important;
  }
  .sm\:left-s5 {
    left: 1.25rem !important;
  }
  .sm\:left-s6 {
    left: 1.5rem !important;
  }
  .sm\:left-s8 {
    left: 2rem !important;
  }
  .sm\:left-s10 {
    left: 2.5rem !important;
  }
  .sm\:left-s12 {
    left: 3rem !important;
  }
  .sm\:left-s16 {
    left: 4rem !important;
  }
  .sm\:left-s20 {
    left: 5rem !important;
  }
  .sm\:left-s24 {
    left: 6rem !important;
  }
  .sm\:left-s28 {
    left: 7rem !important;
  }
  .sm\:left-s32 {
    left: 8rem !important;
  }
  .sm\:left-s60 {
    left: 15rem !important;
  }
  .sm\:left-s70 {
    left: 17.5rem !important;
  }
  .sm\:left-s72 {
    left: 18rem !important;
  }
  .sm\:left-s40em {
    left: 10em !important;
  }
  .sm\:left-s44em {
    left: 11em !important;
  }
  .sm\:left-s46em {
    left: 11.5em !important;
  }
  .sm\:left-s48em {
    left: 12em !important;
  }
  .sm\:left-s49em {
    left: 12.25em !important;
  }
  .sm\:left-s50em {
    left: 12.5em !important;
  }
  .sm\:left-s52em {
    left: 13em !important;
  }
  .sm\:left-s54em {
    left: 13.5em !important;
  }
  .sm\:left-s55em {
    left: 13.75em !important;
  }
  .sm\:left-s56em {
    left: 14em !important;
  }
  .sm\:left-s70em {
    left: 18em !important;
  }
  .sm\:left-auto {
    left: auto !important;
  }
  .sm\:inset-0 {
    inset: 0 !important;
  }
  .sm\:inset-1 {
    inset: 16rem !important;
  }
  .sm\:inset-2 {
    inset: 20rem !important;
  }
  .sm\:inset-3 {
    inset: 24rem !important;
  }
  .sm\:inset-4 {
    inset: 28rem !important;
  }
  .sm\:inset-5 {
    inset: 32rem !important;
  }
  .sm\:inset-6 {
    inset: 36rem !important;
  }
  .sm\:inset-7 {
    inset: 42rem !important;
  }
  .sm\:inset-8 {
    inset: 48rem !important;
  }
  .sm\:inset-9 {
    inset: 56rem !important;
  }
  .sm\:inset-10 {
    inset: 64rem !important;
  }
  .sm\:inset-11 {
    inset: 72rem !important;
  }
  .sm\:inset-1em {
    inset: 16em !important;
  }
  .sm\:inset-2em {
    inset: 20em !important;
  }
  .sm\:inset-3em {
    inset: 24em !important;
  }
  .sm\:inset-4em {
    inset: 28em !important;
  }
  .sm\:inset-5em {
    inset: 32em !important;
  }
  .sm\:inset-6em {
    inset: 36em !important;
  }
  .sm\:inset-7em {
    inset: 42em !important;
  }
  .sm\:inset-8em {
    inset: 48em !important;
  }
  .sm\:inset-9em {
    inset: 56em !important;
  }
  .sm\:inset-10em {
    inset: 64em !important;
  }
  .sm\:inset-11em {
    inset: 72em !important;
  }
  .sm\:inset-1\/6 {
    inset: 16.666666% !important;
  }
  .sm\:inset-1\/4 {
    inset: 25% !important;
  }
  .sm\:inset-2\/7 {
    inset: 28.57142857% !important;
  }
  .sm\:inset-1\/3 {
    inset: 33.333333% !important;
  }
  .sm\:inset-1\/5 {
    inset: 20% !important;
  }
  .sm\:inset-2\/5 {
    inset: 40% !important;
  }
  .sm\:inset-3\/5 {
    inset: 60% !important;
  }
  .sm\:inset-4\/5 {
    inset: 80% !important;
  }
  .sm\:inset-1\/2 {
    inset: 50% !important;
  }
  .sm\:inset-1\/12 {
    inset: 8.333333% !important;
  }
  .sm\:inset-5\/12 {
    inset: 41.6666666% !important;
  }
  .sm\:inset-7\/12 {
    inset: 58.333333% !important;
  }
  .sm\:inset-11\/12 {
    inset: 91.6666666% !important;
  }
  .sm\:inset-2\/3 {
    inset: 66.666667% !important;
  }
  .sm\:inset-3\/4 {
    inset: 75% !important;
  }
  .sm\:inset-5\/6 {
    inset: 83.3333333% !important;
  }
  .sm\:inset-7\/6 {
    inset: 116.6666666% !important;
  }
  .sm\:inset-4\/3 {
    inset: 133.3333333% !important;
  }
  .sm\:inset-3\/2 {
    inset: 150% !important;
  }
  .sm\:inset-1\/24 {
    inset: 4.1666666% !important;
  }
  .sm\:inset-full {
    inset: 100% !important;
  }
  .sm\:inset-1\/6vh {
    inset: 16.666666vh !important;
  }
  .sm\:inset-1\/4vh {
    inset: 25vh !important;
  }
  .sm\:inset-1\/3vh {
    inset: 33.333333vh !important;
  }
  .sm\:inset-1\/2vh {
    inset: 50vh !important;
  }
  .sm\:inset-7\/12vh {
    inset: 58.333333vh !important;
  }
  .sm\:inset-2\/3vh {
    inset: 66.666667vh !important;
  }
  .sm\:inset-3\/4vh {
    inset: 75vh !important;
  }
  .sm\:inset-5\/6vh {
    inset: 83.3333333vh !important;
  }
  .sm\:inset-full-vh {
    inset: 100vh !important;
  }
  .sm\:inset--1 {
    inset: -16rem !important;
  }
  .sm\:inset--2 {
    inset: -20rem !important;
  }
  .sm\:inset--3 {
    inset: -24rem !important;
  }
  .sm\:inset--4 {
    inset: -28rem !important;
  }
  .sm\:inset--s1 {
    inset: -0.25rem !important;
  }
  .sm\:inset--s2 {
    inset: -0.5rem !important;
  }
  .sm\:inset--s3 {
    inset: -0.75rem !important;
  }
  .sm\:inset--s4 {
    inset: -1rem !important;
  }
  .sm\:inset--s5 {
    inset: -1.25rem !important;
  }
  .sm\:inset--s6 {
    inset: -1.5rem !important;
  }
  .sm\:inset--s8 {
    inset: -2rem !important;
  }
  .sm\:inset--s10 {
    inset: -2.5rem !important;
  }
  .sm\:inset--s12 {
    inset: -3rem !important;
  }
  .sm\:inset--s16 {
    inset: -4rem !important;
  }
  .sm\:inset--s18 {
    inset: -4.5rem !important;
  }
  .sm\:inset--s20 {
    inset: -5rem !important;
  }
  .sm\:inset--s24 {
    inset: -6rem !important;
  }
  .sm\:inset--s40em {
    inset: -10em !important;
  }
  .sm\:inset--s44em {
    inset: -11em !important;
  }
  .sm\:inset--s46em {
    inset: -11.5em !important;
  }
  .sm\:inset--s48em {
    inset: -12em !important;
  }
  .sm\:inset--s49em {
    inset: -12.25em !important;
  }
  .sm\:inset--s50em {
    inset: -12.5em !important;
  }
  .sm\:inset--s52em {
    inset: -13em !important;
  }
  .sm\:inset--s54em {
    inset: -13.5em !important;
  }
  .sm\:inset--s55em {
    inset: -13.75em !important;
  }
  .sm\:inset--s56em {
    inset: -14em !important;
  }
  .sm\:inset--s70em {
    inset: -18em !important;
  }
  .sm\:inset-s1 {
    inset: 0.25rem !important;
  }
  .sm\:inset-s2 {
    inset: 0.5rem !important;
  }
  .sm\:inset-s3 {
    inset: 0.75rem !important;
  }
  .sm\:inset-s4 {
    inset: 1rem !important;
  }
  .sm\:inset-s5 {
    inset: 1.25rem !important;
  }
  .sm\:inset-s6 {
    inset: 1.5rem !important;
  }
  .sm\:inset-s8 {
    inset: 2rem !important;
  }
  .sm\:inset-s10 {
    inset: 2.5rem !important;
  }
  .sm\:inset-s12 {
    inset: 3rem !important;
  }
  .sm\:inset-s16 {
    inset: 4rem !important;
  }
  .sm\:inset-s20 {
    inset: 5rem !important;
  }
  .sm\:inset-s24 {
    inset: 6rem !important;
  }
  .sm\:inset-s28 {
    inset: 7rem !important;
  }
  .sm\:inset-s32 {
    inset: 8rem !important;
  }
  .sm\:inset-s60 {
    inset: 15rem !important;
  }
  .sm\:inset-s70 {
    inset: 17.5rem !important;
  }
  .sm\:inset-s72 {
    inset: 18rem !important;
  }
  .sm\:inset-s40em {
    inset: 10em !important;
  }
  .sm\:inset-s44em {
    inset: 11em !important;
  }
  .sm\:inset-s46em {
    inset: 11.5em !important;
  }
  .sm\:inset-s48em {
    inset: 12em !important;
  }
  .sm\:inset-s49em {
    inset: 12.25em !important;
  }
  .sm\:inset-s50em {
    inset: 12.5em !important;
  }
  .sm\:inset-s52em {
    inset: 13em !important;
  }
  .sm\:inset-s54em {
    inset: 13.5em !important;
  }
  .sm\:inset-s55em {
    inset: 13.75em !important;
  }
  .sm\:inset-s56em {
    inset: 14em !important;
  }
  .sm\:inset-s70em {
    inset: 18em !important;
  }
  .sm\:inset-auto {
    inset: auto !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:top-0 {
    top: 0 !important;
  }
  .md\:top-1 {
    top: 16rem !important;
  }
  .md\:top-2 {
    top: 20rem !important;
  }
  .md\:top-3 {
    top: 24rem !important;
  }
  .md\:top-4 {
    top: 28rem !important;
  }
  .md\:top-5 {
    top: 32rem !important;
  }
  .md\:top-6 {
    top: 36rem !important;
  }
  .md\:top-7 {
    top: 42rem !important;
  }
  .md\:top-8 {
    top: 48rem !important;
  }
  .md\:top-9 {
    top: 56rem !important;
  }
  .md\:top-10 {
    top: 64rem !important;
  }
  .md\:top-11 {
    top: 72rem !important;
  }
  .md\:top-1em {
    top: 16em !important;
  }
  .md\:top-2em {
    top: 20em !important;
  }
  .md\:top-3em {
    top: 24em !important;
  }
  .md\:top-4em {
    top: 28em !important;
  }
  .md\:top-5em {
    top: 32em !important;
  }
  .md\:top-6em {
    top: 36em !important;
  }
  .md\:top-7em {
    top: 42em !important;
  }
  .md\:top-8em {
    top: 48em !important;
  }
  .md\:top-9em {
    top: 56em !important;
  }
  .md\:top-10em {
    top: 64em !important;
  }
  .md\:top-11em {
    top: 72em !important;
  }
  .md\:top-1\/6 {
    top: 16.666666% !important;
  }
  .md\:top-1\/4 {
    top: 25% !important;
  }
  .md\:top-2\/7 {
    top: 28.57142857% !important;
  }
  .md\:top-1\/3 {
    top: 33.333333% !important;
  }
  .md\:top-1\/5 {
    top: 20% !important;
  }
  .md\:top-2\/5 {
    top: 40% !important;
  }
  .md\:top-3\/5 {
    top: 60% !important;
  }
  .md\:top-4\/5 {
    top: 80% !important;
  }
  .md\:top-1\/2 {
    top: 50% !important;
  }
  .md\:top-1\/12 {
    top: 8.333333% !important;
  }
  .md\:top-5\/12 {
    top: 41.6666666% !important;
  }
  .md\:top-7\/12 {
    top: 58.333333% !important;
  }
  .md\:top-11\/12 {
    top: 91.6666666% !important;
  }
  .md\:top-2\/3 {
    top: 66.666667% !important;
  }
  .md\:top-3\/4 {
    top: 75% !important;
  }
  .md\:top-5\/6 {
    top: 83.3333333% !important;
  }
  .md\:top-7\/6 {
    top: 116.6666666% !important;
  }
  .md\:top-4\/3 {
    top: 133.3333333% !important;
  }
  .md\:top-3\/2 {
    top: 150% !important;
  }
  .md\:top-1\/24 {
    top: 4.1666666% !important;
  }
  .md\:top-full {
    top: 100% !important;
  }
  .md\:top-1\/6vh {
    top: 16.666666vh !important;
  }
  .md\:top-1\/4vh {
    top: 25vh !important;
  }
  .md\:top-1\/3vh {
    top: 33.333333vh !important;
  }
  .md\:top-1\/2vh {
    top: 50vh !important;
  }
  .md\:top-7\/12vh {
    top: 58.333333vh !important;
  }
  .md\:top-2\/3vh {
    top: 66.666667vh !important;
  }
  .md\:top-3\/4vh {
    top: 75vh !important;
  }
  .md\:top-5\/6vh {
    top: 83.3333333vh !important;
  }
  .md\:top-full-vh {
    top: 100vh !important;
  }
  .md\:top--1 {
    top: -16rem !important;
  }
  .md\:top--2 {
    top: -20rem !important;
  }
  .md\:top--3 {
    top: -24rem !important;
  }
  .md\:top--4 {
    top: -28rem !important;
  }
  .md\:top--s1 {
    top: -0.25rem !important;
  }
  .md\:top--s2 {
    top: -0.5rem !important;
  }
  .md\:top--s3 {
    top: -0.75rem !important;
  }
  .md\:top--s4 {
    top: -1rem !important;
  }
  .md\:top--s5 {
    top: -1.25rem !important;
  }
  .md\:top--s6 {
    top: -1.5rem !important;
  }
  .md\:top--s8 {
    top: -2rem !important;
  }
  .md\:top--s10 {
    top: -2.5rem !important;
  }
  .md\:top--s12 {
    top: -3rem !important;
  }
  .md\:top--s16 {
    top: -4rem !important;
  }
  .md\:top--s18 {
    top: -4.5rem !important;
  }
  .md\:top--s20 {
    top: -5rem !important;
  }
  .md\:top--s24 {
    top: -6rem !important;
  }
  .md\:top--s40em {
    top: -10em !important;
  }
  .md\:top--s44em {
    top: -11em !important;
  }
  .md\:top--s46em {
    top: -11.5em !important;
  }
  .md\:top--s48em {
    top: -12em !important;
  }
  .md\:top--s49em {
    top: -12.25em !important;
  }
  .md\:top--s50em {
    top: -12.5em !important;
  }
  .md\:top--s52em {
    top: -13em !important;
  }
  .md\:top--s54em {
    top: -13.5em !important;
  }
  .md\:top--s55em {
    top: -13.75em !important;
  }
  .md\:top--s56em {
    top: -14em !important;
  }
  .md\:top--s70em {
    top: -18em !important;
  }
  .md\:top-s1 {
    top: 0.25rem !important;
  }
  .md\:top-s2 {
    top: 0.5rem !important;
  }
  .md\:top-s3 {
    top: 0.75rem !important;
  }
  .md\:top-s4 {
    top: 1rem !important;
  }
  .md\:top-s5 {
    top: 1.25rem !important;
  }
  .md\:top-s6 {
    top: 1.5rem !important;
  }
  .md\:top-s8 {
    top: 2rem !important;
  }
  .md\:top-s10 {
    top: 2.5rem !important;
  }
  .md\:top-s12 {
    top: 3rem !important;
  }
  .md\:top-s16 {
    top: 4rem !important;
  }
  .md\:top-s20 {
    top: 5rem !important;
  }
  .md\:top-s24 {
    top: 6rem !important;
  }
  .md\:top-s28 {
    top: 7rem !important;
  }
  .md\:top-s32 {
    top: 8rem !important;
  }
  .md\:top-s60 {
    top: 15rem !important;
  }
  .md\:top-s70 {
    top: 17.5rem !important;
  }
  .md\:top-s72 {
    top: 18rem !important;
  }
  .md\:top-s40em {
    top: 10em !important;
  }
  .md\:top-s44em {
    top: 11em !important;
  }
  .md\:top-s46em {
    top: 11.5em !important;
  }
  .md\:top-s48em {
    top: 12em !important;
  }
  .md\:top-s49em {
    top: 12.25em !important;
  }
  .md\:top-s50em {
    top: 12.5em !important;
  }
  .md\:top-s52em {
    top: 13em !important;
  }
  .md\:top-s54em {
    top: 13.5em !important;
  }
  .md\:top-s55em {
    top: 13.75em !important;
  }
  .md\:top-s56em {
    top: 14em !important;
  }
  .md\:top-s70em {
    top: 18em !important;
  }
  .md\:top-auto {
    top: auto !important;
  }
  .md\:right-0 {
    right: 0 !important;
  }
  .md\:right-1 {
    right: 16rem !important;
  }
  .md\:right-2 {
    right: 20rem !important;
  }
  .md\:right-3 {
    right: 24rem !important;
  }
  .md\:right-4 {
    right: 28rem !important;
  }
  .md\:right-5 {
    right: 32rem !important;
  }
  .md\:right-6 {
    right: 36rem !important;
  }
  .md\:right-7 {
    right: 42rem !important;
  }
  .md\:right-8 {
    right: 48rem !important;
  }
  .md\:right-9 {
    right: 56rem !important;
  }
  .md\:right-10 {
    right: 64rem !important;
  }
  .md\:right-11 {
    right: 72rem !important;
  }
  .md\:right-1em {
    right: 16em !important;
  }
  .md\:right-2em {
    right: 20em !important;
  }
  .md\:right-3em {
    right: 24em !important;
  }
  .md\:right-4em {
    right: 28em !important;
  }
  .md\:right-5em {
    right: 32em !important;
  }
  .md\:right-6em {
    right: 36em !important;
  }
  .md\:right-7em {
    right: 42em !important;
  }
  .md\:right-8em {
    right: 48em !important;
  }
  .md\:right-9em {
    right: 56em !important;
  }
  .md\:right-10em {
    right: 64em !important;
  }
  .md\:right-11em {
    right: 72em !important;
  }
  .md\:right-1\/6 {
    right: 16.666666% !important;
  }
  .md\:right-1\/4 {
    right: 25% !important;
  }
  .md\:right-2\/7 {
    right: 28.57142857% !important;
  }
  .md\:right-1\/3 {
    right: 33.333333% !important;
  }
  .md\:right-1\/5 {
    right: 20% !important;
  }
  .md\:right-2\/5 {
    right: 40% !important;
  }
  .md\:right-3\/5 {
    right: 60% !important;
  }
  .md\:right-4\/5 {
    right: 80% !important;
  }
  .md\:right-1\/2 {
    right: 50% !important;
  }
  .md\:right-1\/12 {
    right: 8.333333% !important;
  }
  .md\:right-5\/12 {
    right: 41.6666666% !important;
  }
  .md\:right-7\/12 {
    right: 58.333333% !important;
  }
  .md\:right-11\/12 {
    right: 91.6666666% !important;
  }
  .md\:right-2\/3 {
    right: 66.666667% !important;
  }
  .md\:right-3\/4 {
    right: 75% !important;
  }
  .md\:right-5\/6 {
    right: 83.3333333% !important;
  }
  .md\:right-7\/6 {
    right: 116.6666666% !important;
  }
  .md\:right-4\/3 {
    right: 133.3333333% !important;
  }
  .md\:right-3\/2 {
    right: 150% !important;
  }
  .md\:right-1\/24 {
    right: 4.1666666% !important;
  }
  .md\:right-full {
    right: 100% !important;
  }
  .md\:right-1\/6vh {
    right: 16.666666vh !important;
  }
  .md\:right-1\/4vh {
    right: 25vh !important;
  }
  .md\:right-1\/3vh {
    right: 33.333333vh !important;
  }
  .md\:right-1\/2vh {
    right: 50vh !important;
  }
  .md\:right-7\/12vh {
    right: 58.333333vh !important;
  }
  .md\:right-2\/3vh {
    right: 66.666667vh !important;
  }
  .md\:right-3\/4vh {
    right: 75vh !important;
  }
  .md\:right-5\/6vh {
    right: 83.3333333vh !important;
  }
  .md\:right-full-vh {
    right: 100vh !important;
  }
  .md\:right--1 {
    right: -16rem !important;
  }
  .md\:right--2 {
    right: -20rem !important;
  }
  .md\:right--3 {
    right: -24rem !important;
  }
  .md\:right--4 {
    right: -28rem !important;
  }
  .md\:right--s1 {
    right: -0.25rem !important;
  }
  .md\:right--s2 {
    right: -0.5rem !important;
  }
  .md\:right--s3 {
    right: -0.75rem !important;
  }
  .md\:right--s4 {
    right: -1rem !important;
  }
  .md\:right--s5 {
    right: -1.25rem !important;
  }
  .md\:right--s6 {
    right: -1.5rem !important;
  }
  .md\:right--s8 {
    right: -2rem !important;
  }
  .md\:right--s10 {
    right: -2.5rem !important;
  }
  .md\:right--s12 {
    right: -3rem !important;
  }
  .md\:right--s16 {
    right: -4rem !important;
  }
  .md\:right--s18 {
    right: -4.5rem !important;
  }
  .md\:right--s20 {
    right: -5rem !important;
  }
  .md\:right--s24 {
    right: -6rem !important;
  }
  .md\:right--s40em {
    right: -10em !important;
  }
  .md\:right--s44em {
    right: -11em !important;
  }
  .md\:right--s46em {
    right: -11.5em !important;
  }
  .md\:right--s48em {
    right: -12em !important;
  }
  .md\:right--s49em {
    right: -12.25em !important;
  }
  .md\:right--s50em {
    right: -12.5em !important;
  }
  .md\:right--s52em {
    right: -13em !important;
  }
  .md\:right--s54em {
    right: -13.5em !important;
  }
  .md\:right--s55em {
    right: -13.75em !important;
  }
  .md\:right--s56em {
    right: -14em !important;
  }
  .md\:right--s70em {
    right: -18em !important;
  }
  .md\:right-s1 {
    right: 0.25rem !important;
  }
  .md\:right-s2 {
    right: 0.5rem !important;
  }
  .md\:right-s3 {
    right: 0.75rem !important;
  }
  .md\:right-s4 {
    right: 1rem !important;
  }
  .md\:right-s5 {
    right: 1.25rem !important;
  }
  .md\:right-s6 {
    right: 1.5rem !important;
  }
  .md\:right-s8 {
    right: 2rem !important;
  }
  .md\:right-s10 {
    right: 2.5rem !important;
  }
  .md\:right-s12 {
    right: 3rem !important;
  }
  .md\:right-s16 {
    right: 4rem !important;
  }
  .md\:right-s20 {
    right: 5rem !important;
  }
  .md\:right-s24 {
    right: 6rem !important;
  }
  .md\:right-s28 {
    right: 7rem !important;
  }
  .md\:right-s32 {
    right: 8rem !important;
  }
  .md\:right-s60 {
    right: 15rem !important;
  }
  .md\:right-s70 {
    right: 17.5rem !important;
  }
  .md\:right-s72 {
    right: 18rem !important;
  }
  .md\:right-s40em {
    right: 10em !important;
  }
  .md\:right-s44em {
    right: 11em !important;
  }
  .md\:right-s46em {
    right: 11.5em !important;
  }
  .md\:right-s48em {
    right: 12em !important;
  }
  .md\:right-s49em {
    right: 12.25em !important;
  }
  .md\:right-s50em {
    right: 12.5em !important;
  }
  .md\:right-s52em {
    right: 13em !important;
  }
  .md\:right-s54em {
    right: 13.5em !important;
  }
  .md\:right-s55em {
    right: 13.75em !important;
  }
  .md\:right-s56em {
    right: 14em !important;
  }
  .md\:right-s70em {
    right: 18em !important;
  }
  .md\:right-auto {
    right: auto !important;
  }
  .md\:bottom-0 {
    bottom: 0 !important;
  }
  .md\:bottom-1 {
    bottom: 16rem !important;
  }
  .md\:bottom-2 {
    bottom: 20rem !important;
  }
  .md\:bottom-3 {
    bottom: 24rem !important;
  }
  .md\:bottom-4 {
    bottom: 28rem !important;
  }
  .md\:bottom-5 {
    bottom: 32rem !important;
  }
  .md\:bottom-6 {
    bottom: 36rem !important;
  }
  .md\:bottom-7 {
    bottom: 42rem !important;
  }
  .md\:bottom-8 {
    bottom: 48rem !important;
  }
  .md\:bottom-9 {
    bottom: 56rem !important;
  }
  .md\:bottom-10 {
    bottom: 64rem !important;
  }
  .md\:bottom-11 {
    bottom: 72rem !important;
  }
  .md\:bottom-1em {
    bottom: 16em !important;
  }
  .md\:bottom-2em {
    bottom: 20em !important;
  }
  .md\:bottom-3em {
    bottom: 24em !important;
  }
  .md\:bottom-4em {
    bottom: 28em !important;
  }
  .md\:bottom-5em {
    bottom: 32em !important;
  }
  .md\:bottom-6em {
    bottom: 36em !important;
  }
  .md\:bottom-7em {
    bottom: 42em !important;
  }
  .md\:bottom-8em {
    bottom: 48em !important;
  }
  .md\:bottom-9em {
    bottom: 56em !important;
  }
  .md\:bottom-10em {
    bottom: 64em !important;
  }
  .md\:bottom-11em {
    bottom: 72em !important;
  }
  .md\:bottom-1\/6 {
    bottom: 16.666666% !important;
  }
  .md\:bottom-1\/4 {
    bottom: 25% !important;
  }
  .md\:bottom-2\/7 {
    bottom: 28.57142857% !important;
  }
  .md\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }
  .md\:bottom-1\/5 {
    bottom: 20% !important;
  }
  .md\:bottom-2\/5 {
    bottom: 40% !important;
  }
  .md\:bottom-3\/5 {
    bottom: 60% !important;
  }
  .md\:bottom-4\/5 {
    bottom: 80% !important;
  }
  .md\:bottom-1\/2 {
    bottom: 50% !important;
  }
  .md\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }
  .md\:bottom-5\/12 {
    bottom: 41.6666666% !important;
  }
  .md\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }
  .md\:bottom-11\/12 {
    bottom: 91.6666666% !important;
  }
  .md\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }
  .md\:bottom-3\/4 {
    bottom: 75% !important;
  }
  .md\:bottom-5\/6 {
    bottom: 83.3333333% !important;
  }
  .md\:bottom-7\/6 {
    bottom: 116.6666666% !important;
  }
  .md\:bottom-4\/3 {
    bottom: 133.3333333% !important;
  }
  .md\:bottom-3\/2 {
    bottom: 150% !important;
  }
  .md\:bottom-1\/24 {
    bottom: 4.1666666% !important;
  }
  .md\:bottom-full {
    bottom: 100% !important;
  }
  .md\:bottom-1\/6vh {
    bottom: 16.666666vh !important;
  }
  .md\:bottom-1\/4vh {
    bottom: 25vh !important;
  }
  .md\:bottom-1\/3vh {
    bottom: 33.333333vh !important;
  }
  .md\:bottom-1\/2vh {
    bottom: 50vh !important;
  }
  .md\:bottom-7\/12vh {
    bottom: 58.333333vh !important;
  }
  .md\:bottom-2\/3vh {
    bottom: 66.666667vh !important;
  }
  .md\:bottom-3\/4vh {
    bottom: 75vh !important;
  }
  .md\:bottom-5\/6vh {
    bottom: 83.3333333vh !important;
  }
  .md\:bottom-full-vh {
    bottom: 100vh !important;
  }
  .md\:bottom--1 {
    bottom: -16rem !important;
  }
  .md\:bottom--2 {
    bottom: -20rem !important;
  }
  .md\:bottom--3 {
    bottom: -24rem !important;
  }
  .md\:bottom--4 {
    bottom: -28rem !important;
  }
  .md\:bottom--s1 {
    bottom: -0.25rem !important;
  }
  .md\:bottom--s2 {
    bottom: -0.5rem !important;
  }
  .md\:bottom--s3 {
    bottom: -0.75rem !important;
  }
  .md\:bottom--s4 {
    bottom: -1rem !important;
  }
  .md\:bottom--s5 {
    bottom: -1.25rem !important;
  }
  .md\:bottom--s6 {
    bottom: -1.5rem !important;
  }
  .md\:bottom--s8 {
    bottom: -2rem !important;
  }
  .md\:bottom--s10 {
    bottom: -2.5rem !important;
  }
  .md\:bottom--s12 {
    bottom: -3rem !important;
  }
  .md\:bottom--s16 {
    bottom: -4rem !important;
  }
  .md\:bottom--s18 {
    bottom: -4.5rem !important;
  }
  .md\:bottom--s20 {
    bottom: -5rem !important;
  }
  .md\:bottom--s24 {
    bottom: -6rem !important;
  }
  .md\:bottom--s40em {
    bottom: -10em !important;
  }
  .md\:bottom--s44em {
    bottom: -11em !important;
  }
  .md\:bottom--s46em {
    bottom: -11.5em !important;
  }
  .md\:bottom--s48em {
    bottom: -12em !important;
  }
  .md\:bottom--s49em {
    bottom: -12.25em !important;
  }
  .md\:bottom--s50em {
    bottom: -12.5em !important;
  }
  .md\:bottom--s52em {
    bottom: -13em !important;
  }
  .md\:bottom--s54em {
    bottom: -13.5em !important;
  }
  .md\:bottom--s55em {
    bottom: -13.75em !important;
  }
  .md\:bottom--s56em {
    bottom: -14em !important;
  }
  .md\:bottom--s70em {
    bottom: -18em !important;
  }
  .md\:bottom-s1 {
    bottom: 0.25rem !important;
  }
  .md\:bottom-s2 {
    bottom: 0.5rem !important;
  }
  .md\:bottom-s3 {
    bottom: 0.75rem !important;
  }
  .md\:bottom-s4 {
    bottom: 1rem !important;
  }
  .md\:bottom-s5 {
    bottom: 1.25rem !important;
  }
  .md\:bottom-s6 {
    bottom: 1.5rem !important;
  }
  .md\:bottom-s8 {
    bottom: 2rem !important;
  }
  .md\:bottom-s10 {
    bottom: 2.5rem !important;
  }
  .md\:bottom-s12 {
    bottom: 3rem !important;
  }
  .md\:bottom-s16 {
    bottom: 4rem !important;
  }
  .md\:bottom-s20 {
    bottom: 5rem !important;
  }
  .md\:bottom-s24 {
    bottom: 6rem !important;
  }
  .md\:bottom-s28 {
    bottom: 7rem !important;
  }
  .md\:bottom-s32 {
    bottom: 8rem !important;
  }
  .md\:bottom-s60 {
    bottom: 15rem !important;
  }
  .md\:bottom-s70 {
    bottom: 17.5rem !important;
  }
  .md\:bottom-s72 {
    bottom: 18rem !important;
  }
  .md\:bottom-s40em {
    bottom: 10em !important;
  }
  .md\:bottom-s44em {
    bottom: 11em !important;
  }
  .md\:bottom-s46em {
    bottom: 11.5em !important;
  }
  .md\:bottom-s48em {
    bottom: 12em !important;
  }
  .md\:bottom-s49em {
    bottom: 12.25em !important;
  }
  .md\:bottom-s50em {
    bottom: 12.5em !important;
  }
  .md\:bottom-s52em {
    bottom: 13em !important;
  }
  .md\:bottom-s54em {
    bottom: 13.5em !important;
  }
  .md\:bottom-s55em {
    bottom: 13.75em !important;
  }
  .md\:bottom-s56em {
    bottom: 14em !important;
  }
  .md\:bottom-s70em {
    bottom: 18em !important;
  }
  .md\:bottom-auto {
    bottom: auto !important;
  }
  .md\:left-0 {
    left: 0 !important;
  }
  .md\:left-1 {
    left: 16rem !important;
  }
  .md\:left-2 {
    left: 20rem !important;
  }
  .md\:left-3 {
    left: 24rem !important;
  }
  .md\:left-4 {
    left: 28rem !important;
  }
  .md\:left-5 {
    left: 32rem !important;
  }
  .md\:left-6 {
    left: 36rem !important;
  }
  .md\:left-7 {
    left: 42rem !important;
  }
  .md\:left-8 {
    left: 48rem !important;
  }
  .md\:left-9 {
    left: 56rem !important;
  }
  .md\:left-10 {
    left: 64rem !important;
  }
  .md\:left-11 {
    left: 72rem !important;
  }
  .md\:left-1em {
    left: 16em !important;
  }
  .md\:left-2em {
    left: 20em !important;
  }
  .md\:left-3em {
    left: 24em !important;
  }
  .md\:left-4em {
    left: 28em !important;
  }
  .md\:left-5em {
    left: 32em !important;
  }
  .md\:left-6em {
    left: 36em !important;
  }
  .md\:left-7em {
    left: 42em !important;
  }
  .md\:left-8em {
    left: 48em !important;
  }
  .md\:left-9em {
    left: 56em !important;
  }
  .md\:left-10em {
    left: 64em !important;
  }
  .md\:left-11em {
    left: 72em !important;
  }
  .md\:left-1\/6 {
    left: 16.666666% !important;
  }
  .md\:left-1\/4 {
    left: 25% !important;
  }
  .md\:left-2\/7 {
    left: 28.57142857% !important;
  }
  .md\:left-1\/3 {
    left: 33.333333% !important;
  }
  .md\:left-1\/5 {
    left: 20% !important;
  }
  .md\:left-2\/5 {
    left: 40% !important;
  }
  .md\:left-3\/5 {
    left: 60% !important;
  }
  .md\:left-4\/5 {
    left: 80% !important;
  }
  .md\:left-1\/2 {
    left: 50% !important;
  }
  .md\:left-1\/12 {
    left: 8.333333% !important;
  }
  .md\:left-5\/12 {
    left: 41.6666666% !important;
  }
  .md\:left-7\/12 {
    left: 58.333333% !important;
  }
  .md\:left-11\/12 {
    left: 91.6666666% !important;
  }
  .md\:left-2\/3 {
    left: 66.666667% !important;
  }
  .md\:left-3\/4 {
    left: 75% !important;
  }
  .md\:left-5\/6 {
    left: 83.3333333% !important;
  }
  .md\:left-7\/6 {
    left: 116.6666666% !important;
  }
  .md\:left-4\/3 {
    left: 133.3333333% !important;
  }
  .md\:left-3\/2 {
    left: 150% !important;
  }
  .md\:left-1\/24 {
    left: 4.1666666% !important;
  }
  .md\:left-full {
    left: 100% !important;
  }
  .md\:left-1\/6vh {
    left: 16.666666vh !important;
  }
  .md\:left-1\/4vh {
    left: 25vh !important;
  }
  .md\:left-1\/3vh {
    left: 33.333333vh !important;
  }
  .md\:left-1\/2vh {
    left: 50vh !important;
  }
  .md\:left-7\/12vh {
    left: 58.333333vh !important;
  }
  .md\:left-2\/3vh {
    left: 66.666667vh !important;
  }
  .md\:left-3\/4vh {
    left: 75vh !important;
  }
  .md\:left-5\/6vh {
    left: 83.3333333vh !important;
  }
  .md\:left-full-vh {
    left: 100vh !important;
  }
  .md\:left--1 {
    left: -16rem !important;
  }
  .md\:left--2 {
    left: -20rem !important;
  }
  .md\:left--3 {
    left: -24rem !important;
  }
  .md\:left--4 {
    left: -28rem !important;
  }
  .md\:left--s1 {
    left: -0.25rem !important;
  }
  .md\:left--s2 {
    left: -0.5rem !important;
  }
  .md\:left--s3 {
    left: -0.75rem !important;
  }
  .md\:left--s4 {
    left: -1rem !important;
  }
  .md\:left--s5 {
    left: -1.25rem !important;
  }
  .md\:left--s6 {
    left: -1.5rem !important;
  }
  .md\:left--s8 {
    left: -2rem !important;
  }
  .md\:left--s10 {
    left: -2.5rem !important;
  }
  .md\:left--s12 {
    left: -3rem !important;
  }
  .md\:left--s16 {
    left: -4rem !important;
  }
  .md\:left--s18 {
    left: -4.5rem !important;
  }
  .md\:left--s20 {
    left: -5rem !important;
  }
  .md\:left--s24 {
    left: -6rem !important;
  }
  .md\:left--s40em {
    left: -10em !important;
  }
  .md\:left--s44em {
    left: -11em !important;
  }
  .md\:left--s46em {
    left: -11.5em !important;
  }
  .md\:left--s48em {
    left: -12em !important;
  }
  .md\:left--s49em {
    left: -12.25em !important;
  }
  .md\:left--s50em {
    left: -12.5em !important;
  }
  .md\:left--s52em {
    left: -13em !important;
  }
  .md\:left--s54em {
    left: -13.5em !important;
  }
  .md\:left--s55em {
    left: -13.75em !important;
  }
  .md\:left--s56em {
    left: -14em !important;
  }
  .md\:left--s70em {
    left: -18em !important;
  }
  .md\:left-s1 {
    left: 0.25rem !important;
  }
  .md\:left-s2 {
    left: 0.5rem !important;
  }
  .md\:left-s3 {
    left: 0.75rem !important;
  }
  .md\:left-s4 {
    left: 1rem !important;
  }
  .md\:left-s5 {
    left: 1.25rem !important;
  }
  .md\:left-s6 {
    left: 1.5rem !important;
  }
  .md\:left-s8 {
    left: 2rem !important;
  }
  .md\:left-s10 {
    left: 2.5rem !important;
  }
  .md\:left-s12 {
    left: 3rem !important;
  }
  .md\:left-s16 {
    left: 4rem !important;
  }
  .md\:left-s20 {
    left: 5rem !important;
  }
  .md\:left-s24 {
    left: 6rem !important;
  }
  .md\:left-s28 {
    left: 7rem !important;
  }
  .md\:left-s32 {
    left: 8rem !important;
  }
  .md\:left-s60 {
    left: 15rem !important;
  }
  .md\:left-s70 {
    left: 17.5rem !important;
  }
  .md\:left-s72 {
    left: 18rem !important;
  }
  .md\:left-s40em {
    left: 10em !important;
  }
  .md\:left-s44em {
    left: 11em !important;
  }
  .md\:left-s46em {
    left: 11.5em !important;
  }
  .md\:left-s48em {
    left: 12em !important;
  }
  .md\:left-s49em {
    left: 12.25em !important;
  }
  .md\:left-s50em {
    left: 12.5em !important;
  }
  .md\:left-s52em {
    left: 13em !important;
  }
  .md\:left-s54em {
    left: 13.5em !important;
  }
  .md\:left-s55em {
    left: 13.75em !important;
  }
  .md\:left-s56em {
    left: 14em !important;
  }
  .md\:left-s70em {
    left: 18em !important;
  }
  .md\:left-auto {
    left: auto !important;
  }
  .md\:inset-0 {
    inset: 0 !important;
  }
  .md\:inset-1 {
    inset: 16rem !important;
  }
  .md\:inset-2 {
    inset: 20rem !important;
  }
  .md\:inset-3 {
    inset: 24rem !important;
  }
  .md\:inset-4 {
    inset: 28rem !important;
  }
  .md\:inset-5 {
    inset: 32rem !important;
  }
  .md\:inset-6 {
    inset: 36rem !important;
  }
  .md\:inset-7 {
    inset: 42rem !important;
  }
  .md\:inset-8 {
    inset: 48rem !important;
  }
  .md\:inset-9 {
    inset: 56rem !important;
  }
  .md\:inset-10 {
    inset: 64rem !important;
  }
  .md\:inset-11 {
    inset: 72rem !important;
  }
  .md\:inset-1em {
    inset: 16em !important;
  }
  .md\:inset-2em {
    inset: 20em !important;
  }
  .md\:inset-3em {
    inset: 24em !important;
  }
  .md\:inset-4em {
    inset: 28em !important;
  }
  .md\:inset-5em {
    inset: 32em !important;
  }
  .md\:inset-6em {
    inset: 36em !important;
  }
  .md\:inset-7em {
    inset: 42em !important;
  }
  .md\:inset-8em {
    inset: 48em !important;
  }
  .md\:inset-9em {
    inset: 56em !important;
  }
  .md\:inset-10em {
    inset: 64em !important;
  }
  .md\:inset-11em {
    inset: 72em !important;
  }
  .md\:inset-1\/6 {
    inset: 16.666666% !important;
  }
  .md\:inset-1\/4 {
    inset: 25% !important;
  }
  .md\:inset-2\/7 {
    inset: 28.57142857% !important;
  }
  .md\:inset-1\/3 {
    inset: 33.333333% !important;
  }
  .md\:inset-1\/5 {
    inset: 20% !important;
  }
  .md\:inset-2\/5 {
    inset: 40% !important;
  }
  .md\:inset-3\/5 {
    inset: 60% !important;
  }
  .md\:inset-4\/5 {
    inset: 80% !important;
  }
  .md\:inset-1\/2 {
    inset: 50% !important;
  }
  .md\:inset-1\/12 {
    inset: 8.333333% !important;
  }
  .md\:inset-5\/12 {
    inset: 41.6666666% !important;
  }
  .md\:inset-7\/12 {
    inset: 58.333333% !important;
  }
  .md\:inset-11\/12 {
    inset: 91.6666666% !important;
  }
  .md\:inset-2\/3 {
    inset: 66.666667% !important;
  }
  .md\:inset-3\/4 {
    inset: 75% !important;
  }
  .md\:inset-5\/6 {
    inset: 83.3333333% !important;
  }
  .md\:inset-7\/6 {
    inset: 116.6666666% !important;
  }
  .md\:inset-4\/3 {
    inset: 133.3333333% !important;
  }
  .md\:inset-3\/2 {
    inset: 150% !important;
  }
  .md\:inset-1\/24 {
    inset: 4.1666666% !important;
  }
  .md\:inset-full {
    inset: 100% !important;
  }
  .md\:inset-1\/6vh {
    inset: 16.666666vh !important;
  }
  .md\:inset-1\/4vh {
    inset: 25vh !important;
  }
  .md\:inset-1\/3vh {
    inset: 33.333333vh !important;
  }
  .md\:inset-1\/2vh {
    inset: 50vh !important;
  }
  .md\:inset-7\/12vh {
    inset: 58.333333vh !important;
  }
  .md\:inset-2\/3vh {
    inset: 66.666667vh !important;
  }
  .md\:inset-3\/4vh {
    inset: 75vh !important;
  }
  .md\:inset-5\/6vh {
    inset: 83.3333333vh !important;
  }
  .md\:inset-full-vh {
    inset: 100vh !important;
  }
  .md\:inset--1 {
    inset: -16rem !important;
  }
  .md\:inset--2 {
    inset: -20rem !important;
  }
  .md\:inset--3 {
    inset: -24rem !important;
  }
  .md\:inset--4 {
    inset: -28rem !important;
  }
  .md\:inset--s1 {
    inset: -0.25rem !important;
  }
  .md\:inset--s2 {
    inset: -0.5rem !important;
  }
  .md\:inset--s3 {
    inset: -0.75rem !important;
  }
  .md\:inset--s4 {
    inset: -1rem !important;
  }
  .md\:inset--s5 {
    inset: -1.25rem !important;
  }
  .md\:inset--s6 {
    inset: -1.5rem !important;
  }
  .md\:inset--s8 {
    inset: -2rem !important;
  }
  .md\:inset--s10 {
    inset: -2.5rem !important;
  }
  .md\:inset--s12 {
    inset: -3rem !important;
  }
  .md\:inset--s16 {
    inset: -4rem !important;
  }
  .md\:inset--s18 {
    inset: -4.5rem !important;
  }
  .md\:inset--s20 {
    inset: -5rem !important;
  }
  .md\:inset--s24 {
    inset: -6rem !important;
  }
  .md\:inset--s40em {
    inset: -10em !important;
  }
  .md\:inset--s44em {
    inset: -11em !important;
  }
  .md\:inset--s46em {
    inset: -11.5em !important;
  }
  .md\:inset--s48em {
    inset: -12em !important;
  }
  .md\:inset--s49em {
    inset: -12.25em !important;
  }
  .md\:inset--s50em {
    inset: -12.5em !important;
  }
  .md\:inset--s52em {
    inset: -13em !important;
  }
  .md\:inset--s54em {
    inset: -13.5em !important;
  }
  .md\:inset--s55em {
    inset: -13.75em !important;
  }
  .md\:inset--s56em {
    inset: -14em !important;
  }
  .md\:inset--s70em {
    inset: -18em !important;
  }
  .md\:inset-s1 {
    inset: 0.25rem !important;
  }
  .md\:inset-s2 {
    inset: 0.5rem !important;
  }
  .md\:inset-s3 {
    inset: 0.75rem !important;
  }
  .md\:inset-s4 {
    inset: 1rem !important;
  }
  .md\:inset-s5 {
    inset: 1.25rem !important;
  }
  .md\:inset-s6 {
    inset: 1.5rem !important;
  }
  .md\:inset-s8 {
    inset: 2rem !important;
  }
  .md\:inset-s10 {
    inset: 2.5rem !important;
  }
  .md\:inset-s12 {
    inset: 3rem !important;
  }
  .md\:inset-s16 {
    inset: 4rem !important;
  }
  .md\:inset-s20 {
    inset: 5rem !important;
  }
  .md\:inset-s24 {
    inset: 6rem !important;
  }
  .md\:inset-s28 {
    inset: 7rem !important;
  }
  .md\:inset-s32 {
    inset: 8rem !important;
  }
  .md\:inset-s60 {
    inset: 15rem !important;
  }
  .md\:inset-s70 {
    inset: 17.5rem !important;
  }
  .md\:inset-s72 {
    inset: 18rem !important;
  }
  .md\:inset-s40em {
    inset: 10em !important;
  }
  .md\:inset-s44em {
    inset: 11em !important;
  }
  .md\:inset-s46em {
    inset: 11.5em !important;
  }
  .md\:inset-s48em {
    inset: 12em !important;
  }
  .md\:inset-s49em {
    inset: 12.25em !important;
  }
  .md\:inset-s50em {
    inset: 12.5em !important;
  }
  .md\:inset-s52em {
    inset: 13em !important;
  }
  .md\:inset-s54em {
    inset: 13.5em !important;
  }
  .md\:inset-s55em {
    inset: 13.75em !important;
  }
  .md\:inset-s56em {
    inset: 14em !important;
  }
  .md\:inset-s70em {
    inset: 18em !important;
  }
  .md\:inset-auto {
    inset: auto !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:top-0 {
    top: 0 !important;
  }
  .lg\:top-1 {
    top: 16rem !important;
  }
  .lg\:top-2 {
    top: 20rem !important;
  }
  .lg\:top-3 {
    top: 24rem !important;
  }
  .lg\:top-4 {
    top: 28rem !important;
  }
  .lg\:top-5 {
    top: 32rem !important;
  }
  .lg\:top-6 {
    top: 36rem !important;
  }
  .lg\:top-7 {
    top: 42rem !important;
  }
  .lg\:top-8 {
    top: 48rem !important;
  }
  .lg\:top-9 {
    top: 56rem !important;
  }
  .lg\:top-10 {
    top: 64rem !important;
  }
  .lg\:top-11 {
    top: 72rem !important;
  }
  .lg\:top-1em {
    top: 16em !important;
  }
  .lg\:top-2em {
    top: 20em !important;
  }
  .lg\:top-3em {
    top: 24em !important;
  }
  .lg\:top-4em {
    top: 28em !important;
  }
  .lg\:top-5em {
    top: 32em !important;
  }
  .lg\:top-6em {
    top: 36em !important;
  }
  .lg\:top-7em {
    top: 42em !important;
  }
  .lg\:top-8em {
    top: 48em !important;
  }
  .lg\:top-9em {
    top: 56em !important;
  }
  .lg\:top-10em {
    top: 64em !important;
  }
  .lg\:top-11em {
    top: 72em !important;
  }
  .lg\:top-1\/6 {
    top: 16.666666% !important;
  }
  .lg\:top-1\/4 {
    top: 25% !important;
  }
  .lg\:top-2\/7 {
    top: 28.57142857% !important;
  }
  .lg\:top-1\/3 {
    top: 33.333333% !important;
  }
  .lg\:top-1\/5 {
    top: 20% !important;
  }
  .lg\:top-2\/5 {
    top: 40% !important;
  }
  .lg\:top-3\/5 {
    top: 60% !important;
  }
  .lg\:top-4\/5 {
    top: 80% !important;
  }
  .lg\:top-1\/2 {
    top: 50% !important;
  }
  .lg\:top-1\/12 {
    top: 8.333333% !important;
  }
  .lg\:top-5\/12 {
    top: 41.6666666% !important;
  }
  .lg\:top-7\/12 {
    top: 58.333333% !important;
  }
  .lg\:top-11\/12 {
    top: 91.6666666% !important;
  }
  .lg\:top-2\/3 {
    top: 66.666667% !important;
  }
  .lg\:top-3\/4 {
    top: 75% !important;
  }
  .lg\:top-5\/6 {
    top: 83.3333333% !important;
  }
  .lg\:top-7\/6 {
    top: 116.6666666% !important;
  }
  .lg\:top-4\/3 {
    top: 133.3333333% !important;
  }
  .lg\:top-3\/2 {
    top: 150% !important;
  }
  .lg\:top-1\/24 {
    top: 4.1666666% !important;
  }
  .lg\:top-full {
    top: 100% !important;
  }
  .lg\:top-1\/6vh {
    top: 16.666666vh !important;
  }
  .lg\:top-1\/4vh {
    top: 25vh !important;
  }
  .lg\:top-1\/3vh {
    top: 33.333333vh !important;
  }
  .lg\:top-1\/2vh {
    top: 50vh !important;
  }
  .lg\:top-7\/12vh {
    top: 58.333333vh !important;
  }
  .lg\:top-2\/3vh {
    top: 66.666667vh !important;
  }
  .lg\:top-3\/4vh {
    top: 75vh !important;
  }
  .lg\:top-5\/6vh {
    top: 83.3333333vh !important;
  }
  .lg\:top-full-vh {
    top: 100vh !important;
  }
  .lg\:top--1 {
    top: -16rem !important;
  }
  .lg\:top--2 {
    top: -20rem !important;
  }
  .lg\:top--3 {
    top: -24rem !important;
  }
  .lg\:top--4 {
    top: -28rem !important;
  }
  .lg\:top--s1 {
    top: -0.25rem !important;
  }
  .lg\:top--s2 {
    top: -0.5rem !important;
  }
  .lg\:top--s3 {
    top: -0.75rem !important;
  }
  .lg\:top--s4 {
    top: -1rem !important;
  }
  .lg\:top--s5 {
    top: -1.25rem !important;
  }
  .lg\:top--s6 {
    top: -1.5rem !important;
  }
  .lg\:top--s8 {
    top: -2rem !important;
  }
  .lg\:top--s10 {
    top: -2.5rem !important;
  }
  .lg\:top--s12 {
    top: -3rem !important;
  }
  .lg\:top--s16 {
    top: -4rem !important;
  }
  .lg\:top--s18 {
    top: -4.5rem !important;
  }
  .lg\:top--s20 {
    top: -5rem !important;
  }
  .lg\:top--s24 {
    top: -6rem !important;
  }
  .lg\:top--s40em {
    top: -10em !important;
  }
  .lg\:top--s44em {
    top: -11em !important;
  }
  .lg\:top--s46em {
    top: -11.5em !important;
  }
  .lg\:top--s48em {
    top: -12em !important;
  }
  .lg\:top--s49em {
    top: -12.25em !important;
  }
  .lg\:top--s50em {
    top: -12.5em !important;
  }
  .lg\:top--s52em {
    top: -13em !important;
  }
  .lg\:top--s54em {
    top: -13.5em !important;
  }
  .lg\:top--s55em {
    top: -13.75em !important;
  }
  .lg\:top--s56em {
    top: -14em !important;
  }
  .lg\:top--s70em {
    top: -18em !important;
  }
  .lg\:top-s1 {
    top: 0.25rem !important;
  }
  .lg\:top-s2 {
    top: 0.5rem !important;
  }
  .lg\:top-s3 {
    top: 0.75rem !important;
  }
  .lg\:top-s4 {
    top: 1rem !important;
  }
  .lg\:top-s5 {
    top: 1.25rem !important;
  }
  .lg\:top-s6 {
    top: 1.5rem !important;
  }
  .lg\:top-s8 {
    top: 2rem !important;
  }
  .lg\:top-s10 {
    top: 2.5rem !important;
  }
  .lg\:top-s12 {
    top: 3rem !important;
  }
  .lg\:top-s16 {
    top: 4rem !important;
  }
  .lg\:top-s20 {
    top: 5rem !important;
  }
  .lg\:top-s24 {
    top: 6rem !important;
  }
  .lg\:top-s28 {
    top: 7rem !important;
  }
  .lg\:top-s32 {
    top: 8rem !important;
  }
  .lg\:top-s60 {
    top: 15rem !important;
  }
  .lg\:top-s70 {
    top: 17.5rem !important;
  }
  .lg\:top-s72 {
    top: 18rem !important;
  }
  .lg\:top-s40em {
    top: 10em !important;
  }
  .lg\:top-s44em {
    top: 11em !important;
  }
  .lg\:top-s46em {
    top: 11.5em !important;
  }
  .lg\:top-s48em {
    top: 12em !important;
  }
  .lg\:top-s49em {
    top: 12.25em !important;
  }
  .lg\:top-s50em {
    top: 12.5em !important;
  }
  .lg\:top-s52em {
    top: 13em !important;
  }
  .lg\:top-s54em {
    top: 13.5em !important;
  }
  .lg\:top-s55em {
    top: 13.75em !important;
  }
  .lg\:top-s56em {
    top: 14em !important;
  }
  .lg\:top-s70em {
    top: 18em !important;
  }
  .lg\:top-auto {
    top: auto !important;
  }
  .lg\:right-0 {
    right: 0 !important;
  }
  .lg\:right-1 {
    right: 16rem !important;
  }
  .lg\:right-2 {
    right: 20rem !important;
  }
  .lg\:right-3 {
    right: 24rem !important;
  }
  .lg\:right-4 {
    right: 28rem !important;
  }
  .lg\:right-5 {
    right: 32rem !important;
  }
  .lg\:right-6 {
    right: 36rem !important;
  }
  .lg\:right-7 {
    right: 42rem !important;
  }
  .lg\:right-8 {
    right: 48rem !important;
  }
  .lg\:right-9 {
    right: 56rem !important;
  }
  .lg\:right-10 {
    right: 64rem !important;
  }
  .lg\:right-11 {
    right: 72rem !important;
  }
  .lg\:right-1em {
    right: 16em !important;
  }
  .lg\:right-2em {
    right: 20em !important;
  }
  .lg\:right-3em {
    right: 24em !important;
  }
  .lg\:right-4em {
    right: 28em !important;
  }
  .lg\:right-5em {
    right: 32em !important;
  }
  .lg\:right-6em {
    right: 36em !important;
  }
  .lg\:right-7em {
    right: 42em !important;
  }
  .lg\:right-8em {
    right: 48em !important;
  }
  .lg\:right-9em {
    right: 56em !important;
  }
  .lg\:right-10em {
    right: 64em !important;
  }
  .lg\:right-11em {
    right: 72em !important;
  }
  .lg\:right-1\/6 {
    right: 16.666666% !important;
  }
  .lg\:right-1\/4 {
    right: 25% !important;
  }
  .lg\:right-2\/7 {
    right: 28.57142857% !important;
  }
  .lg\:right-1\/3 {
    right: 33.333333% !important;
  }
  .lg\:right-1\/5 {
    right: 20% !important;
  }
  .lg\:right-2\/5 {
    right: 40% !important;
  }
  .lg\:right-3\/5 {
    right: 60% !important;
  }
  .lg\:right-4\/5 {
    right: 80% !important;
  }
  .lg\:right-1\/2 {
    right: 50% !important;
  }
  .lg\:right-1\/12 {
    right: 8.333333% !important;
  }
  .lg\:right-5\/12 {
    right: 41.6666666% !important;
  }
  .lg\:right-7\/12 {
    right: 58.333333% !important;
  }
  .lg\:right-11\/12 {
    right: 91.6666666% !important;
  }
  .lg\:right-2\/3 {
    right: 66.666667% !important;
  }
  .lg\:right-3\/4 {
    right: 75% !important;
  }
  .lg\:right-5\/6 {
    right: 83.3333333% !important;
  }
  .lg\:right-7\/6 {
    right: 116.6666666% !important;
  }
  .lg\:right-4\/3 {
    right: 133.3333333% !important;
  }
  .lg\:right-3\/2 {
    right: 150% !important;
  }
  .lg\:right-1\/24 {
    right: 4.1666666% !important;
  }
  .lg\:right-full {
    right: 100% !important;
  }
  .lg\:right-1\/6vh {
    right: 16.666666vh !important;
  }
  .lg\:right-1\/4vh {
    right: 25vh !important;
  }
  .lg\:right-1\/3vh {
    right: 33.333333vh !important;
  }
  .lg\:right-1\/2vh {
    right: 50vh !important;
  }
  .lg\:right-7\/12vh {
    right: 58.333333vh !important;
  }
  .lg\:right-2\/3vh {
    right: 66.666667vh !important;
  }
  .lg\:right-3\/4vh {
    right: 75vh !important;
  }
  .lg\:right-5\/6vh {
    right: 83.3333333vh !important;
  }
  .lg\:right-full-vh {
    right: 100vh !important;
  }
  .lg\:right--1 {
    right: -16rem !important;
  }
  .lg\:right--2 {
    right: -20rem !important;
  }
  .lg\:right--3 {
    right: -24rem !important;
  }
  .lg\:right--4 {
    right: -28rem !important;
  }
  .lg\:right--s1 {
    right: -0.25rem !important;
  }
  .lg\:right--s2 {
    right: -0.5rem !important;
  }
  .lg\:right--s3 {
    right: -0.75rem !important;
  }
  .lg\:right--s4 {
    right: -1rem !important;
  }
  .lg\:right--s5 {
    right: -1.25rem !important;
  }
  .lg\:right--s6 {
    right: -1.5rem !important;
  }
  .lg\:right--s8 {
    right: -2rem !important;
  }
  .lg\:right--s10 {
    right: -2.5rem !important;
  }
  .lg\:right--s12 {
    right: -3rem !important;
  }
  .lg\:right--s16 {
    right: -4rem !important;
  }
  .lg\:right--s18 {
    right: -4.5rem !important;
  }
  .lg\:right--s20 {
    right: -5rem !important;
  }
  .lg\:right--s24 {
    right: -6rem !important;
  }
  .lg\:right--s40em {
    right: -10em !important;
  }
  .lg\:right--s44em {
    right: -11em !important;
  }
  .lg\:right--s46em {
    right: -11.5em !important;
  }
  .lg\:right--s48em {
    right: -12em !important;
  }
  .lg\:right--s49em {
    right: -12.25em !important;
  }
  .lg\:right--s50em {
    right: -12.5em !important;
  }
  .lg\:right--s52em {
    right: -13em !important;
  }
  .lg\:right--s54em {
    right: -13.5em !important;
  }
  .lg\:right--s55em {
    right: -13.75em !important;
  }
  .lg\:right--s56em {
    right: -14em !important;
  }
  .lg\:right--s70em {
    right: -18em !important;
  }
  .lg\:right-s1 {
    right: 0.25rem !important;
  }
  .lg\:right-s2 {
    right: 0.5rem !important;
  }
  .lg\:right-s3 {
    right: 0.75rem !important;
  }
  .lg\:right-s4 {
    right: 1rem !important;
  }
  .lg\:right-s5 {
    right: 1.25rem !important;
  }
  .lg\:right-s6 {
    right: 1.5rem !important;
  }
  .lg\:right-s8 {
    right: 2rem !important;
  }
  .lg\:right-s10 {
    right: 2.5rem !important;
  }
  .lg\:right-s12 {
    right: 3rem !important;
  }
  .lg\:right-s16 {
    right: 4rem !important;
  }
  .lg\:right-s20 {
    right: 5rem !important;
  }
  .lg\:right-s24 {
    right: 6rem !important;
  }
  .lg\:right-s28 {
    right: 7rem !important;
  }
  .lg\:right-s32 {
    right: 8rem !important;
  }
  .lg\:right-s60 {
    right: 15rem !important;
  }
  .lg\:right-s70 {
    right: 17.5rem !important;
  }
  .lg\:right-s72 {
    right: 18rem !important;
  }
  .lg\:right-s40em {
    right: 10em !important;
  }
  .lg\:right-s44em {
    right: 11em !important;
  }
  .lg\:right-s46em {
    right: 11.5em !important;
  }
  .lg\:right-s48em {
    right: 12em !important;
  }
  .lg\:right-s49em {
    right: 12.25em !important;
  }
  .lg\:right-s50em {
    right: 12.5em !important;
  }
  .lg\:right-s52em {
    right: 13em !important;
  }
  .lg\:right-s54em {
    right: 13.5em !important;
  }
  .lg\:right-s55em {
    right: 13.75em !important;
  }
  .lg\:right-s56em {
    right: 14em !important;
  }
  .lg\:right-s70em {
    right: 18em !important;
  }
  .lg\:right-auto {
    right: auto !important;
  }
  .lg\:bottom-0 {
    bottom: 0 !important;
  }
  .lg\:bottom-1 {
    bottom: 16rem !important;
  }
  .lg\:bottom-2 {
    bottom: 20rem !important;
  }
  .lg\:bottom-3 {
    bottom: 24rem !important;
  }
  .lg\:bottom-4 {
    bottom: 28rem !important;
  }
  .lg\:bottom-5 {
    bottom: 32rem !important;
  }
  .lg\:bottom-6 {
    bottom: 36rem !important;
  }
  .lg\:bottom-7 {
    bottom: 42rem !important;
  }
  .lg\:bottom-8 {
    bottom: 48rem !important;
  }
  .lg\:bottom-9 {
    bottom: 56rem !important;
  }
  .lg\:bottom-10 {
    bottom: 64rem !important;
  }
  .lg\:bottom-11 {
    bottom: 72rem !important;
  }
  .lg\:bottom-1em {
    bottom: 16em !important;
  }
  .lg\:bottom-2em {
    bottom: 20em !important;
  }
  .lg\:bottom-3em {
    bottom: 24em !important;
  }
  .lg\:bottom-4em {
    bottom: 28em !important;
  }
  .lg\:bottom-5em {
    bottom: 32em !important;
  }
  .lg\:bottom-6em {
    bottom: 36em !important;
  }
  .lg\:bottom-7em {
    bottom: 42em !important;
  }
  .lg\:bottom-8em {
    bottom: 48em !important;
  }
  .lg\:bottom-9em {
    bottom: 56em !important;
  }
  .lg\:bottom-10em {
    bottom: 64em !important;
  }
  .lg\:bottom-11em {
    bottom: 72em !important;
  }
  .lg\:bottom-1\/6 {
    bottom: 16.666666% !important;
  }
  .lg\:bottom-1\/4 {
    bottom: 25% !important;
  }
  .lg\:bottom-2\/7 {
    bottom: 28.57142857% !important;
  }
  .lg\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }
  .lg\:bottom-1\/5 {
    bottom: 20% !important;
  }
  .lg\:bottom-2\/5 {
    bottom: 40% !important;
  }
  .lg\:bottom-3\/5 {
    bottom: 60% !important;
  }
  .lg\:bottom-4\/5 {
    bottom: 80% !important;
  }
  .lg\:bottom-1\/2 {
    bottom: 50% !important;
  }
  .lg\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }
  .lg\:bottom-5\/12 {
    bottom: 41.6666666% !important;
  }
  .lg\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }
  .lg\:bottom-11\/12 {
    bottom: 91.6666666% !important;
  }
  .lg\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }
  .lg\:bottom-3\/4 {
    bottom: 75% !important;
  }
  .lg\:bottom-5\/6 {
    bottom: 83.3333333% !important;
  }
  .lg\:bottom-7\/6 {
    bottom: 116.6666666% !important;
  }
  .lg\:bottom-4\/3 {
    bottom: 133.3333333% !important;
  }
  .lg\:bottom-3\/2 {
    bottom: 150% !important;
  }
  .lg\:bottom-1\/24 {
    bottom: 4.1666666% !important;
  }
  .lg\:bottom-full {
    bottom: 100% !important;
  }
  .lg\:bottom-1\/6vh {
    bottom: 16.666666vh !important;
  }
  .lg\:bottom-1\/4vh {
    bottom: 25vh !important;
  }
  .lg\:bottom-1\/3vh {
    bottom: 33.333333vh !important;
  }
  .lg\:bottom-1\/2vh {
    bottom: 50vh !important;
  }
  .lg\:bottom-7\/12vh {
    bottom: 58.333333vh !important;
  }
  .lg\:bottom-2\/3vh {
    bottom: 66.666667vh !important;
  }
  .lg\:bottom-3\/4vh {
    bottom: 75vh !important;
  }
  .lg\:bottom-5\/6vh {
    bottom: 83.3333333vh !important;
  }
  .lg\:bottom-full-vh {
    bottom: 100vh !important;
  }
  .lg\:bottom--1 {
    bottom: -16rem !important;
  }
  .lg\:bottom--2 {
    bottom: -20rem !important;
  }
  .lg\:bottom--3 {
    bottom: -24rem !important;
  }
  .lg\:bottom--4 {
    bottom: -28rem !important;
  }
  .lg\:bottom--s1 {
    bottom: -0.25rem !important;
  }
  .lg\:bottom--s2 {
    bottom: -0.5rem !important;
  }
  .lg\:bottom--s3 {
    bottom: -0.75rem !important;
  }
  .lg\:bottom--s4 {
    bottom: -1rem !important;
  }
  .lg\:bottom--s5 {
    bottom: -1.25rem !important;
  }
  .lg\:bottom--s6 {
    bottom: -1.5rem !important;
  }
  .lg\:bottom--s8 {
    bottom: -2rem !important;
  }
  .lg\:bottom--s10 {
    bottom: -2.5rem !important;
  }
  .lg\:bottom--s12 {
    bottom: -3rem !important;
  }
  .lg\:bottom--s16 {
    bottom: -4rem !important;
  }
  .lg\:bottom--s18 {
    bottom: -4.5rem !important;
  }
  .lg\:bottom--s20 {
    bottom: -5rem !important;
  }
  .lg\:bottom--s24 {
    bottom: -6rem !important;
  }
  .lg\:bottom--s40em {
    bottom: -10em !important;
  }
  .lg\:bottom--s44em {
    bottom: -11em !important;
  }
  .lg\:bottom--s46em {
    bottom: -11.5em !important;
  }
  .lg\:bottom--s48em {
    bottom: -12em !important;
  }
  .lg\:bottom--s49em {
    bottom: -12.25em !important;
  }
  .lg\:bottom--s50em {
    bottom: -12.5em !important;
  }
  .lg\:bottom--s52em {
    bottom: -13em !important;
  }
  .lg\:bottom--s54em {
    bottom: -13.5em !important;
  }
  .lg\:bottom--s55em {
    bottom: -13.75em !important;
  }
  .lg\:bottom--s56em {
    bottom: -14em !important;
  }
  .lg\:bottom--s70em {
    bottom: -18em !important;
  }
  .lg\:bottom-s1 {
    bottom: 0.25rem !important;
  }
  .lg\:bottom-s2 {
    bottom: 0.5rem !important;
  }
  .lg\:bottom-s3 {
    bottom: 0.75rem !important;
  }
  .lg\:bottom-s4 {
    bottom: 1rem !important;
  }
  .lg\:bottom-s5 {
    bottom: 1.25rem !important;
  }
  .lg\:bottom-s6 {
    bottom: 1.5rem !important;
  }
  .lg\:bottom-s8 {
    bottom: 2rem !important;
  }
  .lg\:bottom-s10 {
    bottom: 2.5rem !important;
  }
  .lg\:bottom-s12 {
    bottom: 3rem !important;
  }
  .lg\:bottom-s16 {
    bottom: 4rem !important;
  }
  .lg\:bottom-s20 {
    bottom: 5rem !important;
  }
  .lg\:bottom-s24 {
    bottom: 6rem !important;
  }
  .lg\:bottom-s28 {
    bottom: 7rem !important;
  }
  .lg\:bottom-s32 {
    bottom: 8rem !important;
  }
  .lg\:bottom-s60 {
    bottom: 15rem !important;
  }
  .lg\:bottom-s70 {
    bottom: 17.5rem !important;
  }
  .lg\:bottom-s72 {
    bottom: 18rem !important;
  }
  .lg\:bottom-s40em {
    bottom: 10em !important;
  }
  .lg\:bottom-s44em {
    bottom: 11em !important;
  }
  .lg\:bottom-s46em {
    bottom: 11.5em !important;
  }
  .lg\:bottom-s48em {
    bottom: 12em !important;
  }
  .lg\:bottom-s49em {
    bottom: 12.25em !important;
  }
  .lg\:bottom-s50em {
    bottom: 12.5em !important;
  }
  .lg\:bottom-s52em {
    bottom: 13em !important;
  }
  .lg\:bottom-s54em {
    bottom: 13.5em !important;
  }
  .lg\:bottom-s55em {
    bottom: 13.75em !important;
  }
  .lg\:bottom-s56em {
    bottom: 14em !important;
  }
  .lg\:bottom-s70em {
    bottom: 18em !important;
  }
  .lg\:bottom-auto {
    bottom: auto !important;
  }
  .lg\:left-0 {
    left: 0 !important;
  }
  .lg\:left-1 {
    left: 16rem !important;
  }
  .lg\:left-2 {
    left: 20rem !important;
  }
  .lg\:left-3 {
    left: 24rem !important;
  }
  .lg\:left-4 {
    left: 28rem !important;
  }
  .lg\:left-5 {
    left: 32rem !important;
  }
  .lg\:left-6 {
    left: 36rem !important;
  }
  .lg\:left-7 {
    left: 42rem !important;
  }
  .lg\:left-8 {
    left: 48rem !important;
  }
  .lg\:left-9 {
    left: 56rem !important;
  }
  .lg\:left-10 {
    left: 64rem !important;
  }
  .lg\:left-11 {
    left: 72rem !important;
  }
  .lg\:left-1em {
    left: 16em !important;
  }
  .lg\:left-2em {
    left: 20em !important;
  }
  .lg\:left-3em {
    left: 24em !important;
  }
  .lg\:left-4em {
    left: 28em !important;
  }
  .lg\:left-5em {
    left: 32em !important;
  }
  .lg\:left-6em {
    left: 36em !important;
  }
  .lg\:left-7em {
    left: 42em !important;
  }
  .lg\:left-8em {
    left: 48em !important;
  }
  .lg\:left-9em {
    left: 56em !important;
  }
  .lg\:left-10em {
    left: 64em !important;
  }
  .lg\:left-11em {
    left: 72em !important;
  }
  .lg\:left-1\/6 {
    left: 16.666666% !important;
  }
  .lg\:left-1\/4 {
    left: 25% !important;
  }
  .lg\:left-2\/7 {
    left: 28.57142857% !important;
  }
  .lg\:left-1\/3 {
    left: 33.333333% !important;
  }
  .lg\:left-1\/5 {
    left: 20% !important;
  }
  .lg\:left-2\/5 {
    left: 40% !important;
  }
  .lg\:left-3\/5 {
    left: 60% !important;
  }
  .lg\:left-4\/5 {
    left: 80% !important;
  }
  .lg\:left-1\/2 {
    left: 50% !important;
  }
  .lg\:left-1\/12 {
    left: 8.333333% !important;
  }
  .lg\:left-5\/12 {
    left: 41.6666666% !important;
  }
  .lg\:left-7\/12 {
    left: 58.333333% !important;
  }
  .lg\:left-11\/12 {
    left: 91.6666666% !important;
  }
  .lg\:left-2\/3 {
    left: 66.666667% !important;
  }
  .lg\:left-3\/4 {
    left: 75% !important;
  }
  .lg\:left-5\/6 {
    left: 83.3333333% !important;
  }
  .lg\:left-7\/6 {
    left: 116.6666666% !important;
  }
  .lg\:left-4\/3 {
    left: 133.3333333% !important;
  }
  .lg\:left-3\/2 {
    left: 150% !important;
  }
  .lg\:left-1\/24 {
    left: 4.1666666% !important;
  }
  .lg\:left-full {
    left: 100% !important;
  }
  .lg\:left-1\/6vh {
    left: 16.666666vh !important;
  }
  .lg\:left-1\/4vh {
    left: 25vh !important;
  }
  .lg\:left-1\/3vh {
    left: 33.333333vh !important;
  }
  .lg\:left-1\/2vh {
    left: 50vh !important;
  }
  .lg\:left-7\/12vh {
    left: 58.333333vh !important;
  }
  .lg\:left-2\/3vh {
    left: 66.666667vh !important;
  }
  .lg\:left-3\/4vh {
    left: 75vh !important;
  }
  .lg\:left-5\/6vh {
    left: 83.3333333vh !important;
  }
  .lg\:left-full-vh {
    left: 100vh !important;
  }
  .lg\:left--1 {
    left: -16rem !important;
  }
  .lg\:left--2 {
    left: -20rem !important;
  }
  .lg\:left--3 {
    left: -24rem !important;
  }
  .lg\:left--4 {
    left: -28rem !important;
  }
  .lg\:left--s1 {
    left: -0.25rem !important;
  }
  .lg\:left--s2 {
    left: -0.5rem !important;
  }
  .lg\:left--s3 {
    left: -0.75rem !important;
  }
  .lg\:left--s4 {
    left: -1rem !important;
  }
  .lg\:left--s5 {
    left: -1.25rem !important;
  }
  .lg\:left--s6 {
    left: -1.5rem !important;
  }
  .lg\:left--s8 {
    left: -2rem !important;
  }
  .lg\:left--s10 {
    left: -2.5rem !important;
  }
  .lg\:left--s12 {
    left: -3rem !important;
  }
  .lg\:left--s16 {
    left: -4rem !important;
  }
  .lg\:left--s18 {
    left: -4.5rem !important;
  }
  .lg\:left--s20 {
    left: -5rem !important;
  }
  .lg\:left--s24 {
    left: -6rem !important;
  }
  .lg\:left--s40em {
    left: -10em !important;
  }
  .lg\:left--s44em {
    left: -11em !important;
  }
  .lg\:left--s46em {
    left: -11.5em !important;
  }
  .lg\:left--s48em {
    left: -12em !important;
  }
  .lg\:left--s49em {
    left: -12.25em !important;
  }
  .lg\:left--s50em {
    left: -12.5em !important;
  }
  .lg\:left--s52em {
    left: -13em !important;
  }
  .lg\:left--s54em {
    left: -13.5em !important;
  }
  .lg\:left--s55em {
    left: -13.75em !important;
  }
  .lg\:left--s56em {
    left: -14em !important;
  }
  .lg\:left--s70em {
    left: -18em !important;
  }
  .lg\:left-s1 {
    left: 0.25rem !important;
  }
  .lg\:left-s2 {
    left: 0.5rem !important;
  }
  .lg\:left-s3 {
    left: 0.75rem !important;
  }
  .lg\:left-s4 {
    left: 1rem !important;
  }
  .lg\:left-s5 {
    left: 1.25rem !important;
  }
  .lg\:left-s6 {
    left: 1.5rem !important;
  }
  .lg\:left-s8 {
    left: 2rem !important;
  }
  .lg\:left-s10 {
    left: 2.5rem !important;
  }
  .lg\:left-s12 {
    left: 3rem !important;
  }
  .lg\:left-s16 {
    left: 4rem !important;
  }
  .lg\:left-s20 {
    left: 5rem !important;
  }
  .lg\:left-s24 {
    left: 6rem !important;
  }
  .lg\:left-s28 {
    left: 7rem !important;
  }
  .lg\:left-s32 {
    left: 8rem !important;
  }
  .lg\:left-s60 {
    left: 15rem !important;
  }
  .lg\:left-s70 {
    left: 17.5rem !important;
  }
  .lg\:left-s72 {
    left: 18rem !important;
  }
  .lg\:left-s40em {
    left: 10em !important;
  }
  .lg\:left-s44em {
    left: 11em !important;
  }
  .lg\:left-s46em {
    left: 11.5em !important;
  }
  .lg\:left-s48em {
    left: 12em !important;
  }
  .lg\:left-s49em {
    left: 12.25em !important;
  }
  .lg\:left-s50em {
    left: 12.5em !important;
  }
  .lg\:left-s52em {
    left: 13em !important;
  }
  .lg\:left-s54em {
    left: 13.5em !important;
  }
  .lg\:left-s55em {
    left: 13.75em !important;
  }
  .lg\:left-s56em {
    left: 14em !important;
  }
  .lg\:left-s70em {
    left: 18em !important;
  }
  .lg\:left-auto {
    left: auto !important;
  }
  .lg\:inset-0 {
    inset: 0 !important;
  }
  .lg\:inset-1 {
    inset: 16rem !important;
  }
  .lg\:inset-2 {
    inset: 20rem !important;
  }
  .lg\:inset-3 {
    inset: 24rem !important;
  }
  .lg\:inset-4 {
    inset: 28rem !important;
  }
  .lg\:inset-5 {
    inset: 32rem !important;
  }
  .lg\:inset-6 {
    inset: 36rem !important;
  }
  .lg\:inset-7 {
    inset: 42rem !important;
  }
  .lg\:inset-8 {
    inset: 48rem !important;
  }
  .lg\:inset-9 {
    inset: 56rem !important;
  }
  .lg\:inset-10 {
    inset: 64rem !important;
  }
  .lg\:inset-11 {
    inset: 72rem !important;
  }
  .lg\:inset-1em {
    inset: 16em !important;
  }
  .lg\:inset-2em {
    inset: 20em !important;
  }
  .lg\:inset-3em {
    inset: 24em !important;
  }
  .lg\:inset-4em {
    inset: 28em !important;
  }
  .lg\:inset-5em {
    inset: 32em !important;
  }
  .lg\:inset-6em {
    inset: 36em !important;
  }
  .lg\:inset-7em {
    inset: 42em !important;
  }
  .lg\:inset-8em {
    inset: 48em !important;
  }
  .lg\:inset-9em {
    inset: 56em !important;
  }
  .lg\:inset-10em {
    inset: 64em !important;
  }
  .lg\:inset-11em {
    inset: 72em !important;
  }
  .lg\:inset-1\/6 {
    inset: 16.666666% !important;
  }
  .lg\:inset-1\/4 {
    inset: 25% !important;
  }
  .lg\:inset-2\/7 {
    inset: 28.57142857% !important;
  }
  .lg\:inset-1\/3 {
    inset: 33.333333% !important;
  }
  .lg\:inset-1\/5 {
    inset: 20% !important;
  }
  .lg\:inset-2\/5 {
    inset: 40% !important;
  }
  .lg\:inset-3\/5 {
    inset: 60% !important;
  }
  .lg\:inset-4\/5 {
    inset: 80% !important;
  }
  .lg\:inset-1\/2 {
    inset: 50% !important;
  }
  .lg\:inset-1\/12 {
    inset: 8.333333% !important;
  }
  .lg\:inset-5\/12 {
    inset: 41.6666666% !important;
  }
  .lg\:inset-7\/12 {
    inset: 58.333333% !important;
  }
  .lg\:inset-11\/12 {
    inset: 91.6666666% !important;
  }
  .lg\:inset-2\/3 {
    inset: 66.666667% !important;
  }
  .lg\:inset-3\/4 {
    inset: 75% !important;
  }
  .lg\:inset-5\/6 {
    inset: 83.3333333% !important;
  }
  .lg\:inset-7\/6 {
    inset: 116.6666666% !important;
  }
  .lg\:inset-4\/3 {
    inset: 133.3333333% !important;
  }
  .lg\:inset-3\/2 {
    inset: 150% !important;
  }
  .lg\:inset-1\/24 {
    inset: 4.1666666% !important;
  }
  .lg\:inset-full {
    inset: 100% !important;
  }
  .lg\:inset-1\/6vh {
    inset: 16.666666vh !important;
  }
  .lg\:inset-1\/4vh {
    inset: 25vh !important;
  }
  .lg\:inset-1\/3vh {
    inset: 33.333333vh !important;
  }
  .lg\:inset-1\/2vh {
    inset: 50vh !important;
  }
  .lg\:inset-7\/12vh {
    inset: 58.333333vh !important;
  }
  .lg\:inset-2\/3vh {
    inset: 66.666667vh !important;
  }
  .lg\:inset-3\/4vh {
    inset: 75vh !important;
  }
  .lg\:inset-5\/6vh {
    inset: 83.3333333vh !important;
  }
  .lg\:inset-full-vh {
    inset: 100vh !important;
  }
  .lg\:inset--1 {
    inset: -16rem !important;
  }
  .lg\:inset--2 {
    inset: -20rem !important;
  }
  .lg\:inset--3 {
    inset: -24rem !important;
  }
  .lg\:inset--4 {
    inset: -28rem !important;
  }
  .lg\:inset--s1 {
    inset: -0.25rem !important;
  }
  .lg\:inset--s2 {
    inset: -0.5rem !important;
  }
  .lg\:inset--s3 {
    inset: -0.75rem !important;
  }
  .lg\:inset--s4 {
    inset: -1rem !important;
  }
  .lg\:inset--s5 {
    inset: -1.25rem !important;
  }
  .lg\:inset--s6 {
    inset: -1.5rem !important;
  }
  .lg\:inset--s8 {
    inset: -2rem !important;
  }
  .lg\:inset--s10 {
    inset: -2.5rem !important;
  }
  .lg\:inset--s12 {
    inset: -3rem !important;
  }
  .lg\:inset--s16 {
    inset: -4rem !important;
  }
  .lg\:inset--s18 {
    inset: -4.5rem !important;
  }
  .lg\:inset--s20 {
    inset: -5rem !important;
  }
  .lg\:inset--s24 {
    inset: -6rem !important;
  }
  .lg\:inset--s40em {
    inset: -10em !important;
  }
  .lg\:inset--s44em {
    inset: -11em !important;
  }
  .lg\:inset--s46em {
    inset: -11.5em !important;
  }
  .lg\:inset--s48em {
    inset: -12em !important;
  }
  .lg\:inset--s49em {
    inset: -12.25em !important;
  }
  .lg\:inset--s50em {
    inset: -12.5em !important;
  }
  .lg\:inset--s52em {
    inset: -13em !important;
  }
  .lg\:inset--s54em {
    inset: -13.5em !important;
  }
  .lg\:inset--s55em {
    inset: -13.75em !important;
  }
  .lg\:inset--s56em {
    inset: -14em !important;
  }
  .lg\:inset--s70em {
    inset: -18em !important;
  }
  .lg\:inset-s1 {
    inset: 0.25rem !important;
  }
  .lg\:inset-s2 {
    inset: 0.5rem !important;
  }
  .lg\:inset-s3 {
    inset: 0.75rem !important;
  }
  .lg\:inset-s4 {
    inset: 1rem !important;
  }
  .lg\:inset-s5 {
    inset: 1.25rem !important;
  }
  .lg\:inset-s6 {
    inset: 1.5rem !important;
  }
  .lg\:inset-s8 {
    inset: 2rem !important;
  }
  .lg\:inset-s10 {
    inset: 2.5rem !important;
  }
  .lg\:inset-s12 {
    inset: 3rem !important;
  }
  .lg\:inset-s16 {
    inset: 4rem !important;
  }
  .lg\:inset-s20 {
    inset: 5rem !important;
  }
  .lg\:inset-s24 {
    inset: 6rem !important;
  }
  .lg\:inset-s28 {
    inset: 7rem !important;
  }
  .lg\:inset-s32 {
    inset: 8rem !important;
  }
  .lg\:inset-s60 {
    inset: 15rem !important;
  }
  .lg\:inset-s70 {
    inset: 17.5rem !important;
  }
  .lg\:inset-s72 {
    inset: 18rem !important;
  }
  .lg\:inset-s40em {
    inset: 10em !important;
  }
  .lg\:inset-s44em {
    inset: 11em !important;
  }
  .lg\:inset-s46em {
    inset: 11.5em !important;
  }
  .lg\:inset-s48em {
    inset: 12em !important;
  }
  .lg\:inset-s49em {
    inset: 12.25em !important;
  }
  .lg\:inset-s50em {
    inset: 12.5em !important;
  }
  .lg\:inset-s52em {
    inset: 13em !important;
  }
  .lg\:inset-s54em {
    inset: 13.5em !important;
  }
  .lg\:inset-s55em {
    inset: 13.75em !important;
  }
  .lg\:inset-s56em {
    inset: 14em !important;
  }
  .lg\:inset-s70em {
    inset: 18em !important;
  }
  .lg\:inset-auto {
    inset: auto !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:top-0 {
    top: 0 !important;
  }
  .xl\:top-1 {
    top: 16rem !important;
  }
  .xl\:top-2 {
    top: 20rem !important;
  }
  .xl\:top-3 {
    top: 24rem !important;
  }
  .xl\:top-4 {
    top: 28rem !important;
  }
  .xl\:top-5 {
    top: 32rem !important;
  }
  .xl\:top-6 {
    top: 36rem !important;
  }
  .xl\:top-7 {
    top: 42rem !important;
  }
  .xl\:top-8 {
    top: 48rem !important;
  }
  .xl\:top-9 {
    top: 56rem !important;
  }
  .xl\:top-10 {
    top: 64rem !important;
  }
  .xl\:top-11 {
    top: 72rem !important;
  }
  .xl\:top-1em {
    top: 16em !important;
  }
  .xl\:top-2em {
    top: 20em !important;
  }
  .xl\:top-3em {
    top: 24em !important;
  }
  .xl\:top-4em {
    top: 28em !important;
  }
  .xl\:top-5em {
    top: 32em !important;
  }
  .xl\:top-6em {
    top: 36em !important;
  }
  .xl\:top-7em {
    top: 42em !important;
  }
  .xl\:top-8em {
    top: 48em !important;
  }
  .xl\:top-9em {
    top: 56em !important;
  }
  .xl\:top-10em {
    top: 64em !important;
  }
  .xl\:top-11em {
    top: 72em !important;
  }
  .xl\:top-1\/6 {
    top: 16.666666% !important;
  }
  .xl\:top-1\/4 {
    top: 25% !important;
  }
  .xl\:top-2\/7 {
    top: 28.57142857% !important;
  }
  .xl\:top-1\/3 {
    top: 33.333333% !important;
  }
  .xl\:top-1\/5 {
    top: 20% !important;
  }
  .xl\:top-2\/5 {
    top: 40% !important;
  }
  .xl\:top-3\/5 {
    top: 60% !important;
  }
  .xl\:top-4\/5 {
    top: 80% !important;
  }
  .xl\:top-1\/2 {
    top: 50% !important;
  }
  .xl\:top-1\/12 {
    top: 8.333333% !important;
  }
  .xl\:top-5\/12 {
    top: 41.6666666% !important;
  }
  .xl\:top-7\/12 {
    top: 58.333333% !important;
  }
  .xl\:top-11\/12 {
    top: 91.6666666% !important;
  }
  .xl\:top-2\/3 {
    top: 66.666667% !important;
  }
  .xl\:top-3\/4 {
    top: 75% !important;
  }
  .xl\:top-5\/6 {
    top: 83.3333333% !important;
  }
  .xl\:top-7\/6 {
    top: 116.6666666% !important;
  }
  .xl\:top-4\/3 {
    top: 133.3333333% !important;
  }
  .xl\:top-3\/2 {
    top: 150% !important;
  }
  .xl\:top-1\/24 {
    top: 4.1666666% !important;
  }
  .xl\:top-full {
    top: 100% !important;
  }
  .xl\:top-1\/6vh {
    top: 16.666666vh !important;
  }
  .xl\:top-1\/4vh {
    top: 25vh !important;
  }
  .xl\:top-1\/3vh {
    top: 33.333333vh !important;
  }
  .xl\:top-1\/2vh {
    top: 50vh !important;
  }
  .xl\:top-7\/12vh {
    top: 58.333333vh !important;
  }
  .xl\:top-2\/3vh {
    top: 66.666667vh !important;
  }
  .xl\:top-3\/4vh {
    top: 75vh !important;
  }
  .xl\:top-5\/6vh {
    top: 83.3333333vh !important;
  }
  .xl\:top-full-vh {
    top: 100vh !important;
  }
  .xl\:top--1 {
    top: -16rem !important;
  }
  .xl\:top--2 {
    top: -20rem !important;
  }
  .xl\:top--3 {
    top: -24rem !important;
  }
  .xl\:top--4 {
    top: -28rem !important;
  }
  .xl\:top--s1 {
    top: -0.25rem !important;
  }
  .xl\:top--s2 {
    top: -0.5rem !important;
  }
  .xl\:top--s3 {
    top: -0.75rem !important;
  }
  .xl\:top--s4 {
    top: -1rem !important;
  }
  .xl\:top--s5 {
    top: -1.25rem !important;
  }
  .xl\:top--s6 {
    top: -1.5rem !important;
  }
  .xl\:top--s8 {
    top: -2rem !important;
  }
  .xl\:top--s10 {
    top: -2.5rem !important;
  }
  .xl\:top--s12 {
    top: -3rem !important;
  }
  .xl\:top--s16 {
    top: -4rem !important;
  }
  .xl\:top--s18 {
    top: -4.5rem !important;
  }
  .xl\:top--s20 {
    top: -5rem !important;
  }
  .xl\:top--s24 {
    top: -6rem !important;
  }
  .xl\:top--s40em {
    top: -10em !important;
  }
  .xl\:top--s44em {
    top: -11em !important;
  }
  .xl\:top--s46em {
    top: -11.5em !important;
  }
  .xl\:top--s48em {
    top: -12em !important;
  }
  .xl\:top--s49em {
    top: -12.25em !important;
  }
  .xl\:top--s50em {
    top: -12.5em !important;
  }
  .xl\:top--s52em {
    top: -13em !important;
  }
  .xl\:top--s54em {
    top: -13.5em !important;
  }
  .xl\:top--s55em {
    top: -13.75em !important;
  }
  .xl\:top--s56em {
    top: -14em !important;
  }
  .xl\:top--s70em {
    top: -18em !important;
  }
  .xl\:top-s1 {
    top: 0.25rem !important;
  }
  .xl\:top-s2 {
    top: 0.5rem !important;
  }
  .xl\:top-s3 {
    top: 0.75rem !important;
  }
  .xl\:top-s4 {
    top: 1rem !important;
  }
  .xl\:top-s5 {
    top: 1.25rem !important;
  }
  .xl\:top-s6 {
    top: 1.5rem !important;
  }
  .xl\:top-s8 {
    top: 2rem !important;
  }
  .xl\:top-s10 {
    top: 2.5rem !important;
  }
  .xl\:top-s12 {
    top: 3rem !important;
  }
  .xl\:top-s16 {
    top: 4rem !important;
  }
  .xl\:top-s20 {
    top: 5rem !important;
  }
  .xl\:top-s24 {
    top: 6rem !important;
  }
  .xl\:top-s28 {
    top: 7rem !important;
  }
  .xl\:top-s32 {
    top: 8rem !important;
  }
  .xl\:top-s60 {
    top: 15rem !important;
  }
  .xl\:top-s70 {
    top: 17.5rem !important;
  }
  .xl\:top-s72 {
    top: 18rem !important;
  }
  .xl\:top-s40em {
    top: 10em !important;
  }
  .xl\:top-s44em {
    top: 11em !important;
  }
  .xl\:top-s46em {
    top: 11.5em !important;
  }
  .xl\:top-s48em {
    top: 12em !important;
  }
  .xl\:top-s49em {
    top: 12.25em !important;
  }
  .xl\:top-s50em {
    top: 12.5em !important;
  }
  .xl\:top-s52em {
    top: 13em !important;
  }
  .xl\:top-s54em {
    top: 13.5em !important;
  }
  .xl\:top-s55em {
    top: 13.75em !important;
  }
  .xl\:top-s56em {
    top: 14em !important;
  }
  .xl\:top-s70em {
    top: 18em !important;
  }
  .xl\:top-auto {
    top: auto !important;
  }
  .xl\:right-0 {
    right: 0 !important;
  }
  .xl\:right-1 {
    right: 16rem !important;
  }
  .xl\:right-2 {
    right: 20rem !important;
  }
  .xl\:right-3 {
    right: 24rem !important;
  }
  .xl\:right-4 {
    right: 28rem !important;
  }
  .xl\:right-5 {
    right: 32rem !important;
  }
  .xl\:right-6 {
    right: 36rem !important;
  }
  .xl\:right-7 {
    right: 42rem !important;
  }
  .xl\:right-8 {
    right: 48rem !important;
  }
  .xl\:right-9 {
    right: 56rem !important;
  }
  .xl\:right-10 {
    right: 64rem !important;
  }
  .xl\:right-11 {
    right: 72rem !important;
  }
  .xl\:right-1em {
    right: 16em !important;
  }
  .xl\:right-2em {
    right: 20em !important;
  }
  .xl\:right-3em {
    right: 24em !important;
  }
  .xl\:right-4em {
    right: 28em !important;
  }
  .xl\:right-5em {
    right: 32em !important;
  }
  .xl\:right-6em {
    right: 36em !important;
  }
  .xl\:right-7em {
    right: 42em !important;
  }
  .xl\:right-8em {
    right: 48em !important;
  }
  .xl\:right-9em {
    right: 56em !important;
  }
  .xl\:right-10em {
    right: 64em !important;
  }
  .xl\:right-11em {
    right: 72em !important;
  }
  .xl\:right-1\/6 {
    right: 16.666666% !important;
  }
  .xl\:right-1\/4 {
    right: 25% !important;
  }
  .xl\:right-2\/7 {
    right: 28.57142857% !important;
  }
  .xl\:right-1\/3 {
    right: 33.333333% !important;
  }
  .xl\:right-1\/5 {
    right: 20% !important;
  }
  .xl\:right-2\/5 {
    right: 40% !important;
  }
  .xl\:right-3\/5 {
    right: 60% !important;
  }
  .xl\:right-4\/5 {
    right: 80% !important;
  }
  .xl\:right-1\/2 {
    right: 50% !important;
  }
  .xl\:right-1\/12 {
    right: 8.333333% !important;
  }
  .xl\:right-5\/12 {
    right: 41.6666666% !important;
  }
  .xl\:right-7\/12 {
    right: 58.333333% !important;
  }
  .xl\:right-11\/12 {
    right: 91.6666666% !important;
  }
  .xl\:right-2\/3 {
    right: 66.666667% !important;
  }
  .xl\:right-3\/4 {
    right: 75% !important;
  }
  .xl\:right-5\/6 {
    right: 83.3333333% !important;
  }
  .xl\:right-7\/6 {
    right: 116.6666666% !important;
  }
  .xl\:right-4\/3 {
    right: 133.3333333% !important;
  }
  .xl\:right-3\/2 {
    right: 150% !important;
  }
  .xl\:right-1\/24 {
    right: 4.1666666% !important;
  }
  .xl\:right-full {
    right: 100% !important;
  }
  .xl\:right-1\/6vh {
    right: 16.666666vh !important;
  }
  .xl\:right-1\/4vh {
    right: 25vh !important;
  }
  .xl\:right-1\/3vh {
    right: 33.333333vh !important;
  }
  .xl\:right-1\/2vh {
    right: 50vh !important;
  }
  .xl\:right-7\/12vh {
    right: 58.333333vh !important;
  }
  .xl\:right-2\/3vh {
    right: 66.666667vh !important;
  }
  .xl\:right-3\/4vh {
    right: 75vh !important;
  }
  .xl\:right-5\/6vh {
    right: 83.3333333vh !important;
  }
  .xl\:right-full-vh {
    right: 100vh !important;
  }
  .xl\:right--1 {
    right: -16rem !important;
  }
  .xl\:right--2 {
    right: -20rem !important;
  }
  .xl\:right--3 {
    right: -24rem !important;
  }
  .xl\:right--4 {
    right: -28rem !important;
  }
  .xl\:right--s1 {
    right: -0.25rem !important;
  }
  .xl\:right--s2 {
    right: -0.5rem !important;
  }
  .xl\:right--s3 {
    right: -0.75rem !important;
  }
  .xl\:right--s4 {
    right: -1rem !important;
  }
  .xl\:right--s5 {
    right: -1.25rem !important;
  }
  .xl\:right--s6 {
    right: -1.5rem !important;
  }
  .xl\:right--s8 {
    right: -2rem !important;
  }
  .xl\:right--s10 {
    right: -2.5rem !important;
  }
  .xl\:right--s12 {
    right: -3rem !important;
  }
  .xl\:right--s16 {
    right: -4rem !important;
  }
  .xl\:right--s18 {
    right: -4.5rem !important;
  }
  .xl\:right--s20 {
    right: -5rem !important;
  }
  .xl\:right--s24 {
    right: -6rem !important;
  }
  .xl\:right--s40em {
    right: -10em !important;
  }
  .xl\:right--s44em {
    right: -11em !important;
  }
  .xl\:right--s46em {
    right: -11.5em !important;
  }
  .xl\:right--s48em {
    right: -12em !important;
  }
  .xl\:right--s49em {
    right: -12.25em !important;
  }
  .xl\:right--s50em {
    right: -12.5em !important;
  }
  .xl\:right--s52em {
    right: -13em !important;
  }
  .xl\:right--s54em {
    right: -13.5em !important;
  }
  .xl\:right--s55em {
    right: -13.75em !important;
  }
  .xl\:right--s56em {
    right: -14em !important;
  }
  .xl\:right--s70em {
    right: -18em !important;
  }
  .xl\:right-s1 {
    right: 0.25rem !important;
  }
  .xl\:right-s2 {
    right: 0.5rem !important;
  }
  .xl\:right-s3 {
    right: 0.75rem !important;
  }
  .xl\:right-s4 {
    right: 1rem !important;
  }
  .xl\:right-s5 {
    right: 1.25rem !important;
  }
  .xl\:right-s6 {
    right: 1.5rem !important;
  }
  .xl\:right-s8 {
    right: 2rem !important;
  }
  .xl\:right-s10 {
    right: 2.5rem !important;
  }
  .xl\:right-s12 {
    right: 3rem !important;
  }
  .xl\:right-s16 {
    right: 4rem !important;
  }
  .xl\:right-s20 {
    right: 5rem !important;
  }
  .xl\:right-s24 {
    right: 6rem !important;
  }
  .xl\:right-s28 {
    right: 7rem !important;
  }
  .xl\:right-s32 {
    right: 8rem !important;
  }
  .xl\:right-s60 {
    right: 15rem !important;
  }
  .xl\:right-s70 {
    right: 17.5rem !important;
  }
  .xl\:right-s72 {
    right: 18rem !important;
  }
  .xl\:right-s40em {
    right: 10em !important;
  }
  .xl\:right-s44em {
    right: 11em !important;
  }
  .xl\:right-s46em {
    right: 11.5em !important;
  }
  .xl\:right-s48em {
    right: 12em !important;
  }
  .xl\:right-s49em {
    right: 12.25em !important;
  }
  .xl\:right-s50em {
    right: 12.5em !important;
  }
  .xl\:right-s52em {
    right: 13em !important;
  }
  .xl\:right-s54em {
    right: 13.5em !important;
  }
  .xl\:right-s55em {
    right: 13.75em !important;
  }
  .xl\:right-s56em {
    right: 14em !important;
  }
  .xl\:right-s70em {
    right: 18em !important;
  }
  .xl\:right-auto {
    right: auto !important;
  }
  .xl\:bottom-0 {
    bottom: 0 !important;
  }
  .xl\:bottom-1 {
    bottom: 16rem !important;
  }
  .xl\:bottom-2 {
    bottom: 20rem !important;
  }
  .xl\:bottom-3 {
    bottom: 24rem !important;
  }
  .xl\:bottom-4 {
    bottom: 28rem !important;
  }
  .xl\:bottom-5 {
    bottom: 32rem !important;
  }
  .xl\:bottom-6 {
    bottom: 36rem !important;
  }
  .xl\:bottom-7 {
    bottom: 42rem !important;
  }
  .xl\:bottom-8 {
    bottom: 48rem !important;
  }
  .xl\:bottom-9 {
    bottom: 56rem !important;
  }
  .xl\:bottom-10 {
    bottom: 64rem !important;
  }
  .xl\:bottom-11 {
    bottom: 72rem !important;
  }
  .xl\:bottom-1em {
    bottom: 16em !important;
  }
  .xl\:bottom-2em {
    bottom: 20em !important;
  }
  .xl\:bottom-3em {
    bottom: 24em !important;
  }
  .xl\:bottom-4em {
    bottom: 28em !important;
  }
  .xl\:bottom-5em {
    bottom: 32em !important;
  }
  .xl\:bottom-6em {
    bottom: 36em !important;
  }
  .xl\:bottom-7em {
    bottom: 42em !important;
  }
  .xl\:bottom-8em {
    bottom: 48em !important;
  }
  .xl\:bottom-9em {
    bottom: 56em !important;
  }
  .xl\:bottom-10em {
    bottom: 64em !important;
  }
  .xl\:bottom-11em {
    bottom: 72em !important;
  }
  .xl\:bottom-1\/6 {
    bottom: 16.666666% !important;
  }
  .xl\:bottom-1\/4 {
    bottom: 25% !important;
  }
  .xl\:bottom-2\/7 {
    bottom: 28.57142857% !important;
  }
  .xl\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }
  .xl\:bottom-1\/5 {
    bottom: 20% !important;
  }
  .xl\:bottom-2\/5 {
    bottom: 40% !important;
  }
  .xl\:bottom-3\/5 {
    bottom: 60% !important;
  }
  .xl\:bottom-4\/5 {
    bottom: 80% !important;
  }
  .xl\:bottom-1\/2 {
    bottom: 50% !important;
  }
  .xl\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }
  .xl\:bottom-5\/12 {
    bottom: 41.6666666% !important;
  }
  .xl\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }
  .xl\:bottom-11\/12 {
    bottom: 91.6666666% !important;
  }
  .xl\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }
  .xl\:bottom-3\/4 {
    bottom: 75% !important;
  }
  .xl\:bottom-5\/6 {
    bottom: 83.3333333% !important;
  }
  .xl\:bottom-7\/6 {
    bottom: 116.6666666% !important;
  }
  .xl\:bottom-4\/3 {
    bottom: 133.3333333% !important;
  }
  .xl\:bottom-3\/2 {
    bottom: 150% !important;
  }
  .xl\:bottom-1\/24 {
    bottom: 4.1666666% !important;
  }
  .xl\:bottom-full {
    bottom: 100% !important;
  }
  .xl\:bottom-1\/6vh {
    bottom: 16.666666vh !important;
  }
  .xl\:bottom-1\/4vh {
    bottom: 25vh !important;
  }
  .xl\:bottom-1\/3vh {
    bottom: 33.333333vh !important;
  }
  .xl\:bottom-1\/2vh {
    bottom: 50vh !important;
  }
  .xl\:bottom-7\/12vh {
    bottom: 58.333333vh !important;
  }
  .xl\:bottom-2\/3vh {
    bottom: 66.666667vh !important;
  }
  .xl\:bottom-3\/4vh {
    bottom: 75vh !important;
  }
  .xl\:bottom-5\/6vh {
    bottom: 83.3333333vh !important;
  }
  .xl\:bottom-full-vh {
    bottom: 100vh !important;
  }
  .xl\:bottom--1 {
    bottom: -16rem !important;
  }
  .xl\:bottom--2 {
    bottom: -20rem !important;
  }
  .xl\:bottom--3 {
    bottom: -24rem !important;
  }
  .xl\:bottom--4 {
    bottom: -28rem !important;
  }
  .xl\:bottom--s1 {
    bottom: -0.25rem !important;
  }
  .xl\:bottom--s2 {
    bottom: -0.5rem !important;
  }
  .xl\:bottom--s3 {
    bottom: -0.75rem !important;
  }
  .xl\:bottom--s4 {
    bottom: -1rem !important;
  }
  .xl\:bottom--s5 {
    bottom: -1.25rem !important;
  }
  .xl\:bottom--s6 {
    bottom: -1.5rem !important;
  }
  .xl\:bottom--s8 {
    bottom: -2rem !important;
  }
  .xl\:bottom--s10 {
    bottom: -2.5rem !important;
  }
  .xl\:bottom--s12 {
    bottom: -3rem !important;
  }
  .xl\:bottom--s16 {
    bottom: -4rem !important;
  }
  .xl\:bottom--s18 {
    bottom: -4.5rem !important;
  }
  .xl\:bottom--s20 {
    bottom: -5rem !important;
  }
  .xl\:bottom--s24 {
    bottom: -6rem !important;
  }
  .xl\:bottom--s40em {
    bottom: -10em !important;
  }
  .xl\:bottom--s44em {
    bottom: -11em !important;
  }
  .xl\:bottom--s46em {
    bottom: -11.5em !important;
  }
  .xl\:bottom--s48em {
    bottom: -12em !important;
  }
  .xl\:bottom--s49em {
    bottom: -12.25em !important;
  }
  .xl\:bottom--s50em {
    bottom: -12.5em !important;
  }
  .xl\:bottom--s52em {
    bottom: -13em !important;
  }
  .xl\:bottom--s54em {
    bottom: -13.5em !important;
  }
  .xl\:bottom--s55em {
    bottom: -13.75em !important;
  }
  .xl\:bottom--s56em {
    bottom: -14em !important;
  }
  .xl\:bottom--s70em {
    bottom: -18em !important;
  }
  .xl\:bottom-s1 {
    bottom: 0.25rem !important;
  }
  .xl\:bottom-s2 {
    bottom: 0.5rem !important;
  }
  .xl\:bottom-s3 {
    bottom: 0.75rem !important;
  }
  .xl\:bottom-s4 {
    bottom: 1rem !important;
  }
  .xl\:bottom-s5 {
    bottom: 1.25rem !important;
  }
  .xl\:bottom-s6 {
    bottom: 1.5rem !important;
  }
  .xl\:bottom-s8 {
    bottom: 2rem !important;
  }
  .xl\:bottom-s10 {
    bottom: 2.5rem !important;
  }
  .xl\:bottom-s12 {
    bottom: 3rem !important;
  }
  .xl\:bottom-s16 {
    bottom: 4rem !important;
  }
  .xl\:bottom-s20 {
    bottom: 5rem !important;
  }
  .xl\:bottom-s24 {
    bottom: 6rem !important;
  }
  .xl\:bottom-s28 {
    bottom: 7rem !important;
  }
  .xl\:bottom-s32 {
    bottom: 8rem !important;
  }
  .xl\:bottom-s60 {
    bottom: 15rem !important;
  }
  .xl\:bottom-s70 {
    bottom: 17.5rem !important;
  }
  .xl\:bottom-s72 {
    bottom: 18rem !important;
  }
  .xl\:bottom-s40em {
    bottom: 10em !important;
  }
  .xl\:bottom-s44em {
    bottom: 11em !important;
  }
  .xl\:bottom-s46em {
    bottom: 11.5em !important;
  }
  .xl\:bottom-s48em {
    bottom: 12em !important;
  }
  .xl\:bottom-s49em {
    bottom: 12.25em !important;
  }
  .xl\:bottom-s50em {
    bottom: 12.5em !important;
  }
  .xl\:bottom-s52em {
    bottom: 13em !important;
  }
  .xl\:bottom-s54em {
    bottom: 13.5em !important;
  }
  .xl\:bottom-s55em {
    bottom: 13.75em !important;
  }
  .xl\:bottom-s56em {
    bottom: 14em !important;
  }
  .xl\:bottom-s70em {
    bottom: 18em !important;
  }
  .xl\:bottom-auto {
    bottom: auto !important;
  }
  .xl\:left-0 {
    left: 0 !important;
  }
  .xl\:left-1 {
    left: 16rem !important;
  }
  .xl\:left-2 {
    left: 20rem !important;
  }
  .xl\:left-3 {
    left: 24rem !important;
  }
  .xl\:left-4 {
    left: 28rem !important;
  }
  .xl\:left-5 {
    left: 32rem !important;
  }
  .xl\:left-6 {
    left: 36rem !important;
  }
  .xl\:left-7 {
    left: 42rem !important;
  }
  .xl\:left-8 {
    left: 48rem !important;
  }
  .xl\:left-9 {
    left: 56rem !important;
  }
  .xl\:left-10 {
    left: 64rem !important;
  }
  .xl\:left-11 {
    left: 72rem !important;
  }
  .xl\:left-1em {
    left: 16em !important;
  }
  .xl\:left-2em {
    left: 20em !important;
  }
  .xl\:left-3em {
    left: 24em !important;
  }
  .xl\:left-4em {
    left: 28em !important;
  }
  .xl\:left-5em {
    left: 32em !important;
  }
  .xl\:left-6em {
    left: 36em !important;
  }
  .xl\:left-7em {
    left: 42em !important;
  }
  .xl\:left-8em {
    left: 48em !important;
  }
  .xl\:left-9em {
    left: 56em !important;
  }
  .xl\:left-10em {
    left: 64em !important;
  }
  .xl\:left-11em {
    left: 72em !important;
  }
  .xl\:left-1\/6 {
    left: 16.666666% !important;
  }
  .xl\:left-1\/4 {
    left: 25% !important;
  }
  .xl\:left-2\/7 {
    left: 28.57142857% !important;
  }
  .xl\:left-1\/3 {
    left: 33.333333% !important;
  }
  .xl\:left-1\/5 {
    left: 20% !important;
  }
  .xl\:left-2\/5 {
    left: 40% !important;
  }
  .xl\:left-3\/5 {
    left: 60% !important;
  }
  .xl\:left-4\/5 {
    left: 80% !important;
  }
  .xl\:left-1\/2 {
    left: 50% !important;
  }
  .xl\:left-1\/12 {
    left: 8.333333% !important;
  }
  .xl\:left-5\/12 {
    left: 41.6666666% !important;
  }
  .xl\:left-7\/12 {
    left: 58.333333% !important;
  }
  .xl\:left-11\/12 {
    left: 91.6666666% !important;
  }
  .xl\:left-2\/3 {
    left: 66.666667% !important;
  }
  .xl\:left-3\/4 {
    left: 75% !important;
  }
  .xl\:left-5\/6 {
    left: 83.3333333% !important;
  }
  .xl\:left-7\/6 {
    left: 116.6666666% !important;
  }
  .xl\:left-4\/3 {
    left: 133.3333333% !important;
  }
  .xl\:left-3\/2 {
    left: 150% !important;
  }
  .xl\:left-1\/24 {
    left: 4.1666666% !important;
  }
  .xl\:left-full {
    left: 100% !important;
  }
  .xl\:left-1\/6vh {
    left: 16.666666vh !important;
  }
  .xl\:left-1\/4vh {
    left: 25vh !important;
  }
  .xl\:left-1\/3vh {
    left: 33.333333vh !important;
  }
  .xl\:left-1\/2vh {
    left: 50vh !important;
  }
  .xl\:left-7\/12vh {
    left: 58.333333vh !important;
  }
  .xl\:left-2\/3vh {
    left: 66.666667vh !important;
  }
  .xl\:left-3\/4vh {
    left: 75vh !important;
  }
  .xl\:left-5\/6vh {
    left: 83.3333333vh !important;
  }
  .xl\:left-full-vh {
    left: 100vh !important;
  }
  .xl\:left--1 {
    left: -16rem !important;
  }
  .xl\:left--2 {
    left: -20rem !important;
  }
  .xl\:left--3 {
    left: -24rem !important;
  }
  .xl\:left--4 {
    left: -28rem !important;
  }
  .xl\:left--s1 {
    left: -0.25rem !important;
  }
  .xl\:left--s2 {
    left: -0.5rem !important;
  }
  .xl\:left--s3 {
    left: -0.75rem !important;
  }
  .xl\:left--s4 {
    left: -1rem !important;
  }
  .xl\:left--s5 {
    left: -1.25rem !important;
  }
  .xl\:left--s6 {
    left: -1.5rem !important;
  }
  .xl\:left--s8 {
    left: -2rem !important;
  }
  .xl\:left--s10 {
    left: -2.5rem !important;
  }
  .xl\:left--s12 {
    left: -3rem !important;
  }
  .xl\:left--s16 {
    left: -4rem !important;
  }
  .xl\:left--s18 {
    left: -4.5rem !important;
  }
  .xl\:left--s20 {
    left: -5rem !important;
  }
  .xl\:left--s24 {
    left: -6rem !important;
  }
  .xl\:left--s40em {
    left: -10em !important;
  }
  .xl\:left--s44em {
    left: -11em !important;
  }
  .xl\:left--s46em {
    left: -11.5em !important;
  }
  .xl\:left--s48em {
    left: -12em !important;
  }
  .xl\:left--s49em {
    left: -12.25em !important;
  }
  .xl\:left--s50em {
    left: -12.5em !important;
  }
  .xl\:left--s52em {
    left: -13em !important;
  }
  .xl\:left--s54em {
    left: -13.5em !important;
  }
  .xl\:left--s55em {
    left: -13.75em !important;
  }
  .xl\:left--s56em {
    left: -14em !important;
  }
  .xl\:left--s70em {
    left: -18em !important;
  }
  .xl\:left-s1 {
    left: 0.25rem !important;
  }
  .xl\:left-s2 {
    left: 0.5rem !important;
  }
  .xl\:left-s3 {
    left: 0.75rem !important;
  }
  .xl\:left-s4 {
    left: 1rem !important;
  }
  .xl\:left-s5 {
    left: 1.25rem !important;
  }
  .xl\:left-s6 {
    left: 1.5rem !important;
  }
  .xl\:left-s8 {
    left: 2rem !important;
  }
  .xl\:left-s10 {
    left: 2.5rem !important;
  }
  .xl\:left-s12 {
    left: 3rem !important;
  }
  .xl\:left-s16 {
    left: 4rem !important;
  }
  .xl\:left-s20 {
    left: 5rem !important;
  }
  .xl\:left-s24 {
    left: 6rem !important;
  }
  .xl\:left-s28 {
    left: 7rem !important;
  }
  .xl\:left-s32 {
    left: 8rem !important;
  }
  .xl\:left-s60 {
    left: 15rem !important;
  }
  .xl\:left-s70 {
    left: 17.5rem !important;
  }
  .xl\:left-s72 {
    left: 18rem !important;
  }
  .xl\:left-s40em {
    left: 10em !important;
  }
  .xl\:left-s44em {
    left: 11em !important;
  }
  .xl\:left-s46em {
    left: 11.5em !important;
  }
  .xl\:left-s48em {
    left: 12em !important;
  }
  .xl\:left-s49em {
    left: 12.25em !important;
  }
  .xl\:left-s50em {
    left: 12.5em !important;
  }
  .xl\:left-s52em {
    left: 13em !important;
  }
  .xl\:left-s54em {
    left: 13.5em !important;
  }
  .xl\:left-s55em {
    left: 13.75em !important;
  }
  .xl\:left-s56em {
    left: 14em !important;
  }
  .xl\:left-s70em {
    left: 18em !important;
  }
  .xl\:left-auto {
    left: auto !important;
  }
  .xl\:inset-0 {
    inset: 0 !important;
  }
  .xl\:inset-1 {
    inset: 16rem !important;
  }
  .xl\:inset-2 {
    inset: 20rem !important;
  }
  .xl\:inset-3 {
    inset: 24rem !important;
  }
  .xl\:inset-4 {
    inset: 28rem !important;
  }
  .xl\:inset-5 {
    inset: 32rem !important;
  }
  .xl\:inset-6 {
    inset: 36rem !important;
  }
  .xl\:inset-7 {
    inset: 42rem !important;
  }
  .xl\:inset-8 {
    inset: 48rem !important;
  }
  .xl\:inset-9 {
    inset: 56rem !important;
  }
  .xl\:inset-10 {
    inset: 64rem !important;
  }
  .xl\:inset-11 {
    inset: 72rem !important;
  }
  .xl\:inset-1em {
    inset: 16em !important;
  }
  .xl\:inset-2em {
    inset: 20em !important;
  }
  .xl\:inset-3em {
    inset: 24em !important;
  }
  .xl\:inset-4em {
    inset: 28em !important;
  }
  .xl\:inset-5em {
    inset: 32em !important;
  }
  .xl\:inset-6em {
    inset: 36em !important;
  }
  .xl\:inset-7em {
    inset: 42em !important;
  }
  .xl\:inset-8em {
    inset: 48em !important;
  }
  .xl\:inset-9em {
    inset: 56em !important;
  }
  .xl\:inset-10em {
    inset: 64em !important;
  }
  .xl\:inset-11em {
    inset: 72em !important;
  }
  .xl\:inset-1\/6 {
    inset: 16.666666% !important;
  }
  .xl\:inset-1\/4 {
    inset: 25% !important;
  }
  .xl\:inset-2\/7 {
    inset: 28.57142857% !important;
  }
  .xl\:inset-1\/3 {
    inset: 33.333333% !important;
  }
  .xl\:inset-1\/5 {
    inset: 20% !important;
  }
  .xl\:inset-2\/5 {
    inset: 40% !important;
  }
  .xl\:inset-3\/5 {
    inset: 60% !important;
  }
  .xl\:inset-4\/5 {
    inset: 80% !important;
  }
  .xl\:inset-1\/2 {
    inset: 50% !important;
  }
  .xl\:inset-1\/12 {
    inset: 8.333333% !important;
  }
  .xl\:inset-5\/12 {
    inset: 41.6666666% !important;
  }
  .xl\:inset-7\/12 {
    inset: 58.333333% !important;
  }
  .xl\:inset-11\/12 {
    inset: 91.6666666% !important;
  }
  .xl\:inset-2\/3 {
    inset: 66.666667% !important;
  }
  .xl\:inset-3\/4 {
    inset: 75% !important;
  }
  .xl\:inset-5\/6 {
    inset: 83.3333333% !important;
  }
  .xl\:inset-7\/6 {
    inset: 116.6666666% !important;
  }
  .xl\:inset-4\/3 {
    inset: 133.3333333% !important;
  }
  .xl\:inset-3\/2 {
    inset: 150% !important;
  }
  .xl\:inset-1\/24 {
    inset: 4.1666666% !important;
  }
  .xl\:inset-full {
    inset: 100% !important;
  }
  .xl\:inset-1\/6vh {
    inset: 16.666666vh !important;
  }
  .xl\:inset-1\/4vh {
    inset: 25vh !important;
  }
  .xl\:inset-1\/3vh {
    inset: 33.333333vh !important;
  }
  .xl\:inset-1\/2vh {
    inset: 50vh !important;
  }
  .xl\:inset-7\/12vh {
    inset: 58.333333vh !important;
  }
  .xl\:inset-2\/3vh {
    inset: 66.666667vh !important;
  }
  .xl\:inset-3\/4vh {
    inset: 75vh !important;
  }
  .xl\:inset-5\/6vh {
    inset: 83.3333333vh !important;
  }
  .xl\:inset-full-vh {
    inset: 100vh !important;
  }
  .xl\:inset--1 {
    inset: -16rem !important;
  }
  .xl\:inset--2 {
    inset: -20rem !important;
  }
  .xl\:inset--3 {
    inset: -24rem !important;
  }
  .xl\:inset--4 {
    inset: -28rem !important;
  }
  .xl\:inset--s1 {
    inset: -0.25rem !important;
  }
  .xl\:inset--s2 {
    inset: -0.5rem !important;
  }
  .xl\:inset--s3 {
    inset: -0.75rem !important;
  }
  .xl\:inset--s4 {
    inset: -1rem !important;
  }
  .xl\:inset--s5 {
    inset: -1.25rem !important;
  }
  .xl\:inset--s6 {
    inset: -1.5rem !important;
  }
  .xl\:inset--s8 {
    inset: -2rem !important;
  }
  .xl\:inset--s10 {
    inset: -2.5rem !important;
  }
  .xl\:inset--s12 {
    inset: -3rem !important;
  }
  .xl\:inset--s16 {
    inset: -4rem !important;
  }
  .xl\:inset--s18 {
    inset: -4.5rem !important;
  }
  .xl\:inset--s20 {
    inset: -5rem !important;
  }
  .xl\:inset--s24 {
    inset: -6rem !important;
  }
  .xl\:inset--s40em {
    inset: -10em !important;
  }
  .xl\:inset--s44em {
    inset: -11em !important;
  }
  .xl\:inset--s46em {
    inset: -11.5em !important;
  }
  .xl\:inset--s48em {
    inset: -12em !important;
  }
  .xl\:inset--s49em {
    inset: -12.25em !important;
  }
  .xl\:inset--s50em {
    inset: -12.5em !important;
  }
  .xl\:inset--s52em {
    inset: -13em !important;
  }
  .xl\:inset--s54em {
    inset: -13.5em !important;
  }
  .xl\:inset--s55em {
    inset: -13.75em !important;
  }
  .xl\:inset--s56em {
    inset: -14em !important;
  }
  .xl\:inset--s70em {
    inset: -18em !important;
  }
  .xl\:inset-s1 {
    inset: 0.25rem !important;
  }
  .xl\:inset-s2 {
    inset: 0.5rem !important;
  }
  .xl\:inset-s3 {
    inset: 0.75rem !important;
  }
  .xl\:inset-s4 {
    inset: 1rem !important;
  }
  .xl\:inset-s5 {
    inset: 1.25rem !important;
  }
  .xl\:inset-s6 {
    inset: 1.5rem !important;
  }
  .xl\:inset-s8 {
    inset: 2rem !important;
  }
  .xl\:inset-s10 {
    inset: 2.5rem !important;
  }
  .xl\:inset-s12 {
    inset: 3rem !important;
  }
  .xl\:inset-s16 {
    inset: 4rem !important;
  }
  .xl\:inset-s20 {
    inset: 5rem !important;
  }
  .xl\:inset-s24 {
    inset: 6rem !important;
  }
  .xl\:inset-s28 {
    inset: 7rem !important;
  }
  .xl\:inset-s32 {
    inset: 8rem !important;
  }
  .xl\:inset-s60 {
    inset: 15rem !important;
  }
  .xl\:inset-s70 {
    inset: 17.5rem !important;
  }
  .xl\:inset-s72 {
    inset: 18rem !important;
  }
  .xl\:inset-s40em {
    inset: 10em !important;
  }
  .xl\:inset-s44em {
    inset: 11em !important;
  }
  .xl\:inset-s46em {
    inset: 11.5em !important;
  }
  .xl\:inset-s48em {
    inset: 12em !important;
  }
  .xl\:inset-s49em {
    inset: 12.25em !important;
  }
  .xl\:inset-s50em {
    inset: 12.5em !important;
  }
  .xl\:inset-s52em {
    inset: 13em !important;
  }
  .xl\:inset-s54em {
    inset: 13.5em !important;
  }
  .xl\:inset-s55em {
    inset: 13.75em !important;
  }
  .xl\:inset-s56em {
    inset: 14em !important;
  }
  .xl\:inset-s70em {
    inset: 18em !important;
  }
  .xl\:inset-auto {
    inset: auto !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:top-0 {
    top: 0 !important;
  }
  .xxl\:top-1 {
    top: 16rem !important;
  }
  .xxl\:top-2 {
    top: 20rem !important;
  }
  .xxl\:top-3 {
    top: 24rem !important;
  }
  .xxl\:top-4 {
    top: 28rem !important;
  }
  .xxl\:top-5 {
    top: 32rem !important;
  }
  .xxl\:top-6 {
    top: 36rem !important;
  }
  .xxl\:top-7 {
    top: 42rem !important;
  }
  .xxl\:top-8 {
    top: 48rem !important;
  }
  .xxl\:top-9 {
    top: 56rem !important;
  }
  .xxl\:top-10 {
    top: 64rem !important;
  }
  .xxl\:top-11 {
    top: 72rem !important;
  }
  .xxl\:top-1em {
    top: 16em !important;
  }
  .xxl\:top-2em {
    top: 20em !important;
  }
  .xxl\:top-3em {
    top: 24em !important;
  }
  .xxl\:top-4em {
    top: 28em !important;
  }
  .xxl\:top-5em {
    top: 32em !important;
  }
  .xxl\:top-6em {
    top: 36em !important;
  }
  .xxl\:top-7em {
    top: 42em !important;
  }
  .xxl\:top-8em {
    top: 48em !important;
  }
  .xxl\:top-9em {
    top: 56em !important;
  }
  .xxl\:top-10em {
    top: 64em !important;
  }
  .xxl\:top-11em {
    top: 72em !important;
  }
  .xxl\:top-1\/6 {
    top: 16.666666% !important;
  }
  .xxl\:top-1\/4 {
    top: 25% !important;
  }
  .xxl\:top-2\/7 {
    top: 28.57142857% !important;
  }
  .xxl\:top-1\/3 {
    top: 33.333333% !important;
  }
  .xxl\:top-1\/5 {
    top: 20% !important;
  }
  .xxl\:top-2\/5 {
    top: 40% !important;
  }
  .xxl\:top-3\/5 {
    top: 60% !important;
  }
  .xxl\:top-4\/5 {
    top: 80% !important;
  }
  .xxl\:top-1\/2 {
    top: 50% !important;
  }
  .xxl\:top-1\/12 {
    top: 8.333333% !important;
  }
  .xxl\:top-5\/12 {
    top: 41.6666666% !important;
  }
  .xxl\:top-7\/12 {
    top: 58.333333% !important;
  }
  .xxl\:top-11\/12 {
    top: 91.6666666% !important;
  }
  .xxl\:top-2\/3 {
    top: 66.666667% !important;
  }
  .xxl\:top-3\/4 {
    top: 75% !important;
  }
  .xxl\:top-5\/6 {
    top: 83.3333333% !important;
  }
  .xxl\:top-7\/6 {
    top: 116.6666666% !important;
  }
  .xxl\:top-4\/3 {
    top: 133.3333333% !important;
  }
  .xxl\:top-3\/2 {
    top: 150% !important;
  }
  .xxl\:top-1\/24 {
    top: 4.1666666% !important;
  }
  .xxl\:top-full {
    top: 100% !important;
  }
  .xxl\:top-1\/6vh {
    top: 16.666666vh !important;
  }
  .xxl\:top-1\/4vh {
    top: 25vh !important;
  }
  .xxl\:top-1\/3vh {
    top: 33.333333vh !important;
  }
  .xxl\:top-1\/2vh {
    top: 50vh !important;
  }
  .xxl\:top-7\/12vh {
    top: 58.333333vh !important;
  }
  .xxl\:top-2\/3vh {
    top: 66.666667vh !important;
  }
  .xxl\:top-3\/4vh {
    top: 75vh !important;
  }
  .xxl\:top-5\/6vh {
    top: 83.3333333vh !important;
  }
  .xxl\:top-full-vh {
    top: 100vh !important;
  }
  .xxl\:top--1 {
    top: -16rem !important;
  }
  .xxl\:top--2 {
    top: -20rem !important;
  }
  .xxl\:top--3 {
    top: -24rem !important;
  }
  .xxl\:top--4 {
    top: -28rem !important;
  }
  .xxl\:top--s1 {
    top: -0.25rem !important;
  }
  .xxl\:top--s2 {
    top: -0.5rem !important;
  }
  .xxl\:top--s3 {
    top: -0.75rem !important;
  }
  .xxl\:top--s4 {
    top: -1rem !important;
  }
  .xxl\:top--s5 {
    top: -1.25rem !important;
  }
  .xxl\:top--s6 {
    top: -1.5rem !important;
  }
  .xxl\:top--s8 {
    top: -2rem !important;
  }
  .xxl\:top--s10 {
    top: -2.5rem !important;
  }
  .xxl\:top--s12 {
    top: -3rem !important;
  }
  .xxl\:top--s16 {
    top: -4rem !important;
  }
  .xxl\:top--s18 {
    top: -4.5rem !important;
  }
  .xxl\:top--s20 {
    top: -5rem !important;
  }
  .xxl\:top--s24 {
    top: -6rem !important;
  }
  .xxl\:top--s40em {
    top: -10em !important;
  }
  .xxl\:top--s44em {
    top: -11em !important;
  }
  .xxl\:top--s46em {
    top: -11.5em !important;
  }
  .xxl\:top--s48em {
    top: -12em !important;
  }
  .xxl\:top--s49em {
    top: -12.25em !important;
  }
  .xxl\:top--s50em {
    top: -12.5em !important;
  }
  .xxl\:top--s52em {
    top: -13em !important;
  }
  .xxl\:top--s54em {
    top: -13.5em !important;
  }
  .xxl\:top--s55em {
    top: -13.75em !important;
  }
  .xxl\:top--s56em {
    top: -14em !important;
  }
  .xxl\:top--s70em {
    top: -18em !important;
  }
  .xxl\:top-s1 {
    top: 0.25rem !important;
  }
  .xxl\:top-s2 {
    top: 0.5rem !important;
  }
  .xxl\:top-s3 {
    top: 0.75rem !important;
  }
  .xxl\:top-s4 {
    top: 1rem !important;
  }
  .xxl\:top-s5 {
    top: 1.25rem !important;
  }
  .xxl\:top-s6 {
    top: 1.5rem !important;
  }
  .xxl\:top-s8 {
    top: 2rem !important;
  }
  .xxl\:top-s10 {
    top: 2.5rem !important;
  }
  .xxl\:top-s12 {
    top: 3rem !important;
  }
  .xxl\:top-s16 {
    top: 4rem !important;
  }
  .xxl\:top-s20 {
    top: 5rem !important;
  }
  .xxl\:top-s24 {
    top: 6rem !important;
  }
  .xxl\:top-s28 {
    top: 7rem !important;
  }
  .xxl\:top-s32 {
    top: 8rem !important;
  }
  .xxl\:top-s60 {
    top: 15rem !important;
  }
  .xxl\:top-s70 {
    top: 17.5rem !important;
  }
  .xxl\:top-s72 {
    top: 18rem !important;
  }
  .xxl\:top-s40em {
    top: 10em !important;
  }
  .xxl\:top-s44em {
    top: 11em !important;
  }
  .xxl\:top-s46em {
    top: 11.5em !important;
  }
  .xxl\:top-s48em {
    top: 12em !important;
  }
  .xxl\:top-s49em {
    top: 12.25em !important;
  }
  .xxl\:top-s50em {
    top: 12.5em !important;
  }
  .xxl\:top-s52em {
    top: 13em !important;
  }
  .xxl\:top-s54em {
    top: 13.5em !important;
  }
  .xxl\:top-s55em {
    top: 13.75em !important;
  }
  .xxl\:top-s56em {
    top: 14em !important;
  }
  .xxl\:top-s70em {
    top: 18em !important;
  }
  .xxl\:top-auto {
    top: auto !important;
  }
  .xxl\:right-0 {
    right: 0 !important;
  }
  .xxl\:right-1 {
    right: 16rem !important;
  }
  .xxl\:right-2 {
    right: 20rem !important;
  }
  .xxl\:right-3 {
    right: 24rem !important;
  }
  .xxl\:right-4 {
    right: 28rem !important;
  }
  .xxl\:right-5 {
    right: 32rem !important;
  }
  .xxl\:right-6 {
    right: 36rem !important;
  }
  .xxl\:right-7 {
    right: 42rem !important;
  }
  .xxl\:right-8 {
    right: 48rem !important;
  }
  .xxl\:right-9 {
    right: 56rem !important;
  }
  .xxl\:right-10 {
    right: 64rem !important;
  }
  .xxl\:right-11 {
    right: 72rem !important;
  }
  .xxl\:right-1em {
    right: 16em !important;
  }
  .xxl\:right-2em {
    right: 20em !important;
  }
  .xxl\:right-3em {
    right: 24em !important;
  }
  .xxl\:right-4em {
    right: 28em !important;
  }
  .xxl\:right-5em {
    right: 32em !important;
  }
  .xxl\:right-6em {
    right: 36em !important;
  }
  .xxl\:right-7em {
    right: 42em !important;
  }
  .xxl\:right-8em {
    right: 48em !important;
  }
  .xxl\:right-9em {
    right: 56em !important;
  }
  .xxl\:right-10em {
    right: 64em !important;
  }
  .xxl\:right-11em {
    right: 72em !important;
  }
  .xxl\:right-1\/6 {
    right: 16.666666% !important;
  }
  .xxl\:right-1\/4 {
    right: 25% !important;
  }
  .xxl\:right-2\/7 {
    right: 28.57142857% !important;
  }
  .xxl\:right-1\/3 {
    right: 33.333333% !important;
  }
  .xxl\:right-1\/5 {
    right: 20% !important;
  }
  .xxl\:right-2\/5 {
    right: 40% !important;
  }
  .xxl\:right-3\/5 {
    right: 60% !important;
  }
  .xxl\:right-4\/5 {
    right: 80% !important;
  }
  .xxl\:right-1\/2 {
    right: 50% !important;
  }
  .xxl\:right-1\/12 {
    right: 8.333333% !important;
  }
  .xxl\:right-5\/12 {
    right: 41.6666666% !important;
  }
  .xxl\:right-7\/12 {
    right: 58.333333% !important;
  }
  .xxl\:right-11\/12 {
    right: 91.6666666% !important;
  }
  .xxl\:right-2\/3 {
    right: 66.666667% !important;
  }
  .xxl\:right-3\/4 {
    right: 75% !important;
  }
  .xxl\:right-5\/6 {
    right: 83.3333333% !important;
  }
  .xxl\:right-7\/6 {
    right: 116.6666666% !important;
  }
  .xxl\:right-4\/3 {
    right: 133.3333333% !important;
  }
  .xxl\:right-3\/2 {
    right: 150% !important;
  }
  .xxl\:right-1\/24 {
    right: 4.1666666% !important;
  }
  .xxl\:right-full {
    right: 100% !important;
  }
  .xxl\:right-1\/6vh {
    right: 16.666666vh !important;
  }
  .xxl\:right-1\/4vh {
    right: 25vh !important;
  }
  .xxl\:right-1\/3vh {
    right: 33.333333vh !important;
  }
  .xxl\:right-1\/2vh {
    right: 50vh !important;
  }
  .xxl\:right-7\/12vh {
    right: 58.333333vh !important;
  }
  .xxl\:right-2\/3vh {
    right: 66.666667vh !important;
  }
  .xxl\:right-3\/4vh {
    right: 75vh !important;
  }
  .xxl\:right-5\/6vh {
    right: 83.3333333vh !important;
  }
  .xxl\:right-full-vh {
    right: 100vh !important;
  }
  .xxl\:right--1 {
    right: -16rem !important;
  }
  .xxl\:right--2 {
    right: -20rem !important;
  }
  .xxl\:right--3 {
    right: -24rem !important;
  }
  .xxl\:right--4 {
    right: -28rem !important;
  }
  .xxl\:right--s1 {
    right: -0.25rem !important;
  }
  .xxl\:right--s2 {
    right: -0.5rem !important;
  }
  .xxl\:right--s3 {
    right: -0.75rem !important;
  }
  .xxl\:right--s4 {
    right: -1rem !important;
  }
  .xxl\:right--s5 {
    right: -1.25rem !important;
  }
  .xxl\:right--s6 {
    right: -1.5rem !important;
  }
  .xxl\:right--s8 {
    right: -2rem !important;
  }
  .xxl\:right--s10 {
    right: -2.5rem !important;
  }
  .xxl\:right--s12 {
    right: -3rem !important;
  }
  .xxl\:right--s16 {
    right: -4rem !important;
  }
  .xxl\:right--s18 {
    right: -4.5rem !important;
  }
  .xxl\:right--s20 {
    right: -5rem !important;
  }
  .xxl\:right--s24 {
    right: -6rem !important;
  }
  .xxl\:right--s40em {
    right: -10em !important;
  }
  .xxl\:right--s44em {
    right: -11em !important;
  }
  .xxl\:right--s46em {
    right: -11.5em !important;
  }
  .xxl\:right--s48em {
    right: -12em !important;
  }
  .xxl\:right--s49em {
    right: -12.25em !important;
  }
  .xxl\:right--s50em {
    right: -12.5em !important;
  }
  .xxl\:right--s52em {
    right: -13em !important;
  }
  .xxl\:right--s54em {
    right: -13.5em !important;
  }
  .xxl\:right--s55em {
    right: -13.75em !important;
  }
  .xxl\:right--s56em {
    right: -14em !important;
  }
  .xxl\:right--s70em {
    right: -18em !important;
  }
  .xxl\:right-s1 {
    right: 0.25rem !important;
  }
  .xxl\:right-s2 {
    right: 0.5rem !important;
  }
  .xxl\:right-s3 {
    right: 0.75rem !important;
  }
  .xxl\:right-s4 {
    right: 1rem !important;
  }
  .xxl\:right-s5 {
    right: 1.25rem !important;
  }
  .xxl\:right-s6 {
    right: 1.5rem !important;
  }
  .xxl\:right-s8 {
    right: 2rem !important;
  }
  .xxl\:right-s10 {
    right: 2.5rem !important;
  }
  .xxl\:right-s12 {
    right: 3rem !important;
  }
  .xxl\:right-s16 {
    right: 4rem !important;
  }
  .xxl\:right-s20 {
    right: 5rem !important;
  }
  .xxl\:right-s24 {
    right: 6rem !important;
  }
  .xxl\:right-s28 {
    right: 7rem !important;
  }
  .xxl\:right-s32 {
    right: 8rem !important;
  }
  .xxl\:right-s60 {
    right: 15rem !important;
  }
  .xxl\:right-s70 {
    right: 17.5rem !important;
  }
  .xxl\:right-s72 {
    right: 18rem !important;
  }
  .xxl\:right-s40em {
    right: 10em !important;
  }
  .xxl\:right-s44em {
    right: 11em !important;
  }
  .xxl\:right-s46em {
    right: 11.5em !important;
  }
  .xxl\:right-s48em {
    right: 12em !important;
  }
  .xxl\:right-s49em {
    right: 12.25em !important;
  }
  .xxl\:right-s50em {
    right: 12.5em !important;
  }
  .xxl\:right-s52em {
    right: 13em !important;
  }
  .xxl\:right-s54em {
    right: 13.5em !important;
  }
  .xxl\:right-s55em {
    right: 13.75em !important;
  }
  .xxl\:right-s56em {
    right: 14em !important;
  }
  .xxl\:right-s70em {
    right: 18em !important;
  }
  .xxl\:right-auto {
    right: auto !important;
  }
  .xxl\:bottom-0 {
    bottom: 0 !important;
  }
  .xxl\:bottom-1 {
    bottom: 16rem !important;
  }
  .xxl\:bottom-2 {
    bottom: 20rem !important;
  }
  .xxl\:bottom-3 {
    bottom: 24rem !important;
  }
  .xxl\:bottom-4 {
    bottom: 28rem !important;
  }
  .xxl\:bottom-5 {
    bottom: 32rem !important;
  }
  .xxl\:bottom-6 {
    bottom: 36rem !important;
  }
  .xxl\:bottom-7 {
    bottom: 42rem !important;
  }
  .xxl\:bottom-8 {
    bottom: 48rem !important;
  }
  .xxl\:bottom-9 {
    bottom: 56rem !important;
  }
  .xxl\:bottom-10 {
    bottom: 64rem !important;
  }
  .xxl\:bottom-11 {
    bottom: 72rem !important;
  }
  .xxl\:bottom-1em {
    bottom: 16em !important;
  }
  .xxl\:bottom-2em {
    bottom: 20em !important;
  }
  .xxl\:bottom-3em {
    bottom: 24em !important;
  }
  .xxl\:bottom-4em {
    bottom: 28em !important;
  }
  .xxl\:bottom-5em {
    bottom: 32em !important;
  }
  .xxl\:bottom-6em {
    bottom: 36em !important;
  }
  .xxl\:bottom-7em {
    bottom: 42em !important;
  }
  .xxl\:bottom-8em {
    bottom: 48em !important;
  }
  .xxl\:bottom-9em {
    bottom: 56em !important;
  }
  .xxl\:bottom-10em {
    bottom: 64em !important;
  }
  .xxl\:bottom-11em {
    bottom: 72em !important;
  }
  .xxl\:bottom-1\/6 {
    bottom: 16.666666% !important;
  }
  .xxl\:bottom-1\/4 {
    bottom: 25% !important;
  }
  .xxl\:bottom-2\/7 {
    bottom: 28.57142857% !important;
  }
  .xxl\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }
  .xxl\:bottom-1\/5 {
    bottom: 20% !important;
  }
  .xxl\:bottom-2\/5 {
    bottom: 40% !important;
  }
  .xxl\:bottom-3\/5 {
    bottom: 60% !important;
  }
  .xxl\:bottom-4\/5 {
    bottom: 80% !important;
  }
  .xxl\:bottom-1\/2 {
    bottom: 50% !important;
  }
  .xxl\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }
  .xxl\:bottom-5\/12 {
    bottom: 41.6666666% !important;
  }
  .xxl\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }
  .xxl\:bottom-11\/12 {
    bottom: 91.6666666% !important;
  }
  .xxl\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }
  .xxl\:bottom-3\/4 {
    bottom: 75% !important;
  }
  .xxl\:bottom-5\/6 {
    bottom: 83.3333333% !important;
  }
  .xxl\:bottom-7\/6 {
    bottom: 116.6666666% !important;
  }
  .xxl\:bottom-4\/3 {
    bottom: 133.3333333% !important;
  }
  .xxl\:bottom-3\/2 {
    bottom: 150% !important;
  }
  .xxl\:bottom-1\/24 {
    bottom: 4.1666666% !important;
  }
  .xxl\:bottom-full {
    bottom: 100% !important;
  }
  .xxl\:bottom-1\/6vh {
    bottom: 16.666666vh !important;
  }
  .xxl\:bottom-1\/4vh {
    bottom: 25vh !important;
  }
  .xxl\:bottom-1\/3vh {
    bottom: 33.333333vh !important;
  }
  .xxl\:bottom-1\/2vh {
    bottom: 50vh !important;
  }
  .xxl\:bottom-7\/12vh {
    bottom: 58.333333vh !important;
  }
  .xxl\:bottom-2\/3vh {
    bottom: 66.666667vh !important;
  }
  .xxl\:bottom-3\/4vh {
    bottom: 75vh !important;
  }
  .xxl\:bottom-5\/6vh {
    bottom: 83.3333333vh !important;
  }
  .xxl\:bottom-full-vh {
    bottom: 100vh !important;
  }
  .xxl\:bottom--1 {
    bottom: -16rem !important;
  }
  .xxl\:bottom--2 {
    bottom: -20rem !important;
  }
  .xxl\:bottom--3 {
    bottom: -24rem !important;
  }
  .xxl\:bottom--4 {
    bottom: -28rem !important;
  }
  .xxl\:bottom--s1 {
    bottom: -0.25rem !important;
  }
  .xxl\:bottom--s2 {
    bottom: -0.5rem !important;
  }
  .xxl\:bottom--s3 {
    bottom: -0.75rem !important;
  }
  .xxl\:bottom--s4 {
    bottom: -1rem !important;
  }
  .xxl\:bottom--s5 {
    bottom: -1.25rem !important;
  }
  .xxl\:bottom--s6 {
    bottom: -1.5rem !important;
  }
  .xxl\:bottom--s8 {
    bottom: -2rem !important;
  }
  .xxl\:bottom--s10 {
    bottom: -2.5rem !important;
  }
  .xxl\:bottom--s12 {
    bottom: -3rem !important;
  }
  .xxl\:bottom--s16 {
    bottom: -4rem !important;
  }
  .xxl\:bottom--s18 {
    bottom: -4.5rem !important;
  }
  .xxl\:bottom--s20 {
    bottom: -5rem !important;
  }
  .xxl\:bottom--s24 {
    bottom: -6rem !important;
  }
  .xxl\:bottom--s40em {
    bottom: -10em !important;
  }
  .xxl\:bottom--s44em {
    bottom: -11em !important;
  }
  .xxl\:bottom--s46em {
    bottom: -11.5em !important;
  }
  .xxl\:bottom--s48em {
    bottom: -12em !important;
  }
  .xxl\:bottom--s49em {
    bottom: -12.25em !important;
  }
  .xxl\:bottom--s50em {
    bottom: -12.5em !important;
  }
  .xxl\:bottom--s52em {
    bottom: -13em !important;
  }
  .xxl\:bottom--s54em {
    bottom: -13.5em !important;
  }
  .xxl\:bottom--s55em {
    bottom: -13.75em !important;
  }
  .xxl\:bottom--s56em {
    bottom: -14em !important;
  }
  .xxl\:bottom--s70em {
    bottom: -18em !important;
  }
  .xxl\:bottom-s1 {
    bottom: 0.25rem !important;
  }
  .xxl\:bottom-s2 {
    bottom: 0.5rem !important;
  }
  .xxl\:bottom-s3 {
    bottom: 0.75rem !important;
  }
  .xxl\:bottom-s4 {
    bottom: 1rem !important;
  }
  .xxl\:bottom-s5 {
    bottom: 1.25rem !important;
  }
  .xxl\:bottom-s6 {
    bottom: 1.5rem !important;
  }
  .xxl\:bottom-s8 {
    bottom: 2rem !important;
  }
  .xxl\:bottom-s10 {
    bottom: 2.5rem !important;
  }
  .xxl\:bottom-s12 {
    bottom: 3rem !important;
  }
  .xxl\:bottom-s16 {
    bottom: 4rem !important;
  }
  .xxl\:bottom-s20 {
    bottom: 5rem !important;
  }
  .xxl\:bottom-s24 {
    bottom: 6rem !important;
  }
  .xxl\:bottom-s28 {
    bottom: 7rem !important;
  }
  .xxl\:bottom-s32 {
    bottom: 8rem !important;
  }
  .xxl\:bottom-s60 {
    bottom: 15rem !important;
  }
  .xxl\:bottom-s70 {
    bottom: 17.5rem !important;
  }
  .xxl\:bottom-s72 {
    bottom: 18rem !important;
  }
  .xxl\:bottom-s40em {
    bottom: 10em !important;
  }
  .xxl\:bottom-s44em {
    bottom: 11em !important;
  }
  .xxl\:bottom-s46em {
    bottom: 11.5em !important;
  }
  .xxl\:bottom-s48em {
    bottom: 12em !important;
  }
  .xxl\:bottom-s49em {
    bottom: 12.25em !important;
  }
  .xxl\:bottom-s50em {
    bottom: 12.5em !important;
  }
  .xxl\:bottom-s52em {
    bottom: 13em !important;
  }
  .xxl\:bottom-s54em {
    bottom: 13.5em !important;
  }
  .xxl\:bottom-s55em {
    bottom: 13.75em !important;
  }
  .xxl\:bottom-s56em {
    bottom: 14em !important;
  }
  .xxl\:bottom-s70em {
    bottom: 18em !important;
  }
  .xxl\:bottom-auto {
    bottom: auto !important;
  }
  .xxl\:left-0 {
    left: 0 !important;
  }
  .xxl\:left-1 {
    left: 16rem !important;
  }
  .xxl\:left-2 {
    left: 20rem !important;
  }
  .xxl\:left-3 {
    left: 24rem !important;
  }
  .xxl\:left-4 {
    left: 28rem !important;
  }
  .xxl\:left-5 {
    left: 32rem !important;
  }
  .xxl\:left-6 {
    left: 36rem !important;
  }
  .xxl\:left-7 {
    left: 42rem !important;
  }
  .xxl\:left-8 {
    left: 48rem !important;
  }
  .xxl\:left-9 {
    left: 56rem !important;
  }
  .xxl\:left-10 {
    left: 64rem !important;
  }
  .xxl\:left-11 {
    left: 72rem !important;
  }
  .xxl\:left-1em {
    left: 16em !important;
  }
  .xxl\:left-2em {
    left: 20em !important;
  }
  .xxl\:left-3em {
    left: 24em !important;
  }
  .xxl\:left-4em {
    left: 28em !important;
  }
  .xxl\:left-5em {
    left: 32em !important;
  }
  .xxl\:left-6em {
    left: 36em !important;
  }
  .xxl\:left-7em {
    left: 42em !important;
  }
  .xxl\:left-8em {
    left: 48em !important;
  }
  .xxl\:left-9em {
    left: 56em !important;
  }
  .xxl\:left-10em {
    left: 64em !important;
  }
  .xxl\:left-11em {
    left: 72em !important;
  }
  .xxl\:left-1\/6 {
    left: 16.666666% !important;
  }
  .xxl\:left-1\/4 {
    left: 25% !important;
  }
  .xxl\:left-2\/7 {
    left: 28.57142857% !important;
  }
  .xxl\:left-1\/3 {
    left: 33.333333% !important;
  }
  .xxl\:left-1\/5 {
    left: 20% !important;
  }
  .xxl\:left-2\/5 {
    left: 40% !important;
  }
  .xxl\:left-3\/5 {
    left: 60% !important;
  }
  .xxl\:left-4\/5 {
    left: 80% !important;
  }
  .xxl\:left-1\/2 {
    left: 50% !important;
  }
  .xxl\:left-1\/12 {
    left: 8.333333% !important;
  }
  .xxl\:left-5\/12 {
    left: 41.6666666% !important;
  }
  .xxl\:left-7\/12 {
    left: 58.333333% !important;
  }
  .xxl\:left-11\/12 {
    left: 91.6666666% !important;
  }
  .xxl\:left-2\/3 {
    left: 66.666667% !important;
  }
  .xxl\:left-3\/4 {
    left: 75% !important;
  }
  .xxl\:left-5\/6 {
    left: 83.3333333% !important;
  }
  .xxl\:left-7\/6 {
    left: 116.6666666% !important;
  }
  .xxl\:left-4\/3 {
    left: 133.3333333% !important;
  }
  .xxl\:left-3\/2 {
    left: 150% !important;
  }
  .xxl\:left-1\/24 {
    left: 4.1666666% !important;
  }
  .xxl\:left-full {
    left: 100% !important;
  }
  .xxl\:left-1\/6vh {
    left: 16.666666vh !important;
  }
  .xxl\:left-1\/4vh {
    left: 25vh !important;
  }
  .xxl\:left-1\/3vh {
    left: 33.333333vh !important;
  }
  .xxl\:left-1\/2vh {
    left: 50vh !important;
  }
  .xxl\:left-7\/12vh {
    left: 58.333333vh !important;
  }
  .xxl\:left-2\/3vh {
    left: 66.666667vh !important;
  }
  .xxl\:left-3\/4vh {
    left: 75vh !important;
  }
  .xxl\:left-5\/6vh {
    left: 83.3333333vh !important;
  }
  .xxl\:left-full-vh {
    left: 100vh !important;
  }
  .xxl\:left--1 {
    left: -16rem !important;
  }
  .xxl\:left--2 {
    left: -20rem !important;
  }
  .xxl\:left--3 {
    left: -24rem !important;
  }
  .xxl\:left--4 {
    left: -28rem !important;
  }
  .xxl\:left--s1 {
    left: -0.25rem !important;
  }
  .xxl\:left--s2 {
    left: -0.5rem !important;
  }
  .xxl\:left--s3 {
    left: -0.75rem !important;
  }
  .xxl\:left--s4 {
    left: -1rem !important;
  }
  .xxl\:left--s5 {
    left: -1.25rem !important;
  }
  .xxl\:left--s6 {
    left: -1.5rem !important;
  }
  .xxl\:left--s8 {
    left: -2rem !important;
  }
  .xxl\:left--s10 {
    left: -2.5rem !important;
  }
  .xxl\:left--s12 {
    left: -3rem !important;
  }
  .xxl\:left--s16 {
    left: -4rem !important;
  }
  .xxl\:left--s18 {
    left: -4.5rem !important;
  }
  .xxl\:left--s20 {
    left: -5rem !important;
  }
  .xxl\:left--s24 {
    left: -6rem !important;
  }
  .xxl\:left--s40em {
    left: -10em !important;
  }
  .xxl\:left--s44em {
    left: -11em !important;
  }
  .xxl\:left--s46em {
    left: -11.5em !important;
  }
  .xxl\:left--s48em {
    left: -12em !important;
  }
  .xxl\:left--s49em {
    left: -12.25em !important;
  }
  .xxl\:left--s50em {
    left: -12.5em !important;
  }
  .xxl\:left--s52em {
    left: -13em !important;
  }
  .xxl\:left--s54em {
    left: -13.5em !important;
  }
  .xxl\:left--s55em {
    left: -13.75em !important;
  }
  .xxl\:left--s56em {
    left: -14em !important;
  }
  .xxl\:left--s70em {
    left: -18em !important;
  }
  .xxl\:left-s1 {
    left: 0.25rem !important;
  }
  .xxl\:left-s2 {
    left: 0.5rem !important;
  }
  .xxl\:left-s3 {
    left: 0.75rem !important;
  }
  .xxl\:left-s4 {
    left: 1rem !important;
  }
  .xxl\:left-s5 {
    left: 1.25rem !important;
  }
  .xxl\:left-s6 {
    left: 1.5rem !important;
  }
  .xxl\:left-s8 {
    left: 2rem !important;
  }
  .xxl\:left-s10 {
    left: 2.5rem !important;
  }
  .xxl\:left-s12 {
    left: 3rem !important;
  }
  .xxl\:left-s16 {
    left: 4rem !important;
  }
  .xxl\:left-s20 {
    left: 5rem !important;
  }
  .xxl\:left-s24 {
    left: 6rem !important;
  }
  .xxl\:left-s28 {
    left: 7rem !important;
  }
  .xxl\:left-s32 {
    left: 8rem !important;
  }
  .xxl\:left-s60 {
    left: 15rem !important;
  }
  .xxl\:left-s70 {
    left: 17.5rem !important;
  }
  .xxl\:left-s72 {
    left: 18rem !important;
  }
  .xxl\:left-s40em {
    left: 10em !important;
  }
  .xxl\:left-s44em {
    left: 11em !important;
  }
  .xxl\:left-s46em {
    left: 11.5em !important;
  }
  .xxl\:left-s48em {
    left: 12em !important;
  }
  .xxl\:left-s49em {
    left: 12.25em !important;
  }
  .xxl\:left-s50em {
    left: 12.5em !important;
  }
  .xxl\:left-s52em {
    left: 13em !important;
  }
  .xxl\:left-s54em {
    left: 13.5em !important;
  }
  .xxl\:left-s55em {
    left: 13.75em !important;
  }
  .xxl\:left-s56em {
    left: 14em !important;
  }
  .xxl\:left-s70em {
    left: 18em !important;
  }
  .xxl\:left-auto {
    left: auto !important;
  }
  .xxl\:inset-0 {
    inset: 0 !important;
  }
  .xxl\:inset-1 {
    inset: 16rem !important;
  }
  .xxl\:inset-2 {
    inset: 20rem !important;
  }
  .xxl\:inset-3 {
    inset: 24rem !important;
  }
  .xxl\:inset-4 {
    inset: 28rem !important;
  }
  .xxl\:inset-5 {
    inset: 32rem !important;
  }
  .xxl\:inset-6 {
    inset: 36rem !important;
  }
  .xxl\:inset-7 {
    inset: 42rem !important;
  }
  .xxl\:inset-8 {
    inset: 48rem !important;
  }
  .xxl\:inset-9 {
    inset: 56rem !important;
  }
  .xxl\:inset-10 {
    inset: 64rem !important;
  }
  .xxl\:inset-11 {
    inset: 72rem !important;
  }
  .xxl\:inset-1em {
    inset: 16em !important;
  }
  .xxl\:inset-2em {
    inset: 20em !important;
  }
  .xxl\:inset-3em {
    inset: 24em !important;
  }
  .xxl\:inset-4em {
    inset: 28em !important;
  }
  .xxl\:inset-5em {
    inset: 32em !important;
  }
  .xxl\:inset-6em {
    inset: 36em !important;
  }
  .xxl\:inset-7em {
    inset: 42em !important;
  }
  .xxl\:inset-8em {
    inset: 48em !important;
  }
  .xxl\:inset-9em {
    inset: 56em !important;
  }
  .xxl\:inset-10em {
    inset: 64em !important;
  }
  .xxl\:inset-11em {
    inset: 72em !important;
  }
  .xxl\:inset-1\/6 {
    inset: 16.666666% !important;
  }
  .xxl\:inset-1\/4 {
    inset: 25% !important;
  }
  .xxl\:inset-2\/7 {
    inset: 28.57142857% !important;
  }
  .xxl\:inset-1\/3 {
    inset: 33.333333% !important;
  }
  .xxl\:inset-1\/5 {
    inset: 20% !important;
  }
  .xxl\:inset-2\/5 {
    inset: 40% !important;
  }
  .xxl\:inset-3\/5 {
    inset: 60% !important;
  }
  .xxl\:inset-4\/5 {
    inset: 80% !important;
  }
  .xxl\:inset-1\/2 {
    inset: 50% !important;
  }
  .xxl\:inset-1\/12 {
    inset: 8.333333% !important;
  }
  .xxl\:inset-5\/12 {
    inset: 41.6666666% !important;
  }
  .xxl\:inset-7\/12 {
    inset: 58.333333% !important;
  }
  .xxl\:inset-11\/12 {
    inset: 91.6666666% !important;
  }
  .xxl\:inset-2\/3 {
    inset: 66.666667% !important;
  }
  .xxl\:inset-3\/4 {
    inset: 75% !important;
  }
  .xxl\:inset-5\/6 {
    inset: 83.3333333% !important;
  }
  .xxl\:inset-7\/6 {
    inset: 116.6666666% !important;
  }
  .xxl\:inset-4\/3 {
    inset: 133.3333333% !important;
  }
  .xxl\:inset-3\/2 {
    inset: 150% !important;
  }
  .xxl\:inset-1\/24 {
    inset: 4.1666666% !important;
  }
  .xxl\:inset-full {
    inset: 100% !important;
  }
  .xxl\:inset-1\/6vh {
    inset: 16.666666vh !important;
  }
  .xxl\:inset-1\/4vh {
    inset: 25vh !important;
  }
  .xxl\:inset-1\/3vh {
    inset: 33.333333vh !important;
  }
  .xxl\:inset-1\/2vh {
    inset: 50vh !important;
  }
  .xxl\:inset-7\/12vh {
    inset: 58.333333vh !important;
  }
  .xxl\:inset-2\/3vh {
    inset: 66.666667vh !important;
  }
  .xxl\:inset-3\/4vh {
    inset: 75vh !important;
  }
  .xxl\:inset-5\/6vh {
    inset: 83.3333333vh !important;
  }
  .xxl\:inset-full-vh {
    inset: 100vh !important;
  }
  .xxl\:inset--1 {
    inset: -16rem !important;
  }
  .xxl\:inset--2 {
    inset: -20rem !important;
  }
  .xxl\:inset--3 {
    inset: -24rem !important;
  }
  .xxl\:inset--4 {
    inset: -28rem !important;
  }
  .xxl\:inset--s1 {
    inset: -0.25rem !important;
  }
  .xxl\:inset--s2 {
    inset: -0.5rem !important;
  }
  .xxl\:inset--s3 {
    inset: -0.75rem !important;
  }
  .xxl\:inset--s4 {
    inset: -1rem !important;
  }
  .xxl\:inset--s5 {
    inset: -1.25rem !important;
  }
  .xxl\:inset--s6 {
    inset: -1.5rem !important;
  }
  .xxl\:inset--s8 {
    inset: -2rem !important;
  }
  .xxl\:inset--s10 {
    inset: -2.5rem !important;
  }
  .xxl\:inset--s12 {
    inset: -3rem !important;
  }
  .xxl\:inset--s16 {
    inset: -4rem !important;
  }
  .xxl\:inset--s18 {
    inset: -4.5rem !important;
  }
  .xxl\:inset--s20 {
    inset: -5rem !important;
  }
  .xxl\:inset--s24 {
    inset: -6rem !important;
  }
  .xxl\:inset--s40em {
    inset: -10em !important;
  }
  .xxl\:inset--s44em {
    inset: -11em !important;
  }
  .xxl\:inset--s46em {
    inset: -11.5em !important;
  }
  .xxl\:inset--s48em {
    inset: -12em !important;
  }
  .xxl\:inset--s49em {
    inset: -12.25em !important;
  }
  .xxl\:inset--s50em {
    inset: -12.5em !important;
  }
  .xxl\:inset--s52em {
    inset: -13em !important;
  }
  .xxl\:inset--s54em {
    inset: -13.5em !important;
  }
  .xxl\:inset--s55em {
    inset: -13.75em !important;
  }
  .xxl\:inset--s56em {
    inset: -14em !important;
  }
  .xxl\:inset--s70em {
    inset: -18em !important;
  }
  .xxl\:inset-s1 {
    inset: 0.25rem !important;
  }
  .xxl\:inset-s2 {
    inset: 0.5rem !important;
  }
  .xxl\:inset-s3 {
    inset: 0.75rem !important;
  }
  .xxl\:inset-s4 {
    inset: 1rem !important;
  }
  .xxl\:inset-s5 {
    inset: 1.25rem !important;
  }
  .xxl\:inset-s6 {
    inset: 1.5rem !important;
  }
  .xxl\:inset-s8 {
    inset: 2rem !important;
  }
  .xxl\:inset-s10 {
    inset: 2.5rem !important;
  }
  .xxl\:inset-s12 {
    inset: 3rem !important;
  }
  .xxl\:inset-s16 {
    inset: 4rem !important;
  }
  .xxl\:inset-s20 {
    inset: 5rem !important;
  }
  .xxl\:inset-s24 {
    inset: 6rem !important;
  }
  .xxl\:inset-s28 {
    inset: 7rem !important;
  }
  .xxl\:inset-s32 {
    inset: 8rem !important;
  }
  .xxl\:inset-s60 {
    inset: 15rem !important;
  }
  .xxl\:inset-s70 {
    inset: 17.5rem !important;
  }
  .xxl\:inset-s72 {
    inset: 18rem !important;
  }
  .xxl\:inset-s40em {
    inset: 10em !important;
  }
  .xxl\:inset-s44em {
    inset: 11em !important;
  }
  .xxl\:inset-s46em {
    inset: 11.5em !important;
  }
  .xxl\:inset-s48em {
    inset: 12em !important;
  }
  .xxl\:inset-s49em {
    inset: 12.25em !important;
  }
  .xxl\:inset-s50em {
    inset: 12.5em !important;
  }
  .xxl\:inset-s52em {
    inset: 13em !important;
  }
  .xxl\:inset-s54em {
    inset: 13.5em !important;
  }
  .xxl\:inset-s55em {
    inset: 13.75em !important;
  }
  .xxl\:inset-s56em {
    inset: 14em !important;
  }
  .xxl\:inset-s70em {
    inset: 18em !important;
  }
  .xxl\:inset-auto {
    inset: auto !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:top-0 {
    top: 0 !important;
  }
  .max\:top-1 {
    top: 16rem !important;
  }
  .max\:top-2 {
    top: 20rem !important;
  }
  .max\:top-3 {
    top: 24rem !important;
  }
  .max\:top-4 {
    top: 28rem !important;
  }
  .max\:top-5 {
    top: 32rem !important;
  }
  .max\:top-6 {
    top: 36rem !important;
  }
  .max\:top-7 {
    top: 42rem !important;
  }
  .max\:top-8 {
    top: 48rem !important;
  }
  .max\:top-9 {
    top: 56rem !important;
  }
  .max\:top-10 {
    top: 64rem !important;
  }
  .max\:top-11 {
    top: 72rem !important;
  }
  .max\:top-1em {
    top: 16em !important;
  }
  .max\:top-2em {
    top: 20em !important;
  }
  .max\:top-3em {
    top: 24em !important;
  }
  .max\:top-4em {
    top: 28em !important;
  }
  .max\:top-5em {
    top: 32em !important;
  }
  .max\:top-6em {
    top: 36em !important;
  }
  .max\:top-7em {
    top: 42em !important;
  }
  .max\:top-8em {
    top: 48em !important;
  }
  .max\:top-9em {
    top: 56em !important;
  }
  .max\:top-10em {
    top: 64em !important;
  }
  .max\:top-11em {
    top: 72em !important;
  }
  .max\:top-1\/6 {
    top: 16.666666% !important;
  }
  .max\:top-1\/4 {
    top: 25% !important;
  }
  .max\:top-2\/7 {
    top: 28.57142857% !important;
  }
  .max\:top-1\/3 {
    top: 33.333333% !important;
  }
  .max\:top-1\/5 {
    top: 20% !important;
  }
  .max\:top-2\/5 {
    top: 40% !important;
  }
  .max\:top-3\/5 {
    top: 60% !important;
  }
  .max\:top-4\/5 {
    top: 80% !important;
  }
  .max\:top-1\/2 {
    top: 50% !important;
  }
  .max\:top-1\/12 {
    top: 8.333333% !important;
  }
  .max\:top-5\/12 {
    top: 41.6666666% !important;
  }
  .max\:top-7\/12 {
    top: 58.333333% !important;
  }
  .max\:top-11\/12 {
    top: 91.6666666% !important;
  }
  .max\:top-2\/3 {
    top: 66.666667% !important;
  }
  .max\:top-3\/4 {
    top: 75% !important;
  }
  .max\:top-5\/6 {
    top: 83.3333333% !important;
  }
  .max\:top-7\/6 {
    top: 116.6666666% !important;
  }
  .max\:top-4\/3 {
    top: 133.3333333% !important;
  }
  .max\:top-3\/2 {
    top: 150% !important;
  }
  .max\:top-1\/24 {
    top: 4.1666666% !important;
  }
  .max\:top-full {
    top: 100% !important;
  }
  .max\:top-1\/6vh {
    top: 16.666666vh !important;
  }
  .max\:top-1\/4vh {
    top: 25vh !important;
  }
  .max\:top-1\/3vh {
    top: 33.333333vh !important;
  }
  .max\:top-1\/2vh {
    top: 50vh !important;
  }
  .max\:top-7\/12vh {
    top: 58.333333vh !important;
  }
  .max\:top-2\/3vh {
    top: 66.666667vh !important;
  }
  .max\:top-3\/4vh {
    top: 75vh !important;
  }
  .max\:top-5\/6vh {
    top: 83.3333333vh !important;
  }
  .max\:top-full-vh {
    top: 100vh !important;
  }
  .max\:top--1 {
    top: -16rem !important;
  }
  .max\:top--2 {
    top: -20rem !important;
  }
  .max\:top--3 {
    top: -24rem !important;
  }
  .max\:top--4 {
    top: -28rem !important;
  }
  .max\:top--s1 {
    top: -0.25rem !important;
  }
  .max\:top--s2 {
    top: -0.5rem !important;
  }
  .max\:top--s3 {
    top: -0.75rem !important;
  }
  .max\:top--s4 {
    top: -1rem !important;
  }
  .max\:top--s5 {
    top: -1.25rem !important;
  }
  .max\:top--s6 {
    top: -1.5rem !important;
  }
  .max\:top--s8 {
    top: -2rem !important;
  }
  .max\:top--s10 {
    top: -2.5rem !important;
  }
  .max\:top--s12 {
    top: -3rem !important;
  }
  .max\:top--s16 {
    top: -4rem !important;
  }
  .max\:top--s18 {
    top: -4.5rem !important;
  }
  .max\:top--s20 {
    top: -5rem !important;
  }
  .max\:top--s24 {
    top: -6rem !important;
  }
  .max\:top--s40em {
    top: -10em !important;
  }
  .max\:top--s44em {
    top: -11em !important;
  }
  .max\:top--s46em {
    top: -11.5em !important;
  }
  .max\:top--s48em {
    top: -12em !important;
  }
  .max\:top--s49em {
    top: -12.25em !important;
  }
  .max\:top--s50em {
    top: -12.5em !important;
  }
  .max\:top--s52em {
    top: -13em !important;
  }
  .max\:top--s54em {
    top: -13.5em !important;
  }
  .max\:top--s55em {
    top: -13.75em !important;
  }
  .max\:top--s56em {
    top: -14em !important;
  }
  .max\:top--s70em {
    top: -18em !important;
  }
  .max\:top-s1 {
    top: 0.25rem !important;
  }
  .max\:top-s2 {
    top: 0.5rem !important;
  }
  .max\:top-s3 {
    top: 0.75rem !important;
  }
  .max\:top-s4 {
    top: 1rem !important;
  }
  .max\:top-s5 {
    top: 1.25rem !important;
  }
  .max\:top-s6 {
    top: 1.5rem !important;
  }
  .max\:top-s8 {
    top: 2rem !important;
  }
  .max\:top-s10 {
    top: 2.5rem !important;
  }
  .max\:top-s12 {
    top: 3rem !important;
  }
  .max\:top-s16 {
    top: 4rem !important;
  }
  .max\:top-s20 {
    top: 5rem !important;
  }
  .max\:top-s24 {
    top: 6rem !important;
  }
  .max\:top-s28 {
    top: 7rem !important;
  }
  .max\:top-s32 {
    top: 8rem !important;
  }
  .max\:top-s60 {
    top: 15rem !important;
  }
  .max\:top-s70 {
    top: 17.5rem !important;
  }
  .max\:top-s72 {
    top: 18rem !important;
  }
  .max\:top-s40em {
    top: 10em !important;
  }
  .max\:top-s44em {
    top: 11em !important;
  }
  .max\:top-s46em {
    top: 11.5em !important;
  }
  .max\:top-s48em {
    top: 12em !important;
  }
  .max\:top-s49em {
    top: 12.25em !important;
  }
  .max\:top-s50em {
    top: 12.5em !important;
  }
  .max\:top-s52em {
    top: 13em !important;
  }
  .max\:top-s54em {
    top: 13.5em !important;
  }
  .max\:top-s55em {
    top: 13.75em !important;
  }
  .max\:top-s56em {
    top: 14em !important;
  }
  .max\:top-s70em {
    top: 18em !important;
  }
  .max\:top-auto {
    top: auto !important;
  }
  .max\:right-0 {
    right: 0 !important;
  }
  .max\:right-1 {
    right: 16rem !important;
  }
  .max\:right-2 {
    right: 20rem !important;
  }
  .max\:right-3 {
    right: 24rem !important;
  }
  .max\:right-4 {
    right: 28rem !important;
  }
  .max\:right-5 {
    right: 32rem !important;
  }
  .max\:right-6 {
    right: 36rem !important;
  }
  .max\:right-7 {
    right: 42rem !important;
  }
  .max\:right-8 {
    right: 48rem !important;
  }
  .max\:right-9 {
    right: 56rem !important;
  }
  .max\:right-10 {
    right: 64rem !important;
  }
  .max\:right-11 {
    right: 72rem !important;
  }
  .max\:right-1em {
    right: 16em !important;
  }
  .max\:right-2em {
    right: 20em !important;
  }
  .max\:right-3em {
    right: 24em !important;
  }
  .max\:right-4em {
    right: 28em !important;
  }
  .max\:right-5em {
    right: 32em !important;
  }
  .max\:right-6em {
    right: 36em !important;
  }
  .max\:right-7em {
    right: 42em !important;
  }
  .max\:right-8em {
    right: 48em !important;
  }
  .max\:right-9em {
    right: 56em !important;
  }
  .max\:right-10em {
    right: 64em !important;
  }
  .max\:right-11em {
    right: 72em !important;
  }
  .max\:right-1\/6 {
    right: 16.666666% !important;
  }
  .max\:right-1\/4 {
    right: 25% !important;
  }
  .max\:right-2\/7 {
    right: 28.57142857% !important;
  }
  .max\:right-1\/3 {
    right: 33.333333% !important;
  }
  .max\:right-1\/5 {
    right: 20% !important;
  }
  .max\:right-2\/5 {
    right: 40% !important;
  }
  .max\:right-3\/5 {
    right: 60% !important;
  }
  .max\:right-4\/5 {
    right: 80% !important;
  }
  .max\:right-1\/2 {
    right: 50% !important;
  }
  .max\:right-1\/12 {
    right: 8.333333% !important;
  }
  .max\:right-5\/12 {
    right: 41.6666666% !important;
  }
  .max\:right-7\/12 {
    right: 58.333333% !important;
  }
  .max\:right-11\/12 {
    right: 91.6666666% !important;
  }
  .max\:right-2\/3 {
    right: 66.666667% !important;
  }
  .max\:right-3\/4 {
    right: 75% !important;
  }
  .max\:right-5\/6 {
    right: 83.3333333% !important;
  }
  .max\:right-7\/6 {
    right: 116.6666666% !important;
  }
  .max\:right-4\/3 {
    right: 133.3333333% !important;
  }
  .max\:right-3\/2 {
    right: 150% !important;
  }
  .max\:right-1\/24 {
    right: 4.1666666% !important;
  }
  .max\:right-full {
    right: 100% !important;
  }
  .max\:right-1\/6vh {
    right: 16.666666vh !important;
  }
  .max\:right-1\/4vh {
    right: 25vh !important;
  }
  .max\:right-1\/3vh {
    right: 33.333333vh !important;
  }
  .max\:right-1\/2vh {
    right: 50vh !important;
  }
  .max\:right-7\/12vh {
    right: 58.333333vh !important;
  }
  .max\:right-2\/3vh {
    right: 66.666667vh !important;
  }
  .max\:right-3\/4vh {
    right: 75vh !important;
  }
  .max\:right-5\/6vh {
    right: 83.3333333vh !important;
  }
  .max\:right-full-vh {
    right: 100vh !important;
  }
  .max\:right--1 {
    right: -16rem !important;
  }
  .max\:right--2 {
    right: -20rem !important;
  }
  .max\:right--3 {
    right: -24rem !important;
  }
  .max\:right--4 {
    right: -28rem !important;
  }
  .max\:right--s1 {
    right: -0.25rem !important;
  }
  .max\:right--s2 {
    right: -0.5rem !important;
  }
  .max\:right--s3 {
    right: -0.75rem !important;
  }
  .max\:right--s4 {
    right: -1rem !important;
  }
  .max\:right--s5 {
    right: -1.25rem !important;
  }
  .max\:right--s6 {
    right: -1.5rem !important;
  }
  .max\:right--s8 {
    right: -2rem !important;
  }
  .max\:right--s10 {
    right: -2.5rem !important;
  }
  .max\:right--s12 {
    right: -3rem !important;
  }
  .max\:right--s16 {
    right: -4rem !important;
  }
  .max\:right--s18 {
    right: -4.5rem !important;
  }
  .max\:right--s20 {
    right: -5rem !important;
  }
  .max\:right--s24 {
    right: -6rem !important;
  }
  .max\:right--s40em {
    right: -10em !important;
  }
  .max\:right--s44em {
    right: -11em !important;
  }
  .max\:right--s46em {
    right: -11.5em !important;
  }
  .max\:right--s48em {
    right: -12em !important;
  }
  .max\:right--s49em {
    right: -12.25em !important;
  }
  .max\:right--s50em {
    right: -12.5em !important;
  }
  .max\:right--s52em {
    right: -13em !important;
  }
  .max\:right--s54em {
    right: -13.5em !important;
  }
  .max\:right--s55em {
    right: -13.75em !important;
  }
  .max\:right--s56em {
    right: -14em !important;
  }
  .max\:right--s70em {
    right: -18em !important;
  }
  .max\:right-s1 {
    right: 0.25rem !important;
  }
  .max\:right-s2 {
    right: 0.5rem !important;
  }
  .max\:right-s3 {
    right: 0.75rem !important;
  }
  .max\:right-s4 {
    right: 1rem !important;
  }
  .max\:right-s5 {
    right: 1.25rem !important;
  }
  .max\:right-s6 {
    right: 1.5rem !important;
  }
  .max\:right-s8 {
    right: 2rem !important;
  }
  .max\:right-s10 {
    right: 2.5rem !important;
  }
  .max\:right-s12 {
    right: 3rem !important;
  }
  .max\:right-s16 {
    right: 4rem !important;
  }
  .max\:right-s20 {
    right: 5rem !important;
  }
  .max\:right-s24 {
    right: 6rem !important;
  }
  .max\:right-s28 {
    right: 7rem !important;
  }
  .max\:right-s32 {
    right: 8rem !important;
  }
  .max\:right-s60 {
    right: 15rem !important;
  }
  .max\:right-s70 {
    right: 17.5rem !important;
  }
  .max\:right-s72 {
    right: 18rem !important;
  }
  .max\:right-s40em {
    right: 10em !important;
  }
  .max\:right-s44em {
    right: 11em !important;
  }
  .max\:right-s46em {
    right: 11.5em !important;
  }
  .max\:right-s48em {
    right: 12em !important;
  }
  .max\:right-s49em {
    right: 12.25em !important;
  }
  .max\:right-s50em {
    right: 12.5em !important;
  }
  .max\:right-s52em {
    right: 13em !important;
  }
  .max\:right-s54em {
    right: 13.5em !important;
  }
  .max\:right-s55em {
    right: 13.75em !important;
  }
  .max\:right-s56em {
    right: 14em !important;
  }
  .max\:right-s70em {
    right: 18em !important;
  }
  .max\:right-auto {
    right: auto !important;
  }
  .max\:bottom-0 {
    bottom: 0 !important;
  }
  .max\:bottom-1 {
    bottom: 16rem !important;
  }
  .max\:bottom-2 {
    bottom: 20rem !important;
  }
  .max\:bottom-3 {
    bottom: 24rem !important;
  }
  .max\:bottom-4 {
    bottom: 28rem !important;
  }
  .max\:bottom-5 {
    bottom: 32rem !important;
  }
  .max\:bottom-6 {
    bottom: 36rem !important;
  }
  .max\:bottom-7 {
    bottom: 42rem !important;
  }
  .max\:bottom-8 {
    bottom: 48rem !important;
  }
  .max\:bottom-9 {
    bottom: 56rem !important;
  }
  .max\:bottom-10 {
    bottom: 64rem !important;
  }
  .max\:bottom-11 {
    bottom: 72rem !important;
  }
  .max\:bottom-1em {
    bottom: 16em !important;
  }
  .max\:bottom-2em {
    bottom: 20em !important;
  }
  .max\:bottom-3em {
    bottom: 24em !important;
  }
  .max\:bottom-4em {
    bottom: 28em !important;
  }
  .max\:bottom-5em {
    bottom: 32em !important;
  }
  .max\:bottom-6em {
    bottom: 36em !important;
  }
  .max\:bottom-7em {
    bottom: 42em !important;
  }
  .max\:bottom-8em {
    bottom: 48em !important;
  }
  .max\:bottom-9em {
    bottom: 56em !important;
  }
  .max\:bottom-10em {
    bottom: 64em !important;
  }
  .max\:bottom-11em {
    bottom: 72em !important;
  }
  .max\:bottom-1\/6 {
    bottom: 16.666666% !important;
  }
  .max\:bottom-1\/4 {
    bottom: 25% !important;
  }
  .max\:bottom-2\/7 {
    bottom: 28.57142857% !important;
  }
  .max\:bottom-1\/3 {
    bottom: 33.333333% !important;
  }
  .max\:bottom-1\/5 {
    bottom: 20% !important;
  }
  .max\:bottom-2\/5 {
    bottom: 40% !important;
  }
  .max\:bottom-3\/5 {
    bottom: 60% !important;
  }
  .max\:bottom-4\/5 {
    bottom: 80% !important;
  }
  .max\:bottom-1\/2 {
    bottom: 50% !important;
  }
  .max\:bottom-1\/12 {
    bottom: 8.333333% !important;
  }
  .max\:bottom-5\/12 {
    bottom: 41.6666666% !important;
  }
  .max\:bottom-7\/12 {
    bottom: 58.333333% !important;
  }
  .max\:bottom-11\/12 {
    bottom: 91.6666666% !important;
  }
  .max\:bottom-2\/3 {
    bottom: 66.666667% !important;
  }
  .max\:bottom-3\/4 {
    bottom: 75% !important;
  }
  .max\:bottom-5\/6 {
    bottom: 83.3333333% !important;
  }
  .max\:bottom-7\/6 {
    bottom: 116.6666666% !important;
  }
  .max\:bottom-4\/3 {
    bottom: 133.3333333% !important;
  }
  .max\:bottom-3\/2 {
    bottom: 150% !important;
  }
  .max\:bottom-1\/24 {
    bottom: 4.1666666% !important;
  }
  .max\:bottom-full {
    bottom: 100% !important;
  }
  .max\:bottom-1\/6vh {
    bottom: 16.666666vh !important;
  }
  .max\:bottom-1\/4vh {
    bottom: 25vh !important;
  }
  .max\:bottom-1\/3vh {
    bottom: 33.333333vh !important;
  }
  .max\:bottom-1\/2vh {
    bottom: 50vh !important;
  }
  .max\:bottom-7\/12vh {
    bottom: 58.333333vh !important;
  }
  .max\:bottom-2\/3vh {
    bottom: 66.666667vh !important;
  }
  .max\:bottom-3\/4vh {
    bottom: 75vh !important;
  }
  .max\:bottom-5\/6vh {
    bottom: 83.3333333vh !important;
  }
  .max\:bottom-full-vh {
    bottom: 100vh !important;
  }
  .max\:bottom--1 {
    bottom: -16rem !important;
  }
  .max\:bottom--2 {
    bottom: -20rem !important;
  }
  .max\:bottom--3 {
    bottom: -24rem !important;
  }
  .max\:bottom--4 {
    bottom: -28rem !important;
  }
  .max\:bottom--s1 {
    bottom: -0.25rem !important;
  }
  .max\:bottom--s2 {
    bottom: -0.5rem !important;
  }
  .max\:bottom--s3 {
    bottom: -0.75rem !important;
  }
  .max\:bottom--s4 {
    bottom: -1rem !important;
  }
  .max\:bottom--s5 {
    bottom: -1.25rem !important;
  }
  .max\:bottom--s6 {
    bottom: -1.5rem !important;
  }
  .max\:bottom--s8 {
    bottom: -2rem !important;
  }
  .max\:bottom--s10 {
    bottom: -2.5rem !important;
  }
  .max\:bottom--s12 {
    bottom: -3rem !important;
  }
  .max\:bottom--s16 {
    bottom: -4rem !important;
  }
  .max\:bottom--s18 {
    bottom: -4.5rem !important;
  }
  .max\:bottom--s20 {
    bottom: -5rem !important;
  }
  .max\:bottom--s24 {
    bottom: -6rem !important;
  }
  .max\:bottom--s40em {
    bottom: -10em !important;
  }
  .max\:bottom--s44em {
    bottom: -11em !important;
  }
  .max\:bottom--s46em {
    bottom: -11.5em !important;
  }
  .max\:bottom--s48em {
    bottom: -12em !important;
  }
  .max\:bottom--s49em {
    bottom: -12.25em !important;
  }
  .max\:bottom--s50em {
    bottom: -12.5em !important;
  }
  .max\:bottom--s52em {
    bottom: -13em !important;
  }
  .max\:bottom--s54em {
    bottom: -13.5em !important;
  }
  .max\:bottom--s55em {
    bottom: -13.75em !important;
  }
  .max\:bottom--s56em {
    bottom: -14em !important;
  }
  .max\:bottom--s70em {
    bottom: -18em !important;
  }
  .max\:bottom-s1 {
    bottom: 0.25rem !important;
  }
  .max\:bottom-s2 {
    bottom: 0.5rem !important;
  }
  .max\:bottom-s3 {
    bottom: 0.75rem !important;
  }
  .max\:bottom-s4 {
    bottom: 1rem !important;
  }
  .max\:bottom-s5 {
    bottom: 1.25rem !important;
  }
  .max\:bottom-s6 {
    bottom: 1.5rem !important;
  }
  .max\:bottom-s8 {
    bottom: 2rem !important;
  }
  .max\:bottom-s10 {
    bottom: 2.5rem !important;
  }
  .max\:bottom-s12 {
    bottom: 3rem !important;
  }
  .max\:bottom-s16 {
    bottom: 4rem !important;
  }
  .max\:bottom-s20 {
    bottom: 5rem !important;
  }
  .max\:bottom-s24 {
    bottom: 6rem !important;
  }
  .max\:bottom-s28 {
    bottom: 7rem !important;
  }
  .max\:bottom-s32 {
    bottom: 8rem !important;
  }
  .max\:bottom-s60 {
    bottom: 15rem !important;
  }
  .max\:bottom-s70 {
    bottom: 17.5rem !important;
  }
  .max\:bottom-s72 {
    bottom: 18rem !important;
  }
  .max\:bottom-s40em {
    bottom: 10em !important;
  }
  .max\:bottom-s44em {
    bottom: 11em !important;
  }
  .max\:bottom-s46em {
    bottom: 11.5em !important;
  }
  .max\:bottom-s48em {
    bottom: 12em !important;
  }
  .max\:bottom-s49em {
    bottom: 12.25em !important;
  }
  .max\:bottom-s50em {
    bottom: 12.5em !important;
  }
  .max\:bottom-s52em {
    bottom: 13em !important;
  }
  .max\:bottom-s54em {
    bottom: 13.5em !important;
  }
  .max\:bottom-s55em {
    bottom: 13.75em !important;
  }
  .max\:bottom-s56em {
    bottom: 14em !important;
  }
  .max\:bottom-s70em {
    bottom: 18em !important;
  }
  .max\:bottom-auto {
    bottom: auto !important;
  }
  .max\:left-0 {
    left: 0 !important;
  }
  .max\:left-1 {
    left: 16rem !important;
  }
  .max\:left-2 {
    left: 20rem !important;
  }
  .max\:left-3 {
    left: 24rem !important;
  }
  .max\:left-4 {
    left: 28rem !important;
  }
  .max\:left-5 {
    left: 32rem !important;
  }
  .max\:left-6 {
    left: 36rem !important;
  }
  .max\:left-7 {
    left: 42rem !important;
  }
  .max\:left-8 {
    left: 48rem !important;
  }
  .max\:left-9 {
    left: 56rem !important;
  }
  .max\:left-10 {
    left: 64rem !important;
  }
  .max\:left-11 {
    left: 72rem !important;
  }
  .max\:left-1em {
    left: 16em !important;
  }
  .max\:left-2em {
    left: 20em !important;
  }
  .max\:left-3em {
    left: 24em !important;
  }
  .max\:left-4em {
    left: 28em !important;
  }
  .max\:left-5em {
    left: 32em !important;
  }
  .max\:left-6em {
    left: 36em !important;
  }
  .max\:left-7em {
    left: 42em !important;
  }
  .max\:left-8em {
    left: 48em !important;
  }
  .max\:left-9em {
    left: 56em !important;
  }
  .max\:left-10em {
    left: 64em !important;
  }
  .max\:left-11em {
    left: 72em !important;
  }
  .max\:left-1\/6 {
    left: 16.666666% !important;
  }
  .max\:left-1\/4 {
    left: 25% !important;
  }
  .max\:left-2\/7 {
    left: 28.57142857% !important;
  }
  .max\:left-1\/3 {
    left: 33.333333% !important;
  }
  .max\:left-1\/5 {
    left: 20% !important;
  }
  .max\:left-2\/5 {
    left: 40% !important;
  }
  .max\:left-3\/5 {
    left: 60% !important;
  }
  .max\:left-4\/5 {
    left: 80% !important;
  }
  .max\:left-1\/2 {
    left: 50% !important;
  }
  .max\:left-1\/12 {
    left: 8.333333% !important;
  }
  .max\:left-5\/12 {
    left: 41.6666666% !important;
  }
  .max\:left-7\/12 {
    left: 58.333333% !important;
  }
  .max\:left-11\/12 {
    left: 91.6666666% !important;
  }
  .max\:left-2\/3 {
    left: 66.666667% !important;
  }
  .max\:left-3\/4 {
    left: 75% !important;
  }
  .max\:left-5\/6 {
    left: 83.3333333% !important;
  }
  .max\:left-7\/6 {
    left: 116.6666666% !important;
  }
  .max\:left-4\/3 {
    left: 133.3333333% !important;
  }
  .max\:left-3\/2 {
    left: 150% !important;
  }
  .max\:left-1\/24 {
    left: 4.1666666% !important;
  }
  .max\:left-full {
    left: 100% !important;
  }
  .max\:left-1\/6vh {
    left: 16.666666vh !important;
  }
  .max\:left-1\/4vh {
    left: 25vh !important;
  }
  .max\:left-1\/3vh {
    left: 33.333333vh !important;
  }
  .max\:left-1\/2vh {
    left: 50vh !important;
  }
  .max\:left-7\/12vh {
    left: 58.333333vh !important;
  }
  .max\:left-2\/3vh {
    left: 66.666667vh !important;
  }
  .max\:left-3\/4vh {
    left: 75vh !important;
  }
  .max\:left-5\/6vh {
    left: 83.3333333vh !important;
  }
  .max\:left-full-vh {
    left: 100vh !important;
  }
  .max\:left--1 {
    left: -16rem !important;
  }
  .max\:left--2 {
    left: -20rem !important;
  }
  .max\:left--3 {
    left: -24rem !important;
  }
  .max\:left--4 {
    left: -28rem !important;
  }
  .max\:left--s1 {
    left: -0.25rem !important;
  }
  .max\:left--s2 {
    left: -0.5rem !important;
  }
  .max\:left--s3 {
    left: -0.75rem !important;
  }
  .max\:left--s4 {
    left: -1rem !important;
  }
  .max\:left--s5 {
    left: -1.25rem !important;
  }
  .max\:left--s6 {
    left: -1.5rem !important;
  }
  .max\:left--s8 {
    left: -2rem !important;
  }
  .max\:left--s10 {
    left: -2.5rem !important;
  }
  .max\:left--s12 {
    left: -3rem !important;
  }
  .max\:left--s16 {
    left: -4rem !important;
  }
  .max\:left--s18 {
    left: -4.5rem !important;
  }
  .max\:left--s20 {
    left: -5rem !important;
  }
  .max\:left--s24 {
    left: -6rem !important;
  }
  .max\:left--s40em {
    left: -10em !important;
  }
  .max\:left--s44em {
    left: -11em !important;
  }
  .max\:left--s46em {
    left: -11.5em !important;
  }
  .max\:left--s48em {
    left: -12em !important;
  }
  .max\:left--s49em {
    left: -12.25em !important;
  }
  .max\:left--s50em {
    left: -12.5em !important;
  }
  .max\:left--s52em {
    left: -13em !important;
  }
  .max\:left--s54em {
    left: -13.5em !important;
  }
  .max\:left--s55em {
    left: -13.75em !important;
  }
  .max\:left--s56em {
    left: -14em !important;
  }
  .max\:left--s70em {
    left: -18em !important;
  }
  .max\:left-s1 {
    left: 0.25rem !important;
  }
  .max\:left-s2 {
    left: 0.5rem !important;
  }
  .max\:left-s3 {
    left: 0.75rem !important;
  }
  .max\:left-s4 {
    left: 1rem !important;
  }
  .max\:left-s5 {
    left: 1.25rem !important;
  }
  .max\:left-s6 {
    left: 1.5rem !important;
  }
  .max\:left-s8 {
    left: 2rem !important;
  }
  .max\:left-s10 {
    left: 2.5rem !important;
  }
  .max\:left-s12 {
    left: 3rem !important;
  }
  .max\:left-s16 {
    left: 4rem !important;
  }
  .max\:left-s20 {
    left: 5rem !important;
  }
  .max\:left-s24 {
    left: 6rem !important;
  }
  .max\:left-s28 {
    left: 7rem !important;
  }
  .max\:left-s32 {
    left: 8rem !important;
  }
  .max\:left-s60 {
    left: 15rem !important;
  }
  .max\:left-s70 {
    left: 17.5rem !important;
  }
  .max\:left-s72 {
    left: 18rem !important;
  }
  .max\:left-s40em {
    left: 10em !important;
  }
  .max\:left-s44em {
    left: 11em !important;
  }
  .max\:left-s46em {
    left: 11.5em !important;
  }
  .max\:left-s48em {
    left: 12em !important;
  }
  .max\:left-s49em {
    left: 12.25em !important;
  }
  .max\:left-s50em {
    left: 12.5em !important;
  }
  .max\:left-s52em {
    left: 13em !important;
  }
  .max\:left-s54em {
    left: 13.5em !important;
  }
  .max\:left-s55em {
    left: 13.75em !important;
  }
  .max\:left-s56em {
    left: 14em !important;
  }
  .max\:left-s70em {
    left: 18em !important;
  }
  .max\:left-auto {
    left: auto !important;
  }
  .max\:inset-0 {
    inset: 0 !important;
  }
  .max\:inset-1 {
    inset: 16rem !important;
  }
  .max\:inset-2 {
    inset: 20rem !important;
  }
  .max\:inset-3 {
    inset: 24rem !important;
  }
  .max\:inset-4 {
    inset: 28rem !important;
  }
  .max\:inset-5 {
    inset: 32rem !important;
  }
  .max\:inset-6 {
    inset: 36rem !important;
  }
  .max\:inset-7 {
    inset: 42rem !important;
  }
  .max\:inset-8 {
    inset: 48rem !important;
  }
  .max\:inset-9 {
    inset: 56rem !important;
  }
  .max\:inset-10 {
    inset: 64rem !important;
  }
  .max\:inset-11 {
    inset: 72rem !important;
  }
  .max\:inset-1em {
    inset: 16em !important;
  }
  .max\:inset-2em {
    inset: 20em !important;
  }
  .max\:inset-3em {
    inset: 24em !important;
  }
  .max\:inset-4em {
    inset: 28em !important;
  }
  .max\:inset-5em {
    inset: 32em !important;
  }
  .max\:inset-6em {
    inset: 36em !important;
  }
  .max\:inset-7em {
    inset: 42em !important;
  }
  .max\:inset-8em {
    inset: 48em !important;
  }
  .max\:inset-9em {
    inset: 56em !important;
  }
  .max\:inset-10em {
    inset: 64em !important;
  }
  .max\:inset-11em {
    inset: 72em !important;
  }
  .max\:inset-1\/6 {
    inset: 16.666666% !important;
  }
  .max\:inset-1\/4 {
    inset: 25% !important;
  }
  .max\:inset-2\/7 {
    inset: 28.57142857% !important;
  }
  .max\:inset-1\/3 {
    inset: 33.333333% !important;
  }
  .max\:inset-1\/5 {
    inset: 20% !important;
  }
  .max\:inset-2\/5 {
    inset: 40% !important;
  }
  .max\:inset-3\/5 {
    inset: 60% !important;
  }
  .max\:inset-4\/5 {
    inset: 80% !important;
  }
  .max\:inset-1\/2 {
    inset: 50% !important;
  }
  .max\:inset-1\/12 {
    inset: 8.333333% !important;
  }
  .max\:inset-5\/12 {
    inset: 41.6666666% !important;
  }
  .max\:inset-7\/12 {
    inset: 58.333333% !important;
  }
  .max\:inset-11\/12 {
    inset: 91.6666666% !important;
  }
  .max\:inset-2\/3 {
    inset: 66.666667% !important;
  }
  .max\:inset-3\/4 {
    inset: 75% !important;
  }
  .max\:inset-5\/6 {
    inset: 83.3333333% !important;
  }
  .max\:inset-7\/6 {
    inset: 116.6666666% !important;
  }
  .max\:inset-4\/3 {
    inset: 133.3333333% !important;
  }
  .max\:inset-3\/2 {
    inset: 150% !important;
  }
  .max\:inset-1\/24 {
    inset: 4.1666666% !important;
  }
  .max\:inset-full {
    inset: 100% !important;
  }
  .max\:inset-1\/6vh {
    inset: 16.666666vh !important;
  }
  .max\:inset-1\/4vh {
    inset: 25vh !important;
  }
  .max\:inset-1\/3vh {
    inset: 33.333333vh !important;
  }
  .max\:inset-1\/2vh {
    inset: 50vh !important;
  }
  .max\:inset-7\/12vh {
    inset: 58.333333vh !important;
  }
  .max\:inset-2\/3vh {
    inset: 66.666667vh !important;
  }
  .max\:inset-3\/4vh {
    inset: 75vh !important;
  }
  .max\:inset-5\/6vh {
    inset: 83.3333333vh !important;
  }
  .max\:inset-full-vh {
    inset: 100vh !important;
  }
  .max\:inset--1 {
    inset: -16rem !important;
  }
  .max\:inset--2 {
    inset: -20rem !important;
  }
  .max\:inset--3 {
    inset: -24rem !important;
  }
  .max\:inset--4 {
    inset: -28rem !important;
  }
  .max\:inset--s1 {
    inset: -0.25rem !important;
  }
  .max\:inset--s2 {
    inset: -0.5rem !important;
  }
  .max\:inset--s3 {
    inset: -0.75rem !important;
  }
  .max\:inset--s4 {
    inset: -1rem !important;
  }
  .max\:inset--s5 {
    inset: -1.25rem !important;
  }
  .max\:inset--s6 {
    inset: -1.5rem !important;
  }
  .max\:inset--s8 {
    inset: -2rem !important;
  }
  .max\:inset--s10 {
    inset: -2.5rem !important;
  }
  .max\:inset--s12 {
    inset: -3rem !important;
  }
  .max\:inset--s16 {
    inset: -4rem !important;
  }
  .max\:inset--s18 {
    inset: -4.5rem !important;
  }
  .max\:inset--s20 {
    inset: -5rem !important;
  }
  .max\:inset--s24 {
    inset: -6rem !important;
  }
  .max\:inset--s40em {
    inset: -10em !important;
  }
  .max\:inset--s44em {
    inset: -11em !important;
  }
  .max\:inset--s46em {
    inset: -11.5em !important;
  }
  .max\:inset--s48em {
    inset: -12em !important;
  }
  .max\:inset--s49em {
    inset: -12.25em !important;
  }
  .max\:inset--s50em {
    inset: -12.5em !important;
  }
  .max\:inset--s52em {
    inset: -13em !important;
  }
  .max\:inset--s54em {
    inset: -13.5em !important;
  }
  .max\:inset--s55em {
    inset: -13.75em !important;
  }
  .max\:inset--s56em {
    inset: -14em !important;
  }
  .max\:inset--s70em {
    inset: -18em !important;
  }
  .max\:inset-s1 {
    inset: 0.25rem !important;
  }
  .max\:inset-s2 {
    inset: 0.5rem !important;
  }
  .max\:inset-s3 {
    inset: 0.75rem !important;
  }
  .max\:inset-s4 {
    inset: 1rem !important;
  }
  .max\:inset-s5 {
    inset: 1.25rem !important;
  }
  .max\:inset-s6 {
    inset: 1.5rem !important;
  }
  .max\:inset-s8 {
    inset: 2rem !important;
  }
  .max\:inset-s10 {
    inset: 2.5rem !important;
  }
  .max\:inset-s12 {
    inset: 3rem !important;
  }
  .max\:inset-s16 {
    inset: 4rem !important;
  }
  .max\:inset-s20 {
    inset: 5rem !important;
  }
  .max\:inset-s24 {
    inset: 6rem !important;
  }
  .max\:inset-s28 {
    inset: 7rem !important;
  }
  .max\:inset-s32 {
    inset: 8rem !important;
  }
  .max\:inset-s60 {
    inset: 15rem !important;
  }
  .max\:inset-s70 {
    inset: 17.5rem !important;
  }
  .max\:inset-s72 {
    inset: 18rem !important;
  }
  .max\:inset-s40em {
    inset: 10em !important;
  }
  .max\:inset-s44em {
    inset: 11em !important;
  }
  .max\:inset-s46em {
    inset: 11.5em !important;
  }
  .max\:inset-s48em {
    inset: 12em !important;
  }
  .max\:inset-s49em {
    inset: 12.25em !important;
  }
  .max\:inset-s50em {
    inset: 12.5em !important;
  }
  .max\:inset-s52em {
    inset: 13em !important;
  }
  .max\:inset-s54em {
    inset: 13.5em !important;
  }
  .max\:inset-s55em {
    inset: 13.75em !important;
  }
  .max\:inset-s56em {
    inset: 14em !important;
  }
  .max\:inset-s70em {
    inset: 18em !important;
  }
  .max\:inset-auto {
    inset: auto !important;
  }
}
.top--s10 {
  top: -2.5rem !important;
}

.top--s12 {
  top: -3rem !important;
}

.top--s16 {
  top: -4rem !important;
}

.top--s18 {
  top: -4.5rem !important;
}

.top--s20 {
  top: -5rem !important;
}

.top--s24 {
  top: -6rem !important;
}

.top--2\:after:after {
  top: -20rem !important;
}

.top--1\:after:after {
  top: -16rem !important;
}

.top-0\:after:after {
  top: 0 !important;
}

.top-1\:after:after {
  top: 16rem !important;
}

.top-2\:after:after {
  top: 20rem !important;
}

.top-1\/6\:after:after {
  top: 16.666666% !important;
}

.top-1\/4\:after:after {
  top: 25% !important;
}

.top-2\/7\:after:after {
  top: 28.57142857% !important;
}

.top-1\/3\:after:after {
  top: 33.333333% !important;
}

.top-1\/5\:after:after {
  top: 20% !important;
}

.top-2\/5\:after:after {
  top: 40% !important;
}

.top-3\/5\:after:after {
  top: 60% !important;
}

.top-4\/5\:after:after {
  top: 80% !important;
}

.top-1\/2\:after:after {
  top: 50% !important;
}

.top-1\/12\:after:after {
  top: 8.333333% !important;
}

.top-5\/12\:after:after {
  top: 41.6666666% !important;
}

.top-7\/12\:after:after {
  top: 58.333333% !important;
}

.top-11\/12\:after:after {
  top: 91.6666666% !important;
}

.top-2\/3\:after:after {
  top: 66.666667% !important;
}

.top-3\/4\:after:after {
  top: 75% !important;
}

.top-5\/6\:after:after {
  top: 83.3333333% !important;
}

.top-7\/6\:after:after {
  top: 116.6666666% !important;
}

.top-4\/3\:after:after {
  top: 133.3333333% !important;
}

.top-3\/2\:after:after {
  top: 150% !important;
}

.top-full\:after:after {
  top: 100% !important;
}

.top--s20\:after:after {
  top: -5rem !important;
}

.top--s8\:after:after {
  top: -2rem !important;
}

.top--s6\:after:after {
  top: -1.5rem !important;
}

.top--s5\:after:after {
  top: -1.25rem !important;
}

.top--s4\:after:after {
  top: -1rem !important;
}

.top--s3\:after:after {
  top: -0.75rem !important;
}

.top--s2\:after:after {
  top: -0.5rem !important;
}

.top--s1\:after:after {
  top: -0.25rem !important;
}

.top-s1\:after:after {
  top: 0.25rem !important;
}

.top-s2\:after:after {
  top: 0.5rem !important;
}

.top-s3\:after:after {
  top: 0.75rem !important;
}

.top-s4\:after:after {
  top: 1rem !important;
}

.top-s5\:after:after {
  top: 1.25rem !important;
}

.top-s6\:after:after {
  top: 1.5rem !important;
}

.top-s8\:after:after {
  top: 2rem !important;
}

.top-s10\:after:after {
  top: 2.5rem !important;
}

.top-s12\:after:after {
  top: 3rem !important;
}

.top-s14\:after:after {
  top: 3.5rem !important;
}

.top-s16\:after:after {
  top: 4rem !important;
}

.top-s18\:after:after {
  top: 4.5rem !important;
}

.top-s20\:after:after {
  top: 5rem !important;
}

.top-s24\:after:after {
  top: 6rem !important;
}

.top-s28\:after:after {
  top: 7rem !important;
}

.top-s32\:after:after {
  top: 8rem !important;
}

.top-s60\:after:after {
  top: 15rem !important;
}

.top-s70\:after:after {
  top: 17.5rem !important;
}

.top-s72\:after:after {
  top: 18rem !important;
}

.inset--s10 {
  inset: -2.5rem !important;
}

.inset--s12 {
  inset: -3rem !important;
}

.inset--s16 {
  inset: -4rem !important;
}

.inset--s18 {
  inset: -4.5rem !important;
}

.inset--s20 {
  inset: -5rem !important;
}

.inset--s24 {
  inset: -6rem !important;
}

.inset--2\:after:after {
  inset: -20rem !important;
}

.inset--1\:after:after {
  inset: -16rem !important;
}

.inset-0\:after:after {
  inset: 0 !important;
}

.inset-1\:after:after {
  inset: 16rem !important;
}

.inset-2\:after:after {
  inset: 20rem !important;
}

.inset-1\/6\:after:after {
  inset: 16.666666% !important;
}

.inset-1\/4\:after:after {
  inset: 25% !important;
}

.inset-2\/7\:after:after {
  inset: 28.57142857% !important;
}

.inset-1\/3\:after:after {
  inset: 33.333333% !important;
}

.inset-1\/5\:after:after {
  inset: 20% !important;
}

.inset-2\/5\:after:after {
  inset: 40% !important;
}

.inset-3\/5\:after:after {
  inset: 60% !important;
}

.inset-4\/5\:after:after {
  inset: 80% !important;
}

.inset-1\/2\:after:after {
  inset: 50% !important;
}

.inset-1\/12\:after:after {
  inset: 8.333333% !important;
}

.inset-5\/12\:after:after {
  inset: 41.6666666% !important;
}

.inset-7\/12\:after:after {
  inset: 58.333333% !important;
}

.inset-11\/12\:after:after {
  inset: 91.6666666% !important;
}

.inset-2\/3\:after:after {
  inset: 66.666667% !important;
}

.inset-3\/4\:after:after {
  inset: 75% !important;
}

.inset-5\/6\:after:after {
  inset: 83.3333333% !important;
}

.inset-7\/6\:after:after {
  inset: 116.6666666% !important;
}

.inset-4\/3\:after:after {
  inset: 133.3333333% !important;
}

.inset-3\/2\:after:after {
  inset: 150% !important;
}

.inset-full\:after:after {
  inset: 100% !important;
}

.inset--s20\:after:after {
  inset: -5rem !important;
}

.inset--s8\:after:after {
  inset: -2rem !important;
}

.inset--s6\:after:after {
  inset: -1.5rem !important;
}

.inset--s5\:after:after {
  inset: -1.25rem !important;
}

.inset--s4\:after:after {
  inset: -1rem !important;
}

.inset--s3\:after:after {
  inset: -0.75rem !important;
}

.inset--s2\:after:after {
  inset: -0.5rem !important;
}

.inset--s1\:after:after {
  inset: -0.25rem !important;
}

.inset-s1\:after:after {
  inset: 0.25rem !important;
}

.inset-s2\:after:after {
  inset: 0.5rem !important;
}

.inset-s3\:after:after {
  inset: 0.75rem !important;
}

.inset-s4\:after:after {
  inset: 1rem !important;
}

.inset-s5\:after:after {
  inset: 1.25rem !important;
}

.inset-s6\:after:after {
  inset: 1.5rem !important;
}

.inset-s8\:after:after {
  inset: 2rem !important;
}

.inset-s10\:after:after {
  inset: 2.5rem !important;
}

.inset-s12\:after:after {
  inset: 3rem !important;
}

.inset-s14\:after:after {
  inset: 3.5rem !important;
}

.inset-s16\:after:after {
  inset: 4rem !important;
}

.inset-s18\:after:after {
  inset: 4.5rem !important;
}

.inset-s20\:after:after {
  inset: 5rem !important;
}

.inset-s24\:after:after {
  inset: 6rem !important;
}

.inset-s28\:after:after {
  inset: 7rem !important;
}

.inset-s32\:after:after {
  inset: 8rem !important;
}

.inset-s60\:after:after {
  inset: 15rem !important;
}

.inset-s70\:after:after {
  inset: 17.5rem !important;
}

.inset-s72\:after:after {
  inset: 18rem !important;
}

@media screen and (min-width: 360px) {
  .xs\:top--s10 {
    top: -2.5rem !important;
  }
  .xs\:top--s12 {
    top: -3rem !important;
  }
  .xs\:top--s16 {
    top: -4rem !important;
  }
  .xs\:top--s18 {
    top: -4.5rem !important;
  }
  .xs\:top--s20 {
    top: -5rem !important;
  }
  .xs\:top--s24 {
    top: -6rem !important;
  }
  .xs\:top--2\:after:after {
    top: -20rem !important;
  }
  .xs\:top--1\:after:after {
    top: -16rem !important;
  }
  .xs\:top-0\:after:after {
    top: 0 !important;
  }
  .xs\:top-1\:after:after {
    top: 16rem !important;
  }
  .xs\:top-2\:after:after {
    top: 20rem !important;
  }
  .xs\:top-1\/6\:after:after {
    top: 16.666666% !important;
  }
  .xs\:top-1\/4\:after:after {
    top: 25% !important;
  }
  .xs\:top-2\/7\:after:after {
    top: 28.57142857% !important;
  }
  .xs\:top-1\/3\:after:after {
    top: 33.333333% !important;
  }
  .xs\:top-1\/5\:after:after {
    top: 20% !important;
  }
  .xs\:top-2\/5\:after:after {
    top: 40% !important;
  }
  .xs\:top-3\/5\:after:after {
    top: 60% !important;
  }
  .xs\:top-4\/5\:after:after {
    top: 80% !important;
  }
  .xs\:top-1\/2\:after:after {
    top: 50% !important;
  }
  .xs\:top-1\/12\:after:after {
    top: 8.333333% !important;
  }
  .xs\:top-5\/12\:after:after {
    top: 41.6666666% !important;
  }
  .xs\:top-7\/12\:after:after {
    top: 58.333333% !important;
  }
  .xs\:top-11\/12\:after:after {
    top: 91.6666666% !important;
  }
  .xs\:top-2\/3\:after:after {
    top: 66.666667% !important;
  }
  .xs\:top-3\/4\:after:after {
    top: 75% !important;
  }
  .xs\:top-5\/6\:after:after {
    top: 83.3333333% !important;
  }
  .xs\:top-7\/6\:after:after {
    top: 116.6666666% !important;
  }
  .xs\:top-4\/3\:after:after {
    top: 133.3333333% !important;
  }
  .xs\:top-3\/2\:after:after {
    top: 150% !important;
  }
  .xs\:top-full\:after:after {
    top: 100% !important;
  }
  .xs\:top--s20\:after:after {
    top: -5rem !important;
  }
  .xs\:top--s8\:after:after {
    top: -2rem !important;
  }
  .xs\:top--s6\:after:after {
    top: -1.5rem !important;
  }
  .xs\:top--s5\:after:after {
    top: -1.25rem !important;
  }
  .xs\:top--s4\:after:after {
    top: -1rem !important;
  }
  .xs\:top--s3\:after:after {
    top: -0.75rem !important;
  }
  .xs\:top--s2\:after:after {
    top: -0.5rem !important;
  }
  .xs\:top--s1\:after:after {
    top: -0.25rem !important;
  }
  .xs\:top-s1\:after:after {
    top: 0.25rem !important;
  }
  .xs\:top-s2\:after:after {
    top: 0.5rem !important;
  }
  .xs\:top-s3\:after:after {
    top: 0.75rem !important;
  }
  .xs\:top-s4\:after:after {
    top: 1rem !important;
  }
  .xs\:top-s5\:after:after {
    top: 1.25rem !important;
  }
  .xs\:top-s6\:after:after {
    top: 1.5rem !important;
  }
  .xs\:top-s8\:after:after {
    top: 2rem !important;
  }
  .xs\:top-s10\:after:after {
    top: 2.5rem !important;
  }
  .xs\:top-s12\:after:after {
    top: 3rem !important;
  }
  .xs\:top-s14\:after:after {
    top: 3.5rem !important;
  }
  .xs\:top-s16\:after:after {
    top: 4rem !important;
  }
  .xs\:top-s18\:after:after {
    top: 4.5rem !important;
  }
  .xs\:top-s20\:after:after {
    top: 5rem !important;
  }
  .xs\:top-s24\:after:after {
    top: 6rem !important;
  }
  .xs\:top-s28\:after:after {
    top: 7rem !important;
  }
  .xs\:top-s32\:after:after {
    top: 8rem !important;
  }
  .xs\:top-s60\:after:after {
    top: 15rem !important;
  }
  .xs\:top-s70\:after:after {
    top: 17.5rem !important;
  }
  .xs\:top-s72\:after:after {
    top: 18rem !important;
  }
  .xs\:inset--s10 {
    inset: -2.5rem !important;
  }
  .xs\:inset--s12 {
    inset: -3rem !important;
  }
  .xs\:inset--s16 {
    inset: -4rem !important;
  }
  .xs\:inset--s18 {
    inset: -4.5rem !important;
  }
  .xs\:inset--s20 {
    inset: -5rem !important;
  }
  .xs\:inset--s24 {
    inset: -6rem !important;
  }
  .xs\:inset--2\:after:after {
    inset: -20rem !important;
  }
  .xs\:inset--1\:after:after {
    inset: -16rem !important;
  }
  .xs\:inset-0\:after:after {
    inset: 0 !important;
  }
  .xs\:inset-1\:after:after {
    inset: 16rem !important;
  }
  .xs\:inset-2\:after:after {
    inset: 20rem !important;
  }
  .xs\:inset-1\/6\:after:after {
    inset: 16.666666% !important;
  }
  .xs\:inset-1\/4\:after:after {
    inset: 25% !important;
  }
  .xs\:inset-2\/7\:after:after {
    inset: 28.57142857% !important;
  }
  .xs\:inset-1\/3\:after:after {
    inset: 33.333333% !important;
  }
  .xs\:inset-1\/5\:after:after {
    inset: 20% !important;
  }
  .xs\:inset-2\/5\:after:after {
    inset: 40% !important;
  }
  .xs\:inset-3\/5\:after:after {
    inset: 60% !important;
  }
  .xs\:inset-4\/5\:after:after {
    inset: 80% !important;
  }
  .xs\:inset-1\/2\:after:after {
    inset: 50% !important;
  }
  .xs\:inset-1\/12\:after:after {
    inset: 8.333333% !important;
  }
  .xs\:inset-5\/12\:after:after {
    inset: 41.6666666% !important;
  }
  .xs\:inset-7\/12\:after:after {
    inset: 58.333333% !important;
  }
  .xs\:inset-11\/12\:after:after {
    inset: 91.6666666% !important;
  }
  .xs\:inset-2\/3\:after:after {
    inset: 66.666667% !important;
  }
  .xs\:inset-3\/4\:after:after {
    inset: 75% !important;
  }
  .xs\:inset-5\/6\:after:after {
    inset: 83.3333333% !important;
  }
  .xs\:inset-7\/6\:after:after {
    inset: 116.6666666% !important;
  }
  .xs\:inset-4\/3\:after:after {
    inset: 133.3333333% !important;
  }
  .xs\:inset-3\/2\:after:after {
    inset: 150% !important;
  }
  .xs\:inset-full\:after:after {
    inset: 100% !important;
  }
  .xs\:inset--s20\:after:after {
    inset: -5rem !important;
  }
  .xs\:inset--s8\:after:after {
    inset: -2rem !important;
  }
  .xs\:inset--s6\:after:after {
    inset: -1.5rem !important;
  }
  .xs\:inset--s5\:after:after {
    inset: -1.25rem !important;
  }
  .xs\:inset--s4\:after:after {
    inset: -1rem !important;
  }
  .xs\:inset--s3\:after:after {
    inset: -0.75rem !important;
  }
  .xs\:inset--s2\:after:after {
    inset: -0.5rem !important;
  }
  .xs\:inset--s1\:after:after {
    inset: -0.25rem !important;
  }
  .xs\:inset-s1\:after:after {
    inset: 0.25rem !important;
  }
  .xs\:inset-s2\:after:after {
    inset: 0.5rem !important;
  }
  .xs\:inset-s3\:after:after {
    inset: 0.75rem !important;
  }
  .xs\:inset-s4\:after:after {
    inset: 1rem !important;
  }
  .xs\:inset-s5\:after:after {
    inset: 1.25rem !important;
  }
  .xs\:inset-s6\:after:after {
    inset: 1.5rem !important;
  }
  .xs\:inset-s8\:after:after {
    inset: 2rem !important;
  }
  .xs\:inset-s10\:after:after {
    inset: 2.5rem !important;
  }
  .xs\:inset-s12\:after:after {
    inset: 3rem !important;
  }
  .xs\:inset-s14\:after:after {
    inset: 3.5rem !important;
  }
  .xs\:inset-s16\:after:after {
    inset: 4rem !important;
  }
  .xs\:inset-s18\:after:after {
    inset: 4.5rem !important;
  }
  .xs\:inset-s20\:after:after {
    inset: 5rem !important;
  }
  .xs\:inset-s24\:after:after {
    inset: 6rem !important;
  }
  .xs\:inset-s28\:after:after {
    inset: 7rem !important;
  }
  .xs\:inset-s32\:after:after {
    inset: 8rem !important;
  }
  .xs\:inset-s60\:after:after {
    inset: 15rem !important;
  }
  .xs\:inset-s70\:after:after {
    inset: 17.5rem !important;
  }
  .xs\:inset-s72\:after:after {
    inset: 18rem !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:top--s10 {
    top: -2.5rem !important;
  }
  .sm\:top--s12 {
    top: -3rem !important;
  }
  .sm\:top--s16 {
    top: -4rem !important;
  }
  .sm\:top--s18 {
    top: -4.5rem !important;
  }
  .sm\:top--s20 {
    top: -5rem !important;
  }
  .sm\:top--s24 {
    top: -6rem !important;
  }
  .sm\:top--2\:after:after {
    top: -20rem !important;
  }
  .sm\:top--1\:after:after {
    top: -16rem !important;
  }
  .sm\:top-0\:after:after {
    top: 0 !important;
  }
  .sm\:top-1\:after:after {
    top: 16rem !important;
  }
  .sm\:top-2\:after:after {
    top: 20rem !important;
  }
  .sm\:top-1\/6\:after:after {
    top: 16.666666% !important;
  }
  .sm\:top-1\/4\:after:after {
    top: 25% !important;
  }
  .sm\:top-2\/7\:after:after {
    top: 28.57142857% !important;
  }
  .sm\:top-1\/3\:after:after {
    top: 33.333333% !important;
  }
  .sm\:top-1\/5\:after:after {
    top: 20% !important;
  }
  .sm\:top-2\/5\:after:after {
    top: 40% !important;
  }
  .sm\:top-3\/5\:after:after {
    top: 60% !important;
  }
  .sm\:top-4\/5\:after:after {
    top: 80% !important;
  }
  .sm\:top-1\/2\:after:after {
    top: 50% !important;
  }
  .sm\:top-1\/12\:after:after {
    top: 8.333333% !important;
  }
  .sm\:top-5\/12\:after:after {
    top: 41.6666666% !important;
  }
  .sm\:top-7\/12\:after:after {
    top: 58.333333% !important;
  }
  .sm\:top-11\/12\:after:after {
    top: 91.6666666% !important;
  }
  .sm\:top-2\/3\:after:after {
    top: 66.666667% !important;
  }
  .sm\:top-3\/4\:after:after {
    top: 75% !important;
  }
  .sm\:top-5\/6\:after:after {
    top: 83.3333333% !important;
  }
  .sm\:top-7\/6\:after:after {
    top: 116.6666666% !important;
  }
  .sm\:top-4\/3\:after:after {
    top: 133.3333333% !important;
  }
  .sm\:top-3\/2\:after:after {
    top: 150% !important;
  }
  .sm\:top-full\:after:after {
    top: 100% !important;
  }
  .sm\:top--s20\:after:after {
    top: -5rem !important;
  }
  .sm\:top--s8\:after:after {
    top: -2rem !important;
  }
  .sm\:top--s6\:after:after {
    top: -1.5rem !important;
  }
  .sm\:top--s5\:after:after {
    top: -1.25rem !important;
  }
  .sm\:top--s4\:after:after {
    top: -1rem !important;
  }
  .sm\:top--s3\:after:after {
    top: -0.75rem !important;
  }
  .sm\:top--s2\:after:after {
    top: -0.5rem !important;
  }
  .sm\:top--s1\:after:after {
    top: -0.25rem !important;
  }
  .sm\:top-s1\:after:after {
    top: 0.25rem !important;
  }
  .sm\:top-s2\:after:after {
    top: 0.5rem !important;
  }
  .sm\:top-s3\:after:after {
    top: 0.75rem !important;
  }
  .sm\:top-s4\:after:after {
    top: 1rem !important;
  }
  .sm\:top-s5\:after:after {
    top: 1.25rem !important;
  }
  .sm\:top-s6\:after:after {
    top: 1.5rem !important;
  }
  .sm\:top-s8\:after:after {
    top: 2rem !important;
  }
  .sm\:top-s10\:after:after {
    top: 2.5rem !important;
  }
  .sm\:top-s12\:after:after {
    top: 3rem !important;
  }
  .sm\:top-s14\:after:after {
    top: 3.5rem !important;
  }
  .sm\:top-s16\:after:after {
    top: 4rem !important;
  }
  .sm\:top-s18\:after:after {
    top: 4.5rem !important;
  }
  .sm\:top-s20\:after:after {
    top: 5rem !important;
  }
  .sm\:top-s24\:after:after {
    top: 6rem !important;
  }
  .sm\:top-s28\:after:after {
    top: 7rem !important;
  }
  .sm\:top-s32\:after:after {
    top: 8rem !important;
  }
  .sm\:top-s60\:after:after {
    top: 15rem !important;
  }
  .sm\:top-s70\:after:after {
    top: 17.5rem !important;
  }
  .sm\:top-s72\:after:after {
    top: 18rem !important;
  }
  .sm\:inset--s10 {
    inset: -2.5rem !important;
  }
  .sm\:inset--s12 {
    inset: -3rem !important;
  }
  .sm\:inset--s16 {
    inset: -4rem !important;
  }
  .sm\:inset--s18 {
    inset: -4.5rem !important;
  }
  .sm\:inset--s20 {
    inset: -5rem !important;
  }
  .sm\:inset--s24 {
    inset: -6rem !important;
  }
  .sm\:inset--2\:after:after {
    inset: -20rem !important;
  }
  .sm\:inset--1\:after:after {
    inset: -16rem !important;
  }
  .sm\:inset-0\:after:after {
    inset: 0 !important;
  }
  .sm\:inset-1\:after:after {
    inset: 16rem !important;
  }
  .sm\:inset-2\:after:after {
    inset: 20rem !important;
  }
  .sm\:inset-1\/6\:after:after {
    inset: 16.666666% !important;
  }
  .sm\:inset-1\/4\:after:after {
    inset: 25% !important;
  }
  .sm\:inset-2\/7\:after:after {
    inset: 28.57142857% !important;
  }
  .sm\:inset-1\/3\:after:after {
    inset: 33.333333% !important;
  }
  .sm\:inset-1\/5\:after:after {
    inset: 20% !important;
  }
  .sm\:inset-2\/5\:after:after {
    inset: 40% !important;
  }
  .sm\:inset-3\/5\:after:after {
    inset: 60% !important;
  }
  .sm\:inset-4\/5\:after:after {
    inset: 80% !important;
  }
  .sm\:inset-1\/2\:after:after {
    inset: 50% !important;
  }
  .sm\:inset-1\/12\:after:after {
    inset: 8.333333% !important;
  }
  .sm\:inset-5\/12\:after:after {
    inset: 41.6666666% !important;
  }
  .sm\:inset-7\/12\:after:after {
    inset: 58.333333% !important;
  }
  .sm\:inset-11\/12\:after:after {
    inset: 91.6666666% !important;
  }
  .sm\:inset-2\/3\:after:after {
    inset: 66.666667% !important;
  }
  .sm\:inset-3\/4\:after:after {
    inset: 75% !important;
  }
  .sm\:inset-5\/6\:after:after {
    inset: 83.3333333% !important;
  }
  .sm\:inset-7\/6\:after:after {
    inset: 116.6666666% !important;
  }
  .sm\:inset-4\/3\:after:after {
    inset: 133.3333333% !important;
  }
  .sm\:inset-3\/2\:after:after {
    inset: 150% !important;
  }
  .sm\:inset-full\:after:after {
    inset: 100% !important;
  }
  .sm\:inset--s20\:after:after {
    inset: -5rem !important;
  }
  .sm\:inset--s8\:after:after {
    inset: -2rem !important;
  }
  .sm\:inset--s6\:after:after {
    inset: -1.5rem !important;
  }
  .sm\:inset--s5\:after:after {
    inset: -1.25rem !important;
  }
  .sm\:inset--s4\:after:after {
    inset: -1rem !important;
  }
  .sm\:inset--s3\:after:after {
    inset: -0.75rem !important;
  }
  .sm\:inset--s2\:after:after {
    inset: -0.5rem !important;
  }
  .sm\:inset--s1\:after:after {
    inset: -0.25rem !important;
  }
  .sm\:inset-s1\:after:after {
    inset: 0.25rem !important;
  }
  .sm\:inset-s2\:after:after {
    inset: 0.5rem !important;
  }
  .sm\:inset-s3\:after:after {
    inset: 0.75rem !important;
  }
  .sm\:inset-s4\:after:after {
    inset: 1rem !important;
  }
  .sm\:inset-s5\:after:after {
    inset: 1.25rem !important;
  }
  .sm\:inset-s6\:after:after {
    inset: 1.5rem !important;
  }
  .sm\:inset-s8\:after:after {
    inset: 2rem !important;
  }
  .sm\:inset-s10\:after:after {
    inset: 2.5rem !important;
  }
  .sm\:inset-s12\:after:after {
    inset: 3rem !important;
  }
  .sm\:inset-s14\:after:after {
    inset: 3.5rem !important;
  }
  .sm\:inset-s16\:after:after {
    inset: 4rem !important;
  }
  .sm\:inset-s18\:after:after {
    inset: 4.5rem !important;
  }
  .sm\:inset-s20\:after:after {
    inset: 5rem !important;
  }
  .sm\:inset-s24\:after:after {
    inset: 6rem !important;
  }
  .sm\:inset-s28\:after:after {
    inset: 7rem !important;
  }
  .sm\:inset-s32\:after:after {
    inset: 8rem !important;
  }
  .sm\:inset-s60\:after:after {
    inset: 15rem !important;
  }
  .sm\:inset-s70\:after:after {
    inset: 17.5rem !important;
  }
  .sm\:inset-s72\:after:after {
    inset: 18rem !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:top--s10 {
    top: -2.5rem !important;
  }
  .md\:top--s12 {
    top: -3rem !important;
  }
  .md\:top--s16 {
    top: -4rem !important;
  }
  .md\:top--s18 {
    top: -4.5rem !important;
  }
  .md\:top--s20 {
    top: -5rem !important;
  }
  .md\:top--s24 {
    top: -6rem !important;
  }
  .md\:top--2\:after:after {
    top: -20rem !important;
  }
  .md\:top--1\:after:after {
    top: -16rem !important;
  }
  .md\:top-0\:after:after {
    top: 0 !important;
  }
  .md\:top-1\:after:after {
    top: 16rem !important;
  }
  .md\:top-2\:after:after {
    top: 20rem !important;
  }
  .md\:top-1\/6\:after:after {
    top: 16.666666% !important;
  }
  .md\:top-1\/4\:after:after {
    top: 25% !important;
  }
  .md\:top-2\/7\:after:after {
    top: 28.57142857% !important;
  }
  .md\:top-1\/3\:after:after {
    top: 33.333333% !important;
  }
  .md\:top-1\/5\:after:after {
    top: 20% !important;
  }
  .md\:top-2\/5\:after:after {
    top: 40% !important;
  }
  .md\:top-3\/5\:after:after {
    top: 60% !important;
  }
  .md\:top-4\/5\:after:after {
    top: 80% !important;
  }
  .md\:top-1\/2\:after:after {
    top: 50% !important;
  }
  .md\:top-1\/12\:after:after {
    top: 8.333333% !important;
  }
  .md\:top-5\/12\:after:after {
    top: 41.6666666% !important;
  }
  .md\:top-7\/12\:after:after {
    top: 58.333333% !important;
  }
  .md\:top-11\/12\:after:after {
    top: 91.6666666% !important;
  }
  .md\:top-2\/3\:after:after {
    top: 66.666667% !important;
  }
  .md\:top-3\/4\:after:after {
    top: 75% !important;
  }
  .md\:top-5\/6\:after:after {
    top: 83.3333333% !important;
  }
  .md\:top-7\/6\:after:after {
    top: 116.6666666% !important;
  }
  .md\:top-4\/3\:after:after {
    top: 133.3333333% !important;
  }
  .md\:top-3\/2\:after:after {
    top: 150% !important;
  }
  .md\:top-full\:after:after {
    top: 100% !important;
  }
  .md\:top--s20\:after:after {
    top: -5rem !important;
  }
  .md\:top--s8\:after:after {
    top: -2rem !important;
  }
  .md\:top--s6\:after:after {
    top: -1.5rem !important;
  }
  .md\:top--s5\:after:after {
    top: -1.25rem !important;
  }
  .md\:top--s4\:after:after {
    top: -1rem !important;
  }
  .md\:top--s3\:after:after {
    top: -0.75rem !important;
  }
  .md\:top--s2\:after:after {
    top: -0.5rem !important;
  }
  .md\:top--s1\:after:after {
    top: -0.25rem !important;
  }
  .md\:top-s1\:after:after {
    top: 0.25rem !important;
  }
  .md\:top-s2\:after:after {
    top: 0.5rem !important;
  }
  .md\:top-s3\:after:after {
    top: 0.75rem !important;
  }
  .md\:top-s4\:after:after {
    top: 1rem !important;
  }
  .md\:top-s5\:after:after {
    top: 1.25rem !important;
  }
  .md\:top-s6\:after:after {
    top: 1.5rem !important;
  }
  .md\:top-s8\:after:after {
    top: 2rem !important;
  }
  .md\:top-s10\:after:after {
    top: 2.5rem !important;
  }
  .md\:top-s12\:after:after {
    top: 3rem !important;
  }
  .md\:top-s14\:after:after {
    top: 3.5rem !important;
  }
  .md\:top-s16\:after:after {
    top: 4rem !important;
  }
  .md\:top-s18\:after:after {
    top: 4.5rem !important;
  }
  .md\:top-s20\:after:after {
    top: 5rem !important;
  }
  .md\:top-s24\:after:after {
    top: 6rem !important;
  }
  .md\:top-s28\:after:after {
    top: 7rem !important;
  }
  .md\:top-s32\:after:after {
    top: 8rem !important;
  }
  .md\:top-s60\:after:after {
    top: 15rem !important;
  }
  .md\:top-s70\:after:after {
    top: 17.5rem !important;
  }
  .md\:top-s72\:after:after {
    top: 18rem !important;
  }
  .md\:inset--s10 {
    inset: -2.5rem !important;
  }
  .md\:inset--s12 {
    inset: -3rem !important;
  }
  .md\:inset--s16 {
    inset: -4rem !important;
  }
  .md\:inset--s18 {
    inset: -4.5rem !important;
  }
  .md\:inset--s20 {
    inset: -5rem !important;
  }
  .md\:inset--s24 {
    inset: -6rem !important;
  }
  .md\:inset--2\:after:after {
    inset: -20rem !important;
  }
  .md\:inset--1\:after:after {
    inset: -16rem !important;
  }
  .md\:inset-0\:after:after {
    inset: 0 !important;
  }
  .md\:inset-1\:after:after {
    inset: 16rem !important;
  }
  .md\:inset-2\:after:after {
    inset: 20rem !important;
  }
  .md\:inset-1\/6\:after:after {
    inset: 16.666666% !important;
  }
  .md\:inset-1\/4\:after:after {
    inset: 25% !important;
  }
  .md\:inset-2\/7\:after:after {
    inset: 28.57142857% !important;
  }
  .md\:inset-1\/3\:after:after {
    inset: 33.333333% !important;
  }
  .md\:inset-1\/5\:after:after {
    inset: 20% !important;
  }
  .md\:inset-2\/5\:after:after {
    inset: 40% !important;
  }
  .md\:inset-3\/5\:after:after {
    inset: 60% !important;
  }
  .md\:inset-4\/5\:after:after {
    inset: 80% !important;
  }
  .md\:inset-1\/2\:after:after {
    inset: 50% !important;
  }
  .md\:inset-1\/12\:after:after {
    inset: 8.333333% !important;
  }
  .md\:inset-5\/12\:after:after {
    inset: 41.6666666% !important;
  }
  .md\:inset-7\/12\:after:after {
    inset: 58.333333% !important;
  }
  .md\:inset-11\/12\:after:after {
    inset: 91.6666666% !important;
  }
  .md\:inset-2\/3\:after:after {
    inset: 66.666667% !important;
  }
  .md\:inset-3\/4\:after:after {
    inset: 75% !important;
  }
  .md\:inset-5\/6\:after:after {
    inset: 83.3333333% !important;
  }
  .md\:inset-7\/6\:after:after {
    inset: 116.6666666% !important;
  }
  .md\:inset-4\/3\:after:after {
    inset: 133.3333333% !important;
  }
  .md\:inset-3\/2\:after:after {
    inset: 150% !important;
  }
  .md\:inset-full\:after:after {
    inset: 100% !important;
  }
  .md\:inset--s20\:after:after {
    inset: -5rem !important;
  }
  .md\:inset--s8\:after:after {
    inset: -2rem !important;
  }
  .md\:inset--s6\:after:after {
    inset: -1.5rem !important;
  }
  .md\:inset--s5\:after:after {
    inset: -1.25rem !important;
  }
  .md\:inset--s4\:after:after {
    inset: -1rem !important;
  }
  .md\:inset--s3\:after:after {
    inset: -0.75rem !important;
  }
  .md\:inset--s2\:after:after {
    inset: -0.5rem !important;
  }
  .md\:inset--s1\:after:after {
    inset: -0.25rem !important;
  }
  .md\:inset-s1\:after:after {
    inset: 0.25rem !important;
  }
  .md\:inset-s2\:after:after {
    inset: 0.5rem !important;
  }
  .md\:inset-s3\:after:after {
    inset: 0.75rem !important;
  }
  .md\:inset-s4\:after:after {
    inset: 1rem !important;
  }
  .md\:inset-s5\:after:after {
    inset: 1.25rem !important;
  }
  .md\:inset-s6\:after:after {
    inset: 1.5rem !important;
  }
  .md\:inset-s8\:after:after {
    inset: 2rem !important;
  }
  .md\:inset-s10\:after:after {
    inset: 2.5rem !important;
  }
  .md\:inset-s12\:after:after {
    inset: 3rem !important;
  }
  .md\:inset-s14\:after:after {
    inset: 3.5rem !important;
  }
  .md\:inset-s16\:after:after {
    inset: 4rem !important;
  }
  .md\:inset-s18\:after:after {
    inset: 4.5rem !important;
  }
  .md\:inset-s20\:after:after {
    inset: 5rem !important;
  }
  .md\:inset-s24\:after:after {
    inset: 6rem !important;
  }
  .md\:inset-s28\:after:after {
    inset: 7rem !important;
  }
  .md\:inset-s32\:after:after {
    inset: 8rem !important;
  }
  .md\:inset-s60\:after:after {
    inset: 15rem !important;
  }
  .md\:inset-s70\:after:after {
    inset: 17.5rem !important;
  }
  .md\:inset-s72\:after:after {
    inset: 18rem !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:top--s10 {
    top: -2.5rem !important;
  }
  .lg\:top--s12 {
    top: -3rem !important;
  }
  .lg\:top--s16 {
    top: -4rem !important;
  }
  .lg\:top--s18 {
    top: -4.5rem !important;
  }
  .lg\:top--s20 {
    top: -5rem !important;
  }
  .lg\:top--s24 {
    top: -6rem !important;
  }
  .lg\:top--2\:after:after {
    top: -20rem !important;
  }
  .lg\:top--1\:after:after {
    top: -16rem !important;
  }
  .lg\:top-0\:after:after {
    top: 0 !important;
  }
  .lg\:top-1\:after:after {
    top: 16rem !important;
  }
  .lg\:top-2\:after:after {
    top: 20rem !important;
  }
  .lg\:top-1\/6\:after:after {
    top: 16.666666% !important;
  }
  .lg\:top-1\/4\:after:after {
    top: 25% !important;
  }
  .lg\:top-2\/7\:after:after {
    top: 28.57142857% !important;
  }
  .lg\:top-1\/3\:after:after {
    top: 33.333333% !important;
  }
  .lg\:top-1\/5\:after:after {
    top: 20% !important;
  }
  .lg\:top-2\/5\:after:after {
    top: 40% !important;
  }
  .lg\:top-3\/5\:after:after {
    top: 60% !important;
  }
  .lg\:top-4\/5\:after:after {
    top: 80% !important;
  }
  .lg\:top-1\/2\:after:after {
    top: 50% !important;
  }
  .lg\:top-1\/12\:after:after {
    top: 8.333333% !important;
  }
  .lg\:top-5\/12\:after:after {
    top: 41.6666666% !important;
  }
  .lg\:top-7\/12\:after:after {
    top: 58.333333% !important;
  }
  .lg\:top-11\/12\:after:after {
    top: 91.6666666% !important;
  }
  .lg\:top-2\/3\:after:after {
    top: 66.666667% !important;
  }
  .lg\:top-3\/4\:after:after {
    top: 75% !important;
  }
  .lg\:top-5\/6\:after:after {
    top: 83.3333333% !important;
  }
  .lg\:top-7\/6\:after:after {
    top: 116.6666666% !important;
  }
  .lg\:top-4\/3\:after:after {
    top: 133.3333333% !important;
  }
  .lg\:top-3\/2\:after:after {
    top: 150% !important;
  }
  .lg\:top-full\:after:after {
    top: 100% !important;
  }
  .lg\:top--s20\:after:after {
    top: -5rem !important;
  }
  .lg\:top--s8\:after:after {
    top: -2rem !important;
  }
  .lg\:top--s6\:after:after {
    top: -1.5rem !important;
  }
  .lg\:top--s5\:after:after {
    top: -1.25rem !important;
  }
  .lg\:top--s4\:after:after {
    top: -1rem !important;
  }
  .lg\:top--s3\:after:after {
    top: -0.75rem !important;
  }
  .lg\:top--s2\:after:after {
    top: -0.5rem !important;
  }
  .lg\:top--s1\:after:after {
    top: -0.25rem !important;
  }
  .lg\:top-s1\:after:after {
    top: 0.25rem !important;
  }
  .lg\:top-s2\:after:after {
    top: 0.5rem !important;
  }
  .lg\:top-s3\:after:after {
    top: 0.75rem !important;
  }
  .lg\:top-s4\:after:after {
    top: 1rem !important;
  }
  .lg\:top-s5\:after:after {
    top: 1.25rem !important;
  }
  .lg\:top-s6\:after:after {
    top: 1.5rem !important;
  }
  .lg\:top-s8\:after:after {
    top: 2rem !important;
  }
  .lg\:top-s10\:after:after {
    top: 2.5rem !important;
  }
  .lg\:top-s12\:after:after {
    top: 3rem !important;
  }
  .lg\:top-s14\:after:after {
    top: 3.5rem !important;
  }
  .lg\:top-s16\:after:after {
    top: 4rem !important;
  }
  .lg\:top-s18\:after:after {
    top: 4.5rem !important;
  }
  .lg\:top-s20\:after:after {
    top: 5rem !important;
  }
  .lg\:top-s24\:after:after {
    top: 6rem !important;
  }
  .lg\:top-s28\:after:after {
    top: 7rem !important;
  }
  .lg\:top-s32\:after:after {
    top: 8rem !important;
  }
  .lg\:top-s60\:after:after {
    top: 15rem !important;
  }
  .lg\:top-s70\:after:after {
    top: 17.5rem !important;
  }
  .lg\:top-s72\:after:after {
    top: 18rem !important;
  }
  .lg\:inset--s10 {
    inset: -2.5rem !important;
  }
  .lg\:inset--s12 {
    inset: -3rem !important;
  }
  .lg\:inset--s16 {
    inset: -4rem !important;
  }
  .lg\:inset--s18 {
    inset: -4.5rem !important;
  }
  .lg\:inset--s20 {
    inset: -5rem !important;
  }
  .lg\:inset--s24 {
    inset: -6rem !important;
  }
  .lg\:inset--2\:after:after {
    inset: -20rem !important;
  }
  .lg\:inset--1\:after:after {
    inset: -16rem !important;
  }
  .lg\:inset-0\:after:after {
    inset: 0 !important;
  }
  .lg\:inset-1\:after:after {
    inset: 16rem !important;
  }
  .lg\:inset-2\:after:after {
    inset: 20rem !important;
  }
  .lg\:inset-1\/6\:after:after {
    inset: 16.666666% !important;
  }
  .lg\:inset-1\/4\:after:after {
    inset: 25% !important;
  }
  .lg\:inset-2\/7\:after:after {
    inset: 28.57142857% !important;
  }
  .lg\:inset-1\/3\:after:after {
    inset: 33.333333% !important;
  }
  .lg\:inset-1\/5\:after:after {
    inset: 20% !important;
  }
  .lg\:inset-2\/5\:after:after {
    inset: 40% !important;
  }
  .lg\:inset-3\/5\:after:after {
    inset: 60% !important;
  }
  .lg\:inset-4\/5\:after:after {
    inset: 80% !important;
  }
  .lg\:inset-1\/2\:after:after {
    inset: 50% !important;
  }
  .lg\:inset-1\/12\:after:after {
    inset: 8.333333% !important;
  }
  .lg\:inset-5\/12\:after:after {
    inset: 41.6666666% !important;
  }
  .lg\:inset-7\/12\:after:after {
    inset: 58.333333% !important;
  }
  .lg\:inset-11\/12\:after:after {
    inset: 91.6666666% !important;
  }
  .lg\:inset-2\/3\:after:after {
    inset: 66.666667% !important;
  }
  .lg\:inset-3\/4\:after:after {
    inset: 75% !important;
  }
  .lg\:inset-5\/6\:after:after {
    inset: 83.3333333% !important;
  }
  .lg\:inset-7\/6\:after:after {
    inset: 116.6666666% !important;
  }
  .lg\:inset-4\/3\:after:after {
    inset: 133.3333333% !important;
  }
  .lg\:inset-3\/2\:after:after {
    inset: 150% !important;
  }
  .lg\:inset-full\:after:after {
    inset: 100% !important;
  }
  .lg\:inset--s20\:after:after {
    inset: -5rem !important;
  }
  .lg\:inset--s8\:after:after {
    inset: -2rem !important;
  }
  .lg\:inset--s6\:after:after {
    inset: -1.5rem !important;
  }
  .lg\:inset--s5\:after:after {
    inset: -1.25rem !important;
  }
  .lg\:inset--s4\:after:after {
    inset: -1rem !important;
  }
  .lg\:inset--s3\:after:after {
    inset: -0.75rem !important;
  }
  .lg\:inset--s2\:after:after {
    inset: -0.5rem !important;
  }
  .lg\:inset--s1\:after:after {
    inset: -0.25rem !important;
  }
  .lg\:inset-s1\:after:after {
    inset: 0.25rem !important;
  }
  .lg\:inset-s2\:after:after {
    inset: 0.5rem !important;
  }
  .lg\:inset-s3\:after:after {
    inset: 0.75rem !important;
  }
  .lg\:inset-s4\:after:after {
    inset: 1rem !important;
  }
  .lg\:inset-s5\:after:after {
    inset: 1.25rem !important;
  }
  .lg\:inset-s6\:after:after {
    inset: 1.5rem !important;
  }
  .lg\:inset-s8\:after:after {
    inset: 2rem !important;
  }
  .lg\:inset-s10\:after:after {
    inset: 2.5rem !important;
  }
  .lg\:inset-s12\:after:after {
    inset: 3rem !important;
  }
  .lg\:inset-s14\:after:after {
    inset: 3.5rem !important;
  }
  .lg\:inset-s16\:after:after {
    inset: 4rem !important;
  }
  .lg\:inset-s18\:after:after {
    inset: 4.5rem !important;
  }
  .lg\:inset-s20\:after:after {
    inset: 5rem !important;
  }
  .lg\:inset-s24\:after:after {
    inset: 6rem !important;
  }
  .lg\:inset-s28\:after:after {
    inset: 7rem !important;
  }
  .lg\:inset-s32\:after:after {
    inset: 8rem !important;
  }
  .lg\:inset-s60\:after:after {
    inset: 15rem !important;
  }
  .lg\:inset-s70\:after:after {
    inset: 17.5rem !important;
  }
  .lg\:inset-s72\:after:after {
    inset: 18rem !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:top--s10 {
    top: -2.5rem !important;
  }
  .xl\:top--s12 {
    top: -3rem !important;
  }
  .xl\:top--s16 {
    top: -4rem !important;
  }
  .xl\:top--s18 {
    top: -4.5rem !important;
  }
  .xl\:top--s20 {
    top: -5rem !important;
  }
  .xl\:top--s24 {
    top: -6rem !important;
  }
  .xl\:top--2\:after:after {
    top: -20rem !important;
  }
  .xl\:top--1\:after:after {
    top: -16rem !important;
  }
  .xl\:top-0\:after:after {
    top: 0 !important;
  }
  .xl\:top-1\:after:after {
    top: 16rem !important;
  }
  .xl\:top-2\:after:after {
    top: 20rem !important;
  }
  .xl\:top-1\/6\:after:after {
    top: 16.666666% !important;
  }
  .xl\:top-1\/4\:after:after {
    top: 25% !important;
  }
  .xl\:top-2\/7\:after:after {
    top: 28.57142857% !important;
  }
  .xl\:top-1\/3\:after:after {
    top: 33.333333% !important;
  }
  .xl\:top-1\/5\:after:after {
    top: 20% !important;
  }
  .xl\:top-2\/5\:after:after {
    top: 40% !important;
  }
  .xl\:top-3\/5\:after:after {
    top: 60% !important;
  }
  .xl\:top-4\/5\:after:after {
    top: 80% !important;
  }
  .xl\:top-1\/2\:after:after {
    top: 50% !important;
  }
  .xl\:top-1\/12\:after:after {
    top: 8.333333% !important;
  }
  .xl\:top-5\/12\:after:after {
    top: 41.6666666% !important;
  }
  .xl\:top-7\/12\:after:after {
    top: 58.333333% !important;
  }
  .xl\:top-11\/12\:after:after {
    top: 91.6666666% !important;
  }
  .xl\:top-2\/3\:after:after {
    top: 66.666667% !important;
  }
  .xl\:top-3\/4\:after:after {
    top: 75% !important;
  }
  .xl\:top-5\/6\:after:after {
    top: 83.3333333% !important;
  }
  .xl\:top-7\/6\:after:after {
    top: 116.6666666% !important;
  }
  .xl\:top-4\/3\:after:after {
    top: 133.3333333% !important;
  }
  .xl\:top-3\/2\:after:after {
    top: 150% !important;
  }
  .xl\:top-full\:after:after {
    top: 100% !important;
  }
  .xl\:top--s20\:after:after {
    top: -5rem !important;
  }
  .xl\:top--s8\:after:after {
    top: -2rem !important;
  }
  .xl\:top--s6\:after:after {
    top: -1.5rem !important;
  }
  .xl\:top--s5\:after:after {
    top: -1.25rem !important;
  }
  .xl\:top--s4\:after:after {
    top: -1rem !important;
  }
  .xl\:top--s3\:after:after {
    top: -0.75rem !important;
  }
  .xl\:top--s2\:after:after {
    top: -0.5rem !important;
  }
  .xl\:top--s1\:after:after {
    top: -0.25rem !important;
  }
  .xl\:top-s1\:after:after {
    top: 0.25rem !important;
  }
  .xl\:top-s2\:after:after {
    top: 0.5rem !important;
  }
  .xl\:top-s3\:after:after {
    top: 0.75rem !important;
  }
  .xl\:top-s4\:after:after {
    top: 1rem !important;
  }
  .xl\:top-s5\:after:after {
    top: 1.25rem !important;
  }
  .xl\:top-s6\:after:after {
    top: 1.5rem !important;
  }
  .xl\:top-s8\:after:after {
    top: 2rem !important;
  }
  .xl\:top-s10\:after:after {
    top: 2.5rem !important;
  }
  .xl\:top-s12\:after:after {
    top: 3rem !important;
  }
  .xl\:top-s14\:after:after {
    top: 3.5rem !important;
  }
  .xl\:top-s16\:after:after {
    top: 4rem !important;
  }
  .xl\:top-s18\:after:after {
    top: 4.5rem !important;
  }
  .xl\:top-s20\:after:after {
    top: 5rem !important;
  }
  .xl\:top-s24\:after:after {
    top: 6rem !important;
  }
  .xl\:top-s28\:after:after {
    top: 7rem !important;
  }
  .xl\:top-s32\:after:after {
    top: 8rem !important;
  }
  .xl\:top-s60\:after:after {
    top: 15rem !important;
  }
  .xl\:top-s70\:after:after {
    top: 17.5rem !important;
  }
  .xl\:top-s72\:after:after {
    top: 18rem !important;
  }
  .xl\:inset--s10 {
    inset: -2.5rem !important;
  }
  .xl\:inset--s12 {
    inset: -3rem !important;
  }
  .xl\:inset--s16 {
    inset: -4rem !important;
  }
  .xl\:inset--s18 {
    inset: -4.5rem !important;
  }
  .xl\:inset--s20 {
    inset: -5rem !important;
  }
  .xl\:inset--s24 {
    inset: -6rem !important;
  }
  .xl\:inset--2\:after:after {
    inset: -20rem !important;
  }
  .xl\:inset--1\:after:after {
    inset: -16rem !important;
  }
  .xl\:inset-0\:after:after {
    inset: 0 !important;
  }
  .xl\:inset-1\:after:after {
    inset: 16rem !important;
  }
  .xl\:inset-2\:after:after {
    inset: 20rem !important;
  }
  .xl\:inset-1\/6\:after:after {
    inset: 16.666666% !important;
  }
  .xl\:inset-1\/4\:after:after {
    inset: 25% !important;
  }
  .xl\:inset-2\/7\:after:after {
    inset: 28.57142857% !important;
  }
  .xl\:inset-1\/3\:after:after {
    inset: 33.333333% !important;
  }
  .xl\:inset-1\/5\:after:after {
    inset: 20% !important;
  }
  .xl\:inset-2\/5\:after:after {
    inset: 40% !important;
  }
  .xl\:inset-3\/5\:after:after {
    inset: 60% !important;
  }
  .xl\:inset-4\/5\:after:after {
    inset: 80% !important;
  }
  .xl\:inset-1\/2\:after:after {
    inset: 50% !important;
  }
  .xl\:inset-1\/12\:after:after {
    inset: 8.333333% !important;
  }
  .xl\:inset-5\/12\:after:after {
    inset: 41.6666666% !important;
  }
  .xl\:inset-7\/12\:after:after {
    inset: 58.333333% !important;
  }
  .xl\:inset-11\/12\:after:after {
    inset: 91.6666666% !important;
  }
  .xl\:inset-2\/3\:after:after {
    inset: 66.666667% !important;
  }
  .xl\:inset-3\/4\:after:after {
    inset: 75% !important;
  }
  .xl\:inset-5\/6\:after:after {
    inset: 83.3333333% !important;
  }
  .xl\:inset-7\/6\:after:after {
    inset: 116.6666666% !important;
  }
  .xl\:inset-4\/3\:after:after {
    inset: 133.3333333% !important;
  }
  .xl\:inset-3\/2\:after:after {
    inset: 150% !important;
  }
  .xl\:inset-full\:after:after {
    inset: 100% !important;
  }
  .xl\:inset--s20\:after:after {
    inset: -5rem !important;
  }
  .xl\:inset--s8\:after:after {
    inset: -2rem !important;
  }
  .xl\:inset--s6\:after:after {
    inset: -1.5rem !important;
  }
  .xl\:inset--s5\:after:after {
    inset: -1.25rem !important;
  }
  .xl\:inset--s4\:after:after {
    inset: -1rem !important;
  }
  .xl\:inset--s3\:after:after {
    inset: -0.75rem !important;
  }
  .xl\:inset--s2\:after:after {
    inset: -0.5rem !important;
  }
  .xl\:inset--s1\:after:after {
    inset: -0.25rem !important;
  }
  .xl\:inset-s1\:after:after {
    inset: 0.25rem !important;
  }
  .xl\:inset-s2\:after:after {
    inset: 0.5rem !important;
  }
  .xl\:inset-s3\:after:after {
    inset: 0.75rem !important;
  }
  .xl\:inset-s4\:after:after {
    inset: 1rem !important;
  }
  .xl\:inset-s5\:after:after {
    inset: 1.25rem !important;
  }
  .xl\:inset-s6\:after:after {
    inset: 1.5rem !important;
  }
  .xl\:inset-s8\:after:after {
    inset: 2rem !important;
  }
  .xl\:inset-s10\:after:after {
    inset: 2.5rem !important;
  }
  .xl\:inset-s12\:after:after {
    inset: 3rem !important;
  }
  .xl\:inset-s14\:after:after {
    inset: 3.5rem !important;
  }
  .xl\:inset-s16\:after:after {
    inset: 4rem !important;
  }
  .xl\:inset-s18\:after:after {
    inset: 4.5rem !important;
  }
  .xl\:inset-s20\:after:after {
    inset: 5rem !important;
  }
  .xl\:inset-s24\:after:after {
    inset: 6rem !important;
  }
  .xl\:inset-s28\:after:after {
    inset: 7rem !important;
  }
  .xl\:inset-s32\:after:after {
    inset: 8rem !important;
  }
  .xl\:inset-s60\:after:after {
    inset: 15rem !important;
  }
  .xl\:inset-s70\:after:after {
    inset: 17.5rem !important;
  }
  .xl\:inset-s72\:after:after {
    inset: 18rem !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:top--s10 {
    top: -2.5rem !important;
  }
  .xxl\:top--s12 {
    top: -3rem !important;
  }
  .xxl\:top--s16 {
    top: -4rem !important;
  }
  .xxl\:top--s18 {
    top: -4.5rem !important;
  }
  .xxl\:top--s20 {
    top: -5rem !important;
  }
  .xxl\:top--s24 {
    top: -6rem !important;
  }
  .xxl\:top--2\:after:after {
    top: -20rem !important;
  }
  .xxl\:top--1\:after:after {
    top: -16rem !important;
  }
  .xxl\:top-0\:after:after {
    top: 0 !important;
  }
  .xxl\:top-1\:after:after {
    top: 16rem !important;
  }
  .xxl\:top-2\:after:after {
    top: 20rem !important;
  }
  .xxl\:top-1\/6\:after:after {
    top: 16.666666% !important;
  }
  .xxl\:top-1\/4\:after:after {
    top: 25% !important;
  }
  .xxl\:top-2\/7\:after:after {
    top: 28.57142857% !important;
  }
  .xxl\:top-1\/3\:after:after {
    top: 33.333333% !important;
  }
  .xxl\:top-1\/5\:after:after {
    top: 20% !important;
  }
  .xxl\:top-2\/5\:after:after {
    top: 40% !important;
  }
  .xxl\:top-3\/5\:after:after {
    top: 60% !important;
  }
  .xxl\:top-4\/5\:after:after {
    top: 80% !important;
  }
  .xxl\:top-1\/2\:after:after {
    top: 50% !important;
  }
  .xxl\:top-1\/12\:after:after {
    top: 8.333333% !important;
  }
  .xxl\:top-5\/12\:after:after {
    top: 41.6666666% !important;
  }
  .xxl\:top-7\/12\:after:after {
    top: 58.333333% !important;
  }
  .xxl\:top-11\/12\:after:after {
    top: 91.6666666% !important;
  }
  .xxl\:top-2\/3\:after:after {
    top: 66.666667% !important;
  }
  .xxl\:top-3\/4\:after:after {
    top: 75% !important;
  }
  .xxl\:top-5\/6\:after:after {
    top: 83.3333333% !important;
  }
  .xxl\:top-7\/6\:after:after {
    top: 116.6666666% !important;
  }
  .xxl\:top-4\/3\:after:after {
    top: 133.3333333% !important;
  }
  .xxl\:top-3\/2\:after:after {
    top: 150% !important;
  }
  .xxl\:top-full\:after:after {
    top: 100% !important;
  }
  .xxl\:top--s20\:after:after {
    top: -5rem !important;
  }
  .xxl\:top--s8\:after:after {
    top: -2rem !important;
  }
  .xxl\:top--s6\:after:after {
    top: -1.5rem !important;
  }
  .xxl\:top--s5\:after:after {
    top: -1.25rem !important;
  }
  .xxl\:top--s4\:after:after {
    top: -1rem !important;
  }
  .xxl\:top--s3\:after:after {
    top: -0.75rem !important;
  }
  .xxl\:top--s2\:after:after {
    top: -0.5rem !important;
  }
  .xxl\:top--s1\:after:after {
    top: -0.25rem !important;
  }
  .xxl\:top-s1\:after:after {
    top: 0.25rem !important;
  }
  .xxl\:top-s2\:after:after {
    top: 0.5rem !important;
  }
  .xxl\:top-s3\:after:after {
    top: 0.75rem !important;
  }
  .xxl\:top-s4\:after:after {
    top: 1rem !important;
  }
  .xxl\:top-s5\:after:after {
    top: 1.25rem !important;
  }
  .xxl\:top-s6\:after:after {
    top: 1.5rem !important;
  }
  .xxl\:top-s8\:after:after {
    top: 2rem !important;
  }
  .xxl\:top-s10\:after:after {
    top: 2.5rem !important;
  }
  .xxl\:top-s12\:after:after {
    top: 3rem !important;
  }
  .xxl\:top-s14\:after:after {
    top: 3.5rem !important;
  }
  .xxl\:top-s16\:after:after {
    top: 4rem !important;
  }
  .xxl\:top-s18\:after:after {
    top: 4.5rem !important;
  }
  .xxl\:top-s20\:after:after {
    top: 5rem !important;
  }
  .xxl\:top-s24\:after:after {
    top: 6rem !important;
  }
  .xxl\:top-s28\:after:after {
    top: 7rem !important;
  }
  .xxl\:top-s32\:after:after {
    top: 8rem !important;
  }
  .xxl\:top-s60\:after:after {
    top: 15rem !important;
  }
  .xxl\:top-s70\:after:after {
    top: 17.5rem !important;
  }
  .xxl\:top-s72\:after:after {
    top: 18rem !important;
  }
  .xxl\:inset--s10 {
    inset: -2.5rem !important;
  }
  .xxl\:inset--s12 {
    inset: -3rem !important;
  }
  .xxl\:inset--s16 {
    inset: -4rem !important;
  }
  .xxl\:inset--s18 {
    inset: -4.5rem !important;
  }
  .xxl\:inset--s20 {
    inset: -5rem !important;
  }
  .xxl\:inset--s24 {
    inset: -6rem !important;
  }
  .xxl\:inset--2\:after:after {
    inset: -20rem !important;
  }
  .xxl\:inset--1\:after:after {
    inset: -16rem !important;
  }
  .xxl\:inset-0\:after:after {
    inset: 0 !important;
  }
  .xxl\:inset-1\:after:after {
    inset: 16rem !important;
  }
  .xxl\:inset-2\:after:after {
    inset: 20rem !important;
  }
  .xxl\:inset-1\/6\:after:after {
    inset: 16.666666% !important;
  }
  .xxl\:inset-1\/4\:after:after {
    inset: 25% !important;
  }
  .xxl\:inset-2\/7\:after:after {
    inset: 28.57142857% !important;
  }
  .xxl\:inset-1\/3\:after:after {
    inset: 33.333333% !important;
  }
  .xxl\:inset-1\/5\:after:after {
    inset: 20% !important;
  }
  .xxl\:inset-2\/5\:after:after {
    inset: 40% !important;
  }
  .xxl\:inset-3\/5\:after:after {
    inset: 60% !important;
  }
  .xxl\:inset-4\/5\:after:after {
    inset: 80% !important;
  }
  .xxl\:inset-1\/2\:after:after {
    inset: 50% !important;
  }
  .xxl\:inset-1\/12\:after:after {
    inset: 8.333333% !important;
  }
  .xxl\:inset-5\/12\:after:after {
    inset: 41.6666666% !important;
  }
  .xxl\:inset-7\/12\:after:after {
    inset: 58.333333% !important;
  }
  .xxl\:inset-11\/12\:after:after {
    inset: 91.6666666% !important;
  }
  .xxl\:inset-2\/3\:after:after {
    inset: 66.666667% !important;
  }
  .xxl\:inset-3\/4\:after:after {
    inset: 75% !important;
  }
  .xxl\:inset-5\/6\:after:after {
    inset: 83.3333333% !important;
  }
  .xxl\:inset-7\/6\:after:after {
    inset: 116.6666666% !important;
  }
  .xxl\:inset-4\/3\:after:after {
    inset: 133.3333333% !important;
  }
  .xxl\:inset-3\/2\:after:after {
    inset: 150% !important;
  }
  .xxl\:inset-full\:after:after {
    inset: 100% !important;
  }
  .xxl\:inset--s20\:after:after {
    inset: -5rem !important;
  }
  .xxl\:inset--s8\:after:after {
    inset: -2rem !important;
  }
  .xxl\:inset--s6\:after:after {
    inset: -1.5rem !important;
  }
  .xxl\:inset--s5\:after:after {
    inset: -1.25rem !important;
  }
  .xxl\:inset--s4\:after:after {
    inset: -1rem !important;
  }
  .xxl\:inset--s3\:after:after {
    inset: -0.75rem !important;
  }
  .xxl\:inset--s2\:after:after {
    inset: -0.5rem !important;
  }
  .xxl\:inset--s1\:after:after {
    inset: -0.25rem !important;
  }
  .xxl\:inset-s1\:after:after {
    inset: 0.25rem !important;
  }
  .xxl\:inset-s2\:after:after {
    inset: 0.5rem !important;
  }
  .xxl\:inset-s3\:after:after {
    inset: 0.75rem !important;
  }
  .xxl\:inset-s4\:after:after {
    inset: 1rem !important;
  }
  .xxl\:inset-s5\:after:after {
    inset: 1.25rem !important;
  }
  .xxl\:inset-s6\:after:after {
    inset: 1.5rem !important;
  }
  .xxl\:inset-s8\:after:after {
    inset: 2rem !important;
  }
  .xxl\:inset-s10\:after:after {
    inset: 2.5rem !important;
  }
  .xxl\:inset-s12\:after:after {
    inset: 3rem !important;
  }
  .xxl\:inset-s14\:after:after {
    inset: 3.5rem !important;
  }
  .xxl\:inset-s16\:after:after {
    inset: 4rem !important;
  }
  .xxl\:inset-s18\:after:after {
    inset: 4.5rem !important;
  }
  .xxl\:inset-s20\:after:after {
    inset: 5rem !important;
  }
  .xxl\:inset-s24\:after:after {
    inset: 6rem !important;
  }
  .xxl\:inset-s28\:after:after {
    inset: 7rem !important;
  }
  .xxl\:inset-s32\:after:after {
    inset: 8rem !important;
  }
  .xxl\:inset-s60\:after:after {
    inset: 15rem !important;
  }
  .xxl\:inset-s70\:after:after {
    inset: 17.5rem !important;
  }
  .xxl\:inset-s72\:after:after {
    inset: 18rem !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:top--s10 {
    top: -2.5rem !important;
  }
  .max\:top--s12 {
    top: -3rem !important;
  }
  .max\:top--s16 {
    top: -4rem !important;
  }
  .max\:top--s18 {
    top: -4.5rem !important;
  }
  .max\:top--s20 {
    top: -5rem !important;
  }
  .max\:top--s24 {
    top: -6rem !important;
  }
  .max\:top--2\:after:after {
    top: -20rem !important;
  }
  .max\:top--1\:after:after {
    top: -16rem !important;
  }
  .max\:top-0\:after:after {
    top: 0 !important;
  }
  .max\:top-1\:after:after {
    top: 16rem !important;
  }
  .max\:top-2\:after:after {
    top: 20rem !important;
  }
  .max\:top-1\/6\:after:after {
    top: 16.666666% !important;
  }
  .max\:top-1\/4\:after:after {
    top: 25% !important;
  }
  .max\:top-2\/7\:after:after {
    top: 28.57142857% !important;
  }
  .max\:top-1\/3\:after:after {
    top: 33.333333% !important;
  }
  .max\:top-1\/5\:after:after {
    top: 20% !important;
  }
  .max\:top-2\/5\:after:after {
    top: 40% !important;
  }
  .max\:top-3\/5\:after:after {
    top: 60% !important;
  }
  .max\:top-4\/5\:after:after {
    top: 80% !important;
  }
  .max\:top-1\/2\:after:after {
    top: 50% !important;
  }
  .max\:top-1\/12\:after:after {
    top: 8.333333% !important;
  }
  .max\:top-5\/12\:after:after {
    top: 41.6666666% !important;
  }
  .max\:top-7\/12\:after:after {
    top: 58.333333% !important;
  }
  .max\:top-11\/12\:after:after {
    top: 91.6666666% !important;
  }
  .max\:top-2\/3\:after:after {
    top: 66.666667% !important;
  }
  .max\:top-3\/4\:after:after {
    top: 75% !important;
  }
  .max\:top-5\/6\:after:after {
    top: 83.3333333% !important;
  }
  .max\:top-7\/6\:after:after {
    top: 116.6666666% !important;
  }
  .max\:top-4\/3\:after:after {
    top: 133.3333333% !important;
  }
  .max\:top-3\/2\:after:after {
    top: 150% !important;
  }
  .max\:top-full\:after:after {
    top: 100% !important;
  }
  .max\:top--s20\:after:after {
    top: -5rem !important;
  }
  .max\:top--s8\:after:after {
    top: -2rem !important;
  }
  .max\:top--s6\:after:after {
    top: -1.5rem !important;
  }
  .max\:top--s5\:after:after {
    top: -1.25rem !important;
  }
  .max\:top--s4\:after:after {
    top: -1rem !important;
  }
  .max\:top--s3\:after:after {
    top: -0.75rem !important;
  }
  .max\:top--s2\:after:after {
    top: -0.5rem !important;
  }
  .max\:top--s1\:after:after {
    top: -0.25rem !important;
  }
  .max\:top-s1\:after:after {
    top: 0.25rem !important;
  }
  .max\:top-s2\:after:after {
    top: 0.5rem !important;
  }
  .max\:top-s3\:after:after {
    top: 0.75rem !important;
  }
  .max\:top-s4\:after:after {
    top: 1rem !important;
  }
  .max\:top-s5\:after:after {
    top: 1.25rem !important;
  }
  .max\:top-s6\:after:after {
    top: 1.5rem !important;
  }
  .max\:top-s8\:after:after {
    top: 2rem !important;
  }
  .max\:top-s10\:after:after {
    top: 2.5rem !important;
  }
  .max\:top-s12\:after:after {
    top: 3rem !important;
  }
  .max\:top-s14\:after:after {
    top: 3.5rem !important;
  }
  .max\:top-s16\:after:after {
    top: 4rem !important;
  }
  .max\:top-s18\:after:after {
    top: 4.5rem !important;
  }
  .max\:top-s20\:after:after {
    top: 5rem !important;
  }
  .max\:top-s24\:after:after {
    top: 6rem !important;
  }
  .max\:top-s28\:after:after {
    top: 7rem !important;
  }
  .max\:top-s32\:after:after {
    top: 8rem !important;
  }
  .max\:top-s60\:after:after {
    top: 15rem !important;
  }
  .max\:top-s70\:after:after {
    top: 17.5rem !important;
  }
  .max\:top-s72\:after:after {
    top: 18rem !important;
  }
  .max\:inset--s10 {
    inset: -2.5rem !important;
  }
  .max\:inset--s12 {
    inset: -3rem !important;
  }
  .max\:inset--s16 {
    inset: -4rem !important;
  }
  .max\:inset--s18 {
    inset: -4.5rem !important;
  }
  .max\:inset--s20 {
    inset: -5rem !important;
  }
  .max\:inset--s24 {
    inset: -6rem !important;
  }
  .max\:inset--2\:after:after {
    inset: -20rem !important;
  }
  .max\:inset--1\:after:after {
    inset: -16rem !important;
  }
  .max\:inset-0\:after:after {
    inset: 0 !important;
  }
  .max\:inset-1\:after:after {
    inset: 16rem !important;
  }
  .max\:inset-2\:after:after {
    inset: 20rem !important;
  }
  .max\:inset-1\/6\:after:after {
    inset: 16.666666% !important;
  }
  .max\:inset-1\/4\:after:after {
    inset: 25% !important;
  }
  .max\:inset-2\/7\:after:after {
    inset: 28.57142857% !important;
  }
  .max\:inset-1\/3\:after:after {
    inset: 33.333333% !important;
  }
  .max\:inset-1\/5\:after:after {
    inset: 20% !important;
  }
  .max\:inset-2\/5\:after:after {
    inset: 40% !important;
  }
  .max\:inset-3\/5\:after:after {
    inset: 60% !important;
  }
  .max\:inset-4\/5\:after:after {
    inset: 80% !important;
  }
  .max\:inset-1\/2\:after:after {
    inset: 50% !important;
  }
  .max\:inset-1\/12\:after:after {
    inset: 8.333333% !important;
  }
  .max\:inset-5\/12\:after:after {
    inset: 41.6666666% !important;
  }
  .max\:inset-7\/12\:after:after {
    inset: 58.333333% !important;
  }
  .max\:inset-11\/12\:after:after {
    inset: 91.6666666% !important;
  }
  .max\:inset-2\/3\:after:after {
    inset: 66.666667% !important;
  }
  .max\:inset-3\/4\:after:after {
    inset: 75% !important;
  }
  .max\:inset-5\/6\:after:after {
    inset: 83.3333333% !important;
  }
  .max\:inset-7\/6\:after:after {
    inset: 116.6666666% !important;
  }
  .max\:inset-4\/3\:after:after {
    inset: 133.3333333% !important;
  }
  .max\:inset-3\/2\:after:after {
    inset: 150% !important;
  }
  .max\:inset-full\:after:after {
    inset: 100% !important;
  }
  .max\:inset--s20\:after:after {
    inset: -5rem !important;
  }
  .max\:inset--s8\:after:after {
    inset: -2rem !important;
  }
  .max\:inset--s6\:after:after {
    inset: -1.5rem !important;
  }
  .max\:inset--s5\:after:after {
    inset: -1.25rem !important;
  }
  .max\:inset--s4\:after:after {
    inset: -1rem !important;
  }
  .max\:inset--s3\:after:after {
    inset: -0.75rem !important;
  }
  .max\:inset--s2\:after:after {
    inset: -0.5rem !important;
  }
  .max\:inset--s1\:after:after {
    inset: -0.25rem !important;
  }
  .max\:inset-s1\:after:after {
    inset: 0.25rem !important;
  }
  .max\:inset-s2\:after:after {
    inset: 0.5rem !important;
  }
  .max\:inset-s3\:after:after {
    inset: 0.75rem !important;
  }
  .max\:inset-s4\:after:after {
    inset: 1rem !important;
  }
  .max\:inset-s5\:after:after {
    inset: 1.25rem !important;
  }
  .max\:inset-s6\:after:after {
    inset: 1.5rem !important;
  }
  .max\:inset-s8\:after:after {
    inset: 2rem !important;
  }
  .max\:inset-s10\:after:after {
    inset: 2.5rem !important;
  }
  .max\:inset-s12\:after:after {
    inset: 3rem !important;
  }
  .max\:inset-s14\:after:after {
    inset: 3.5rem !important;
  }
  .max\:inset-s16\:after:after {
    inset: 4rem !important;
  }
  .max\:inset-s18\:after:after {
    inset: 4.5rem !important;
  }
  .max\:inset-s20\:after:after {
    inset: 5rem !important;
  }
  .max\:inset-s24\:after:after {
    inset: 6rem !important;
  }
  .max\:inset-s28\:after:after {
    inset: 7rem !important;
  }
  .max\:inset-s32\:after:after {
    inset: 8rem !important;
  }
  .max\:inset-s60\:after:after {
    inset: 15rem !important;
  }
  .max\:inset-s70\:after:after {
    inset: 17.5rem !important;
  }
  .max\:inset-s72\:after:after {
    inset: 18rem !important;
  }
}
/*
@include responsive((''), '', (
	'h':'height',
	'w':'width'
), (
	'-fit-content': fit-content,
	'-auto': auto
), $mediasizes);
*/
.h-1\/4vh {
  height: 25vh !important;
}

.h-1\/3vh {
  height: 33.333333vh !important;
}

.h-1\/2vh {
  height: 50vh !important;
}

.h-7\/12vh {
  height: 58.333333vh !important;
}

.h-2\/3vh {
  height: 66.666667vh !important;
}

.h-3\/4vh {
  height: 75vh !important;
}

.h-5\/6vh {
  height: 83.3333333vh !important;
}

.h-11\/12vh {
  height: 91.6666666vh !important;
}

.h-full-vh {
  height: 100vh !important;
}

.h-0-vh {
  height: 0 !important;
}

.min-h-1\/4vh {
  min-height: 25vh !important;
}

.min-h-1\/3vh {
  min-height: 33.333333vh !important;
}

.min-h-1\/2vh {
  min-height: 50vh !important;
}

.min-h-7\/12vh {
  min-height: 58.333333vh !important;
}

.min-h-2\/3vh {
  min-height: 66.666667vh !important;
}

.min-h-3\/4vh {
  min-height: 75vh !important;
}

.min-h-5\/6vh {
  min-height: 83.3333333vh !important;
}

.min-h-11\/12vh {
  min-height: 91.6666666vh !important;
}

.min-h-full-vh {
  min-height: 100vh !important;
}

.min-h-0-vh {
  min-height: 0 !important;
}

.max-h-1\/4vh {
  max-height: 25vh !important;
}

.max-h-1\/3vh {
  max-height: 33.333333vh !important;
}

.max-h-1\/2vh {
  max-height: 50vh !important;
}

.max-h-7\/12vh {
  max-height: 58.333333vh !important;
}

.max-h-2\/3vh {
  max-height: 66.666667vh !important;
}

.max-h-3\/4vh {
  max-height: 75vh !important;
}

.max-h-5\/6vh {
  max-height: 83.3333333vh !important;
}

.max-h-11\/12vh {
  max-height: 91.6666666vh !important;
}

.max-h-full-vh {
  max-height: 100vh !important;
}

.max-h-0-vh {
  max-height: 0 !important;
}

@media screen and (min-width: 360px) {
  .xs\:h-1\/4vh {
    height: 25vh !important;
  }
  .xs\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .xs\:h-1\/2vh {
    height: 50vh !important;
  }
  .xs\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .xs\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .xs\:h-3\/4vh {
    height: 75vh !important;
  }
  .xs\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .xs\:h-11\/12vh {
    height: 91.6666666vh !important;
  }
  .xs\:h-full-vh {
    height: 100vh !important;
  }
  .xs\:h-0-vh {
    height: 0 !important;
  }
  .xs\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .xs\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .xs\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .xs\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .xs\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .xs\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .xs\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .xs\:min-h-11\/12vh {
    min-height: 91.6666666vh !important;
  }
  .xs\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .xs\:min-h-0-vh {
    min-height: 0 !important;
  }
  .xs\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .xs\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .xs\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .xs\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .xs\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .xs\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .xs\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .xs\:max-h-11\/12vh {
    max-height: 91.6666666vh !important;
  }
  .xs\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .xs\:max-h-0-vh {
    max-height: 0 !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:h-1\/4vh {
    height: 25vh !important;
  }
  .sm\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .sm\:h-1\/2vh {
    height: 50vh !important;
  }
  .sm\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .sm\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .sm\:h-3\/4vh {
    height: 75vh !important;
  }
  .sm\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .sm\:h-11\/12vh {
    height: 91.6666666vh !important;
  }
  .sm\:h-full-vh {
    height: 100vh !important;
  }
  .sm\:h-0-vh {
    height: 0 !important;
  }
  .sm\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .sm\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .sm\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .sm\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .sm\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .sm\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .sm\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .sm\:min-h-11\/12vh {
    min-height: 91.6666666vh !important;
  }
  .sm\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .sm\:min-h-0-vh {
    min-height: 0 !important;
  }
  .sm\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .sm\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .sm\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .sm\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .sm\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .sm\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .sm\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .sm\:max-h-11\/12vh {
    max-height: 91.6666666vh !important;
  }
  .sm\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .sm\:max-h-0-vh {
    max-height: 0 !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:h-1\/4vh {
    height: 25vh !important;
  }
  .md\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .md\:h-1\/2vh {
    height: 50vh !important;
  }
  .md\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .md\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .md\:h-3\/4vh {
    height: 75vh !important;
  }
  .md\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .md\:h-11\/12vh {
    height: 91.6666666vh !important;
  }
  .md\:h-full-vh {
    height: 100vh !important;
  }
  .md\:h-0-vh {
    height: 0 !important;
  }
  .md\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .md\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .md\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .md\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .md\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .md\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .md\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .md\:min-h-11\/12vh {
    min-height: 91.6666666vh !important;
  }
  .md\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .md\:min-h-0-vh {
    min-height: 0 !important;
  }
  .md\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .md\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .md\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .md\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .md\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .md\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .md\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .md\:max-h-11\/12vh {
    max-height: 91.6666666vh !important;
  }
  .md\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .md\:max-h-0-vh {
    max-height: 0 !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:h-1\/4vh {
    height: 25vh !important;
  }
  .lg\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .lg\:h-1\/2vh {
    height: 50vh !important;
  }
  .lg\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .lg\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .lg\:h-3\/4vh {
    height: 75vh !important;
  }
  .lg\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .lg\:h-11\/12vh {
    height: 91.6666666vh !important;
  }
  .lg\:h-full-vh {
    height: 100vh !important;
  }
  .lg\:h-0-vh {
    height: 0 !important;
  }
  .lg\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .lg\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .lg\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .lg\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .lg\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .lg\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .lg\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .lg\:min-h-11\/12vh {
    min-height: 91.6666666vh !important;
  }
  .lg\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .lg\:min-h-0-vh {
    min-height: 0 !important;
  }
  .lg\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .lg\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .lg\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .lg\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .lg\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .lg\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .lg\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .lg\:max-h-11\/12vh {
    max-height: 91.6666666vh !important;
  }
  .lg\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .lg\:max-h-0-vh {
    max-height: 0 !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:h-1\/4vh {
    height: 25vh !important;
  }
  .xl\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .xl\:h-1\/2vh {
    height: 50vh !important;
  }
  .xl\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .xl\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .xl\:h-3\/4vh {
    height: 75vh !important;
  }
  .xl\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .xl\:h-11\/12vh {
    height: 91.6666666vh !important;
  }
  .xl\:h-full-vh {
    height: 100vh !important;
  }
  .xl\:h-0-vh {
    height: 0 !important;
  }
  .xl\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .xl\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .xl\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .xl\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .xl\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .xl\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .xl\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .xl\:min-h-11\/12vh {
    min-height: 91.6666666vh !important;
  }
  .xl\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .xl\:min-h-0-vh {
    min-height: 0 !important;
  }
  .xl\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .xl\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .xl\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .xl\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .xl\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .xl\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .xl\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .xl\:max-h-11\/12vh {
    max-height: 91.6666666vh !important;
  }
  .xl\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .xl\:max-h-0-vh {
    max-height: 0 !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:h-1\/4vh {
    height: 25vh !important;
  }
  .xxl\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .xxl\:h-1\/2vh {
    height: 50vh !important;
  }
  .xxl\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .xxl\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .xxl\:h-3\/4vh {
    height: 75vh !important;
  }
  .xxl\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .xxl\:h-11\/12vh {
    height: 91.6666666vh !important;
  }
  .xxl\:h-full-vh {
    height: 100vh !important;
  }
  .xxl\:h-0-vh {
    height: 0 !important;
  }
  .xxl\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .xxl\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .xxl\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .xxl\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .xxl\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .xxl\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .xxl\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .xxl\:min-h-11\/12vh {
    min-height: 91.6666666vh !important;
  }
  .xxl\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .xxl\:min-h-0-vh {
    min-height: 0 !important;
  }
  .xxl\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .xxl\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .xxl\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .xxl\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .xxl\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .xxl\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .xxl\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .xxl\:max-h-11\/12vh {
    max-height: 91.6666666vh !important;
  }
  .xxl\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .xxl\:max-h-0-vh {
    max-height: 0 !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:h-1\/4vh {
    height: 25vh !important;
  }
  .max\:h-1\/3vh {
    height: 33.333333vh !important;
  }
  .max\:h-1\/2vh {
    height: 50vh !important;
  }
  .max\:h-7\/12vh {
    height: 58.333333vh !important;
  }
  .max\:h-2\/3vh {
    height: 66.666667vh !important;
  }
  .max\:h-3\/4vh {
    height: 75vh !important;
  }
  .max\:h-5\/6vh {
    height: 83.3333333vh !important;
  }
  .max\:h-11\/12vh {
    height: 91.6666666vh !important;
  }
  .max\:h-full-vh {
    height: 100vh !important;
  }
  .max\:h-0-vh {
    height: 0 !important;
  }
  .max\:min-h-1\/4vh {
    min-height: 25vh !important;
  }
  .max\:min-h-1\/3vh {
    min-height: 33.333333vh !important;
  }
  .max\:min-h-1\/2vh {
    min-height: 50vh !important;
  }
  .max\:min-h-7\/12vh {
    min-height: 58.333333vh !important;
  }
  .max\:min-h-2\/3vh {
    min-height: 66.666667vh !important;
  }
  .max\:min-h-3\/4vh {
    min-height: 75vh !important;
  }
  .max\:min-h-5\/6vh {
    min-height: 83.3333333vh !important;
  }
  .max\:min-h-11\/12vh {
    min-height: 91.6666666vh !important;
  }
  .max\:min-h-full-vh {
    min-height: 100vh !important;
  }
  .max\:min-h-0-vh {
    min-height: 0 !important;
  }
  .max\:max-h-1\/4vh {
    max-height: 25vh !important;
  }
  .max\:max-h-1\/3vh {
    max-height: 33.333333vh !important;
  }
  .max\:max-h-1\/2vh {
    max-height: 50vh !important;
  }
  .max\:max-h-7\/12vh {
    max-height: 58.333333vh !important;
  }
  .max\:max-h-2\/3vh {
    max-height: 66.666667vh !important;
  }
  .max\:max-h-3\/4vh {
    max-height: 75vh !important;
  }
  .max\:max-h-5\/6vh {
    max-height: 83.3333333vh !important;
  }
  .max\:max-h-11\/12vh {
    max-height: 91.6666666vh !important;
  }
  .max\:max-h-full-vh {
    max-height: 100vh !important;
  }
  .max\:max-h-0-vh {
    max-height: 0 !important;
  }
}
.w-1\/4vw {
  width: 25vw !important;
}

.w-1\/3vw {
  width: 33.333333vw !important;
}

.w-1\/2vw {
  width: 50vw !important;
}

.w-7\/12vw {
  width: 58.333333vw !important;
}

.w-2\/3vw {
  width: 66.666667vw !important;
}

.w-3\/4vw {
  width: 75vw !important;
}

.w-full-vw {
  width: 100vw !important;
}

.w-0-vw {
  width: 0 !important;
}

.min-w-1\/4vw {
  min-width: 25vw !important;
}

.min-w-1\/3vw {
  min-width: 33.333333vw !important;
}

.min-w-1\/2vw {
  min-width: 50vw !important;
}

.min-w-7\/12vw {
  min-width: 58.333333vw !important;
}

.min-w-2\/3vw {
  min-width: 66.666667vw !important;
}

.min-w-3\/4vw {
  min-width: 75vw !important;
}

.min-w-full-vw {
  min-width: 100vw !important;
}

.min-w-0-vw {
  min-width: 0 !important;
}

.max-w-1\/4vw {
  max-width: 25vw !important;
}

.max-w-1\/3vw {
  max-width: 33.333333vw !important;
}

.max-w-1\/2vw {
  max-width: 50vw !important;
}

.max-w-7\/12vw {
  max-width: 58.333333vw !important;
}

.max-w-2\/3vw {
  max-width: 66.666667vw !important;
}

.max-w-3\/4vw {
  max-width: 75vw !important;
}

.max-w-full-vw {
  max-width: 100vw !important;
}

.max-w-0-vw {
  max-width: 0 !important;
}

@media screen and (min-width: 360px) {
  .xs\:w-1\/4vw {
    width: 25vw !important;
  }
  .xs\:w-1\/3vw {
    width: 33.333333vw !important;
  }
  .xs\:w-1\/2vw {
    width: 50vw !important;
  }
  .xs\:w-7\/12vw {
    width: 58.333333vw !important;
  }
  .xs\:w-2\/3vw {
    width: 66.666667vw !important;
  }
  .xs\:w-3\/4vw {
    width: 75vw !important;
  }
  .xs\:w-full-vw {
    width: 100vw !important;
  }
  .xs\:w-0-vw {
    width: 0 !important;
  }
  .xs\:min-w-1\/4vw {
    min-width: 25vw !important;
  }
  .xs\:min-w-1\/3vw {
    min-width: 33.333333vw !important;
  }
  .xs\:min-w-1\/2vw {
    min-width: 50vw !important;
  }
  .xs\:min-w-7\/12vw {
    min-width: 58.333333vw !important;
  }
  .xs\:min-w-2\/3vw {
    min-width: 66.666667vw !important;
  }
  .xs\:min-w-3\/4vw {
    min-width: 75vw !important;
  }
  .xs\:min-w-full-vw {
    min-width: 100vw !important;
  }
  .xs\:min-w-0-vw {
    min-width: 0 !important;
  }
  .xs\:max-w-1\/4vw {
    max-width: 25vw !important;
  }
  .xs\:max-w-1\/3vw {
    max-width: 33.333333vw !important;
  }
  .xs\:max-w-1\/2vw {
    max-width: 50vw !important;
  }
  .xs\:max-w-7\/12vw {
    max-width: 58.333333vw !important;
  }
  .xs\:max-w-2\/3vw {
    max-width: 66.666667vw !important;
  }
  .xs\:max-w-3\/4vw {
    max-width: 75vw !important;
  }
  .xs\:max-w-full-vw {
    max-width: 100vw !important;
  }
  .xs\:max-w-0-vw {
    max-width: 0 !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:w-1\/4vw {
    width: 25vw !important;
  }
  .sm\:w-1\/3vw {
    width: 33.333333vw !important;
  }
  .sm\:w-1\/2vw {
    width: 50vw !important;
  }
  .sm\:w-7\/12vw {
    width: 58.333333vw !important;
  }
  .sm\:w-2\/3vw {
    width: 66.666667vw !important;
  }
  .sm\:w-3\/4vw {
    width: 75vw !important;
  }
  .sm\:w-full-vw {
    width: 100vw !important;
  }
  .sm\:w-0-vw {
    width: 0 !important;
  }
  .sm\:min-w-1\/4vw {
    min-width: 25vw !important;
  }
  .sm\:min-w-1\/3vw {
    min-width: 33.333333vw !important;
  }
  .sm\:min-w-1\/2vw {
    min-width: 50vw !important;
  }
  .sm\:min-w-7\/12vw {
    min-width: 58.333333vw !important;
  }
  .sm\:min-w-2\/3vw {
    min-width: 66.666667vw !important;
  }
  .sm\:min-w-3\/4vw {
    min-width: 75vw !important;
  }
  .sm\:min-w-full-vw {
    min-width: 100vw !important;
  }
  .sm\:min-w-0-vw {
    min-width: 0 !important;
  }
  .sm\:max-w-1\/4vw {
    max-width: 25vw !important;
  }
  .sm\:max-w-1\/3vw {
    max-width: 33.333333vw !important;
  }
  .sm\:max-w-1\/2vw {
    max-width: 50vw !important;
  }
  .sm\:max-w-7\/12vw {
    max-width: 58.333333vw !important;
  }
  .sm\:max-w-2\/3vw {
    max-width: 66.666667vw !important;
  }
  .sm\:max-w-3\/4vw {
    max-width: 75vw !important;
  }
  .sm\:max-w-full-vw {
    max-width: 100vw !important;
  }
  .sm\:max-w-0-vw {
    max-width: 0 !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:w-1\/4vw {
    width: 25vw !important;
  }
  .md\:w-1\/3vw {
    width: 33.333333vw !important;
  }
  .md\:w-1\/2vw {
    width: 50vw !important;
  }
  .md\:w-7\/12vw {
    width: 58.333333vw !important;
  }
  .md\:w-2\/3vw {
    width: 66.666667vw !important;
  }
  .md\:w-3\/4vw {
    width: 75vw !important;
  }
  .md\:w-full-vw {
    width: 100vw !important;
  }
  .md\:w-0-vw {
    width: 0 !important;
  }
  .md\:min-w-1\/4vw {
    min-width: 25vw !important;
  }
  .md\:min-w-1\/3vw {
    min-width: 33.333333vw !important;
  }
  .md\:min-w-1\/2vw {
    min-width: 50vw !important;
  }
  .md\:min-w-7\/12vw {
    min-width: 58.333333vw !important;
  }
  .md\:min-w-2\/3vw {
    min-width: 66.666667vw !important;
  }
  .md\:min-w-3\/4vw {
    min-width: 75vw !important;
  }
  .md\:min-w-full-vw {
    min-width: 100vw !important;
  }
  .md\:min-w-0-vw {
    min-width: 0 !important;
  }
  .md\:max-w-1\/4vw {
    max-width: 25vw !important;
  }
  .md\:max-w-1\/3vw {
    max-width: 33.333333vw !important;
  }
  .md\:max-w-1\/2vw {
    max-width: 50vw !important;
  }
  .md\:max-w-7\/12vw {
    max-width: 58.333333vw !important;
  }
  .md\:max-w-2\/3vw {
    max-width: 66.666667vw !important;
  }
  .md\:max-w-3\/4vw {
    max-width: 75vw !important;
  }
  .md\:max-w-full-vw {
    max-width: 100vw !important;
  }
  .md\:max-w-0-vw {
    max-width: 0 !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:w-1\/4vw {
    width: 25vw !important;
  }
  .lg\:w-1\/3vw {
    width: 33.333333vw !important;
  }
  .lg\:w-1\/2vw {
    width: 50vw !important;
  }
  .lg\:w-7\/12vw {
    width: 58.333333vw !important;
  }
  .lg\:w-2\/3vw {
    width: 66.666667vw !important;
  }
  .lg\:w-3\/4vw {
    width: 75vw !important;
  }
  .lg\:w-full-vw {
    width: 100vw !important;
  }
  .lg\:w-0-vw {
    width: 0 !important;
  }
  .lg\:min-w-1\/4vw {
    min-width: 25vw !important;
  }
  .lg\:min-w-1\/3vw {
    min-width: 33.333333vw !important;
  }
  .lg\:min-w-1\/2vw {
    min-width: 50vw !important;
  }
  .lg\:min-w-7\/12vw {
    min-width: 58.333333vw !important;
  }
  .lg\:min-w-2\/3vw {
    min-width: 66.666667vw !important;
  }
  .lg\:min-w-3\/4vw {
    min-width: 75vw !important;
  }
  .lg\:min-w-full-vw {
    min-width: 100vw !important;
  }
  .lg\:min-w-0-vw {
    min-width: 0 !important;
  }
  .lg\:max-w-1\/4vw {
    max-width: 25vw !important;
  }
  .lg\:max-w-1\/3vw {
    max-width: 33.333333vw !important;
  }
  .lg\:max-w-1\/2vw {
    max-width: 50vw !important;
  }
  .lg\:max-w-7\/12vw {
    max-width: 58.333333vw !important;
  }
  .lg\:max-w-2\/3vw {
    max-width: 66.666667vw !important;
  }
  .lg\:max-w-3\/4vw {
    max-width: 75vw !important;
  }
  .lg\:max-w-full-vw {
    max-width: 100vw !important;
  }
  .lg\:max-w-0-vw {
    max-width: 0 !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:w-1\/4vw {
    width: 25vw !important;
  }
  .xl\:w-1\/3vw {
    width: 33.333333vw !important;
  }
  .xl\:w-1\/2vw {
    width: 50vw !important;
  }
  .xl\:w-7\/12vw {
    width: 58.333333vw !important;
  }
  .xl\:w-2\/3vw {
    width: 66.666667vw !important;
  }
  .xl\:w-3\/4vw {
    width: 75vw !important;
  }
  .xl\:w-full-vw {
    width: 100vw !important;
  }
  .xl\:w-0-vw {
    width: 0 !important;
  }
  .xl\:min-w-1\/4vw {
    min-width: 25vw !important;
  }
  .xl\:min-w-1\/3vw {
    min-width: 33.333333vw !important;
  }
  .xl\:min-w-1\/2vw {
    min-width: 50vw !important;
  }
  .xl\:min-w-7\/12vw {
    min-width: 58.333333vw !important;
  }
  .xl\:min-w-2\/3vw {
    min-width: 66.666667vw !important;
  }
  .xl\:min-w-3\/4vw {
    min-width: 75vw !important;
  }
  .xl\:min-w-full-vw {
    min-width: 100vw !important;
  }
  .xl\:min-w-0-vw {
    min-width: 0 !important;
  }
  .xl\:max-w-1\/4vw {
    max-width: 25vw !important;
  }
  .xl\:max-w-1\/3vw {
    max-width: 33.333333vw !important;
  }
  .xl\:max-w-1\/2vw {
    max-width: 50vw !important;
  }
  .xl\:max-w-7\/12vw {
    max-width: 58.333333vw !important;
  }
  .xl\:max-w-2\/3vw {
    max-width: 66.666667vw !important;
  }
  .xl\:max-w-3\/4vw {
    max-width: 75vw !important;
  }
  .xl\:max-w-full-vw {
    max-width: 100vw !important;
  }
  .xl\:max-w-0-vw {
    max-width: 0 !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:w-1\/4vw {
    width: 25vw !important;
  }
  .xxl\:w-1\/3vw {
    width: 33.333333vw !important;
  }
  .xxl\:w-1\/2vw {
    width: 50vw !important;
  }
  .xxl\:w-7\/12vw {
    width: 58.333333vw !important;
  }
  .xxl\:w-2\/3vw {
    width: 66.666667vw !important;
  }
  .xxl\:w-3\/4vw {
    width: 75vw !important;
  }
  .xxl\:w-full-vw {
    width: 100vw !important;
  }
  .xxl\:w-0-vw {
    width: 0 !important;
  }
  .xxl\:min-w-1\/4vw {
    min-width: 25vw !important;
  }
  .xxl\:min-w-1\/3vw {
    min-width: 33.333333vw !important;
  }
  .xxl\:min-w-1\/2vw {
    min-width: 50vw !important;
  }
  .xxl\:min-w-7\/12vw {
    min-width: 58.333333vw !important;
  }
  .xxl\:min-w-2\/3vw {
    min-width: 66.666667vw !important;
  }
  .xxl\:min-w-3\/4vw {
    min-width: 75vw !important;
  }
  .xxl\:min-w-full-vw {
    min-width: 100vw !important;
  }
  .xxl\:min-w-0-vw {
    min-width: 0 !important;
  }
  .xxl\:max-w-1\/4vw {
    max-width: 25vw !important;
  }
  .xxl\:max-w-1\/3vw {
    max-width: 33.333333vw !important;
  }
  .xxl\:max-w-1\/2vw {
    max-width: 50vw !important;
  }
  .xxl\:max-w-7\/12vw {
    max-width: 58.333333vw !important;
  }
  .xxl\:max-w-2\/3vw {
    max-width: 66.666667vw !important;
  }
  .xxl\:max-w-3\/4vw {
    max-width: 75vw !important;
  }
  .xxl\:max-w-full-vw {
    max-width: 100vw !important;
  }
  .xxl\:max-w-0-vw {
    max-width: 0 !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:w-1\/4vw {
    width: 25vw !important;
  }
  .max\:w-1\/3vw {
    width: 33.333333vw !important;
  }
  .max\:w-1\/2vw {
    width: 50vw !important;
  }
  .max\:w-7\/12vw {
    width: 58.333333vw !important;
  }
  .max\:w-2\/3vw {
    width: 66.666667vw !important;
  }
  .max\:w-3\/4vw {
    width: 75vw !important;
  }
  .max\:w-full-vw {
    width: 100vw !important;
  }
  .max\:w-0-vw {
    width: 0 !important;
  }
  .max\:min-w-1\/4vw {
    min-width: 25vw !important;
  }
  .max\:min-w-1\/3vw {
    min-width: 33.333333vw !important;
  }
  .max\:min-w-1\/2vw {
    min-width: 50vw !important;
  }
  .max\:min-w-7\/12vw {
    min-width: 58.333333vw !important;
  }
  .max\:min-w-2\/3vw {
    min-width: 66.666667vw !important;
  }
  .max\:min-w-3\/4vw {
    min-width: 75vw !important;
  }
  .max\:min-w-full-vw {
    min-width: 100vw !important;
  }
  .max\:min-w-0-vw {
    min-width: 0 !important;
  }
  .max\:max-w-1\/4vw {
    max-width: 25vw !important;
  }
  .max\:max-w-1\/3vw {
    max-width: 33.333333vw !important;
  }
  .max\:max-w-1\/2vw {
    max-width: 50vw !important;
  }
  .max\:max-w-7\/12vw {
    max-width: 58.333333vw !important;
  }
  .max\:max-w-2\/3vw {
    max-width: 66.666667vw !important;
  }
  .max\:max-w-3\/4vw {
    max-width: 75vw !important;
  }
  .max\:max-w-full-vw {
    max-width: 100vw !important;
  }
  .max\:max-w-0-vw {
    max-width: 0 !important;
  }
}
/*
@include responsive((''), '', (
	'max-h':'max-height',
	'max-w':'max-width'
), (
	'-none': none
), $mediasizes);

*/
/* coloured marker or label */
.marker {
  display: inline-block;
  min-width: auto;
  max-width: 100%;
  text-align: center;
  position: relative;
  vertical-align: bottom;
  box-sizing: border-box;
}
.marker:not(.marker--smart) {
  border-radius: 2em;
  padding: 0.2em 0.75em 0.25em;
}
.marker--smart {
  /* Adds marker styling to smart ellipsis elements */
  /* The element it follows should be "float-left" */
  /* only works with one element before it. I.e. nest elements into a float left container */
  /* Defaults to following content. Use .marker--smart--right to make it float to the right. */
  /* <div><span class="float-left">Content</span><span class="marker--smart"><span class="smart-ellipsis">Champion</span><span> of the world</span></span></div> */
  background-color: transparent;
  text-align: left;
  display: block;
  line-height: 1;
  height: 2em;
  overflow: hidden;
  border: none !important;
}
.marker--smart .icon {
  margin-top: -2%; /* Hack to solve icon offset */
}
.marker--smart > span {
  z-index: 0;
  height: 2em;
  line-height: 1;
}
.marker--smart > span > span {
  border-radius: 2em;
  color: var(--txt-clear);
  background-color: var(--bg-normal);
  padding: 0.5em 0.75em;
  height: 2em;
  text-align: left;
}
.marker--smart > span > span:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 0.35em;
  margin-left: -0.75em;
}
.marker--smart > span > span:last-child:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 1.5em;
  z-index: -1;
  background-color: var(--bg-normal);
}
.marker:not(.marker--outline) {
  /*border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom-style: solid;
  border-bottom-width: 2px;*/
  border: 1px solid transparent;
}
.marker:first-child {
  margin-top: 0;
}
.marker:last-child {
  margin-bottom: 0;
}
.marker--big {
  padding-top: 1em;
  padding-bottom: 1em;
}
.marker--full {
  display: block;
  width: auto;
  max-width: none;
}
.marker--inline-big {
  padding-right: 3em;
  min-width: 15em;
}
.marker--flat {
  border-bottom-color: transparent !important;
}
.marker--outline {
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
}
.marker--outline, .marker--outline.border-green {
  color: #66a54a;
}
.marker--flat, .marker--flat.bg-green {
  border-color: #66a54a;
  color: #fff;
}
.marker--flat.bg-white {
  background-color: #fff;
  border-color: #fff;
  color: #fff;
}
.marker--flat.bg-darkest-grey {
  background-color: #222 !important;
  border-color: #222;
  color: #fff;
}
.marker--outline.border-white {
  color: #fff;
}
.marker--outline.border-ti-red {
  color: #f12b3b;
}
.marker--outline.border-darkest-grey {
  color: #222;
}

.marker--smart--right {
  text-align: right !important;
}

@media screen and (min-width: 360px) {
  .xs\:marker--smart--right {
    text-align: right !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:marker--smart--right {
    text-align: right !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:marker--smart--right {
    text-align: right !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:marker--smart--right {
    text-align: right !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:marker--smart--right {
    text-align: right !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:marker--smart--right {
    text-align: right !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:marker--smart--right {
    text-align: right !important;
  }
}
/* IE11 hack */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .marker--smart.theme-red > span > span {
    color: #fff;
    background-color: #f12b3b;
  }
  .marker--smart.theme-red > span > span:last-child:before {
    background-color: #f12b3b;
  }
  .marker--smart.theme-yellow > span > span {
    color: #fff;
    background-color: #f2b63f;
  }
  .marker--smart.theme-yellow > span > span:last-child:before {
    background-color: #f2b63f;
  }
  .marker--smart.theme-blue > span > span {
    color: #fff;
    background-color: #008fce;
  }
  .marker--smart.theme-blue > span > span:last-child:before {
    background-color: #008fce;
  }
  .marker--smart.theme-green > span > span {
    color: #fff;
    background-color: #66a54a;
  }
  .marker--smart.theme-green > span > span:last-child:before {
    background-color: #66a54a;
  }
}
.linkedin-landingpage details > summary:before,
.linkedin-landingpage details > summary:after {
  right: 0.75em;
}

.linkedin-landingpage summary svg {
  max-width: 1.65em;
  float: left;
  margin-right: 0.75em;
  margin-top: 0.4em;
}
.linkedin-landingpage summary svg .a, .linkedin-landingpage summary svg .cls-1 {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5px;
}

.linkedin-landingpage .header + #top-teaser,
.linkedin-landingpage .header + .search-result + #top-teaser {
  margin-top: -64px !important;
  padding-top: 64px !important;
}

.linkedin-landingpage form label {
  color: #444;
}

.funnel .main {
  background: transparent;
}
.funnel .main.receipt section:last-child, .funnel .main section {
  margin-bottom: 10px;
}
.funnel .main h1 {
  margin-bottom: 0;
}
.funnel .main h4:first-child, .funnel .main h6 {
  margin-top: 0;
}
.funnel .main h5 {
  float: none;
  margin: 0;
}
.funnel .main ul {
  padding: 0;
  margin: 0;
}

/*
.funnel .main.receipt section:last-child,
.funnel .main section {
	margin-bottom: 10px;
}*/
.show-receipt .teasers,
.funnel > .row > div:last-child,
.funnel .main section:last-child {
  margin-bottom: 100px;
}

/*
.funnel .main h1 {
	margin-bottom: 0;
}
.funnel .main h4:first-child,
.funnel .main h6 {
	margin-top: 0;
}
.funnel .main h5 {
	float: none;
	margin: 0;
}
.funnel .main ul {
	padding: 0;
	margin: 0;
}
*/
.funnel .events h5 ~ .date-long,
.funnel .events h5 ~ .date-short,
.funnel .events h5 ~ .time,
.funnel .label.length {
  display: block;
  margin: 0;
  padding-top: 0.5em;
  line-height: 1em;
}

.funnel input[type=radio] {
  float: left;
}

.funnel .error-message {
  margin-top: -2px;
}

.funnel .events input[type=radio] {
  float: none;
  position: absolute;
}

.funnel .event-list label {
  width: 90%;
  float: right;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}

.funnel .event-list li {
  clear: both;
}

.funnel .event-list > li {
  padding: 20px 0 10px;
  border-bottom: none;
}

.funnel .dates-list li {
  border: none;
  margin: 0;
  padding: 0;
}

.funnel .events .header {
  margin-top: 30px;
}

.funnel .events a.foldout-toggle {
  margin-top: 10px;
}

/*.funnel .events .legend {
	padding: 0.5em 0;
}*/
.funnel .events h5 ~ .date-long,
.funnel .events .price:before,
.funnel .events .price span:before,
.funnel .dates-list span:before,
.funnel .main ul li:before {
  display: none;
}

.funnel .events .legend li:before,
.funnel .dates-list span {
  display: inline-block;
}

.funnel .events .legend li:before {
  position: static;
}

.funnel .dates-list span.location {
  display: block;
  margin-top: 0.3em;
  padding-top: 0.3em;
}

.funnel .basket .currency,
.funnel .events .price .currency {
  margin-right: 0.3em;
}

.funnel .events .earlybird--spot .earlybird--label,
.funnel .events h5 {
  float: left;
}

.funnel .events h5 ~ .date-long,
.funnel .events h5 ~ .date-short {
  clear: both;
}

.funnel .events h5 ~ .date-short {
  display: block;
}

.funnel .events .price {
  display: inline-block;
  margin-left: 0.5em;
  text-align: right;
}

.funnel .events .price,
.funnel .events h5 ~ .time,
.funnel .dates-list span.time {
  float: right;
}

.funnel .events input[type=radio],
.funnel .events input[type=checkbox],
.funnel .events label {
  vertical-align: top;
  cursor: pointer;
}

.funnel .full label {
  cursor: auto;
}

.funnel .personal-data {
  margin-top: 20px;
}

.funnel .payment select,
.funnel .payment input,
.funnel .payment textarea,
.funnel .participants select,
.funnel .participants input {
  padding: 10px 10px 9px;
  margin: 0.4em 0;
  display: inline-block;
}

.funnel select {
  padding-right: 9%;
}

.funnel .payment input[type=radio],
.funnel .payment input[type=checkbox],
.funnel .participants input[type=radio],
.funnel .participants input[type=checkbox] {
  margin: 0 0.8em 0 0;
  padding: 0;
  cursor: pointer;
}

.funnel .payment label,
.funnel .participants label {
  padding: 1.1em 0;
  cursor: pointer;
}

.funnel .payment input {
  float: none;
}

.funnel .payment label {
  padding: 0.5em 0;
}

.funnel extra.zip,
.funnel extra.city {
  display: inline-block;
}

.funnel .participants extra.zip {
  width: 30%;
}

.funnel .participants extra.city {
  width: 65%;
  float: right;
}

.funnel .participants li {
  margin: 25px 0;
}

.funnel .payment li.row {
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.participants ul.personal-data-summary {
  margin: 25px -5px;
}

.personal-data-summary li > a,
.personal-data-summary li > div {
  display: inline-block;
  vertical-align: middle;
}

.personal-data-summary li > a {
  overflow: hidden;
  text-indent: -999px;
  height: 30px;
  width: 5.5%;
}

.personal-data-summary li > div {
  width: 93%;
}

form .personal-data-summary > li {
  margin-bottom: 0;
  margin-top: 1px;
  padding-bottom: 5px;
}

.funnel .not-validated {
  padding-left: 0.5em;
  margin-bottom: 1em;
}

.funnel .delete-participant,
.funnel .undo-new-participant,
.funnel .add-new-participant,
.funnel .personal-data-summary li {
  cursor: pointer;
}

form .teasers,
.funnel .events .header,
.funnel .personal-data,
form .personal-data-summary > li,
.funnel .track-choice,
.funnel .addons,
.funnel .participant-controls,
.funnel .show-when-not-editing-participant,
.funnel .show-when-editing-extra-participant,
.funnel .show-when-editing-participant,
.funnel .show-on-valid,
.funnel .show-on-invoice-type,
.funnel .not-validated,
.funnel .show-on-eaninvoice,
.funnel .receipt,
.funnel .basket,
.funnel .main {
  overflow: hidden;
  -webkit-transition: max-height 0.5s, padding 0.5s, margin 0.5s;
  transition: max-height 0.5s, padding 0.5s, margin 0.5s;
}

form.eaninvoice .show-on-eaninvoice,
.funnel .not-validated {
  max-height: 100px;
}

form.valid .not-validated {
  max-height: 0;
}

/*.funnel .add-participant a.add-new-participant {
	pointer-events: none;
	opacity: 0.3;
}
form.valid .add-participant a.add-new-participant {
	pointer-events: auto;
	opacity: 1;
}*/
/*.funnel .delete-participant,
.funnel .undo-new-participant {
	display: none;
}*/
form .teasers,
form.time-and-place-hide .events .header,
form.time-and-place-hide .event-list > li,
.funnel .personal-data,
form .personal-data-summary > li,
.funnel .track-choice,
.funnel .addons,
form .participant-controls,
form .show-when-not-editing-participant,
form .show-when-editing-extra-participant,
form .show-when-editing-participant,
form.edit-participant-hide .funnel .personal-data,
form.edit-participant-hide .funnel .track-choice,
form.edit-participant-hide .funnel .addons,
.funnel .show-on-valid,
.funnel .show-on-invoice-type,
.funnel .show-on-eaninvoice,
form.show-receipt .main,
form.show-receipt .basket,
form.show-receipt div.ti-foldout,
form .receipt {
  max-height: 0;
}

form.show-receipt .teasers,
form.show-participants-list .personal-data-summary > li,
.funnel .events .header,
form .event-list > li,
form.time-and-place-selected .event-list > li.time-and-place-selected,
form.time-and-place-selected:not(.edit-participant-hide) .personal-data,
form.time-and-place-selected .track-choice,
form.time-and-place-selected .addons,
form.time-and-place-selected .participant-controls,
form.show-participants-list.edit-participant-hide .show-when-not-editing-participant,
form.show-participants-list.edit-participant .show-when-editing-extra-participant,
form.edit-participant .show-when-editing-participant,
form.partipants-are-valid .show-on-valid,
form.partipants-are-valid.invoice-type-selected .show-on-invoice-type,
form.show-receipt .main.receipt,
form.show-receipt .event-list > li,
form.show-receipt .personal-data-summary li.row.edit {
  max-height: 4000px;
}

/* Hide classes */
form:not(.show-receipt) .receipt,
form.show-receipt .funnel .sm-pinable .basket,
form:not(.show-participants-list) .personal-data-summary > li,
form.time-and-place-hide .events .header,
form.time-and-place-hide .event-list > li:not(.time-and-place-selected),
form.edit-participant-hide .funnel .personal-data,
form.edit-participant-hide .funnel .track-choice,
form.edit-participant-hide .funnel .addons,
form.hide-participants-list .show-when-not-editing-participant,
form.edit-participant .show-when-not-editing-participant,
form.hide-participants-list .show-when-editing-extra-participant,
form.show-participants-list.edit-participant-hide .show-when-editing-extra-participant,
form.edit-participant-hide .show-when-editing-participant,
form:not(.partipants-are-valid) .show-on-valid,
form.partipants-are-valid .not-validated,
form:not(.partipants-are-valid) .show-on-invoice-type,
form.show-receipt .basket,
form:not(.invoice-type-selected) .show-on-invoice-type {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  margin: 0;
}

form .delete-participant,
form .undo-new-participant,
form .validate-and-update-participant,
form.edit-previous-participant .validate-and-add-participant {
  display: none;
}

form.edit-previous-participant .delete-participant,
form.add-new-participant .undo-new-participant,
form.edit-previous-participant .validate-and-update-participant {
  display: block;
}

.funnel .event-list > li {
  overflow: hidden;
  -webkit-transition: max-height 0.5s, padding 0.5s;
  transition: max-height 0.5s, padding 0.5s;
}

form .personal-data-summary > li,
form.show-participants-list .personal-data-summary > li:last-child,
form.time-and-place-hide .event-list > li {
  border-bottom: transparent;
  border-top: transparent;
}

form .event-list > li input {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

form.time-and-place-hide .event-list > li input {
  opacity: 0;
}

form.time-and-place-hide .event-list > li label {
  width: 100%;
}

/*
form:not(.invoice-type-selected) .btn.send-order {
	background-color: #aaa;
	border-bottom-color: #999;
}
*/
.funnel .main .participant-controls {
  margin-top: 1px;
}

.funnel .foldout {
  margin-top: 15px;
}

.funnel .foldout .foldout-toggle {
  background: none;
}

.funnel .foldout-animate-height {
  margin-top: 5px;
  margin-left: 22px;
}

.funnel .addons .description {
  margin: 0.2em 0;
}

.funnel .addons h4 {
  margin-bottom: 30px;
}

form.show-receipt .support,
.funnel .addons li {
  margin: 10px 0;
}

.funnel .addons label {
  padding: 0;
}

.funnel .payment .btn {
  margin-top: 30px;
}

/*
.funnel .btn.btn-send:not(.invoice-type-selected):not(.time-and-place-selected) {
	background-color: #bbb;
	border-bottom-color: #999;
}
*/
.funnel .receipt {
  margin-top: -11px;
}

.funnel .receipt hr {
  margin: 20px;
}

.funnel .receipt header p {
  border: none;
  padding-left: 0;
}

.funnel .receipt header a {
  margin: 10px 20px;
  display: block;
}

/*.funnel .receipt header .addthis_toolbox {
	float: none;
}
.funnel .receipt header .addthis_toolbox a {
	margin: 0;
	display: inline-block;
}*/
.funnel .receipt section hr {
  margin: 20px 0;
}

.funnel .receipt .events {
  padding-bottom: 0;
  padding-top: 0;
}

.funnel .receipt .event-list h5 {
  width: auto;
  float: none;
}

/*.funnel .receipt .event-list > li:first-child {
	border-top: none;
}*/
.funnel .receipt .personal-data-summary li.row.edit {
  margin: 25px -5px 0;
  padding-bottom: 20px;
}

.funnel .receipt em {
  font-style: normal;
  font-weight: 500;
}

.show-receipt .funnel > .row > div:last-child {
  margin-bottom: 5px;
}

.funnel .receipt h1:before {
  width: 100px;
  height: 100px;
  top: 20px;
  left: 50%;
  margin-left: -50px;
}

.funnel .receipt header h1 {
  margin-bottom: 0;
  padding-top: 140px;
  text-align: center;
  max-width: none;
}

.funnel article.main,
.article article.main {
  margin-top: 0;
}

.container aside {
  margin-top: -5px;
  min-height: 0;
}

.article .sm-pinable,
.funnel .sm-pinable {
  position: fixed;
  margin-top: 0;
  bottom: 0;
  top: auto;
  left: 10px;
  right: 10px;
}

.funnel .sm-pinable .support {
  max-height: none;
}

.article .sm-pinable .item,
.funnel .basket {
  margin-bottom: 0;
}

.funnel .basket h4 {
  margin: 0;
}

.funnel .basket h4:first-child {
  float: left;
  text-align: left;
}

/*
form.show-receipt .basket {
/*	padding-top: 0 !important;
	padding-bottom: 0 !important;

	& + div > div {
		margin-top: 1px !important;
	}
}

form .basket {

	& + div > div {
		transition: margin-top 500 ms ease-in-out;
	}
}

*/
.funnel .ti-foldout--summary {
  transition: max-height 250ms, padding 250ms;
}
.funnel .ti-foldout--open > .ti-foldout--summary {
  max-height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.funnel .receipt h1:before {
  border: 6px solid #008fce;
  border-radius: 100%;
  background-image: url("../img/icon-checkmark-blue.svg");
  background-size: 65px 65px;
  background-position: 47% 52%;
  top: 0;
}

blockquote {
  max-width: none;
}

label {
  display: inline;
  width: auto;
}

.btn {
  background-image: none !important;
}

.btn.btn--outline {
  border-width: 2px !important;
  background-color: transparent;
}

.block.hidden {
  display: block !important;
  visibility: visible !important;
}

@media screen and (min-width: 360px) {
  .xs\:block.hidden {
    display: block !important;
    visibility: visible !important;
  }
}
@media screen and (min-width: 420px) {
  .sm\:block.hidden {
    display: block !important;
    visibility: visible !important;
  }
}
@media screen and (min-width: 650px) {
  .md\:block.hidden {
    display: block !important;
    visibility: visible !important;
  }
}
@media screen and (min-width: 950px) {
  .lg\:block.hidden {
    display: block !important;
    visibility: visible !important;
  }
}
@media screen and (min-width: 1100px) {
  .xl\:block.hidden {
    display: block !important;
    visibility: visible !important;
  }
}
@media screen and (min-width: 1400px) {
  .xxl\:block.hidden {
    display: block !important;
    visibility: visible !important;
  }
}
@media screen and (min-width: 1840px) {
  .max\:block.hidden {
    display: block !important;
    visibility: visible !important;
  }
}
body {
  margin: 0;
}

.header > .container {
  padding-left: 0;
  padding-right: 0;
}

header #search-field,
header #searchfield {
  background-color: #fff !important;
  padding: 14px 3px 14px 14px !important;
  border-radius: 0 !important;
}

header li {
  margin: 0;
  padding-left: 0 !important;
}

header li:before {
  display: none;
}

header li a {
  text-decoration: none !important;
}

header > button,
header form > button {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border-radius: 0;
}

header > button:after,
header form > button:after {
  display: none !important;
}

@media screen and (min-width: 650px) {
  .header + #top-teaser:not(.top--start-above-header),
  .header + .search-result + #top-teaser:not(.top--start-above-header),
  .header + #top-billboard:not(.top--start-above-header),
  .header + .search-result + #top-billboard:not(.top--start-above-header) {
    margin-top: -64px !important;
    padding-top: 64px !important;
  }
  .header + .search-result + #top-teaser > .container,
  .header + #top-teaser > .container,
  .header + .search-result + #top-billboard > .container,
  .header + #top-billboard > .container {
    clear: both;
  }
}
.header + .search-result {
  height: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 84px;
}

.search-result #resultPaneInner {
  background-color: #fff;
}

.search-result.show-result #resultPane {
  min-height: 20rem;
  min-height: 70vh;
}

.stars {
  margin-right: 0;
}

footer {
  background-color: #fff !important;
  padding-bottom: 2rem !important;
  margin-bottom: 6rem !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
  font-size: 0.8rem !important;
}
footer h6 {
  display: inline-block;
  background: transparent url("https://www.teknologisk.dk/_/css/img/logo-ti-black.svg") no-repeat left bottom;
  background-size: 102px;
  width: 102px;
  height: 27px;
  text-indent: -999px;
  overflow: hidden;
  margin: 15px 0 0 20px !important;
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out, background-size 0.5s ease-in-out, background-position 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out, background-size 0.5s ease-in-out, background-position 0.5s ease-in-out;
}
footer .bg-grey {
  background-color: #f3f3f3 !important;
}
footer ul {
  padding: 0 !important;
  margin: 0 !important;
}
footer ul li {
  padding: 0 !important;
  margin: 0.35rem 0 !important;
}
footer ul li:before {
  display: none !important;
}
footer ul li a {
  color: #008fce !important;
}
footer ul li a:hover {
  color: #008fce !important;
}

@media screen and (min-width: 420px) {
  footer {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}
@media screen and (min-width: 420px) and (max-height: 50vw) {
  footer {
    padding-right: 30% !important;
    padding-right: calc(30% + 1rem) !important;
  }
}
@media screen and (min-width: 650px) {
  footer {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}
@media screen and (min-width: 650px) and (max-height: 50vw) {
  footer {
    padding-right: 30% !important;
    padding-right: calc(30% + 2rem) !important;
  }
}
@media screen and (min-width: 950px) {
  footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media screen and (min-width: 950px) and (max-height: 50vw) {
  footer {
    padding-right: 25% !important;
    padding-right: calc(25% + 2rem) !important;
  }
}
@media screen and (min-width: 1100px) {
  footer {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
@media screen and (min-width: 1100px) and (max-height: 50vw) {
  footer {
    padding-right: 22% !important;
    padding-right: calc(22% + 3rem) !important;
  }
}
@media screen and (min-width: 1400px) {
  footer {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}
@media screen and (min-width: 1400px) and (max-height: 50vw) {
  footer {
    padding-right: 22% !important;
    padding-right: calc(22% + 3rem) !important;
  }
}
@media screen and (min-width: 1840px) {
  footer {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}
.events .available span:before,
.events .guarantee span:before,
.events .full span:before {
  display: none;
}

/* Fix search box links decoration */
.search-result a.result:hover {
  text-decoration: none;
}

.search-result a.result:hover .summary {
  text-decoration: none;
  color: #646464;
}

/* Fix search result label placement */
.search-result .summary .meta {
  vertical-align: text-bottom;
}

/* Fix search box overlay order compatibility with course-list.html */
.header {
  z-index: 3020 !important;
}

.search-result {
  z-index: 3010 !important;
}

/* Fix body scroll when search result is visible */
body:has(.search-result.show-result) {
  overflow: hidden !important;
}

/* Fix search content having height set by JS */
.search-result #resultPane {
  height: 100% !important;
}
.search-result #resultPaneInner {
  max-height: 80vh !important;
  height: 100% !important;
}

@media screen and (min-width: 640px) {
  .search-result #queryTags {
    height: calc(100% - 10px) !important;
  }
  .search-result #queryTags > * {
    height: 100%;
  }
  .search-result #queryTags .search-terms {
    overflow: hidden;
    max-height: calc(100% - 7.25em);
    padding-bottom: 20px;
  }
  .search-result #queryTags .search-terms:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    background: linear-gradient(0deg, white, transparent);
    bottom: 0px;
  }
  .search-result #queryTags .employee {
    margin-bottom: 0;
  }
}
.funnel .basket h4:first-child {
  line-height: inherit;
}

@media only screen and (min-width: 890px) {
  .funnel .events .dates-list span.date-short:nth-child(1),
  .funnel .events .dates-list span.date-short:nth-child(2) {
    width: 67%;
  }
}
#coiOverlay button {
  border-width: 1px !important;
}
#coiOverlay button:after {
  display: none !important;
}
#coiOverlay .coi-button-group button {
  border-width: 0 !important;
}
#coiOverlay .coi-button-group #show_details, #coiOverlay .coi-button-group #hide_details {
  font-size: 14px !important;
  text-align: center !important;
}
#coiOverlay .coi-button-group .coi-banner__accept {
  width: auto !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  border-width: 0 !important;
}