@charset "UTF-8";
.sr-only {
  position: absolute !important;
  left: -999999px !important;
  top: -999999px !important;
}

.sr-focus-only {
  position: absolute !important;
  left: -999999px !important;
  top: -999999px !important;
}
.sr-focus-only:focus {
  position: absolute;
  top: 5px !important;
  left: 5px !important;
  z-index: 10000;
}

.display-on-focus {
  position: absolute;
  left: -999999px !important;
}
.display-on-focus:focus {
  position: absolute;
  top: 5px !important;
  left: 5px !important;
  z-index: 10000;
}

.outline-offset-reset {
  outline-offset: 0;
}

/* Base design tokens — auto-generated, do not edit */
:root {
  --padding-none: 0;
  --padding-hairline: 0.0625rem;
  --padding-thin: 0.125rem;
  --padding-slim: 0.25rem;
  --padding-extra-small: 0.5rem;
  --padding-small: 1rem;
  --padding-medium: 1.5rem;
  --padding-large: 2rem;
  --padding-extra-large: 2.5rem;
  --padding-huge: 5rem;
  --padding-full: 100%;
  --spacing-none: 0;
  --spacing-extra-small: 1.5rem;
  --spacing-small: 2.5rem;
  --spacing-medium: 5rem;
  --spacing-large: 7.5rem;
  --spacing-extra-large: 10rem;
  --spacing-huge: 15rem;
  --spacing-full: 100%;
  --content-max: 1440px;
  --shadow-far: 0 0 3.75rem RGBA(68, 28, 153, 0.4);
  --shadow-mid: 0 0.625rem 0.938rem RGBA(68, 28, 153, 0.25);
  --shadow-near: 0 0.1875rem 0.313rem RGBA(68, 28, 153, 0.15);
  --shadow-faint: 0 0.1875rem 0.313rem RGBA(68, 28, 153, 0.05);
  --shadow-outline: 0 1px 3px 1px RGBA(68, 28, 153, 0.3);
  --radius-extra-small: 0.125rem;
  --radius-small: 0.25rem;
  --radius-medium: 0.5rem;
  --radius-large: 0.75rem;
  --radius-extra-large: 1.25rem;
  --radius-pill: 100rem;
  --radius-full: 100%;
  --transition-slow: 0.6s ease-in-out;
  --transition-mid: 0.3s ease-in-out;
  --transition-fast: 0.2s ease-in-out;
  --breakpoint-desktop: 8640;
  --breakpoint-tablet: 1024;
  --breakpoint-mobile: 768;
  --color-white: #ffffff;
  --color-seashell: #feebde;
  --color-frost: #f2f1f4;
  --color-snow: #e9e9e9;
  --color-cotton-candy: #c0f5f2;
  --color-daffodil: #ffe792;
  --color-yellow: #ffdf20;
  --color-summer: #f9c748;
  --color-periwinkle: #9bcfff;
  --color-mauve: #a2a1af;
  --color-steel: #c0c0c0;
  --color-lavender-light: #d6a7f7;
  --color-cyan: #00ffff;
  --color-bubblegum: #ff78e1;
  --color-vibe: #4bd6b5;
  --color-tiger: #f99048;
  --color-mint: #00ff7f;
  --color-salmon: #f97a99;
  --color-lavender: #c481f3;
  --color-lilac: #8598fb;
  --color-orange: #ff8904;
  --color-sky: #14c4eb;
  --color-green: #05df72;
  --color-teal: #43b59a;
  --color-electric-blue-dark: #3ea2ff;
  --color-light-blue: #00bcff;
  --color-hot-pink: #e555ac;
  --color-scarlet: #ff4626;
  --color-pewter: #555463;
  --color-silver: #797979;
  --color-smoke: #6d6d9c;
  --color-pink: #ff0ff3;
  --color-red: #fb2c36;
  --color-autumn: #c04c0a;
  --color-dark-teal: #168982;
  --color-rose: #c82d53;
  --color-turquoise: #097d98;
  --color-purple: #8d1ff4;
  --color-electric-blue: #145deb;
  --color-blue: #1447e6;
  --color-slate: #3f3f7f;
  --color-dawn: #383f76;
  --color-violet: #7f00ff;
  --color-deep-blue: #003cff;
  --color-dark-purple: #441c99;
  --color-deep-sea: #0a26b8;
  --color-navy: #162456;
  --color-charcoal: #1c1c21;
  --color-grey: #1e1e1e;
  --color-ocean: #181846;
  --color-dark-grey: #181818;
  --color-midnight: #030328;
  --color-space: #01011e;
  --color-black: #000000;
}

/* Device breakpoints — Sass map (required for @media queries and utility generation) */
/* Breakpoints mixin */
@keyframes reveal {
  0% {
    transform: scale(0.5);
  }
  90% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.animated {
  opacity: 1;
  transform: translateZ(0);
  transform-style: preserve-3d;
}

.fly-in-top {
  animation: fly-in-top 3s 1 ease-out;
}

.fly-in-bottom {
  animation: fly-in-bottom 3s 1 ease-in-out;
  z-index: 10;
}

.pan-left {
  animation: pan-left 3s 1 ease-out;
}

.pan-right {
  animation: pan-right 3s 1 ease-out;
}

.fade-in {
  animation: fade-in 3s 1 ease-out;
}

.fade-out {
  animation: fade-out 3s 1 ease-out;
}

.shimmer {
  animation: shimmer 3s infinite;
}

.sparkle {
  animation: sparkle 4s ease-in-out infinite;
}

@media (min-width: 769px) {
  @supports (animation-timeline: view()) {
    .revealing-image {
      animation: linear reveal both;
      animation-timeline: view();
      animation-range: entry 25% cover 50%;
    }
  }
}

.bg-skeleton {
  position: relative;
  overflow: hidden;
  background-color: var(--default);
}
.bg-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, color-mix(in srgb, var(--neutral-6), transparent 100%) 0, color-mix(in srgb, var(--neutral-6), transparent 80%) 20%, color-mix(in srgb, var(--neutral-6), transparent 50%) 60%, color-mix(in srgb, var(--neutral-6), transparent 100%));
  animation: shimmer 3s infinite;
}

.border {
  border-width: 0.0625rem;
  border-style: solid;
}

.border-solid {
  border-style: solid;
}

.border-dashed {
  border-style: dashed;
}

.border-dotted {
  border-style: dotted;
}

.border-0 {
  border-width: 0rem;
}

.border-1 {
  border-width: 0.0625rem;
}

.border-2 {
  border-width: 0.125rem;
}

.border-3 {
  border-width: 0.1875rem;
}

.border-4 {
  border-width: 0.25rem;
}

.border-5 {
  border-width: 0.3125rem;
}

.border-6 {
  border-width: 0.375rem;
}

.border-7 {
  border-width: 0.4375rem;
}

.border-8 {
  border-width: 0.5rem;
}

.border-9 {
  border-width: 0.5625rem;
}

.border-10 {
  border-width: 0.625rem;
}

.border-top {
  border-top-width: 0.0625rem;
  border-top-style: solid;
}

.border-top-solid {
  border-top-style: solid;
}

.border-top-dashed {
  border-top-style: dashed;
}

.border-top-dotted {
  border-top-style: dotted;
}

.border-top-0 {
  border-top-width: 0rem;
}

.border-top-1 {
  border-top-width: 0.0625rem;
}

.border-top-2 {
  border-top-width: 0.125rem;
}

.border-top-3 {
  border-top-width: 0.1875rem;
}

.border-top-4 {
  border-top-width: 0.25rem;
}

.border-top-5 {
  border-top-width: 0.3125rem;
}

.border-top-6 {
  border-top-width: 0.375rem;
}

.border-top-7 {
  border-top-width: 0.4375rem;
}

.border-top-8 {
  border-top-width: 0.5rem;
}

.border-top-9 {
  border-top-width: 0.5625rem;
}

.border-top-10 {
  border-top-width: 0.625rem;
}

.border-right {
  border-right-width: 0.0625rem;
  border-right-style: solid;
}

.border-right-solid {
  border-right-style: solid;
}

.border-right-dashed {
  border-right-style: dashed;
}

.border-right-dotted {
  border-right-style: dotted;
}

.border-right-0 {
  border-right-width: 0rem;
}

.border-right-1 {
  border-right-width: 0.0625rem;
}

.border-right-2 {
  border-right-width: 0.125rem;
}

.border-right-3 {
  border-right-width: 0.1875rem;
}

.border-right-4 {
  border-right-width: 0.25rem;
}

.border-right-5 {
  border-right-width: 0.3125rem;
}

.border-right-6 {
  border-right-width: 0.375rem;
}

.border-right-7 {
  border-right-width: 0.4375rem;
}

.border-right-8 {
  border-right-width: 0.5rem;
}

.border-right-9 {
  border-right-width: 0.5625rem;
}

.border-right-10 {
  border-right-width: 0.625rem;
}

.border-bottom {
  border-bottom-width: 0.0625rem;
  border-bottom-style: solid;
}

.border-bottom-solid {
  border-bottom-style: solid;
}

.border-bottom-dashed {
  border-bottom-style: dashed;
}

.border-bottom-dotted {
  border-bottom-style: dotted;
}

.border-bottom-0 {
  border-bottom-width: 0rem;
}

.border-bottom-1 {
  border-bottom-width: 0.0625rem;
}

.border-bottom-2 {
  border-bottom-width: 0.125rem;
}

.border-bottom-3 {
  border-bottom-width: 0.1875rem;
}

.border-bottom-4 {
  border-bottom-width: 0.25rem;
}

.border-bottom-5 {
  border-bottom-width: 0.3125rem;
}

.border-bottom-6 {
  border-bottom-width: 0.375rem;
}

.border-bottom-7 {
  border-bottom-width: 0.4375rem;
}

.border-bottom-8 {
  border-bottom-width: 0.5rem;
}

.border-bottom-9 {
  border-bottom-width: 0.5625rem;
}

.border-bottom-10 {
  border-bottom-width: 0.625rem;
}

.border-left {
  border-left-width: 0.0625rem;
  border-left-style: solid;
}

.border-left-solid {
  border-left-style: solid;
}

.border-left-dashed {
  border-left-style: dashed;
}

.border-left-dotted {
  border-left-style: dotted;
}

.border-left-0 {
  border-left-width: 0rem;
}

.border-left-1 {
  border-left-width: 0.0625rem;
}

.border-left-2 {
  border-left-width: 0.125rem;
}

.border-left-3 {
  border-left-width: 0.1875rem;
}

.border-left-4 {
  border-left-width: 0.25rem;
}

.border-left-5 {
  border-left-width: 0.3125rem;
}

.border-left-6 {
  border-left-width: 0.375rem;
}

.border-left-7 {
  border-left-width: 0.4375rem;
}

.border-left-8 {
  border-left-width: 0.5rem;
}

.border-left-9 {
  border-left-width: 0.5625rem;
}

.border-left-10 {
  border-left-width: 0.625rem;
}

.border-none {
  border: none;
}

.collapse-separate {
  border-collapse: separate;
}

.border-spacing-extra-small {
  border-spacing: var(--padding-extra-small);
}

@media (max-width: 8640px) {
  .opacity-0,
  .hover\:opacity-0:hover,
  .focus\:opacity-0:focus,
  .group:hover .group-hover\:opacity-0,
  .group:focus-within .group-focus-within\:opacity-0 {
    opacity: 0;
  }
  .opacity-00,
  .hover\:opacity-00:hover,
  .focus\:opacity-00:focus,
  .group:hover .group-hover\:opacity-00,
  .group:focus-within .group-focus-within\:opacity-00 {
    opacity: 0;
  }
  .opacity-1,
  .hover\:opacity-1:hover,
  .focus\:opacity-1:focus,
  .group:hover .group-hover\:opacity-1,
  .group:focus-within .group-focus-within\:opacity-1 {
    opacity: 0.1;
  }
  .opacity-01,
  .hover\:opacity-01:hover,
  .focus\:opacity-01:focus,
  .group:hover .group-hover\:opacity-01,
  .group:focus-within .group-focus-within\:opacity-01 {
    opacity: 0.01;
  }
  .opacity-2,
  .hover\:opacity-2:hover,
  .focus\:opacity-2:focus,
  .group:hover .group-hover\:opacity-2,
  .group:focus-within .group-focus-within\:opacity-2 {
    opacity: 0.2;
  }
  .opacity-02,
  .hover\:opacity-02:hover,
  .focus\:opacity-02:focus,
  .group:hover .group-hover\:opacity-02,
  .group:focus-within .group-focus-within\:opacity-02 {
    opacity: 0.02;
  }
  .opacity-3,
  .hover\:opacity-3:hover,
  .focus\:opacity-3:focus,
  .group:hover .group-hover\:opacity-3,
  .group:focus-within .group-focus-within\:opacity-3 {
    opacity: 0.3;
  }
  .opacity-03,
  .hover\:opacity-03:hover,
  .focus\:opacity-03:focus,
  .group:hover .group-hover\:opacity-03,
  .group:focus-within .group-focus-within\:opacity-03 {
    opacity: 0.03;
  }
  .opacity-4,
  .hover\:opacity-4:hover,
  .focus\:opacity-4:focus,
  .group:hover .group-hover\:opacity-4,
  .group:focus-within .group-focus-within\:opacity-4 {
    opacity: 0.4;
  }
  .opacity-04,
  .hover\:opacity-04:hover,
  .focus\:opacity-04:focus,
  .group:hover .group-hover\:opacity-04,
  .group:focus-within .group-focus-within\:opacity-04 {
    opacity: 0.04;
  }
  .opacity-5,
  .hover\:opacity-5:hover,
  .focus\:opacity-5:focus,
  .group:hover .group-hover\:opacity-5,
  .group:focus-within .group-focus-within\:opacity-5 {
    opacity: 0.5;
  }
  .opacity-05,
  .hover\:opacity-05:hover,
  .focus\:opacity-05:focus,
  .group:hover .group-hover\:opacity-05,
  .group:focus-within .group-focus-within\:opacity-05 {
    opacity: 0.05;
  }
  .opacity-6,
  .hover\:opacity-6:hover,
  .focus\:opacity-6:focus,
  .group:hover .group-hover\:opacity-6,
  .group:focus-within .group-focus-within\:opacity-6 {
    opacity: 0.6;
  }
  .opacity-06,
  .hover\:opacity-06:hover,
  .focus\:opacity-06:focus,
  .group:hover .group-hover\:opacity-06,
  .group:focus-within .group-focus-within\:opacity-06 {
    opacity: 0.06;
  }
  .opacity-7,
  .hover\:opacity-7:hover,
  .focus\:opacity-7:focus,
  .group:hover .group-hover\:opacity-7,
  .group:focus-within .group-focus-within\:opacity-7 {
    opacity: 0.7;
  }
  .opacity-07,
  .hover\:opacity-07:hover,
  .focus\:opacity-07:focus,
  .group:hover .group-hover\:opacity-07,
  .group:focus-within .group-focus-within\:opacity-07 {
    opacity: 0.07;
  }
  .opacity-8,
  .hover\:opacity-8:hover,
  .focus\:opacity-8:focus,
  .group:hover .group-hover\:opacity-8,
  .group:focus-within .group-focus-within\:opacity-8 {
    opacity: 0.8;
  }
  .opacity-08,
  .hover\:opacity-08:hover,
  .focus\:opacity-08:focus,
  .group:hover .group-hover\:opacity-08,
  .group:focus-within .group-focus-within\:opacity-08 {
    opacity: 0.08;
  }
  .opacity-9,
  .hover\:opacity-9:hover,
  .focus\:opacity-9:focus,
  .group:hover .group-hover\:opacity-9,
  .group:focus-within .group-focus-within\:opacity-9 {
    opacity: 0.9;
  }
  .opacity-09,
  .hover\:opacity-09:hover,
  .focus\:opacity-09:focus,
  .group:hover .group-hover\:opacity-09,
  .group:focus-within .group-focus-within\:opacity-09 {
    opacity: 0.09;
  }
  .opacity-10,
  .hover\:opacity-10:hover,
  .focus\:opacity-10:focus,
  .group:hover .group-hover\:opacity-10,
  .group:focus-within .group-focus-within\:opacity-10 {
    opacity: 1;
  }
  .grayscale-full {
    filter: grayscale(1);
  }
  .grayscale-none {
    filter: grayscale(0);
  }
  .blur-small {
    filter: blur(0.625rem);
  }
  .blur-medium {
    filter: blur(1.25rem);
  }
  .blur-large {
    filter: blur(2.5rem);
  }
  .blur-none {
    filter: blur(0);
  }
  .bg-blur-small {
    backdrop-filter: blur(0.625rem);
  }
  .bg-blur-medium {
    backdrop-filter: blur(1.25rem);
  }
  .bg-blur-large {
    backdrop-filter: blur(2.5rem);
  }
  .bg-blur-none {
    backdrop-filter: blur(0);
  }
  .taper-fade-v, .brandui-flip .brandui-flip-back-content,
  .taper-fade-h {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .taper-fade-v::before, .brandui-flip .brandui-flip-back-content::before, .taper-fade-v::after, .brandui-flip .brandui-flip-back-content::after,
  .taper-fade-h::before,
  .taper-fade-h::after {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    transition: var(--transition-fast);
    pointer-events: none;
    inset: 0;
    margin: auto 0 0;
    width: 100%;
    height: 2rem;
    z-index: 100;
  }
  .taper-fade-v::before, .brandui-flip .brandui-flip-back-content::before,
  .taper-fade-h::before {
    margin: 0 0 auto;
    background: linear-gradient(180deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .taper-fade-v::after, .brandui-flip .brandui-flip-back-content::after,
  .taper-fade-h::after {
    background: linear-gradient(0deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .taper-fade-h::before, .taper-fade-h::after {
    margin: 0 auto 0 0;
    width: 2rem;
    height: 100%;
  }
  .taper-fade-h::after {
    margin: 0 0 0 auto;
  }
  .taper-fade-h::before {
    background: linear-gradient(90deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .taper-fade-h::after {
    background: linear-gradient(270deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .taper-fade-none::before, .taper-fade-none::after {
    display: none;
  }
}
@media (max-width: 1024px) {
  .tablet\:opacity-0,
  .tablet\:hover\:opacity-0:hover,
  .tablet\:focus\:opacity-0:focus,
  .tablet\:group:hover .group-hover\:opacity-0,
  .tablet\:group:focus-within .group-focus-within\:opacity-0 {
    opacity: 0;
  }
  .tablet\:opacity-00,
  .tablet\:hover\:opacity-00:hover,
  .tablet\:focus\:opacity-00:focus,
  .tablet\:group:hover .group-hover\:opacity-00,
  .tablet\:group:focus-within .group-focus-within\:opacity-00 {
    opacity: 0;
  }
  .tablet\:opacity-1,
  .tablet\:hover\:opacity-1:hover,
  .tablet\:focus\:opacity-1:focus,
  .tablet\:group:hover .group-hover\:opacity-1,
  .tablet\:group:focus-within .group-focus-within\:opacity-1 {
    opacity: 0.1;
  }
  .tablet\:opacity-01,
  .tablet\:hover\:opacity-01:hover,
  .tablet\:focus\:opacity-01:focus,
  .tablet\:group:hover .group-hover\:opacity-01,
  .tablet\:group:focus-within .group-focus-within\:opacity-01 {
    opacity: 0.01;
  }
  .tablet\:opacity-2,
  .tablet\:hover\:opacity-2:hover,
  .tablet\:focus\:opacity-2:focus,
  .tablet\:group:hover .group-hover\:opacity-2,
  .tablet\:group:focus-within .group-focus-within\:opacity-2 {
    opacity: 0.2;
  }
  .tablet\:opacity-02,
  .tablet\:hover\:opacity-02:hover,
  .tablet\:focus\:opacity-02:focus,
  .tablet\:group:hover .group-hover\:opacity-02,
  .tablet\:group:focus-within .group-focus-within\:opacity-02 {
    opacity: 0.02;
  }
  .tablet\:opacity-3,
  .tablet\:hover\:opacity-3:hover,
  .tablet\:focus\:opacity-3:focus,
  .tablet\:group:hover .group-hover\:opacity-3,
  .tablet\:group:focus-within .group-focus-within\:opacity-3 {
    opacity: 0.3;
  }
  .tablet\:opacity-03,
  .tablet\:hover\:opacity-03:hover,
  .tablet\:focus\:opacity-03:focus,
  .tablet\:group:hover .group-hover\:opacity-03,
  .tablet\:group:focus-within .group-focus-within\:opacity-03 {
    opacity: 0.03;
  }
  .tablet\:opacity-4,
  .tablet\:hover\:opacity-4:hover,
  .tablet\:focus\:opacity-4:focus,
  .tablet\:group:hover .group-hover\:opacity-4,
  .tablet\:group:focus-within .group-focus-within\:opacity-4 {
    opacity: 0.4;
  }
  .tablet\:opacity-04,
  .tablet\:hover\:opacity-04:hover,
  .tablet\:focus\:opacity-04:focus,
  .tablet\:group:hover .group-hover\:opacity-04,
  .tablet\:group:focus-within .group-focus-within\:opacity-04 {
    opacity: 0.04;
  }
  .tablet\:opacity-5,
  .tablet\:hover\:opacity-5:hover,
  .tablet\:focus\:opacity-5:focus,
  .tablet\:group:hover .group-hover\:opacity-5,
  .tablet\:group:focus-within .group-focus-within\:opacity-5 {
    opacity: 0.5;
  }
  .tablet\:opacity-05,
  .tablet\:hover\:opacity-05:hover,
  .tablet\:focus\:opacity-05:focus,
  .tablet\:group:hover .group-hover\:opacity-05,
  .tablet\:group:focus-within .group-focus-within\:opacity-05 {
    opacity: 0.05;
  }
  .tablet\:opacity-6,
  .tablet\:hover\:opacity-6:hover,
  .tablet\:focus\:opacity-6:focus,
  .tablet\:group:hover .group-hover\:opacity-6,
  .tablet\:group:focus-within .group-focus-within\:opacity-6 {
    opacity: 0.6;
  }
  .tablet\:opacity-06,
  .tablet\:hover\:opacity-06:hover,
  .tablet\:focus\:opacity-06:focus,
  .tablet\:group:hover .group-hover\:opacity-06,
  .tablet\:group:focus-within .group-focus-within\:opacity-06 {
    opacity: 0.06;
  }
  .tablet\:opacity-7,
  .tablet\:hover\:opacity-7:hover,
  .tablet\:focus\:opacity-7:focus,
  .tablet\:group:hover .group-hover\:opacity-7,
  .tablet\:group:focus-within .group-focus-within\:opacity-7 {
    opacity: 0.7;
  }
  .tablet\:opacity-07,
  .tablet\:hover\:opacity-07:hover,
  .tablet\:focus\:opacity-07:focus,
  .tablet\:group:hover .group-hover\:opacity-07,
  .tablet\:group:focus-within .group-focus-within\:opacity-07 {
    opacity: 0.07;
  }
  .tablet\:opacity-8,
  .tablet\:hover\:opacity-8:hover,
  .tablet\:focus\:opacity-8:focus,
  .tablet\:group:hover .group-hover\:opacity-8,
  .tablet\:group:focus-within .group-focus-within\:opacity-8 {
    opacity: 0.8;
  }
  .tablet\:opacity-08,
  .tablet\:hover\:opacity-08:hover,
  .tablet\:focus\:opacity-08:focus,
  .tablet\:group:hover .group-hover\:opacity-08,
  .tablet\:group:focus-within .group-focus-within\:opacity-08 {
    opacity: 0.08;
  }
  .tablet\:opacity-9,
  .tablet\:hover\:opacity-9:hover,
  .tablet\:focus\:opacity-9:focus,
  .tablet\:group:hover .group-hover\:opacity-9,
  .tablet\:group:focus-within .group-focus-within\:opacity-9 {
    opacity: 0.9;
  }
  .tablet\:opacity-09,
  .tablet\:hover\:opacity-09:hover,
  .tablet\:focus\:opacity-09:focus,
  .tablet\:group:hover .group-hover\:opacity-09,
  .tablet\:group:focus-within .group-focus-within\:opacity-09 {
    opacity: 0.09;
  }
  .tablet\:opacity-10,
  .tablet\:hover\:opacity-10:hover,
  .tablet\:focus\:opacity-10:focus,
  .tablet\:group:hover .group-hover\:opacity-10,
  .tablet\:group:focus-within .group-focus-within\:opacity-10 {
    opacity: 1;
  }
  .tablet\:grayscale-full {
    filter: grayscale(1);
  }
  .tablet\:grayscale-none {
    filter: grayscale(0);
  }
  .tablet\:blur-small {
    filter: blur(0.625rem);
  }
  .tablet\:blur-medium {
    filter: blur(1.25rem);
  }
  .tablet\:blur-large {
    filter: blur(2.5rem);
  }
  .tablet\:blur-none {
    filter: blur(0);
  }
  .tablet\:bg-blur-small {
    backdrop-filter: blur(0.625rem);
  }
  .tablet\:bg-blur-medium {
    backdrop-filter: blur(1.25rem);
  }
  .tablet\:bg-blur-large {
    backdrop-filter: blur(2.5rem);
  }
  .tablet\:bg-blur-none {
    backdrop-filter: blur(0);
  }
  .tablet\:taper-fade-v,
  .tablet\:taper-fade-h {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .tablet\:taper-fade-v::before, .tablet\:taper-fade-v::after,
  .tablet\:taper-fade-h::before,
  .tablet\:taper-fade-h::after {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    transition: var(--transition-fast);
    pointer-events: none;
    inset: 0;
    margin: auto 0 0;
    width: 100%;
    height: 2rem;
    z-index: 100;
  }
  .tablet\:taper-fade-v::before,
  .tablet\:taper-fade-h::before {
    margin: 0 0 auto;
    background: linear-gradient(180deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .tablet\:taper-fade-v::after,
  .tablet\:taper-fade-h::after {
    background: linear-gradient(0deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .tablet\:taper-fade-h::before, .tablet\:taper-fade-h::after {
    margin: 0 auto 0 0;
    width: 2rem;
    height: 100%;
  }
  .tablet\:taper-fade-h::after {
    margin: 0 0 0 auto;
  }
  .tablet\:taper-fade-h::before {
    background: linear-gradient(90deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .tablet\:taper-fade-h::after {
    background: linear-gradient(270deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .tablet\:taper-fade-none::before, .tablet\:taper-fade-none::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .mobile\:opacity-0,
  .mobile\:hover\:opacity-0:hover,
  .mobile\:focus\:opacity-0:focus,
  .mobile\:group:hover .group-hover\:opacity-0,
  .mobile\:group:focus-within .group-focus-within\:opacity-0 {
    opacity: 0;
  }
  .mobile\:opacity-00,
  .mobile\:hover\:opacity-00:hover,
  .mobile\:focus\:opacity-00:focus,
  .mobile\:group:hover .group-hover\:opacity-00,
  .mobile\:group:focus-within .group-focus-within\:opacity-00 {
    opacity: 0;
  }
  .mobile\:opacity-1,
  .mobile\:hover\:opacity-1:hover,
  .mobile\:focus\:opacity-1:focus,
  .mobile\:group:hover .group-hover\:opacity-1,
  .mobile\:group:focus-within .group-focus-within\:opacity-1 {
    opacity: 0.1;
  }
  .mobile\:opacity-01,
  .mobile\:hover\:opacity-01:hover,
  .mobile\:focus\:opacity-01:focus,
  .mobile\:group:hover .group-hover\:opacity-01,
  .mobile\:group:focus-within .group-focus-within\:opacity-01 {
    opacity: 0.01;
  }
  .mobile\:opacity-2,
  .mobile\:hover\:opacity-2:hover,
  .mobile\:focus\:opacity-2:focus,
  .mobile\:group:hover .group-hover\:opacity-2,
  .mobile\:group:focus-within .group-focus-within\:opacity-2 {
    opacity: 0.2;
  }
  .mobile\:opacity-02,
  .mobile\:hover\:opacity-02:hover,
  .mobile\:focus\:opacity-02:focus,
  .mobile\:group:hover .group-hover\:opacity-02,
  .mobile\:group:focus-within .group-focus-within\:opacity-02 {
    opacity: 0.02;
  }
  .mobile\:opacity-3,
  .mobile\:hover\:opacity-3:hover,
  .mobile\:focus\:opacity-3:focus,
  .mobile\:group:hover .group-hover\:opacity-3,
  .mobile\:group:focus-within .group-focus-within\:opacity-3 {
    opacity: 0.3;
  }
  .mobile\:opacity-03,
  .mobile\:hover\:opacity-03:hover,
  .mobile\:focus\:opacity-03:focus,
  .mobile\:group:hover .group-hover\:opacity-03,
  .mobile\:group:focus-within .group-focus-within\:opacity-03 {
    opacity: 0.03;
  }
  .mobile\:opacity-4,
  .mobile\:hover\:opacity-4:hover,
  .mobile\:focus\:opacity-4:focus,
  .mobile\:group:hover .group-hover\:opacity-4,
  .mobile\:group:focus-within .group-focus-within\:opacity-4 {
    opacity: 0.4;
  }
  .mobile\:opacity-04,
  .mobile\:hover\:opacity-04:hover,
  .mobile\:focus\:opacity-04:focus,
  .mobile\:group:hover .group-hover\:opacity-04,
  .mobile\:group:focus-within .group-focus-within\:opacity-04 {
    opacity: 0.04;
  }
  .mobile\:opacity-5,
  .mobile\:hover\:opacity-5:hover,
  .mobile\:focus\:opacity-5:focus,
  .mobile\:group:hover .group-hover\:opacity-5,
  .mobile\:group:focus-within .group-focus-within\:opacity-5 {
    opacity: 0.5;
  }
  .mobile\:opacity-05,
  .mobile\:hover\:opacity-05:hover,
  .mobile\:focus\:opacity-05:focus,
  .mobile\:group:hover .group-hover\:opacity-05,
  .mobile\:group:focus-within .group-focus-within\:opacity-05 {
    opacity: 0.05;
  }
  .mobile\:opacity-6,
  .mobile\:hover\:opacity-6:hover,
  .mobile\:focus\:opacity-6:focus,
  .mobile\:group:hover .group-hover\:opacity-6,
  .mobile\:group:focus-within .group-focus-within\:opacity-6 {
    opacity: 0.6;
  }
  .mobile\:opacity-06,
  .mobile\:hover\:opacity-06:hover,
  .mobile\:focus\:opacity-06:focus,
  .mobile\:group:hover .group-hover\:opacity-06,
  .mobile\:group:focus-within .group-focus-within\:opacity-06 {
    opacity: 0.06;
  }
  .mobile\:opacity-7,
  .mobile\:hover\:opacity-7:hover,
  .mobile\:focus\:opacity-7:focus,
  .mobile\:group:hover .group-hover\:opacity-7,
  .mobile\:group:focus-within .group-focus-within\:opacity-7 {
    opacity: 0.7;
  }
  .mobile\:opacity-07,
  .mobile\:hover\:opacity-07:hover,
  .mobile\:focus\:opacity-07:focus,
  .mobile\:group:hover .group-hover\:opacity-07,
  .mobile\:group:focus-within .group-focus-within\:opacity-07 {
    opacity: 0.07;
  }
  .mobile\:opacity-8,
  .mobile\:hover\:opacity-8:hover,
  .mobile\:focus\:opacity-8:focus,
  .mobile\:group:hover .group-hover\:opacity-8,
  .mobile\:group:focus-within .group-focus-within\:opacity-8 {
    opacity: 0.8;
  }
  .mobile\:opacity-08,
  .mobile\:hover\:opacity-08:hover,
  .mobile\:focus\:opacity-08:focus,
  .mobile\:group:hover .group-hover\:opacity-08,
  .mobile\:group:focus-within .group-focus-within\:opacity-08 {
    opacity: 0.08;
  }
  .mobile\:opacity-9,
  .mobile\:hover\:opacity-9:hover,
  .mobile\:focus\:opacity-9:focus,
  .mobile\:group:hover .group-hover\:opacity-9,
  .mobile\:group:focus-within .group-focus-within\:opacity-9 {
    opacity: 0.9;
  }
  .mobile\:opacity-09,
  .mobile\:hover\:opacity-09:hover,
  .mobile\:focus\:opacity-09:focus,
  .mobile\:group:hover .group-hover\:opacity-09,
  .mobile\:group:focus-within .group-focus-within\:opacity-09 {
    opacity: 0.09;
  }
  .mobile\:opacity-10,
  .mobile\:hover\:opacity-10:hover,
  .mobile\:focus\:opacity-10:focus,
  .mobile\:group:hover .group-hover\:opacity-10,
  .mobile\:group:focus-within .group-focus-within\:opacity-10 {
    opacity: 1;
  }
  .mobile\:grayscale-full {
    filter: grayscale(1);
  }
  .mobile\:grayscale-none {
    filter: grayscale(0);
  }
  .mobile\:blur-small {
    filter: blur(0.625rem);
  }
  .mobile\:blur-medium {
    filter: blur(1.25rem);
  }
  .mobile\:blur-large {
    filter: blur(2.5rem);
  }
  .mobile\:blur-none {
    filter: blur(0);
  }
  .mobile\:bg-blur-small {
    backdrop-filter: blur(0.625rem);
  }
  .mobile\:bg-blur-medium {
    backdrop-filter: blur(1.25rem);
  }
  .mobile\:bg-blur-large {
    backdrop-filter: blur(2.5rem);
  }
  .mobile\:bg-blur-none {
    backdrop-filter: blur(0);
  }
  .mobile\:taper-fade-v,
  .mobile\:taper-fade-h {
    display: block;
    position: relative;
    overflow: hidden;
  }
  .mobile\:taper-fade-v::before, .mobile\:taper-fade-v::after,
  .mobile\:taper-fade-h::before,
  .mobile\:taper-fade-h::after {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    transition: var(--transition-fast);
    pointer-events: none;
    inset: 0;
    margin: auto 0 0;
    width: 100%;
    height: 2rem;
    z-index: 100;
  }
  .mobile\:taper-fade-v::before,
  .mobile\:taper-fade-h::before {
    margin: 0 0 auto;
    background: linear-gradient(180deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .mobile\:taper-fade-v::after,
  .mobile\:taper-fade-h::after {
    background: linear-gradient(0deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .mobile\:taper-fade-h::before, .mobile\:taper-fade-h::after {
    margin: 0 auto 0 0;
    width: 2rem;
    height: 100%;
  }
  .mobile\:taper-fade-h::after {
    margin: 0 0 0 auto;
  }
  .mobile\:taper-fade-h::before {
    background: linear-gradient(90deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .mobile\:taper-fade-h::after {
    background: linear-gradient(270deg, color-mix(in srgb, var(--default), transparent 0%), color-mix(in srgb, var(--default), transparent 100%));
  }
  .mobile\:taper-fade-none::before, .mobile\:taper-fade-none::after {
    display: none;
  }
}
@media (max-width: 8640px) {
  .shadow-outline,
  .hover\:shadow-outline:hover,
  .focus\:shadow-outline:focus,
  .group:hover .group-hover\:shadow-outline,
  .group:focus-within .group-focus-within\:shadow-outline {
    box-shadow: var(--shadow-outline);
  }
  .shadow-outline-inset,
  .hover\:shadow-outline-inset:hover,
  .focus\:shadow-outline-inset:focus,
  .group:hover .group-hover\:shadow-outline-inset,
  .group:focus-within .group-focus-within\:shadow-outline-inset {
    box-shadow: inset var(--shadow-outline);
  }
  .shadow-faint,
  .hover\:shadow-faint:hover,
  .focus\:shadow-faint:focus,
  .group:hover .group-hover\:shadow-faint,
  .group:focus-within .group-focus-within\:shadow-faint {
    box-shadow: var(--shadow-faint);
  }
  .shadow-faint-inset,
  .hover\:shadow-faint-inset:hover,
  .focus\:shadow-faint-inset:focus,
  .group:hover .group-hover\:shadow-faint-inset,
  .group:focus-within .group-focus-within\:shadow-faint-inset {
    box-shadow: inset var(--shadow-faint);
  }
  .shadow-near,
  .hover\:shadow-near:hover,
  .focus\:shadow-near:focus,
  .group:hover .group-hover\:shadow-near,
  .group:focus-within .group-focus-within\:shadow-near {
    box-shadow: var(--shadow-near);
  }
  .shadow-near-inset,
  .hover\:shadow-near-inset:hover,
  .focus\:shadow-near-inset:focus,
  .group:hover .group-hover\:shadow-near-inset,
  .group:focus-within .group-focus-within\:shadow-near-inset {
    box-shadow: inset var(--shadow-near);
  }
  .shadow-mid,
  .hover\:shadow-mid:hover,
  .focus\:shadow-mid:focus,
  .group:hover .group-hover\:shadow-mid,
  .group:focus-within .group-focus-within\:shadow-mid {
    box-shadow: var(--shadow-mid);
  }
  .shadow-mid-inset,
  .hover\:shadow-mid-inset:hover,
  .focus\:shadow-mid-inset:focus,
  .group:hover .group-hover\:shadow-mid-inset,
  .group:focus-within .group-focus-within\:shadow-mid-inset {
    box-shadow: inset var(--shadow-mid);
  }
  .shadow-far,
  .hover\:shadow-far:hover,
  .focus\:shadow-far:focus,
  .group:hover .group-hover\:shadow-far,
  .group:focus-within .group-focus-within\:shadow-far {
    box-shadow: var(--shadow-far);
  }
  .shadow-far-inset,
  .hover\:shadow-far-inset:hover,
  .focus\:shadow-far-inset:focus,
  .group:hover .group-hover\:shadow-far-inset,
  .group:focus-within .group-focus-within\:shadow-far-inset {
    box-shadow: inset var(--shadow-far);
  }
  .shadow-none,
  .hover\:shadow-none:hover,
  .focus\:shadow-none:focus,
  .group:hover .group-hover\:shadow-none,
  .group:focus-within .group-focus-within\:shadow-none {
    box-shadow: none;
  }
}
@media (max-width: 1024px) {
  .tablet\:shadow-outline,
  .tablet\:hover\:shadow-outline:hover,
  .tablet\:focus\:shadow-outline:focus,
  .tablet\:group:hover .group-hover\:shadow-outline,
  .tablet\:group:focus-within .group-focus-within\:shadow-outline {
    box-shadow: var(--shadow-outline);
  }
  .tablet\:shadow-outline-inset,
  .tablet\:hover\:shadow-outline-inset:hover,
  .tablet\:focus\:shadow-outline-inset:focus,
  .tablet\:group:hover .group-hover\:shadow-outline-inset,
  .tablet\:group:focus-within .group-focus-within\:shadow-outline-inset {
    box-shadow: inset var(--shadow-outline);
  }
  .tablet\:shadow-faint,
  .tablet\:hover\:shadow-faint:hover,
  .tablet\:focus\:shadow-faint:focus,
  .tablet\:group:hover .group-hover\:shadow-faint,
  .tablet\:group:focus-within .group-focus-within\:shadow-faint {
    box-shadow: var(--shadow-faint);
  }
  .tablet\:shadow-faint-inset,
  .tablet\:hover\:shadow-faint-inset:hover,
  .tablet\:focus\:shadow-faint-inset:focus,
  .tablet\:group:hover .group-hover\:shadow-faint-inset,
  .tablet\:group:focus-within .group-focus-within\:shadow-faint-inset {
    box-shadow: inset var(--shadow-faint);
  }
  .tablet\:shadow-near,
  .tablet\:hover\:shadow-near:hover,
  .tablet\:focus\:shadow-near:focus,
  .tablet\:group:hover .group-hover\:shadow-near,
  .tablet\:group:focus-within .group-focus-within\:shadow-near {
    box-shadow: var(--shadow-near);
  }
  .tablet\:shadow-near-inset,
  .tablet\:hover\:shadow-near-inset:hover,
  .tablet\:focus\:shadow-near-inset:focus,
  .tablet\:group:hover .group-hover\:shadow-near-inset,
  .tablet\:group:focus-within .group-focus-within\:shadow-near-inset {
    box-shadow: inset var(--shadow-near);
  }
  .tablet\:shadow-mid,
  .tablet\:hover\:shadow-mid:hover,
  .tablet\:focus\:shadow-mid:focus,
  .tablet\:group:hover .group-hover\:shadow-mid,
  .tablet\:group:focus-within .group-focus-within\:shadow-mid {
    box-shadow: var(--shadow-mid);
  }
  .tablet\:shadow-mid-inset,
  .tablet\:hover\:shadow-mid-inset:hover,
  .tablet\:focus\:shadow-mid-inset:focus,
  .tablet\:group:hover .group-hover\:shadow-mid-inset,
  .tablet\:group:focus-within .group-focus-within\:shadow-mid-inset {
    box-shadow: inset var(--shadow-mid);
  }
  .tablet\:shadow-far,
  .tablet\:hover\:shadow-far:hover,
  .tablet\:focus\:shadow-far:focus,
  .tablet\:group:hover .group-hover\:shadow-far,
  .tablet\:group:focus-within .group-focus-within\:shadow-far {
    box-shadow: var(--shadow-far);
  }
  .tablet\:shadow-far-inset,
  .tablet\:hover\:shadow-far-inset:hover,
  .tablet\:focus\:shadow-far-inset:focus,
  .tablet\:group:hover .group-hover\:shadow-far-inset,
  .tablet\:group:focus-within .group-focus-within\:shadow-far-inset {
    box-shadow: inset var(--shadow-far);
  }
  .tablet\:shadow-none,
  .tablet\:hover\:shadow-none:hover,
  .tablet\:focus\:shadow-none:focus,
  .tablet\:group:hover .group-hover\:shadow-none,
  .tablet\:group:focus-within .group-focus-within\:shadow-none {
    box-shadow: none;
  }
}
@media (max-width: 768px) {
  .mobile\:shadow-outline,
  .mobile\:hover\:shadow-outline:hover,
  .mobile\:focus\:shadow-outline:focus,
  .mobile\:group:hover .group-hover\:shadow-outline,
  .mobile\:group:focus-within .group-focus-within\:shadow-outline {
    box-shadow: var(--shadow-outline);
  }
  .mobile\:shadow-outline-inset,
  .mobile\:hover\:shadow-outline-inset:hover,
  .mobile\:focus\:shadow-outline-inset:focus,
  .mobile\:group:hover .group-hover\:shadow-outline-inset,
  .mobile\:group:focus-within .group-focus-within\:shadow-outline-inset {
    box-shadow: inset var(--shadow-outline);
  }
  .mobile\:shadow-faint,
  .mobile\:hover\:shadow-faint:hover,
  .mobile\:focus\:shadow-faint:focus,
  .mobile\:group:hover .group-hover\:shadow-faint,
  .mobile\:group:focus-within .group-focus-within\:shadow-faint {
    box-shadow: var(--shadow-faint);
  }
  .mobile\:shadow-faint-inset,
  .mobile\:hover\:shadow-faint-inset:hover,
  .mobile\:focus\:shadow-faint-inset:focus,
  .mobile\:group:hover .group-hover\:shadow-faint-inset,
  .mobile\:group:focus-within .group-focus-within\:shadow-faint-inset {
    box-shadow: inset var(--shadow-faint);
  }
  .mobile\:shadow-near,
  .mobile\:hover\:shadow-near:hover,
  .mobile\:focus\:shadow-near:focus,
  .mobile\:group:hover .group-hover\:shadow-near,
  .mobile\:group:focus-within .group-focus-within\:shadow-near {
    box-shadow: var(--shadow-near);
  }
  .mobile\:shadow-near-inset,
  .mobile\:hover\:shadow-near-inset:hover,
  .mobile\:focus\:shadow-near-inset:focus,
  .mobile\:group:hover .group-hover\:shadow-near-inset,
  .mobile\:group:focus-within .group-focus-within\:shadow-near-inset {
    box-shadow: inset var(--shadow-near);
  }
  .mobile\:shadow-mid,
  .mobile\:hover\:shadow-mid:hover,
  .mobile\:focus\:shadow-mid:focus,
  .mobile\:group:hover .group-hover\:shadow-mid,
  .mobile\:group:focus-within .group-focus-within\:shadow-mid {
    box-shadow: var(--shadow-mid);
  }
  .mobile\:shadow-mid-inset,
  .mobile\:hover\:shadow-mid-inset:hover,
  .mobile\:focus\:shadow-mid-inset:focus,
  .mobile\:group:hover .group-hover\:shadow-mid-inset,
  .mobile\:group:focus-within .group-focus-within\:shadow-mid-inset {
    box-shadow: inset var(--shadow-mid);
  }
  .mobile\:shadow-far,
  .mobile\:hover\:shadow-far:hover,
  .mobile\:focus\:shadow-far:focus,
  .mobile\:group:hover .group-hover\:shadow-far,
  .mobile\:group:focus-within .group-focus-within\:shadow-far {
    box-shadow: var(--shadow-far);
  }
  .mobile\:shadow-far-inset,
  .mobile\:hover\:shadow-far-inset:hover,
  .mobile\:focus\:shadow-far-inset:focus,
  .mobile\:group:hover .group-hover\:shadow-far-inset,
  .mobile\:group:focus-within .group-focus-within\:shadow-far-inset {
    box-shadow: inset var(--shadow-far);
  }
  .mobile\:shadow-none,
  .mobile\:hover\:shadow-none:hover,
  .mobile\:focus\:shadow-none:focus,
  .mobile\:group:hover .group-hover\:shadow-none,
  .mobile\:group:focus-within .group-focus-within\:shadow-none {
    box-shadow: none;
  }
}
@media (max-width: 8640px) {
  .mix-blend-mode-color {
    mix-blend-mode: color;
  }
  .mix-blend-mode-color-burn {
    mix-blend-mode: color-burn;
  }
  .mix-blend-mode-darken {
    mix-blend-mode: darken;
  }
  .mix-blend-mode-difference {
    mix-blend-mode: difference;
  }
  .mix-blend-mode-exclusion {
    mix-blend-mode: exclusion;
  }
  .mix-blend-mode-hard-light {
    mix-blend-mode: hard-light;
  }
  .mix-blend-mode-hue {
    mix-blend-mode: hue;
  }
  .mix-blend-mode-lighten {
    mix-blend-mode: lighten;
  }
  .mix-blend-mode-luminosity {
    mix-blend-mode: luminosity;
  }
  .mix-blend-mode-multiply {
    mix-blend-mode: multiply;
  }
  .mix-blend-mode-normal {
    mix-blend-mode: normal;
  }
  .mix-blend-mode-overlay {
    mix-blend-mode: overlay;
  }
  .mix-blend-mode-saturation {
    mix-blend-mode: saturation;
  }
  .mix-blend-mode-screen {
    mix-blend-mode: screen;
  }
  .mix-blend-mode-soft-light {
    mix-blend-mode: soft-light;
  }
  .mix-blend-mode-inherit {
    mix-blend-mode: inherit;
  }
  .mix-blend-mode-initial {
    mix-blend-mode: initial;
  }
  .mix-blend-mode-unset {
    mix-blend-mode: unset;
  }
}
@media (max-width: 1024px) {
  .tablet\:mix-blend-mode-color {
    mix-blend-mode: color;
  }
  .tablet\:mix-blend-mode-color-burn {
    mix-blend-mode: color-burn;
  }
  .tablet\:mix-blend-mode-darken {
    mix-blend-mode: darken;
  }
  .tablet\:mix-blend-mode-difference {
    mix-blend-mode: difference;
  }
  .tablet\:mix-blend-mode-exclusion {
    mix-blend-mode: exclusion;
  }
  .tablet\:mix-blend-mode-hard-light {
    mix-blend-mode: hard-light;
  }
  .tablet\:mix-blend-mode-hue {
    mix-blend-mode: hue;
  }
  .tablet\:mix-blend-mode-lighten {
    mix-blend-mode: lighten;
  }
  .tablet\:mix-blend-mode-luminosity {
    mix-blend-mode: luminosity;
  }
  .tablet\:mix-blend-mode-multiply {
    mix-blend-mode: multiply;
  }
  .tablet\:mix-blend-mode-normal {
    mix-blend-mode: normal;
  }
  .tablet\:mix-blend-mode-overlay {
    mix-blend-mode: overlay;
  }
  .tablet\:mix-blend-mode-saturation {
    mix-blend-mode: saturation;
  }
  .tablet\:mix-blend-mode-screen {
    mix-blend-mode: screen;
  }
  .tablet\:mix-blend-mode-soft-light {
    mix-blend-mode: soft-light;
  }
  .tablet\:mix-blend-mode-inherit {
    mix-blend-mode: inherit;
  }
  .tablet\:mix-blend-mode-initial {
    mix-blend-mode: initial;
  }
  .tablet\:mix-blend-mode-unset {
    mix-blend-mode: unset;
  }
}
@media (max-width: 768px) {
  .mobile\:mix-blend-mode-color {
    mix-blend-mode: color;
  }
  .mobile\:mix-blend-mode-color-burn {
    mix-blend-mode: color-burn;
  }
  .mobile\:mix-blend-mode-darken {
    mix-blend-mode: darken;
  }
  .mobile\:mix-blend-mode-difference {
    mix-blend-mode: difference;
  }
  .mobile\:mix-blend-mode-exclusion {
    mix-blend-mode: exclusion;
  }
  .mobile\:mix-blend-mode-hard-light {
    mix-blend-mode: hard-light;
  }
  .mobile\:mix-blend-mode-hue {
    mix-blend-mode: hue;
  }
  .mobile\:mix-blend-mode-lighten {
    mix-blend-mode: lighten;
  }
  .mobile\:mix-blend-mode-luminosity {
    mix-blend-mode: luminosity;
  }
  .mobile\:mix-blend-mode-multiply {
    mix-blend-mode: multiply;
  }
  .mobile\:mix-blend-mode-normal {
    mix-blend-mode: normal;
  }
  .mobile\:mix-blend-mode-overlay {
    mix-blend-mode: overlay;
  }
  .mobile\:mix-blend-mode-saturation {
    mix-blend-mode: saturation;
  }
  .mobile\:mix-blend-mode-screen {
    mix-blend-mode: screen;
  }
  .mobile\:mix-blend-mode-soft-light {
    mix-blend-mode: soft-light;
  }
  .mobile\:mix-blend-mode-inherit {
    mix-blend-mode: inherit;
  }
  .mobile\:mix-blend-mode-initial {
    mix-blend-mode: initial;
  }
  .mobile\:mix-blend-mode-unset {
    mix-blend-mode: unset;
  }
}
@media (max-width: 8640px) {
  .flex-start {
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
  }
  .flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .flex-space-between {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .flex-space-around {
    align-items: center;
    display: flex;
    justify-content: space-around;
  }
  .flex-space-evenly {
    align-items: center;
    display: flex;
    justify-content: space-evenly;
  }
  .flex-left {
    align-items: center;
    display: flex;
    justify-content: left;
  }
  .flex-right {
    align-items: center;
    display: flex;
    justify-content: right;
  }
  .flex-stretch {
    align-items: stretch;
    display: flex;
    justify-content: flex-start;
  }
  .flex-end {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .flex-nowrap {
    flex-wrap: nowrap;
  }
  .flex-row {
    flex-direction: row;
  }
  .flex-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-col-reverse {
    flex-direction: column-reverse;
  }
  .flex-initial {
    flex-direction: initial;
  }
  .flex-shrink-0 {
    flex-shrink: 0;
  }
  .flex-shrink {
    flex-shrink: 1;
  }
  .flex-grows-0 {
    flex-grow: 0;
  }
  .flex-grow {
    flex-grow: 1;
  }
  .flex-basis {
    flex-basis: 1;
  }
  .flex-basis-auto {
    flex-basis: auto;
  }
  .flex-basis-50 {
    flex-basis: 50%;
  }
  .flex-basis-33 {
    flex-basis: 33.33%;
  }
  .flex-basis-25 {
    flex-basis: 25%;
  }
  .content-center {
    align-content: center;
  }
  .content-start {
    align-content: flex-start;
  }
  .content-end {
    align-content: flex-end;
  }
  .content-between {
    align-content: space-between;
  }
  .content-around {
    align-content: space-around;
  }
  .content-evenly {
    align-content: space-evenly;
  }
  .items-start {
    align-items: flex-start;
  }
  .items-end {
    align-items: flex-end;
  }
  .items-center {
    align-items: center;
  }
  .items-baseline {
    align-items: baseline;
  }
  .items-stretch {
    align-items: stretch;
  }
  .self-auto {
    align-self: auto;
  }
  .self-start {
    align-self: flex-start;
  }
  .self-end {
    align-self: flex-end;
  }
  .self-center {
    align-self: center;
  }
  .self-stretch {
    align-self: stretch;
  }
  .self-baseline {
    align-self: baseline;
  }
  .justify-start {
    justify-content: flex-start;
  }
  .justify-end {
    justify-content: flex-end;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-around {
    justify-content: space-around;
  }
  .justify-evenly {
    justify-content: space-evenly;
  }
  .justify-items-start {
    justify-items: start;
  }
  .justify-items-end {
    justify-items: end;
  }
  .justify-items-center {
    justify-items: center;
  }
  .justify-items-stretch {
    justify-items: stretch;
  }
  .justify-self-auto {
    justify-self: auto;
  }
  .justify-self-start {
    justify-self: start;
  }
  .justify-self-end {
    justify-self: end;
  }
  .justify-self-center {
    justify-self: center;
  }
  .justify-self-stretch {
    justify-self: stretch;
  }
  .cols-1 {
    width: calc(8.3333333333% * 1);
  }
  .cols-2 {
    width: calc(8.3333333333% * 2);
  }
  .cols-3 {
    width: calc(8.3333333333% * 3);
  }
  .cols-4 {
    width: calc(8.3333333333% * 4);
  }
  .cols-5 {
    width: calc(8.3333333333% * 5);
  }
  .cols-6 {
    width: calc(8.3333333333% * 6);
  }
  .cols-7 {
    width: calc(8.3333333333% * 7);
  }
  .cols-8 {
    width: calc(8.3333333333% * 8);
  }
  .cols-9 {
    width: calc(8.3333333333% * 9);
  }
  .cols-10 {
    width: calc(8.3333333333% * 10);
  }
  .cols-11 {
    width: calc(8.3333333333% * 11);
  }
  .cols-12 {
    width: calc(8.3333333333% * 12);
  }
}
@media (max-width: 1024px) {
  .tablet\:flex-start {
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
  }
  .tablet\:flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .tablet\:flex-space-between {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .tablet\:flex-space-around {
    align-items: center;
    display: flex;
    justify-content: space-around;
  }
  .tablet\:flex-space-evenly {
    align-items: center;
    display: flex;
    justify-content: space-evenly;
  }
  .tablet\:flex-left {
    align-items: center;
    display: flex;
    justify-content: left;
  }
  .tablet\:flex-right {
    align-items: center;
    display: flex;
    justify-content: right;
  }
  .tablet\:flex-stretch {
    align-items: stretch;
    display: flex;
    justify-content: flex-start;
  }
  .tablet\:flex-end {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
  }
  .tablet\:flex-wrap {
    flex-wrap: wrap;
  }
  .tablet\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .tablet\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .tablet\:flex-row {
    flex-direction: row;
  }
  .tablet\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .tablet\:flex-col {
    flex-direction: column;
  }
  .tablet\:flex-col-reverse {
    flex-direction: column-reverse;
  }
  .tablet\:flex-initial {
    flex-direction: initial;
  }
  .tablet\:flex-shrink-0 {
    flex-shrink: 0;
  }
  .tablet\:flex-shrink {
    flex-shrink: 1;
  }
  .tablet\:flex-grows-0 {
    flex-grow: 0;
  }
  .tablet\:flex-grow {
    flex-grow: 1;
  }
  .tablet\:flex-basis {
    flex-basis: 1;
  }
  .tablet\:flex-basis-auto {
    flex-basis: auto;
  }
  .tablet\:flex-basis-50 {
    flex-basis: 50%;
  }
  .tablet\:flex-basis-33 {
    flex-basis: 33.33%;
  }
  .tablet\:flex-basis-25 {
    flex-basis: 25%;
  }
  .tablet\:content-center {
    align-content: center;
  }
  .tablet\:content-start {
    align-content: flex-start;
  }
  .tablet\:content-end {
    align-content: flex-end;
  }
  .tablet\:content-between {
    align-content: space-between;
  }
  .tablet\:content-around {
    align-content: space-around;
  }
  .tablet\:content-evenly {
    align-content: space-evenly;
  }
  .tablet\:items-start {
    align-items: flex-start;
  }
  .tablet\:items-end {
    align-items: flex-end;
  }
  .tablet\:items-center {
    align-items: center;
  }
  .tablet\:items-baseline {
    align-items: baseline;
  }
  .tablet\:items-stretch {
    align-items: stretch;
  }
  .tablet\:self-auto {
    align-self: auto;
  }
  .tablet\:self-start {
    align-self: flex-start;
  }
  .tablet\:self-end {
    align-self: flex-end;
  }
  .tablet\:self-center {
    align-self: center;
  }
  .tablet\:self-stretch {
    align-self: stretch;
  }
  .tablet\:self-baseline {
    align-self: baseline;
  }
  .tablet\:justify-start {
    justify-content: flex-start;
  }
  .tablet\:justify-end {
    justify-content: flex-end;
  }
  .tablet\:justify-center {
    justify-content: center;
  }
  .tablet\:justify-between {
    justify-content: space-between;
  }
  .tablet\:justify-around {
    justify-content: space-around;
  }
  .tablet\:justify-evenly {
    justify-content: space-evenly;
  }
  .tablet\:justify-items-start {
    justify-items: start;
  }
  .tablet\:justify-items-end {
    justify-items: end;
  }
  .tablet\:justify-items-center {
    justify-items: center;
  }
  .tablet\:justify-items-stretch {
    justify-items: stretch;
  }
  .tablet\:justify-self-auto {
    justify-self: auto;
  }
  .tablet\:justify-self-start {
    justify-self: start;
  }
  .tablet\:justify-self-end {
    justify-self: end;
  }
  .tablet\:justify-self-center {
    justify-self: center;
  }
  .tablet\:justify-self-stretch {
    justify-self: stretch;
  }
  .tablet\:cols-1 {
    width: calc(8.3333333333% * 1);
  }
  .tablet\:cols-2 {
    width: calc(8.3333333333% * 2);
  }
  .tablet\:cols-3 {
    width: calc(8.3333333333% * 3);
  }
  .tablet\:cols-4 {
    width: calc(8.3333333333% * 4);
  }
  .tablet\:cols-5 {
    width: calc(8.3333333333% * 5);
  }
  .tablet\:cols-6 {
    width: calc(8.3333333333% * 6);
  }
  .tablet\:cols-7 {
    width: calc(8.3333333333% * 7);
  }
  .tablet\:cols-8 {
    width: calc(8.3333333333% * 8);
  }
  .tablet\:cols-9 {
    width: calc(8.3333333333% * 9);
  }
  .tablet\:cols-10 {
    width: calc(8.3333333333% * 10);
  }
  .tablet\:cols-11 {
    width: calc(8.3333333333% * 11);
  }
  .tablet\:cols-12 {
    width: calc(8.3333333333% * 12);
  }
}
@media (max-width: 768px) {
  .mobile\:flex-start {
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
  }
  .mobile\:flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .mobile\:flex-space-between {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .mobile\:flex-space-around {
    align-items: center;
    display: flex;
    justify-content: space-around;
  }
  .mobile\:flex-space-evenly {
    align-items: center;
    display: flex;
    justify-content: space-evenly;
  }
  .mobile\:flex-left {
    align-items: center;
    display: flex;
    justify-content: left;
  }
  .mobile\:flex-right {
    align-items: center;
    display: flex;
    justify-content: right;
  }
  .mobile\:flex-stretch {
    align-items: stretch;
    display: flex;
    justify-content: flex-start;
  }
  .mobile\:flex-end {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
  }
  .mobile\:flex-wrap {
    flex-wrap: wrap;
  }
  .mobile\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .mobile\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .mobile\:flex-row {
    flex-direction: row;
  }
  .mobile\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .mobile\:flex-col {
    flex-direction: column;
  }
  .mobile\:flex-col-reverse {
    flex-direction: column-reverse;
  }
  .mobile\:flex-initial {
    flex-direction: initial;
  }
  .mobile\:flex-shrink-0 {
    flex-shrink: 0;
  }
  .mobile\:flex-shrink {
    flex-shrink: 1;
  }
  .mobile\:flex-grows-0 {
    flex-grow: 0;
  }
  .mobile\:flex-grow {
    flex-grow: 1;
  }
  .mobile\:flex-basis {
    flex-basis: 1;
  }
  .mobile\:flex-basis-auto {
    flex-basis: auto;
  }
  .mobile\:flex-basis-50 {
    flex-basis: 50%;
  }
  .mobile\:flex-basis-33 {
    flex-basis: 33.33%;
  }
  .mobile\:flex-basis-25 {
    flex-basis: 25%;
  }
  .mobile\:content-center {
    align-content: center;
  }
  .mobile\:content-start {
    align-content: flex-start;
  }
  .mobile\:content-end {
    align-content: flex-end;
  }
  .mobile\:content-between {
    align-content: space-between;
  }
  .mobile\:content-around {
    align-content: space-around;
  }
  .mobile\:content-evenly {
    align-content: space-evenly;
  }
  .mobile\:items-start {
    align-items: flex-start;
  }
  .mobile\:items-end {
    align-items: flex-end;
  }
  .mobile\:items-center {
    align-items: center;
  }
  .mobile\:items-baseline {
    align-items: baseline;
  }
  .mobile\:items-stretch {
    align-items: stretch;
  }
  .mobile\:self-auto {
    align-self: auto;
  }
  .mobile\:self-start {
    align-self: flex-start;
  }
  .mobile\:self-end {
    align-self: flex-end;
  }
  .mobile\:self-center {
    align-self: center;
  }
  .mobile\:self-stretch {
    align-self: stretch;
  }
  .mobile\:self-baseline {
    align-self: baseline;
  }
  .mobile\:justify-start {
    justify-content: flex-start;
  }
  .mobile\:justify-end {
    justify-content: flex-end;
  }
  .mobile\:justify-center {
    justify-content: center;
  }
  .mobile\:justify-between {
    justify-content: space-between;
  }
  .mobile\:justify-around {
    justify-content: space-around;
  }
  .mobile\:justify-evenly {
    justify-content: space-evenly;
  }
  .mobile\:justify-items-start {
    justify-items: start;
  }
  .mobile\:justify-items-end {
    justify-items: end;
  }
  .mobile\:justify-items-center {
    justify-items: center;
  }
  .mobile\:justify-items-stretch {
    justify-items: stretch;
  }
  .mobile\:justify-self-auto {
    justify-self: auto;
  }
  .mobile\:justify-self-start {
    justify-self: start;
  }
  .mobile\:justify-self-end {
    justify-self: end;
  }
  .mobile\:justify-self-center {
    justify-self: center;
  }
  .mobile\:justify-self-stretch {
    justify-self: stretch;
  }
  .mobile\:cols-1 {
    width: calc(8.3333333333% * 1);
  }
  .mobile\:cols-2 {
    width: calc(8.3333333333% * 2);
  }
  .mobile\:cols-3 {
    width: calc(8.3333333333% * 3);
  }
  .mobile\:cols-4 {
    width: calc(8.3333333333% * 4);
  }
  .mobile\:cols-5 {
    width: calc(8.3333333333% * 5);
  }
  .mobile\:cols-6 {
    width: calc(8.3333333333% * 6);
  }
  .mobile\:cols-7 {
    width: calc(8.3333333333% * 7);
  }
  .mobile\:cols-8 {
    width: calc(8.3333333333% * 8);
  }
  .mobile\:cols-9 {
    width: calc(8.3333333333% * 9);
  }
  .mobile\:cols-10 {
    width: calc(8.3333333333% * 10);
  }
  .mobile\:cols-11 {
    width: calc(8.3333333333% * 11);
  }
  .mobile\:cols-12 {
    width: calc(8.3333333333% * 12);
  }
}
.brandui-flip {
  background-color: transparent;
  perspective: 62.5rem;
}
.brandui-flip .brandui-flip-inner,
.brandui-flip .brandui-flip-front,
.brandui-flip .brandui-flip-back {
  display: block;
  position: relative;
  transition: var(--transition-slow);
  width: 100%;
  transform-style: preserve-3d;
}
.brandui-flip .brandui-flip-front,
.brandui-flip .brandui-flip-back {
  backface-visibility: hidden;
}
.brandui-flip .brandui-flip-back {
  inset: 0;
  margin: 0;
  position: absolute;
  box-sizing: border-box;
  transform: rotateY(180deg);
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.brandui-flip .brandui-flip-back-content {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--default);
}
.brandui-flip.flipped .brandui-flip-inner {
  transform: rotateY(180deg);
}
.brandui-flip.flipped-reverse .brandui-flip-inner {
  transform: rotateY(-180deg);
}

.decoration-bg {
  pointer-events: none;
}
.decoration-bg.dot-wave {
  position: absolute;
  inset: 0;
  background-size: contain;
  mix-blend-mode: screen;
  z-index: -1;
  padding-bottom: 28rem;
}
.decoration-bg.dot-wave-1 {
  background: transparent url("https://res.cloudinary.com/snyk/image/upload/snyk-mktg-brandui/decorations/decoration-bg-dot-wave.svg") center no-repeat;
}
.decoration-bg.dot-wave-1.dot-wave-center-right {
  top: 20rem;
  right: -50rem;
  scale: 1;
  transform: rotateY(180deg);
}
.decoration-bg.dot-wave-1.dot-wave-center-middle {
  top: 33rem;
  right: -2rem;
  scale: 1.25;
  transform: rotateY(180deg);
}
.decoration-bg.dot-wave-2 {
  background: transparent url("https://res.cloudinary.com/snyk/image/upload/snyk-mktg-brandui/decorations/decoration-bg-dot-wave-2.svg") center no-repeat;
}
.decoration-bg.dot-wave-3 {
  background: transparent url("https://res.cloudinary.com/snyk/image/upload/snyk-mktg-brandui/decorations/decoration-bg-dot-wave-3.svg") center no-repeat;
}
.decoration-bg.dot-wave-3.dot-wave-bottom-right {
  bottom: -10rem;
  right: -40rem;
  transform: rotate(180deg);
}
.decoration-bg.dot-wave-top-right {
  top: 0;
  right: -40rem;
}
.decoration-bg.dot-wave-top-right-high {
  top: -75rem;
  right: -60rem;
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .decoration-bg.dot-wave-top-right-high {
    top: -60rem;
    right: -13rem;
  }
}
@media (max-width: 768px) {
  .decoration-bg.dot-wave-top-right-high {
    top: -40rem;
    right: -10rem;
  }
}
.decoration-bg.dot-wave-bottom-right {
  bottom: -10rem;
  right: -40rem;
}
.decoration-bg.dot-wave-top-left {
  top: -20rem;
  left: -50rem;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .decoration-bg.dot-wave-top-left {
    top: -30rem;
  }
}
.decoration-bg.dot-wave-top-left-high {
  top: -75rem;
  left: -60rem;
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .decoration-bg.dot-wave-top-left-high {
    top: -60rem;
    left: -13rem;
  }
}
@media (max-width: 768px) {
  .decoration-bg.dot-wave-top-left-high {
    top: -40rem;
    left: -10rem;
  }
}
.decoration-bg.dot-wave-bottom-left {
  bottom: -5rem;
  left: -40rem;
}
.decoration-bg.dot-wave-center-right {
  top: 30rem;
  right: -26rem;
}

.wide-wrapper,
.wide-container,
.content-block,
.brandui-section,
.brandui-container {
  z-index: 0;
  position: relative;
}

.wide-wrapper,
.wide-container,
.wide-container-max,
.wide-wrapper-outer-content {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.wide-container-max {
  max-width: 2560px;
}

.wide-wrapper-outer-content {
  width: calc(100vw - 2.25rem);
}

.content-block {
  max-width: calc(var(--content-max) / 12 * 12);
  width: calc(100vw - var(--padding-huge));
  margin-right: auto;
  margin-left: auto;
}
@media (width <= 580px) {
  .content-block {
    width: calc(100vw - var(--padding-extra-large));
  }
}

.brandui-section {
  margin: var(--padding-huge) 0;
  padding: 0 var(--padding-huge) var(--padding-extra-large);
  display: block;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.brandui-section .section-intro, .brandui-section .section-intro-left-aligned {
  max-width: calc(1440px / 12 * 6);
  margin: auto;
  margin-bottom: var(--padding-huge);
  display: flex;
  flex-direction: column;
  gap: var(--padding-medium);
  align-items: center;
  text-align: center;
}
.brandui-section .section-intro.solo-title, .brandui-section .solo-title.section-intro-left-aligned {
  margin-bottom: var(--padding-large);
}
.brandui-section .section-intro-left-aligned {
  align-items: start;
  text-align: left;
  margin: 0;
  margin-bottom: var(--padding-huge);
  max-width: calc(1440px / 12 * 8);
}
@media (max-width: 1024px) {
  .brandui-section {
    padding: 0 var(--padding-extra-large) var(--padding-medium);
  }
}
@media (max-width: 768px) {
  .brandui-section {
    padding: 0 var(--padding-large) var(--padding-small);
  }
}

.brandui-container {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.brandui-backdrop {
  background: color-mix(in srgb, var(--ui-accent), transparent 10%);
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  inset: 0;
  z-index: 100;
}

@media (max-width: 8640px) {
  .border-box {
    box-sizing: border-box;
  }
  .content-box {
    box-sizing: content-box;
  }
  .-z-100 {
    z-index: -100;
  }
  .-z-99 {
    z-index: -99;
  }
  .-z-98 {
    z-index: -98;
  }
  .-z-97 {
    z-index: -97;
  }
  .-z-96 {
    z-index: -96;
  }
  .-z-95 {
    z-index: -95;
  }
  .-z-94 {
    z-index: -94;
  }
  .-z-93 {
    z-index: -93;
  }
  .-z-92 {
    z-index: -92;
  }
  .-z-91 {
    z-index: -91;
  }
  .-z-90 {
    z-index: -90;
  }
  .-z-89 {
    z-index: -89;
  }
  .-z-88 {
    z-index: -88;
  }
  .-z-87 {
    z-index: -87;
  }
  .-z-86 {
    z-index: -86;
  }
  .-z-85 {
    z-index: -85;
  }
  .-z-84 {
    z-index: -84;
  }
  .-z-83 {
    z-index: -83;
  }
  .-z-82 {
    z-index: -82;
  }
  .-z-81 {
    z-index: -81;
  }
  .-z-80 {
    z-index: -80;
  }
  .-z-79 {
    z-index: -79;
  }
  .-z-78 {
    z-index: -78;
  }
  .-z-77 {
    z-index: -77;
  }
  .-z-76 {
    z-index: -76;
  }
  .-z-75 {
    z-index: -75;
  }
  .-z-74 {
    z-index: -74;
  }
  .-z-73 {
    z-index: -73;
  }
  .-z-72 {
    z-index: -72;
  }
  .-z-71 {
    z-index: -71;
  }
  .-z-70 {
    z-index: -70;
  }
  .-z-69 {
    z-index: -69;
  }
  .-z-68 {
    z-index: -68;
  }
  .-z-67 {
    z-index: -67;
  }
  .-z-66 {
    z-index: -66;
  }
  .-z-65 {
    z-index: -65;
  }
  .-z-64 {
    z-index: -64;
  }
  .-z-63 {
    z-index: -63;
  }
  .-z-62 {
    z-index: -62;
  }
  .-z-61 {
    z-index: -61;
  }
  .-z-60 {
    z-index: -60;
  }
  .-z-59 {
    z-index: -59;
  }
  .-z-58 {
    z-index: -58;
  }
  .-z-57 {
    z-index: -57;
  }
  .-z-56 {
    z-index: -56;
  }
  .-z-55 {
    z-index: -55;
  }
  .-z-54 {
    z-index: -54;
  }
  .-z-53 {
    z-index: -53;
  }
  .-z-52 {
    z-index: -52;
  }
  .-z-51 {
    z-index: -51;
  }
  .-z-50 {
    z-index: -50;
  }
  .-z-49 {
    z-index: -49;
  }
  .-z-48 {
    z-index: -48;
  }
  .-z-47 {
    z-index: -47;
  }
  .-z-46 {
    z-index: -46;
  }
  .-z-45 {
    z-index: -45;
  }
  .-z-44 {
    z-index: -44;
  }
  .-z-43 {
    z-index: -43;
  }
  .-z-42 {
    z-index: -42;
  }
  .-z-41 {
    z-index: -41;
  }
  .-z-40 {
    z-index: -40;
  }
  .-z-39 {
    z-index: -39;
  }
  .-z-38 {
    z-index: -38;
  }
  .-z-37 {
    z-index: -37;
  }
  .-z-36 {
    z-index: -36;
  }
  .-z-35 {
    z-index: -35;
  }
  .-z-34 {
    z-index: -34;
  }
  .-z-33 {
    z-index: -33;
  }
  .-z-32 {
    z-index: -32;
  }
  .-z-31 {
    z-index: -31;
  }
  .-z-30 {
    z-index: -30;
  }
  .-z-29 {
    z-index: -29;
  }
  .-z-28 {
    z-index: -28;
  }
  .-z-27 {
    z-index: -27;
  }
  .-z-26 {
    z-index: -26;
  }
  .-z-25 {
    z-index: -25;
  }
  .-z-24 {
    z-index: -24;
  }
  .-z-23 {
    z-index: -23;
  }
  .-z-22 {
    z-index: -22;
  }
  .-z-21 {
    z-index: -21;
  }
  .-z-20 {
    z-index: -20;
  }
  .-z-19 {
    z-index: -19;
  }
  .-z-18 {
    z-index: -18;
  }
  .-z-17 {
    z-index: -17;
  }
  .-z-16 {
    z-index: -16;
  }
  .-z-15 {
    z-index: -15;
  }
  .-z-14 {
    z-index: -14;
  }
  .-z-13 {
    z-index: -13;
  }
  .-z-12 {
    z-index: -12;
  }
  .-z-11 {
    z-index: -11;
  }
  .-z-10 {
    z-index: -10;
  }
  .-z-9 {
    z-index: -9;
  }
  .-z-8 {
    z-index: -8;
  }
  .-z-7 {
    z-index: -7;
  }
  .-z-6 {
    z-index: -6;
  }
  .-z-5 {
    z-index: -5;
  }
  .-z-4 {
    z-index: -4;
  }
  .-z-3 {
    z-index: -3;
  }
  .-z-2 {
    z-index: -2;
  }
  .-z-1 {
    z-index: -1;
  }
  .z-0 {
    z-index: 0;
  }
  .z-1 {
    z-index: 1;
  }
  .z-2 {
    z-index: 2;
  }
  .z-3 {
    z-index: 3;
  }
  .z-4 {
    z-index: 4;
  }
  .z-5 {
    z-index: 5;
  }
  .z-6 {
    z-index: 6;
  }
  .z-7 {
    z-index: 7;
  }
  .z-8 {
    z-index: 8;
  }
  .z-9 {
    z-index: 9;
  }
  .z-10 {
    z-index: 10;
  }
  .z-11 {
    z-index: 11;
  }
  .z-12 {
    z-index: 12;
  }
  .z-13 {
    z-index: 13;
  }
  .z-14 {
    z-index: 14;
  }
  .z-15 {
    z-index: 15;
  }
  .z-16 {
    z-index: 16;
  }
  .z-17 {
    z-index: 17;
  }
  .z-18 {
    z-index: 18;
  }
  .z-19 {
    z-index: 19;
  }
  .z-20 {
    z-index: 20;
  }
  .z-21 {
    z-index: 21;
  }
  .z-22 {
    z-index: 22;
  }
  .z-23 {
    z-index: 23;
  }
  .z-24 {
    z-index: 24;
  }
  .z-25 {
    z-index: 25;
  }
  .z-26 {
    z-index: 26;
  }
  .z-27 {
    z-index: 27;
  }
  .z-28 {
    z-index: 28;
  }
  .z-29 {
    z-index: 29;
  }
  .z-30 {
    z-index: 30;
  }
  .z-31 {
    z-index: 31;
  }
  .z-32 {
    z-index: 32;
  }
  .z-33 {
    z-index: 33;
  }
  .z-34 {
    z-index: 34;
  }
  .z-35 {
    z-index: 35;
  }
  .z-36 {
    z-index: 36;
  }
  .z-37 {
    z-index: 37;
  }
  .z-38 {
    z-index: 38;
  }
  .z-39 {
    z-index: 39;
  }
  .z-40 {
    z-index: 40;
  }
  .z-41 {
    z-index: 41;
  }
  .z-42 {
    z-index: 42;
  }
  .z-43 {
    z-index: 43;
  }
  .z-44 {
    z-index: 44;
  }
  .z-45 {
    z-index: 45;
  }
  .z-46 {
    z-index: 46;
  }
  .z-47 {
    z-index: 47;
  }
  .z-48 {
    z-index: 48;
  }
  .z-49 {
    z-index: 49;
  }
  .z-50 {
    z-index: 50;
  }
  .z-51 {
    z-index: 51;
  }
  .z-52 {
    z-index: 52;
  }
  .z-53 {
    z-index: 53;
  }
  .z-54 {
    z-index: 54;
  }
  .z-55 {
    z-index: 55;
  }
  .z-56 {
    z-index: 56;
  }
  .z-57 {
    z-index: 57;
  }
  .z-58 {
    z-index: 58;
  }
  .z-59 {
    z-index: 59;
  }
  .z-60 {
    z-index: 60;
  }
  .z-61 {
    z-index: 61;
  }
  .z-62 {
    z-index: 62;
  }
  .z-63 {
    z-index: 63;
  }
  .z-64 {
    z-index: 64;
  }
  .z-65 {
    z-index: 65;
  }
  .z-66 {
    z-index: 66;
  }
  .z-67 {
    z-index: 67;
  }
  .z-68 {
    z-index: 68;
  }
  .z-69 {
    z-index: 69;
  }
  .z-70 {
    z-index: 70;
  }
  .z-71 {
    z-index: 71;
  }
  .z-72 {
    z-index: 72;
  }
  .z-73 {
    z-index: 73;
  }
  .z-74 {
    z-index: 74;
  }
  .z-75 {
    z-index: 75;
  }
  .z-76 {
    z-index: 76;
  }
  .z-77 {
    z-index: 77;
  }
  .z-78 {
    z-index: 78;
  }
  .z-79 {
    z-index: 79;
  }
  .z-80 {
    z-index: 80;
  }
  .z-81 {
    z-index: 81;
  }
  .z-82 {
    z-index: 82;
  }
  .z-83 {
    z-index: 83;
  }
  .z-84 {
    z-index: 84;
  }
  .z-85 {
    z-index: 85;
  }
  .z-86 {
    z-index: 86;
  }
  .z-87 {
    z-index: 87;
  }
  .z-88 {
    z-index: 88;
  }
  .z-89 {
    z-index: 89;
  }
  .z-90 {
    z-index: 90;
  }
  .z-91 {
    z-index: 91;
  }
  .z-92 {
    z-index: 92;
  }
  .z-93 {
    z-index: 93;
  }
  .z-94 {
    z-index: 94;
  }
  .z-95 {
    z-index: 95;
  }
  .z-96 {
    z-index: 96;
  }
  .z-97 {
    z-index: 97;
  }
  .z-98 {
    z-index: 98;
  }
  .z-99 {
    z-index: 99;
  }
  .z-100 {
    z-index: 100;
  }
  .inset,
  .inset-0 {
    inset: 0;
  }
  .top-0 {
    top: 0;
  }
  .right-0 {
    right: 0;
  }
  .bottom-0 {
    bottom: 0;
  }
  .left-0 {
    left: 0;
  }
  .top-none {
    top: var(--padding-none);
  }
  .right-none {
    right: var(--padding-none);
  }
  .bottom-none {
    bottom: var(--padding-none);
  }
  .left-none {
    left: var(--padding-none);
  }
  .top-hairline {
    top: var(--padding-hairline);
  }
  .right-hairline {
    right: var(--padding-hairline);
  }
  .bottom-hairline {
    bottom: var(--padding-hairline);
  }
  .left-hairline {
    left: var(--padding-hairline);
  }
  .top-thin {
    top: var(--padding-thin);
  }
  .right-thin {
    right: var(--padding-thin);
  }
  .bottom-thin {
    bottom: var(--padding-thin);
  }
  .left-thin {
    left: var(--padding-thin);
  }
  .top-slim {
    top: var(--padding-slim);
  }
  .right-slim {
    right: var(--padding-slim);
  }
  .bottom-slim {
    bottom: var(--padding-slim);
  }
  .left-slim {
    left: var(--padding-slim);
  }
  .top-extra-small {
    top: var(--padding-extra-small);
  }
  .right-extra-small {
    right: var(--padding-extra-small);
  }
  .bottom-extra-small {
    bottom: var(--padding-extra-small);
  }
  .left-extra-small {
    left: var(--padding-extra-small);
  }
  .top-small {
    top: var(--padding-small);
  }
  .right-small {
    right: var(--padding-small);
  }
  .bottom-small {
    bottom: var(--padding-small);
  }
  .left-small {
    left: var(--padding-small);
  }
  .top-medium {
    top: var(--padding-medium);
  }
  .right-medium {
    right: var(--padding-medium);
  }
  .bottom-medium {
    bottom: var(--padding-medium);
  }
  .left-medium {
    left: var(--padding-medium);
  }
  .top-large {
    top: var(--padding-large);
  }
  .right-large {
    right: var(--padding-large);
  }
  .bottom-large {
    bottom: var(--padding-large);
  }
  .left-large {
    left: var(--padding-large);
  }
  .top-extra-large {
    top: var(--padding-extra-large);
  }
  .right-extra-large {
    right: var(--padding-extra-large);
  }
  .bottom-extra-large {
    bottom: var(--padding-extra-large);
  }
  .left-extra-large {
    left: var(--padding-extra-large);
  }
  .top-huge {
    top: var(--padding-huge);
  }
  .right-huge {
    right: var(--padding-huge);
  }
  .bottom-huge {
    bottom: var(--padding-huge);
  }
  .left-huge {
    left: var(--padding-huge);
  }
  .d-none,
  .hover\:d-none:hover,
  .focus\:d-none:focus,
  .focus-within\:d-none:focus-within,
  .group:hover .group-hover\:d-none {
    display: none;
  }
  .d-block,
  .hover\:d-block:hover,
  .focus\:d-block:focus,
  .focus-within\:d-block:focus-within,
  .group:hover .group-hover\:d-block {
    display: block;
  }
  .d-inline-block,
  .hover\:d-inline-block:hover,
  .focus\:d-inline-block:focus,
  .focus-within\:d-inline-block:focus-within,
  .group:hover .group-hover\:d-inline-block {
    display: inline-block;
  }
  .d-flex,
  .hover\:d-flex:hover,
  .focus\:d-flex:focus,
  .focus-within\:d-flex:focus-within,
  .group:hover .group-hover\:d-flex {
    display: flex;
  }
  .d-inline-flex,
  .hover\:d-inline-flex:hover,
  .focus\:d-inline-flex:focus,
  .focus-within\:d-inline-flex:focus-within,
  .group:hover .group-hover\:d-inline-flex {
    display: inline-flex;
  }
  .d-grid,
  .hover\:d-grid:hover,
  .focus\:d-grid:focus,
  .focus-within\:d-grid:focus-within,
  .group:hover .group-hover\:d-grid {
    display: grid;
  }
  .d-inline-grid,
  .hover\:d-inline-grid:hover,
  .focus\:d-inline-grid:focus,
  .focus-within\:d-inline-grid:focus-within,
  .group:hover .group-hover\:d-inline-grid {
    display: inline-grid;
  }
  .p-static,
  .hover\:p-static:hover,
  .focus\:p-static:focus,
  .focus-within\:p-static:focus-within,
  .group:hover .group-hover\:p-static {
    position: static;
  }
  .p-fixed,
  .hover\:p-fixed:hover,
  .focus\:p-fixed:focus,
  .focus-within\:p-fixed:focus-within,
  .group:hover .group-hover\:p-fixed {
    position: fixed;
  }
  .p-absolute,
  .hover\:p-absolute:hover,
  .focus\:p-absolute:focus,
  .focus-within\:p-absolute:focus-within,
  .group:hover .group-hover\:p-absolute {
    position: absolute;
  }
  .p-relative,
  .hover\:p-relative:hover,
  .focus\:p-relative:focus,
  .focus-within\:p-relative:focus-within,
  .group:hover .group-hover\:p-relative {
    position: relative;
  }
  .p-sticky,
  .hover\:p-sticky:hover,
  .focus\:p-sticky:focus,
  .focus-within\:p-sticky:focus-within,
  .group:hover .group-hover\:p-sticky {
    position: sticky;
  }
  .overflow-hidden,
  .hover\:overflow-hidden:hover,
  .focus\:overflow-hidden:focus,
  .focus-within\:overflow-hidden:focus-within,
  .group:hover .group-hover\:overflow-hidden {
    overflow: hidden;
  }
  .overflow-x-hidden,
  .hover\:overflow-x-hidden:hover,
  .focus\:overflow-x-hidden:focus,
  .focus-within\:overflow-x-hidden:focus-within,
  .group:hover .group-hover\:overflow-x-hidden {
    overflow-x: hidden;
  }
  .overflow-y-hidden,
  .hover\:overflow-y-hidden:hover,
  .focus\:overflow-y-hidden:focus,
  .focus-within\:overflow-y-hidden:focus-within,
  .group:hover .group-hover\:overflow-y-hidden {
    overflow-y: hidden;
  }
  .overflow-clip,
  .hover\:overflow-clip:hover,
  .focus\:overflow-clip:focus,
  .focus-within\:overflow-clip:focus-within,
  .group:hover .group-hover\:overflow-clip {
    overflow: clip;
  }
  .overflow-x-clip,
  .hover\:overflow-x-clip:hover,
  .focus\:overflow-x-clip:focus,
  .focus-within\:overflow-x-clip:focus-within,
  .group:hover .group-hover\:overflow-x-clip {
    overflow-x: clip;
  }
  .overflow-y-clip,
  .hover\:overflow-y-clip:hover,
  .focus\:overflow-y-clip:focus,
  .focus-within\:overflow-y-clip:focus-within,
  .group:hover .group-hover\:overflow-y-clip {
    overflow-y: clip;
  }
  .overflow-visible,
  .hover\:overflow-visible:hover,
  .focus\:overflow-visible:focus,
  .focus-within\:overflow-visible:focus-within,
  .group:hover .group-hover\:overflow-visible {
    overflow: visible;
  }
  .overflow-x-visible,
  .hover\:overflow-x-visible:hover,
  .focus\:overflow-x-visible:focus,
  .focus-within\:overflow-x-visible:focus-within,
  .group:hover .group-hover\:overflow-x-visible {
    overflow-x: visible;
  }
  .overflow-y-visible,
  .hover\:overflow-y-visible:hover,
  .focus\:overflow-y-visible:focus,
  .focus-within\:overflow-y-visible:focus-within,
  .group:hover .group-hover\:overflow-y-visible {
    overflow-y: visible;
  }
  .overflow-scroll,
  .hover\:overflow-scroll:hover,
  .focus\:overflow-scroll:focus,
  .focus-within\:overflow-scroll:focus-within,
  .group:hover .group-hover\:overflow-scroll {
    overflow: scroll;
  }
  .overflow-x-scroll,
  .hover\:overflow-x-scroll:hover,
  .focus\:overflow-x-scroll:focus,
  .focus-within\:overflow-x-scroll:focus-within,
  .group:hover .group-hover\:overflow-x-scroll {
    overflow-x: scroll;
  }
  .overflow-y-scroll,
  .hover\:overflow-y-scroll:hover,
  .focus\:overflow-y-scroll:focus,
  .focus-within\:overflow-y-scroll:focus-within,
  .group:hover .group-hover\:overflow-y-scroll {
    overflow-y: scroll;
  }
  .overflow-auto,
  .hover\:overflow-auto:hover,
  .focus\:overflow-auto:focus,
  .focus-within\:overflow-auto:focus-within,
  .group:hover .group-hover\:overflow-auto {
    overflow: auto;
  }
  .overflow-x-auto,
  .hover\:overflow-x-auto:hover,
  .focus\:overflow-x-auto:focus,
  .focus-within\:overflow-x-auto:focus-within,
  .group:hover .group-hover\:overflow-x-auto {
    overflow-x: auto;
  }
  .overflow-y-auto,
  .hover\:overflow-y-auto:hover,
  .focus\:overflow-y-auto:focus,
  .focus-within\:overflow-y-auto:focus-within,
  .group:hover .group-hover\:overflow-y-auto {
    overflow-y: auto;
  }
  .overflow-hidden,
  .hover\:overflow-hidden:hover,
  .focus\:overflow-hidden:focus,
  .focus-within\:overflow-hidden:focus-within,
  .group:hover .group-hover\:overflow-hidden {
    overflow: hidden;
  }
  .scroll-lock {
    overflow: hidden !important;
  }
}
@media (max-width: 1024px) {
  .tablet\:border-box {
    box-sizing: border-box;
  }
  .tablet\:content-box {
    box-sizing: content-box;
  }
  .tablet\:-z-100 {
    z-index: -100;
  }
  .tablet\:-z-99 {
    z-index: -99;
  }
  .tablet\:-z-98 {
    z-index: -98;
  }
  .tablet\:-z-97 {
    z-index: -97;
  }
  .tablet\:-z-96 {
    z-index: -96;
  }
  .tablet\:-z-95 {
    z-index: -95;
  }
  .tablet\:-z-94 {
    z-index: -94;
  }
  .tablet\:-z-93 {
    z-index: -93;
  }
  .tablet\:-z-92 {
    z-index: -92;
  }
  .tablet\:-z-91 {
    z-index: -91;
  }
  .tablet\:-z-90 {
    z-index: -90;
  }
  .tablet\:-z-89 {
    z-index: -89;
  }
  .tablet\:-z-88 {
    z-index: -88;
  }
  .tablet\:-z-87 {
    z-index: -87;
  }
  .tablet\:-z-86 {
    z-index: -86;
  }
  .tablet\:-z-85 {
    z-index: -85;
  }
  .tablet\:-z-84 {
    z-index: -84;
  }
  .tablet\:-z-83 {
    z-index: -83;
  }
  .tablet\:-z-82 {
    z-index: -82;
  }
  .tablet\:-z-81 {
    z-index: -81;
  }
  .tablet\:-z-80 {
    z-index: -80;
  }
  .tablet\:-z-79 {
    z-index: -79;
  }
  .tablet\:-z-78 {
    z-index: -78;
  }
  .tablet\:-z-77 {
    z-index: -77;
  }
  .tablet\:-z-76 {
    z-index: -76;
  }
  .tablet\:-z-75 {
    z-index: -75;
  }
  .tablet\:-z-74 {
    z-index: -74;
  }
  .tablet\:-z-73 {
    z-index: -73;
  }
  .tablet\:-z-72 {
    z-index: -72;
  }
  .tablet\:-z-71 {
    z-index: -71;
  }
  .tablet\:-z-70 {
    z-index: -70;
  }
  .tablet\:-z-69 {
    z-index: -69;
  }
  .tablet\:-z-68 {
    z-index: -68;
  }
  .tablet\:-z-67 {
    z-index: -67;
  }
  .tablet\:-z-66 {
    z-index: -66;
  }
  .tablet\:-z-65 {
    z-index: -65;
  }
  .tablet\:-z-64 {
    z-index: -64;
  }
  .tablet\:-z-63 {
    z-index: -63;
  }
  .tablet\:-z-62 {
    z-index: -62;
  }
  .tablet\:-z-61 {
    z-index: -61;
  }
  .tablet\:-z-60 {
    z-index: -60;
  }
  .tablet\:-z-59 {
    z-index: -59;
  }
  .tablet\:-z-58 {
    z-index: -58;
  }
  .tablet\:-z-57 {
    z-index: -57;
  }
  .tablet\:-z-56 {
    z-index: -56;
  }
  .tablet\:-z-55 {
    z-index: -55;
  }
  .tablet\:-z-54 {
    z-index: -54;
  }
  .tablet\:-z-53 {
    z-index: -53;
  }
  .tablet\:-z-52 {
    z-index: -52;
  }
  .tablet\:-z-51 {
    z-index: -51;
  }
  .tablet\:-z-50 {
    z-index: -50;
  }
  .tablet\:-z-49 {
    z-index: -49;
  }
  .tablet\:-z-48 {
    z-index: -48;
  }
  .tablet\:-z-47 {
    z-index: -47;
  }
  .tablet\:-z-46 {
    z-index: -46;
  }
  .tablet\:-z-45 {
    z-index: -45;
  }
  .tablet\:-z-44 {
    z-index: -44;
  }
  .tablet\:-z-43 {
    z-index: -43;
  }
  .tablet\:-z-42 {
    z-index: -42;
  }
  .tablet\:-z-41 {
    z-index: -41;
  }
  .tablet\:-z-40 {
    z-index: -40;
  }
  .tablet\:-z-39 {
    z-index: -39;
  }
  .tablet\:-z-38 {
    z-index: -38;
  }
  .tablet\:-z-37 {
    z-index: -37;
  }
  .tablet\:-z-36 {
    z-index: -36;
  }
  .tablet\:-z-35 {
    z-index: -35;
  }
  .tablet\:-z-34 {
    z-index: -34;
  }
  .tablet\:-z-33 {
    z-index: -33;
  }
  .tablet\:-z-32 {
    z-index: -32;
  }
  .tablet\:-z-31 {
    z-index: -31;
  }
  .tablet\:-z-30 {
    z-index: -30;
  }
  .tablet\:-z-29 {
    z-index: -29;
  }
  .tablet\:-z-28 {
    z-index: -28;
  }
  .tablet\:-z-27 {
    z-index: -27;
  }
  .tablet\:-z-26 {
    z-index: -26;
  }
  .tablet\:-z-25 {
    z-index: -25;
  }
  .tablet\:-z-24 {
    z-index: -24;
  }
  .tablet\:-z-23 {
    z-index: -23;
  }
  .tablet\:-z-22 {
    z-index: -22;
  }
  .tablet\:-z-21 {
    z-index: -21;
  }
  .tablet\:-z-20 {
    z-index: -20;
  }
  .tablet\:-z-19 {
    z-index: -19;
  }
  .tablet\:-z-18 {
    z-index: -18;
  }
  .tablet\:-z-17 {
    z-index: -17;
  }
  .tablet\:-z-16 {
    z-index: -16;
  }
  .tablet\:-z-15 {
    z-index: -15;
  }
  .tablet\:-z-14 {
    z-index: -14;
  }
  .tablet\:-z-13 {
    z-index: -13;
  }
  .tablet\:-z-12 {
    z-index: -12;
  }
  .tablet\:-z-11 {
    z-index: -11;
  }
  .tablet\:-z-10 {
    z-index: -10;
  }
  .tablet\:-z-9 {
    z-index: -9;
  }
  .tablet\:-z-8 {
    z-index: -8;
  }
  .tablet\:-z-7 {
    z-index: -7;
  }
  .tablet\:-z-6 {
    z-index: -6;
  }
  .tablet\:-z-5 {
    z-index: -5;
  }
  .tablet\:-z-4 {
    z-index: -4;
  }
  .tablet\:-z-3 {
    z-index: -3;
  }
  .tablet\:-z-2 {
    z-index: -2;
  }
  .tablet\:-z-1 {
    z-index: -1;
  }
  .tablet\:z-0 {
    z-index: 0;
  }
  .tablet\:z-1 {
    z-index: 1;
  }
  .tablet\:z-2 {
    z-index: 2;
  }
  .tablet\:z-3 {
    z-index: 3;
  }
  .tablet\:z-4 {
    z-index: 4;
  }
  .tablet\:z-5 {
    z-index: 5;
  }
  .tablet\:z-6 {
    z-index: 6;
  }
  .tablet\:z-7 {
    z-index: 7;
  }
  .tablet\:z-8 {
    z-index: 8;
  }
  .tablet\:z-9 {
    z-index: 9;
  }
  .tablet\:z-10 {
    z-index: 10;
  }
  .tablet\:z-11 {
    z-index: 11;
  }
  .tablet\:z-12 {
    z-index: 12;
  }
  .tablet\:z-13 {
    z-index: 13;
  }
  .tablet\:z-14 {
    z-index: 14;
  }
  .tablet\:z-15 {
    z-index: 15;
  }
  .tablet\:z-16 {
    z-index: 16;
  }
  .tablet\:z-17 {
    z-index: 17;
  }
  .tablet\:z-18 {
    z-index: 18;
  }
  .tablet\:z-19 {
    z-index: 19;
  }
  .tablet\:z-20 {
    z-index: 20;
  }
  .tablet\:z-21 {
    z-index: 21;
  }
  .tablet\:z-22 {
    z-index: 22;
  }
  .tablet\:z-23 {
    z-index: 23;
  }
  .tablet\:z-24 {
    z-index: 24;
  }
  .tablet\:z-25 {
    z-index: 25;
  }
  .tablet\:z-26 {
    z-index: 26;
  }
  .tablet\:z-27 {
    z-index: 27;
  }
  .tablet\:z-28 {
    z-index: 28;
  }
  .tablet\:z-29 {
    z-index: 29;
  }
  .tablet\:z-30 {
    z-index: 30;
  }
  .tablet\:z-31 {
    z-index: 31;
  }
  .tablet\:z-32 {
    z-index: 32;
  }
  .tablet\:z-33 {
    z-index: 33;
  }
  .tablet\:z-34 {
    z-index: 34;
  }
  .tablet\:z-35 {
    z-index: 35;
  }
  .tablet\:z-36 {
    z-index: 36;
  }
  .tablet\:z-37 {
    z-index: 37;
  }
  .tablet\:z-38 {
    z-index: 38;
  }
  .tablet\:z-39 {
    z-index: 39;
  }
  .tablet\:z-40 {
    z-index: 40;
  }
  .tablet\:z-41 {
    z-index: 41;
  }
  .tablet\:z-42 {
    z-index: 42;
  }
  .tablet\:z-43 {
    z-index: 43;
  }
  .tablet\:z-44 {
    z-index: 44;
  }
  .tablet\:z-45 {
    z-index: 45;
  }
  .tablet\:z-46 {
    z-index: 46;
  }
  .tablet\:z-47 {
    z-index: 47;
  }
  .tablet\:z-48 {
    z-index: 48;
  }
  .tablet\:z-49 {
    z-index: 49;
  }
  .tablet\:z-50 {
    z-index: 50;
  }
  .tablet\:z-51 {
    z-index: 51;
  }
  .tablet\:z-52 {
    z-index: 52;
  }
  .tablet\:z-53 {
    z-index: 53;
  }
  .tablet\:z-54 {
    z-index: 54;
  }
  .tablet\:z-55 {
    z-index: 55;
  }
  .tablet\:z-56 {
    z-index: 56;
  }
  .tablet\:z-57 {
    z-index: 57;
  }
  .tablet\:z-58 {
    z-index: 58;
  }
  .tablet\:z-59 {
    z-index: 59;
  }
  .tablet\:z-60 {
    z-index: 60;
  }
  .tablet\:z-61 {
    z-index: 61;
  }
  .tablet\:z-62 {
    z-index: 62;
  }
  .tablet\:z-63 {
    z-index: 63;
  }
  .tablet\:z-64 {
    z-index: 64;
  }
  .tablet\:z-65 {
    z-index: 65;
  }
  .tablet\:z-66 {
    z-index: 66;
  }
  .tablet\:z-67 {
    z-index: 67;
  }
  .tablet\:z-68 {
    z-index: 68;
  }
  .tablet\:z-69 {
    z-index: 69;
  }
  .tablet\:z-70 {
    z-index: 70;
  }
  .tablet\:z-71 {
    z-index: 71;
  }
  .tablet\:z-72 {
    z-index: 72;
  }
  .tablet\:z-73 {
    z-index: 73;
  }
  .tablet\:z-74 {
    z-index: 74;
  }
  .tablet\:z-75 {
    z-index: 75;
  }
  .tablet\:z-76 {
    z-index: 76;
  }
  .tablet\:z-77 {
    z-index: 77;
  }
  .tablet\:z-78 {
    z-index: 78;
  }
  .tablet\:z-79 {
    z-index: 79;
  }
  .tablet\:z-80 {
    z-index: 80;
  }
  .tablet\:z-81 {
    z-index: 81;
  }
  .tablet\:z-82 {
    z-index: 82;
  }
  .tablet\:z-83 {
    z-index: 83;
  }
  .tablet\:z-84 {
    z-index: 84;
  }
  .tablet\:z-85 {
    z-index: 85;
  }
  .tablet\:z-86 {
    z-index: 86;
  }
  .tablet\:z-87 {
    z-index: 87;
  }
  .tablet\:z-88 {
    z-index: 88;
  }
  .tablet\:z-89 {
    z-index: 89;
  }
  .tablet\:z-90 {
    z-index: 90;
  }
  .tablet\:z-91 {
    z-index: 91;
  }
  .tablet\:z-92 {
    z-index: 92;
  }
  .tablet\:z-93 {
    z-index: 93;
  }
  .tablet\:z-94 {
    z-index: 94;
  }
  .tablet\:z-95 {
    z-index: 95;
  }
  .tablet\:z-96 {
    z-index: 96;
  }
  .tablet\:z-97 {
    z-index: 97;
  }
  .tablet\:z-98 {
    z-index: 98;
  }
  .tablet\:z-99 {
    z-index: 99;
  }
  .tablet\:z-100 {
    z-index: 100;
  }
  .tablet\:inset,
  .tablet\:inset-0 {
    inset: 0;
  }
  .tablet\:top-0 {
    top: 0;
  }
  .tablet\:right-0 {
    right: 0;
  }
  .tablet\:bottom-0 {
    bottom: 0;
  }
  .tablet\:left-0 {
    left: 0;
  }
  .tablet\:top-none {
    top: var(--padding-none);
  }
  .tablet\:right-none {
    right: var(--padding-none);
  }
  .tablet\:bottom-none {
    bottom: var(--padding-none);
  }
  .tablet\:left-none {
    left: var(--padding-none);
  }
  .tablet\:top-hairline {
    top: var(--padding-hairline);
  }
  .tablet\:right-hairline {
    right: var(--padding-hairline);
  }
  .tablet\:bottom-hairline {
    bottom: var(--padding-hairline);
  }
  .tablet\:left-hairline {
    left: var(--padding-hairline);
  }
  .tablet\:top-thin {
    top: var(--padding-thin);
  }
  .tablet\:right-thin {
    right: var(--padding-thin);
  }
  .tablet\:bottom-thin {
    bottom: var(--padding-thin);
  }
  .tablet\:left-thin {
    left: var(--padding-thin);
  }
  .tablet\:top-slim {
    top: var(--padding-slim);
  }
  .tablet\:right-slim {
    right: var(--padding-slim);
  }
  .tablet\:bottom-slim {
    bottom: var(--padding-slim);
  }
  .tablet\:left-slim {
    left: var(--padding-slim);
  }
  .tablet\:top-extra-small {
    top: var(--padding-extra-small);
  }
  .tablet\:right-extra-small {
    right: var(--padding-extra-small);
  }
  .tablet\:bottom-extra-small {
    bottom: var(--padding-extra-small);
  }
  .tablet\:left-extra-small {
    left: var(--padding-extra-small);
  }
  .tablet\:top-small {
    top: var(--padding-small);
  }
  .tablet\:right-small {
    right: var(--padding-small);
  }
  .tablet\:bottom-small {
    bottom: var(--padding-small);
  }
  .tablet\:left-small {
    left: var(--padding-small);
  }
  .tablet\:top-medium {
    top: var(--padding-medium);
  }
  .tablet\:right-medium {
    right: var(--padding-medium);
  }
  .tablet\:bottom-medium {
    bottom: var(--padding-medium);
  }
  .tablet\:left-medium {
    left: var(--padding-medium);
  }
  .tablet\:top-large {
    top: var(--padding-large);
  }
  .tablet\:right-large {
    right: var(--padding-large);
  }
  .tablet\:bottom-large {
    bottom: var(--padding-large);
  }
  .tablet\:left-large {
    left: var(--padding-large);
  }
  .tablet\:top-extra-large {
    top: var(--padding-extra-large);
  }
  .tablet\:right-extra-large {
    right: var(--padding-extra-large);
  }
  .tablet\:bottom-extra-large {
    bottom: var(--padding-extra-large);
  }
  .tablet\:left-extra-large {
    left: var(--padding-extra-large);
  }
  .tablet\:top-huge {
    top: var(--padding-huge);
  }
  .tablet\:right-huge {
    right: var(--padding-huge);
  }
  .tablet\:bottom-huge {
    bottom: var(--padding-huge);
  }
  .tablet\:left-huge {
    left: var(--padding-huge);
  }
  .tablet\:d-none,
  .tablet\:hover\:d-none:hover,
  .tablet\:focus\:d-none:focus,
  .tablet\:focus-within\:d-none:focus-within,
  .tablet\:group:hover .group-hover\:d-none {
    display: none;
  }
  .tablet\:d-block,
  .tablet\:hover\:d-block:hover,
  .tablet\:focus\:d-block:focus,
  .tablet\:focus-within\:d-block:focus-within,
  .tablet\:group:hover .group-hover\:d-block {
    display: block;
  }
  .tablet\:d-inline-block,
  .tablet\:hover\:d-inline-block:hover,
  .tablet\:focus\:d-inline-block:focus,
  .tablet\:focus-within\:d-inline-block:focus-within,
  .tablet\:group:hover .group-hover\:d-inline-block {
    display: inline-block;
  }
  .tablet\:d-flex,
  .tablet\:hover\:d-flex:hover,
  .tablet\:focus\:d-flex:focus,
  .tablet\:focus-within\:d-flex:focus-within,
  .tablet\:group:hover .group-hover\:d-flex {
    display: flex;
  }
  .tablet\:d-inline-flex,
  .tablet\:hover\:d-inline-flex:hover,
  .tablet\:focus\:d-inline-flex:focus,
  .tablet\:focus-within\:d-inline-flex:focus-within,
  .tablet\:group:hover .group-hover\:d-inline-flex {
    display: inline-flex;
  }
  .tablet\:d-grid,
  .tablet\:hover\:d-grid:hover,
  .tablet\:focus\:d-grid:focus,
  .tablet\:focus-within\:d-grid:focus-within,
  .tablet\:group:hover .group-hover\:d-grid {
    display: grid;
  }
  .tablet\:d-inline-grid,
  .tablet\:hover\:d-inline-grid:hover,
  .tablet\:focus\:d-inline-grid:focus,
  .tablet\:focus-within\:d-inline-grid:focus-within,
  .tablet\:group:hover .group-hover\:d-inline-grid {
    display: inline-grid;
  }
  .tablet\:p-static,
  .tablet\:hover\:p-static:hover,
  .tablet\:focus\:p-static:focus,
  .tablet\:focus-within\:p-static:focus-within,
  .tablet\:group:hover .group-hover\:p-static {
    position: static;
  }
  .tablet\:p-fixed,
  .tablet\:hover\:p-fixed:hover,
  .tablet\:focus\:p-fixed:focus,
  .tablet\:focus-within\:p-fixed:focus-within,
  .tablet\:group:hover .group-hover\:p-fixed {
    position: fixed;
  }
  .tablet\:p-absolute,
  .tablet\:hover\:p-absolute:hover,
  .tablet\:focus\:p-absolute:focus,
  .tablet\:focus-within\:p-absolute:focus-within,
  .tablet\:group:hover .group-hover\:p-absolute {
    position: absolute;
  }
  .tablet\:p-relative,
  .tablet\:hover\:p-relative:hover,
  .tablet\:focus\:p-relative:focus,
  .tablet\:focus-within\:p-relative:focus-within,
  .tablet\:group:hover .group-hover\:p-relative {
    position: relative;
  }
  .tablet\:p-sticky,
  .tablet\:hover\:p-sticky:hover,
  .tablet\:focus\:p-sticky:focus,
  .tablet\:focus-within\:p-sticky:focus-within,
  .tablet\:group:hover .group-hover\:p-sticky {
    position: sticky;
  }
  .tablet\:overflow-hidden,
  .tablet\:hover\:overflow-hidden:hover,
  .tablet\:focus\:overflow-hidden:focus,
  .tablet\:focus-within\:overflow-hidden:focus-within,
  .tablet\:group:hover .group-hover\:overflow-hidden {
    overflow: hidden;
  }
  .tablet\:overflow-x-hidden,
  .tablet\:hover\:overflow-x-hidden:hover,
  .tablet\:focus\:overflow-x-hidden:focus,
  .tablet\:focus-within\:overflow-x-hidden:focus-within,
  .tablet\:group:hover .group-hover\:overflow-x-hidden {
    overflow-x: hidden;
  }
  .tablet\:overflow-y-hidden,
  .tablet\:hover\:overflow-y-hidden:hover,
  .tablet\:focus\:overflow-y-hidden:focus,
  .tablet\:focus-within\:overflow-y-hidden:focus-within,
  .tablet\:group:hover .group-hover\:overflow-y-hidden {
    overflow-y: hidden;
  }
  .tablet\:overflow-clip,
  .tablet\:hover\:overflow-clip:hover,
  .tablet\:focus\:overflow-clip:focus,
  .tablet\:focus-within\:overflow-clip:focus-within,
  .tablet\:group:hover .group-hover\:overflow-clip {
    overflow: clip;
  }
  .tablet\:overflow-x-clip,
  .tablet\:hover\:overflow-x-clip:hover,
  .tablet\:focus\:overflow-x-clip:focus,
  .tablet\:focus-within\:overflow-x-clip:focus-within,
  .tablet\:group:hover .group-hover\:overflow-x-clip {
    overflow-x: clip;
  }
  .tablet\:overflow-y-clip,
  .tablet\:hover\:overflow-y-clip:hover,
  .tablet\:focus\:overflow-y-clip:focus,
  .tablet\:focus-within\:overflow-y-clip:focus-within,
  .tablet\:group:hover .group-hover\:overflow-y-clip {
    overflow-y: clip;
  }
  .tablet\:overflow-visible,
  .tablet\:hover\:overflow-visible:hover,
  .tablet\:focus\:overflow-visible:focus,
  .tablet\:focus-within\:overflow-visible:focus-within,
  .tablet\:group:hover .group-hover\:overflow-visible {
    overflow: visible;
  }
  .tablet\:overflow-x-visible,
  .tablet\:hover\:overflow-x-visible:hover,
  .tablet\:focus\:overflow-x-visible:focus,
  .tablet\:focus-within\:overflow-x-visible:focus-within,
  .tablet\:group:hover .group-hover\:overflow-x-visible {
    overflow-x: visible;
  }
  .tablet\:overflow-y-visible,
  .tablet\:hover\:overflow-y-visible:hover,
  .tablet\:focus\:overflow-y-visible:focus,
  .tablet\:focus-within\:overflow-y-visible:focus-within,
  .tablet\:group:hover .group-hover\:overflow-y-visible {
    overflow-y: visible;
  }
  .tablet\:overflow-scroll,
  .tablet\:hover\:overflow-scroll:hover,
  .tablet\:focus\:overflow-scroll:focus,
  .tablet\:focus-within\:overflow-scroll:focus-within,
  .tablet\:group:hover .group-hover\:overflow-scroll {
    overflow: scroll;
  }
  .tablet\:overflow-x-scroll,
  .tablet\:hover\:overflow-x-scroll:hover,
  .tablet\:focus\:overflow-x-scroll:focus,
  .tablet\:focus-within\:overflow-x-scroll:focus-within,
  .tablet\:group:hover .group-hover\:overflow-x-scroll {
    overflow-x: scroll;
  }
  .tablet\:overflow-y-scroll,
  .tablet\:hover\:overflow-y-scroll:hover,
  .tablet\:focus\:overflow-y-scroll:focus,
  .tablet\:focus-within\:overflow-y-scroll:focus-within,
  .tablet\:group:hover .group-hover\:overflow-y-scroll {
    overflow-y: scroll;
  }
  .tablet\:overflow-auto,
  .tablet\:hover\:overflow-auto:hover,
  .tablet\:focus\:overflow-auto:focus,
  .tablet\:focus-within\:overflow-auto:focus-within,
  .tablet\:group:hover .group-hover\:overflow-auto {
    overflow: auto;
  }
  .tablet\:overflow-x-auto,
  .tablet\:hover\:overflow-x-auto:hover,
  .tablet\:focus\:overflow-x-auto:focus,
  .tablet\:focus-within\:overflow-x-auto:focus-within,
  .tablet\:group:hover .group-hover\:overflow-x-auto {
    overflow-x: auto;
  }
  .tablet\:overflow-y-auto,
  .tablet\:hover\:overflow-y-auto:hover,
  .tablet\:focus\:overflow-y-auto:focus,
  .tablet\:focus-within\:overflow-y-auto:focus-within,
  .tablet\:group:hover .group-hover\:overflow-y-auto {
    overflow-y: auto;
  }
  .tablet\:overflow-hidden,
  .tablet\:hover\:overflow-hidden:hover,
  .tablet\:focus\:overflow-hidden:focus,
  .tablet\:focus-within\:overflow-hidden:focus-within,
  .tablet\:group:hover .group-hover\:overflow-hidden {
    overflow: hidden;
  }
  .tablet\:scroll-lock {
    overflow: hidden !important;
  }
}
@media (max-width: 768px) {
  .mobile\:border-box {
    box-sizing: border-box;
  }
  .mobile\:content-box {
    box-sizing: content-box;
  }
  .mobile\:-z-100 {
    z-index: -100;
  }
  .mobile\:-z-99 {
    z-index: -99;
  }
  .mobile\:-z-98 {
    z-index: -98;
  }
  .mobile\:-z-97 {
    z-index: -97;
  }
  .mobile\:-z-96 {
    z-index: -96;
  }
  .mobile\:-z-95 {
    z-index: -95;
  }
  .mobile\:-z-94 {
    z-index: -94;
  }
  .mobile\:-z-93 {
    z-index: -93;
  }
  .mobile\:-z-92 {
    z-index: -92;
  }
  .mobile\:-z-91 {
    z-index: -91;
  }
  .mobile\:-z-90 {
    z-index: -90;
  }
  .mobile\:-z-89 {
    z-index: -89;
  }
  .mobile\:-z-88 {
    z-index: -88;
  }
  .mobile\:-z-87 {
    z-index: -87;
  }
  .mobile\:-z-86 {
    z-index: -86;
  }
  .mobile\:-z-85 {
    z-index: -85;
  }
  .mobile\:-z-84 {
    z-index: -84;
  }
  .mobile\:-z-83 {
    z-index: -83;
  }
  .mobile\:-z-82 {
    z-index: -82;
  }
  .mobile\:-z-81 {
    z-index: -81;
  }
  .mobile\:-z-80 {
    z-index: -80;
  }
  .mobile\:-z-79 {
    z-index: -79;
  }
  .mobile\:-z-78 {
    z-index: -78;
  }
  .mobile\:-z-77 {
    z-index: -77;
  }
  .mobile\:-z-76 {
    z-index: -76;
  }
  .mobile\:-z-75 {
    z-index: -75;
  }
  .mobile\:-z-74 {
    z-index: -74;
  }
  .mobile\:-z-73 {
    z-index: -73;
  }
  .mobile\:-z-72 {
    z-index: -72;
  }
  .mobile\:-z-71 {
    z-index: -71;
  }
  .mobile\:-z-70 {
    z-index: -70;
  }
  .mobile\:-z-69 {
    z-index: -69;
  }
  .mobile\:-z-68 {
    z-index: -68;
  }
  .mobile\:-z-67 {
    z-index: -67;
  }
  .mobile\:-z-66 {
    z-index: -66;
  }
  .mobile\:-z-65 {
    z-index: -65;
  }
  .mobile\:-z-64 {
    z-index: -64;
  }
  .mobile\:-z-63 {
    z-index: -63;
  }
  .mobile\:-z-62 {
    z-index: -62;
  }
  .mobile\:-z-61 {
    z-index: -61;
  }
  .mobile\:-z-60 {
    z-index: -60;
  }
  .mobile\:-z-59 {
    z-index: -59;
  }
  .mobile\:-z-58 {
    z-index: -58;
  }
  .mobile\:-z-57 {
    z-index: -57;
  }
  .mobile\:-z-56 {
    z-index: -56;
  }
  .mobile\:-z-55 {
    z-index: -55;
  }
  .mobile\:-z-54 {
    z-index: -54;
  }
  .mobile\:-z-53 {
    z-index: -53;
  }
  .mobile\:-z-52 {
    z-index: -52;
  }
  .mobile\:-z-51 {
    z-index: -51;
  }
  .mobile\:-z-50 {
    z-index: -50;
  }
  .mobile\:-z-49 {
    z-index: -49;
  }
  .mobile\:-z-48 {
    z-index: -48;
  }
  .mobile\:-z-47 {
    z-index: -47;
  }
  .mobile\:-z-46 {
    z-index: -46;
  }
  .mobile\:-z-45 {
    z-index: -45;
  }
  .mobile\:-z-44 {
    z-index: -44;
  }
  .mobile\:-z-43 {
    z-index: -43;
  }
  .mobile\:-z-42 {
    z-index: -42;
  }
  .mobile\:-z-41 {
    z-index: -41;
  }
  .mobile\:-z-40 {
    z-index: -40;
  }
  .mobile\:-z-39 {
    z-index: -39;
  }
  .mobile\:-z-38 {
    z-index: -38;
  }
  .mobile\:-z-37 {
    z-index: -37;
  }
  .mobile\:-z-36 {
    z-index: -36;
  }
  .mobile\:-z-35 {
    z-index: -35;
  }
  .mobile\:-z-34 {
    z-index: -34;
  }
  .mobile\:-z-33 {
    z-index: -33;
  }
  .mobile\:-z-32 {
    z-index: -32;
  }
  .mobile\:-z-31 {
    z-index: -31;
  }
  .mobile\:-z-30 {
    z-index: -30;
  }
  .mobile\:-z-29 {
    z-index: -29;
  }
  .mobile\:-z-28 {
    z-index: -28;
  }
  .mobile\:-z-27 {
    z-index: -27;
  }
  .mobile\:-z-26 {
    z-index: -26;
  }
  .mobile\:-z-25 {
    z-index: -25;
  }
  .mobile\:-z-24 {
    z-index: -24;
  }
  .mobile\:-z-23 {
    z-index: -23;
  }
  .mobile\:-z-22 {
    z-index: -22;
  }
  .mobile\:-z-21 {
    z-index: -21;
  }
  .mobile\:-z-20 {
    z-index: -20;
  }
  .mobile\:-z-19 {
    z-index: -19;
  }
  .mobile\:-z-18 {
    z-index: -18;
  }
  .mobile\:-z-17 {
    z-index: -17;
  }
  .mobile\:-z-16 {
    z-index: -16;
  }
  .mobile\:-z-15 {
    z-index: -15;
  }
  .mobile\:-z-14 {
    z-index: -14;
  }
  .mobile\:-z-13 {
    z-index: -13;
  }
  .mobile\:-z-12 {
    z-index: -12;
  }
  .mobile\:-z-11 {
    z-index: -11;
  }
  .mobile\:-z-10 {
    z-index: -10;
  }
  .mobile\:-z-9 {
    z-index: -9;
  }
  .mobile\:-z-8 {
    z-index: -8;
  }
  .mobile\:-z-7 {
    z-index: -7;
  }
  .mobile\:-z-6 {
    z-index: -6;
  }
  .mobile\:-z-5 {
    z-index: -5;
  }
  .mobile\:-z-4 {
    z-index: -4;
  }
  .mobile\:-z-3 {
    z-index: -3;
  }
  .mobile\:-z-2 {
    z-index: -2;
  }
  .mobile\:-z-1 {
    z-index: -1;
  }
  .mobile\:z-0 {
    z-index: 0;
  }
  .mobile\:z-1 {
    z-index: 1;
  }
  .mobile\:z-2 {
    z-index: 2;
  }
  .mobile\:z-3 {
    z-index: 3;
  }
  .mobile\:z-4 {
    z-index: 4;
  }
  .mobile\:z-5 {
    z-index: 5;
  }
  .mobile\:z-6 {
    z-index: 6;
  }
  .mobile\:z-7 {
    z-index: 7;
  }
  .mobile\:z-8 {
    z-index: 8;
  }
  .mobile\:z-9 {
    z-index: 9;
  }
  .mobile\:z-10 {
    z-index: 10;
  }
  .mobile\:z-11 {
    z-index: 11;
  }
  .mobile\:z-12 {
    z-index: 12;
  }
  .mobile\:z-13 {
    z-index: 13;
  }
  .mobile\:z-14 {
    z-index: 14;
  }
  .mobile\:z-15 {
    z-index: 15;
  }
  .mobile\:z-16 {
    z-index: 16;
  }
  .mobile\:z-17 {
    z-index: 17;
  }
  .mobile\:z-18 {
    z-index: 18;
  }
  .mobile\:z-19 {
    z-index: 19;
  }
  .mobile\:z-20 {
    z-index: 20;
  }
  .mobile\:z-21 {
    z-index: 21;
  }
  .mobile\:z-22 {
    z-index: 22;
  }
  .mobile\:z-23 {
    z-index: 23;
  }
  .mobile\:z-24 {
    z-index: 24;
  }
  .mobile\:z-25 {
    z-index: 25;
  }
  .mobile\:z-26 {
    z-index: 26;
  }
  .mobile\:z-27 {
    z-index: 27;
  }
  .mobile\:z-28 {
    z-index: 28;
  }
  .mobile\:z-29 {
    z-index: 29;
  }
  .mobile\:z-30 {
    z-index: 30;
  }
  .mobile\:z-31 {
    z-index: 31;
  }
  .mobile\:z-32 {
    z-index: 32;
  }
  .mobile\:z-33 {
    z-index: 33;
  }
  .mobile\:z-34 {
    z-index: 34;
  }
  .mobile\:z-35 {
    z-index: 35;
  }
  .mobile\:z-36 {
    z-index: 36;
  }
  .mobile\:z-37 {
    z-index: 37;
  }
  .mobile\:z-38 {
    z-index: 38;
  }
  .mobile\:z-39 {
    z-index: 39;
  }
  .mobile\:z-40 {
    z-index: 40;
  }
  .mobile\:z-41 {
    z-index: 41;
  }
  .mobile\:z-42 {
    z-index: 42;
  }
  .mobile\:z-43 {
    z-index: 43;
  }
  .mobile\:z-44 {
    z-index: 44;
  }
  .mobile\:z-45 {
    z-index: 45;
  }
  .mobile\:z-46 {
    z-index: 46;
  }
  .mobile\:z-47 {
    z-index: 47;
  }
  .mobile\:z-48 {
    z-index: 48;
  }
  .mobile\:z-49 {
    z-index: 49;
  }
  .mobile\:z-50 {
    z-index: 50;
  }
  .mobile\:z-51 {
    z-index: 51;
  }
  .mobile\:z-52 {
    z-index: 52;
  }
  .mobile\:z-53 {
    z-index: 53;
  }
  .mobile\:z-54 {
    z-index: 54;
  }
  .mobile\:z-55 {
    z-index: 55;
  }
  .mobile\:z-56 {
    z-index: 56;
  }
  .mobile\:z-57 {
    z-index: 57;
  }
  .mobile\:z-58 {
    z-index: 58;
  }
  .mobile\:z-59 {
    z-index: 59;
  }
  .mobile\:z-60 {
    z-index: 60;
  }
  .mobile\:z-61 {
    z-index: 61;
  }
  .mobile\:z-62 {
    z-index: 62;
  }
  .mobile\:z-63 {
    z-index: 63;
  }
  .mobile\:z-64 {
    z-index: 64;
  }
  .mobile\:z-65 {
    z-index: 65;
  }
  .mobile\:z-66 {
    z-index: 66;
  }
  .mobile\:z-67 {
    z-index: 67;
  }
  .mobile\:z-68 {
    z-index: 68;
  }
  .mobile\:z-69 {
    z-index: 69;
  }
  .mobile\:z-70 {
    z-index: 70;
  }
  .mobile\:z-71 {
    z-index: 71;
  }
  .mobile\:z-72 {
    z-index: 72;
  }
  .mobile\:z-73 {
    z-index: 73;
  }
  .mobile\:z-74 {
    z-index: 74;
  }
  .mobile\:z-75 {
    z-index: 75;
  }
  .mobile\:z-76 {
    z-index: 76;
  }
  .mobile\:z-77 {
    z-index: 77;
  }
  .mobile\:z-78 {
    z-index: 78;
  }
  .mobile\:z-79 {
    z-index: 79;
  }
  .mobile\:z-80 {
    z-index: 80;
  }
  .mobile\:z-81 {
    z-index: 81;
  }
  .mobile\:z-82 {
    z-index: 82;
  }
  .mobile\:z-83 {
    z-index: 83;
  }
  .mobile\:z-84 {
    z-index: 84;
  }
  .mobile\:z-85 {
    z-index: 85;
  }
  .mobile\:z-86 {
    z-index: 86;
  }
  .mobile\:z-87 {
    z-index: 87;
  }
  .mobile\:z-88 {
    z-index: 88;
  }
  .mobile\:z-89 {
    z-index: 89;
  }
  .mobile\:z-90 {
    z-index: 90;
  }
  .mobile\:z-91 {
    z-index: 91;
  }
  .mobile\:z-92 {
    z-index: 92;
  }
  .mobile\:z-93 {
    z-index: 93;
  }
  .mobile\:z-94 {
    z-index: 94;
  }
  .mobile\:z-95 {
    z-index: 95;
  }
  .mobile\:z-96 {
    z-index: 96;
  }
  .mobile\:z-97 {
    z-index: 97;
  }
  .mobile\:z-98 {
    z-index: 98;
  }
  .mobile\:z-99 {
    z-index: 99;
  }
  .mobile\:z-100 {
    z-index: 100;
  }
  .mobile\:inset,
  .mobile\:inset-0 {
    inset: 0;
  }
  .mobile\:top-0 {
    top: 0;
  }
  .mobile\:right-0 {
    right: 0;
  }
  .mobile\:bottom-0 {
    bottom: 0;
  }
  .mobile\:left-0 {
    left: 0;
  }
  .mobile\:top-none {
    top: var(--padding-none);
  }
  .mobile\:right-none {
    right: var(--padding-none);
  }
  .mobile\:bottom-none {
    bottom: var(--padding-none);
  }
  .mobile\:left-none {
    left: var(--padding-none);
  }
  .mobile\:top-hairline {
    top: var(--padding-hairline);
  }
  .mobile\:right-hairline {
    right: var(--padding-hairline);
  }
  .mobile\:bottom-hairline {
    bottom: var(--padding-hairline);
  }
  .mobile\:left-hairline {
    left: var(--padding-hairline);
  }
  .mobile\:top-thin {
    top: var(--padding-thin);
  }
  .mobile\:right-thin {
    right: var(--padding-thin);
  }
  .mobile\:bottom-thin {
    bottom: var(--padding-thin);
  }
  .mobile\:left-thin {
    left: var(--padding-thin);
  }
  .mobile\:top-slim {
    top: var(--padding-slim);
  }
  .mobile\:right-slim {
    right: var(--padding-slim);
  }
  .mobile\:bottom-slim {
    bottom: var(--padding-slim);
  }
  .mobile\:left-slim {
    left: var(--padding-slim);
  }
  .mobile\:top-extra-small {
    top: var(--padding-extra-small);
  }
  .mobile\:right-extra-small {
    right: var(--padding-extra-small);
  }
  .mobile\:bottom-extra-small {
    bottom: var(--padding-extra-small);
  }
  .mobile\:left-extra-small {
    left: var(--padding-extra-small);
  }
  .mobile\:top-small {
    top: var(--padding-small);
  }
  .mobile\:right-small {
    right: var(--padding-small);
  }
  .mobile\:bottom-small {
    bottom: var(--padding-small);
  }
  .mobile\:left-small {
    left: var(--padding-small);
  }
  .mobile\:top-medium {
    top: var(--padding-medium);
  }
  .mobile\:right-medium {
    right: var(--padding-medium);
  }
  .mobile\:bottom-medium {
    bottom: var(--padding-medium);
  }
  .mobile\:left-medium {
    left: var(--padding-medium);
  }
  .mobile\:top-large {
    top: var(--padding-large);
  }
  .mobile\:right-large {
    right: var(--padding-large);
  }
  .mobile\:bottom-large {
    bottom: var(--padding-large);
  }
  .mobile\:left-large {
    left: var(--padding-large);
  }
  .mobile\:top-extra-large {
    top: var(--padding-extra-large);
  }
  .mobile\:right-extra-large {
    right: var(--padding-extra-large);
  }
  .mobile\:bottom-extra-large {
    bottom: var(--padding-extra-large);
  }
  .mobile\:left-extra-large {
    left: var(--padding-extra-large);
  }
  .mobile\:top-huge {
    top: var(--padding-huge);
  }
  .mobile\:right-huge {
    right: var(--padding-huge);
  }
  .mobile\:bottom-huge {
    bottom: var(--padding-huge);
  }
  .mobile\:left-huge {
    left: var(--padding-huge);
  }
  .mobile\:d-none,
  .mobile\:hover\:d-none:hover,
  .mobile\:focus\:d-none:focus,
  .mobile\:focus-within\:d-none:focus-within,
  .mobile\:group:hover .group-hover\:d-none {
    display: none;
  }
  .mobile\:d-block,
  .mobile\:hover\:d-block:hover,
  .mobile\:focus\:d-block:focus,
  .mobile\:focus-within\:d-block:focus-within,
  .mobile\:group:hover .group-hover\:d-block {
    display: block;
  }
  .mobile\:d-inline-block,
  .mobile\:hover\:d-inline-block:hover,
  .mobile\:focus\:d-inline-block:focus,
  .mobile\:focus-within\:d-inline-block:focus-within,
  .mobile\:group:hover .group-hover\:d-inline-block {
    display: inline-block;
  }
  .mobile\:d-flex,
  .mobile\:hover\:d-flex:hover,
  .mobile\:focus\:d-flex:focus,
  .mobile\:focus-within\:d-flex:focus-within,
  .mobile\:group:hover .group-hover\:d-flex {
    display: flex;
  }
  .mobile\:d-inline-flex,
  .mobile\:hover\:d-inline-flex:hover,
  .mobile\:focus\:d-inline-flex:focus,
  .mobile\:focus-within\:d-inline-flex:focus-within,
  .mobile\:group:hover .group-hover\:d-inline-flex {
    display: inline-flex;
  }
  .mobile\:d-grid,
  .mobile\:hover\:d-grid:hover,
  .mobile\:focus\:d-grid:focus,
  .mobile\:focus-within\:d-grid:focus-within,
  .mobile\:group:hover .group-hover\:d-grid {
    display: grid;
  }
  .mobile\:d-inline-grid,
  .mobile\:hover\:d-inline-grid:hover,
  .mobile\:focus\:d-inline-grid:focus,
  .mobile\:focus-within\:d-inline-grid:focus-within,
  .mobile\:group:hover .group-hover\:d-inline-grid {
    display: inline-grid;
  }
  .mobile\:p-static,
  .mobile\:hover\:p-static:hover,
  .mobile\:focus\:p-static:focus,
  .mobile\:focus-within\:p-static:focus-within,
  .mobile\:group:hover .group-hover\:p-static {
    position: static;
  }
  .mobile\:p-fixed,
  .mobile\:hover\:p-fixed:hover,
  .mobile\:focus\:p-fixed:focus,
  .mobile\:focus-within\:p-fixed:focus-within,
  .mobile\:group:hover .group-hover\:p-fixed {
    position: fixed;
  }
  .mobile\:p-absolute,
  .mobile\:hover\:p-absolute:hover,
  .mobile\:focus\:p-absolute:focus,
  .mobile\:focus-within\:p-absolute:focus-within,
  .mobile\:group:hover .group-hover\:p-absolute {
    position: absolute;
  }
  .mobile\:p-relative,
  .mobile\:hover\:p-relative:hover,
  .mobile\:focus\:p-relative:focus,
  .mobile\:focus-within\:p-relative:focus-within,
  .mobile\:group:hover .group-hover\:p-relative {
    position: relative;
  }
  .mobile\:p-sticky,
  .mobile\:hover\:p-sticky:hover,
  .mobile\:focus\:p-sticky:focus,
  .mobile\:focus-within\:p-sticky:focus-within,
  .mobile\:group:hover .group-hover\:p-sticky {
    position: sticky;
  }
  .mobile\:overflow-hidden,
  .mobile\:hover\:overflow-hidden:hover,
  .mobile\:focus\:overflow-hidden:focus,
  .mobile\:focus-within\:overflow-hidden:focus-within,
  .mobile\:group:hover .group-hover\:overflow-hidden {
    overflow: hidden;
  }
  .mobile\:overflow-x-hidden,
  .mobile\:hover\:overflow-x-hidden:hover,
  .mobile\:focus\:overflow-x-hidden:focus,
  .mobile\:focus-within\:overflow-x-hidden:focus-within,
  .mobile\:group:hover .group-hover\:overflow-x-hidden {
    overflow-x: hidden;
  }
  .mobile\:overflow-y-hidden,
  .mobile\:hover\:overflow-y-hidden:hover,
  .mobile\:focus\:overflow-y-hidden:focus,
  .mobile\:focus-within\:overflow-y-hidden:focus-within,
  .mobile\:group:hover .group-hover\:overflow-y-hidden {
    overflow-y: hidden;
  }
  .mobile\:overflow-clip,
  .mobile\:hover\:overflow-clip:hover,
  .mobile\:focus\:overflow-clip:focus,
  .mobile\:focus-within\:overflow-clip:focus-within,
  .mobile\:group:hover .group-hover\:overflow-clip {
    overflow: clip;
  }
  .mobile\:overflow-x-clip,
  .mobile\:hover\:overflow-x-clip:hover,
  .mobile\:focus\:overflow-x-clip:focus,
  .mobile\:focus-within\:overflow-x-clip:focus-within,
  .mobile\:group:hover .group-hover\:overflow-x-clip {
    overflow-x: clip;
  }
  .mobile\:overflow-y-clip,
  .mobile\:hover\:overflow-y-clip:hover,
  .mobile\:focus\:overflow-y-clip:focus,
  .mobile\:focus-within\:overflow-y-clip:focus-within,
  .mobile\:group:hover .group-hover\:overflow-y-clip {
    overflow-y: clip;
  }
  .mobile\:overflow-visible,
  .mobile\:hover\:overflow-visible:hover,
  .mobile\:focus\:overflow-visible:focus,
  .mobile\:focus-within\:overflow-visible:focus-within,
  .mobile\:group:hover .group-hover\:overflow-visible {
    overflow: visible;
  }
  .mobile\:overflow-x-visible,
  .mobile\:hover\:overflow-x-visible:hover,
  .mobile\:focus\:overflow-x-visible:focus,
  .mobile\:focus-within\:overflow-x-visible:focus-within,
  .mobile\:group:hover .group-hover\:overflow-x-visible {
    overflow-x: visible;
  }
  .mobile\:overflow-y-visible,
  .mobile\:hover\:overflow-y-visible:hover,
  .mobile\:focus\:overflow-y-visible:focus,
  .mobile\:focus-within\:overflow-y-visible:focus-within,
  .mobile\:group:hover .group-hover\:overflow-y-visible {
    overflow-y: visible;
  }
  .mobile\:overflow-scroll,
  .mobile\:hover\:overflow-scroll:hover,
  .mobile\:focus\:overflow-scroll:focus,
  .mobile\:focus-within\:overflow-scroll:focus-within,
  .mobile\:group:hover .group-hover\:overflow-scroll {
    overflow: scroll;
  }
  .mobile\:overflow-x-scroll,
  .mobile\:hover\:overflow-x-scroll:hover,
  .mobile\:focus\:overflow-x-scroll:focus,
  .mobile\:focus-within\:overflow-x-scroll:focus-within,
  .mobile\:group:hover .group-hover\:overflow-x-scroll {
    overflow-x: scroll;
  }
  .mobile\:overflow-y-scroll,
  .mobile\:hover\:overflow-y-scroll:hover,
  .mobile\:focus\:overflow-y-scroll:focus,
  .mobile\:focus-within\:overflow-y-scroll:focus-within,
  .mobile\:group:hover .group-hover\:overflow-y-scroll {
    overflow-y: scroll;
  }
  .mobile\:overflow-auto,
  .mobile\:hover\:overflow-auto:hover,
  .mobile\:focus\:overflow-auto:focus,
  .mobile\:focus-within\:overflow-auto:focus-within,
  .mobile\:group:hover .group-hover\:overflow-auto {
    overflow: auto;
  }
  .mobile\:overflow-x-auto,
  .mobile\:hover\:overflow-x-auto:hover,
  .mobile\:focus\:overflow-x-auto:focus,
  .mobile\:focus-within\:overflow-x-auto:focus-within,
  .mobile\:group:hover .group-hover\:overflow-x-auto {
    overflow-x: auto;
  }
  .mobile\:overflow-y-auto,
  .mobile\:hover\:overflow-y-auto:hover,
  .mobile\:focus\:overflow-y-auto:focus,
  .mobile\:focus-within\:overflow-y-auto:focus-within,
  .mobile\:group:hover .group-hover\:overflow-y-auto {
    overflow-y: auto;
  }
  .mobile\:overflow-hidden,
  .mobile\:hover\:overflow-hidden:hover,
  .mobile\:focus\:overflow-hidden:focus,
  .mobile\:focus-within\:overflow-hidden:focus-within,
  .mobile\:group:hover .group-hover\:overflow-hidden {
    overflow: hidden;
  }
  .mobile\:scroll-lock {
    overflow: hidden !important;
  }
}
@media (max-width: 8640px) {
  .grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .grid-rows-1-auto {
    grid-template-rows: repeat(1, auto);
  }
  .grid-rows-span-1 {
    grid-row: span 1/span 1;
  }
  .grid-rows-span-start-1 {
    grid-row-start: span 1;
  }
  .grid-rows-span-end-1 {
    grid-row-end: span 1;
  }
  .grid-rows-start-1 {
    grid-row-start: 1;
  }
  .grid-rows-end-1 {
    grid-row-end: 1;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-1-auto {
    grid-template-columns: repeat(1, auto);
  }
  .grid-col-span-1 {
    grid-column: span 1/span 1;
  }
  .grid-col-span-start-1 {
    grid-column-start: span 1;
  }
  .grid-col-span-end-1 {
    grid-column-end: span 1;
  }
  .grid-col-start-1 {
    grid-column-start: 1;
  }
  .grid-col-end-1 {
    grid-column-end: 1;
  }
  .grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .grid-rows-2-auto {
    grid-template-rows: repeat(2, auto);
  }
  .grid-rows-span-2 {
    grid-row: span 2/span 2;
  }
  .grid-rows-span-start-2 {
    grid-row-start: span 2;
  }
  .grid-rows-span-end-2 {
    grid-row-end: span 2;
  }
  .grid-rows-start-2 {
    grid-row-start: 2;
  }
  .grid-rows-end-2 {
    grid-row-end: 2;
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-2-auto {
    grid-template-columns: repeat(2, auto);
  }
  .grid-col-span-2 {
    grid-column: span 2/span 2;
  }
  .grid-col-span-start-2 {
    grid-column-start: span 2;
  }
  .grid-col-span-end-2 {
    grid-column-end: span 2;
  }
  .grid-col-start-2 {
    grid-column-start: 2;
  }
  .grid-col-end-2 {
    grid-column-end: 2;
  }
  .grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .grid-rows-3-auto {
    grid-template-rows: repeat(3, auto);
  }
  .grid-rows-span-3 {
    grid-row: span 3/span 3;
  }
  .grid-rows-span-start-3 {
    grid-row-start: span 3;
  }
  .grid-rows-span-end-3 {
    grid-row-end: span 3;
  }
  .grid-rows-start-3 {
    grid-row-start: 3;
  }
  .grid-rows-end-3 {
    grid-row-end: 3;
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-3-auto {
    grid-template-columns: repeat(3, auto);
  }
  .grid-col-span-3 {
    grid-column: span 3/span 3;
  }
  .grid-col-span-start-3 {
    grid-column-start: span 3;
  }
  .grid-col-span-end-3 {
    grid-column-end: span 3;
  }
  .grid-col-start-3 {
    grid-column-start: 3;
  }
  .grid-col-end-3 {
    grid-column-end: 3;
  }
  .grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .grid-rows-4-auto {
    grid-template-rows: repeat(4, auto);
  }
  .grid-rows-span-4 {
    grid-row: span 4/span 4;
  }
  .grid-rows-span-start-4 {
    grid-row-start: span 4;
  }
  .grid-rows-span-end-4 {
    grid-row-end: span 4;
  }
  .grid-rows-start-4 {
    grid-row-start: 4;
  }
  .grid-rows-end-4 {
    grid-row-end: 4;
  }
  .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-4-auto {
    grid-template-columns: repeat(4, auto);
  }
  .grid-col-span-4 {
    grid-column: span 4/span 4;
  }
  .grid-col-span-start-4 {
    grid-column-start: span 4;
  }
  .grid-col-span-end-4 {
    grid-column-end: span 4;
  }
  .grid-col-start-4 {
    grid-column-start: 4;
  }
  .grid-col-end-4 {
    grid-column-end: 4;
  }
  .grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .grid-rows-5-auto {
    grid-template-rows: repeat(5, auto);
  }
  .grid-rows-span-5 {
    grid-row: span 5/span 5;
  }
  .grid-rows-span-start-5 {
    grid-row-start: span 5;
  }
  .grid-rows-span-end-5 {
    grid-row-end: span 5;
  }
  .grid-rows-start-5 {
    grid-row-start: 5;
  }
  .grid-rows-end-5 {
    grid-row-end: 5;
  }
  .grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-5-auto {
    grid-template-columns: repeat(5, auto);
  }
  .grid-col-span-5 {
    grid-column: span 5/span 5;
  }
  .grid-col-span-start-5 {
    grid-column-start: span 5;
  }
  .grid-col-span-end-5 {
    grid-column-end: span 5;
  }
  .grid-col-start-5 {
    grid-column-start: 5;
  }
  .grid-col-end-5 {
    grid-column-end: 5;
  }
  .grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .grid-rows-6-auto {
    grid-template-rows: repeat(6, auto);
  }
  .grid-rows-span-6 {
    grid-row: span 6/span 6;
  }
  .grid-rows-span-start-6 {
    grid-row-start: span 6;
  }
  .grid-rows-span-end-6 {
    grid-row-end: span 6;
  }
  .grid-rows-start-6 {
    grid-row-start: 6;
  }
  .grid-rows-end-6 {
    grid-row-end: 6;
  }
  .grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-6-auto {
    grid-template-columns: repeat(6, auto);
  }
  .grid-col-span-6 {
    grid-column: span 6/span 6;
  }
  .grid-col-span-start-6 {
    grid-column-start: span 6;
  }
  .grid-col-span-end-6 {
    grid-column-end: span 6;
  }
  .grid-col-start-6 {
    grid-column-start: 6;
  }
  .grid-col-end-6 {
    grid-column-end: 6;
  }
  .grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
  }
  .grid-rows-7-auto {
    grid-template-rows: repeat(7, auto);
  }
  .grid-rows-span-7 {
    grid-row: span 7/span 7;
  }
  .grid-rows-span-start-7 {
    grid-row-start: span 7;
  }
  .grid-rows-span-end-7 {
    grid-row-end: span 7;
  }
  .grid-rows-start-7 {
    grid-row-start: 7;
  }
  .grid-rows-end-7 {
    grid-row-end: 7;
  }
  .grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-7-auto {
    grid-template-columns: repeat(7, auto);
  }
  .grid-col-span-7 {
    grid-column: span 7/span 7;
  }
  .grid-col-span-start-7 {
    grid-column-start: span 7;
  }
  .grid-col-span-end-7 {
    grid-column-end: span 7;
  }
  .grid-col-start-7 {
    grid-column-start: 7;
  }
  .grid-col-end-7 {
    grid-column-end: 7;
  }
  .grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }
  .grid-rows-8-auto {
    grid-template-rows: repeat(8, auto);
  }
  .grid-rows-span-8 {
    grid-row: span 8/span 8;
  }
  .grid-rows-span-start-8 {
    grid-row-start: span 8;
  }
  .grid-rows-span-end-8 {
    grid-row-end: span 8;
  }
  .grid-rows-start-8 {
    grid-row-start: 8;
  }
  .grid-rows-end-8 {
    grid-row-end: 8;
  }
  .grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-8-auto {
    grid-template-columns: repeat(8, auto);
  }
  .grid-col-span-8 {
    grid-column: span 8/span 8;
  }
  .grid-col-span-start-8 {
    grid-column-start: span 8;
  }
  .grid-col-span-end-8 {
    grid-column-end: span 8;
  }
  .grid-col-start-8 {
    grid-column-start: 8;
  }
  .grid-col-end-8 {
    grid-column-end: 8;
  }
  .grid-rows-9 {
    grid-template-rows: repeat(9, minmax(0, 1fr));
  }
  .grid-rows-9-auto {
    grid-template-rows: repeat(9, auto);
  }
  .grid-rows-span-9 {
    grid-row: span 9/span 9;
  }
  .grid-rows-span-start-9 {
    grid-row-start: span 9;
  }
  .grid-rows-span-end-9 {
    grid-row-end: span 9;
  }
  .grid-rows-start-9 {
    grid-row-start: 9;
  }
  .grid-rows-end-9 {
    grid-row-end: 9;
  }
  .grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-9-auto {
    grid-template-columns: repeat(9, auto);
  }
  .grid-col-span-9 {
    grid-column: span 9/span 9;
  }
  .grid-col-span-start-9 {
    grid-column-start: span 9;
  }
  .grid-col-span-end-9 {
    grid-column-end: span 9;
  }
  .grid-col-start-9 {
    grid-column-start: 9;
  }
  .grid-col-end-9 {
    grid-column-end: 9;
  }
  .grid-rows-10 {
    grid-template-rows: repeat(10, minmax(0, 1fr));
  }
  .grid-rows-10-auto {
    grid-template-rows: repeat(10, auto);
  }
  .grid-rows-span-10 {
    grid-row: span 10/span 10;
  }
  .grid-rows-span-start-10 {
    grid-row-start: span 10;
  }
  .grid-rows-span-end-10 {
    grid-row-end: span 10;
  }
  .grid-rows-start-10 {
    grid-row-start: 10;
  }
  .grid-rows-end-10 {
    grid-row-end: 10;
  }
  .grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-10-auto {
    grid-template-columns: repeat(10, auto);
  }
  .grid-col-span-10 {
    grid-column: span 10/span 10;
  }
  .grid-col-span-start-10 {
    grid-column-start: span 10;
  }
  .grid-col-span-end-10 {
    grid-column-end: span 10;
  }
  .grid-col-start-10 {
    grid-column-start: 10;
  }
  .grid-col-end-10 {
    grid-column-end: 10;
  }
  .grid-rows-11 {
    grid-template-rows: repeat(11, minmax(0, 1fr));
  }
  .grid-rows-11-auto {
    grid-template-rows: repeat(11, auto);
  }
  .grid-rows-span-11 {
    grid-row: span 11/span 11;
  }
  .grid-rows-span-start-11 {
    grid-row-start: span 11;
  }
  .grid-rows-span-end-11 {
    grid-row-end: span 11;
  }
  .grid-rows-start-11 {
    grid-row-start: 11;
  }
  .grid-rows-end-11 {
    grid-row-end: 11;
  }
  .grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-11-auto {
    grid-template-columns: repeat(11, auto);
  }
  .grid-col-span-11 {
    grid-column: span 11/span 11;
  }
  .grid-col-span-start-11 {
    grid-column-start: span 11;
  }
  .grid-col-span-end-11 {
    grid-column-end: span 11;
  }
  .grid-col-start-11 {
    grid-column-start: 11;
  }
  .grid-col-end-11 {
    grid-column-end: 11;
  }
  .grid-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
  }
  .grid-rows-12-auto {
    grid-template-rows: repeat(12, auto);
  }
  .grid-rows-span-12 {
    grid-row: span 12/span 12;
  }
  .grid-rows-span-start-12 {
    grid-row-start: span 12;
  }
  .grid-rows-span-end-12 {
    grid-row-end: span 12;
  }
  .grid-rows-start-12 {
    grid-row-start: 12;
  }
  .grid-rows-end-12 {
    grid-row-end: 12;
  }
  .grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid-cols-12-auto {
    grid-template-columns: repeat(12, auto);
  }
  .grid-col-span-12 {
    grid-column: span 12/span 12;
  }
  .grid-col-span-start-12 {
    grid-column-start: span 12;
  }
  .grid-col-span-end-12 {
    grid-column-end: span 12;
  }
  .grid-col-start-12 {
    grid-column-start: 12;
  }
  .grid-col-end-12 {
    grid-column-end: 12;
  }
  .grid-rows-13 {
    grid-template-rows: repeat(13, minmax(0, 1fr));
  }
  .grid-rows-13-auto {
    grid-template-rows: repeat(13, auto);
  }
  .grid-rows-span-13 {
    grid-row: span 13/span 13;
  }
  .grid-rows-span-start-13 {
    grid-row-start: span 13;
  }
  .grid-rows-span-end-13 {
    grid-row-end: span 13;
  }
  .grid-rows-start-13 {
    grid-row-start: 13;
  }
  .grid-rows-end-13 {
    grid-row-end: 13;
  }
  .grid-cols-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .grid-cols-13-auto {
    grid-template-columns: repeat(13, auto);
  }
  .grid-col-span-13 {
    grid-column: span 13/span 13;
  }
  .grid-col-span-start-13 {
    grid-column-start: span 13;
  }
  .grid-col-span-end-13 {
    grid-column-end: span 13;
  }
  .grid-col-start-13 {
    grid-column-start: 13;
  }
  .grid-col-end-13 {
    grid-column-end: 13;
  }
  .grid-rows-none {
    grid-template-rows: none;
  }
  .grid-rows-auto {
    grid-row: auto;
  }
  .grid-rows-span-full {
    grid-row: 1/-1;
  }
  .grid-rows-start-auto {
    grid-row-start: auto;
  }
  .grid-rows-end-auto {
    grid-row-end: auto;
  }
  .grid-auto-rows {
    grid-auto-rows: auto;
  }
  .grid-auto-rows-min {
    grid-auto-rows: min-content;
  }
  .grid-auto-rows-max {
    grid-auto-rows: max-content;
  }
  .grid-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr);
  }
  .grid-flow-row {
    grid-auto-flow: row;
  }
  .grid-flow-rows-dense {
    grid-auto-flow: row dense;
  }
  .grid-cols-none {
    grid-template-columns: none;
  }
  .grid-col-auto {
    grid-column: auto;
  }
  .grid-col-span-full {
    grid-column: 1/-1;
  }
  .grid-col-start-auto {
    grid-column-start: auto;
  }
  .grid-col-end-auto {
    grid-column-end: auto;
  }
  .grid-auto-cols {
    grid-auto-columns: auto;
  }
  .grid-auto-cols-min {
    grid-auto-columns: min-content;
  }
  .grid-auto-cols-max {
    grid-auto-columns: max-content;
  }
  .grid-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr);
  }
  .grid-flow-col {
    grid-auto-flow: column;
  }
  .grid-flow-col-dense {
    grid-auto-flow: column dense;
  }
  .grid-flow-dense {
    grid-auto-flow: dense;
  }
  .grid-auto-rows-none {
    grid-auto-rows: minmax(0, var(--padding-none));
  }
  .grid-rows-auto-none {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-none), 1fr));
  }
  .grid-auto-cols-none {
    grid-auto-columns: minmax(0, var(--padding-none));
  }
  .grid-cols-auto-none {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-none), 1fr));
  }
  .grid-auto-rows-hairline {
    grid-auto-rows: minmax(0, var(--padding-hairline));
  }
  .grid-rows-auto-hairline {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-hairline), 1fr));
  }
  .grid-auto-cols-hairline {
    grid-auto-columns: minmax(0, var(--padding-hairline));
  }
  .grid-cols-auto-hairline {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-hairline), 1fr));
  }
  .grid-auto-rows-thin {
    grid-auto-rows: minmax(0, var(--padding-thin));
  }
  .grid-rows-auto-thin {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-thin), 1fr));
  }
  .grid-auto-cols-thin {
    grid-auto-columns: minmax(0, var(--padding-thin));
  }
  .grid-cols-auto-thin {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-thin), 1fr));
  }
  .grid-auto-rows-slim {
    grid-auto-rows: minmax(0, var(--padding-slim));
  }
  .grid-rows-auto-slim {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-slim), 1fr));
  }
  .grid-auto-cols-slim {
    grid-auto-columns: minmax(0, var(--padding-slim));
  }
  .grid-cols-auto-slim {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-slim), 1fr));
  }
  .grid-auto-rows-extra-small {
    grid-auto-rows: minmax(0, var(--padding-extra-small));
  }
  .grid-rows-auto-extra-small {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-extra-small), 1fr));
  }
  .grid-auto-cols-extra-small {
    grid-auto-columns: minmax(0, var(--padding-extra-small));
  }
  .grid-cols-auto-extra-small {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-extra-small), 1fr));
  }
  .grid-auto-rows-small {
    grid-auto-rows: minmax(0, var(--padding-small));
  }
  .grid-rows-auto-small {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-small), 1fr));
  }
  .grid-auto-cols-small {
    grid-auto-columns: minmax(0, var(--padding-small));
  }
  .grid-cols-auto-small {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-small), 1fr));
  }
  .grid-auto-rows-medium {
    grid-auto-rows: minmax(0, var(--padding-medium));
  }
  .grid-rows-auto-medium {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-medium), 1fr));
  }
  .grid-auto-cols-medium {
    grid-auto-columns: minmax(0, var(--padding-medium));
  }
  .grid-cols-auto-medium {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-medium), 1fr));
  }
  .grid-auto-rows-large {
    grid-auto-rows: minmax(0, var(--padding-large));
  }
  .grid-rows-auto-large {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-large), 1fr));
  }
  .grid-auto-cols-large {
    grid-auto-columns: minmax(0, var(--padding-large));
  }
  .grid-cols-auto-large {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-large), 1fr));
  }
  .grid-auto-rows-extra-large {
    grid-auto-rows: minmax(0, var(--padding-extra-large));
  }
  .grid-rows-auto-extra-large {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-extra-large), 1fr));
  }
  .grid-auto-cols-extra-large {
    grid-auto-columns: minmax(0, var(--padding-extra-large));
  }
  .grid-cols-auto-extra-large {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-extra-large), 1fr));
  }
  .grid-auto-rows-huge {
    grid-auto-rows: minmax(0, var(--padding-huge));
  }
  .grid-rows-auto-huge {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-huge), 1fr));
  }
  .grid-auto-cols-huge {
    grid-auto-columns: minmax(0, var(--padding-huge));
  }
  .grid-cols-auto-huge {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-huge), 1fr));
  }
  .grid-auto-rows-1 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 1));
  }
  .grid-rows-auto-1 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 1), 1fr));
  }
  .grid-auto-cols-1 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 1));
  }
  .grid-cols-auto-1 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 1), 1fr));
  }
  .grid-auto-rows-2 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 2));
  }
  .grid-rows-auto-2 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 2), 1fr));
  }
  .grid-auto-cols-2 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 2));
  }
  .grid-cols-auto-2 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 2), 1fr));
  }
  .grid-auto-rows-3 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 3));
  }
  .grid-rows-auto-3 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 3), 1fr));
  }
  .grid-auto-cols-3 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 3));
  }
  .grid-cols-auto-3 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 3), 1fr));
  }
  .grid-auto-rows-4 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 4));
  }
  .grid-rows-auto-4 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 4), 1fr));
  }
  .grid-auto-cols-4 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 4));
  }
  .grid-cols-auto-4 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 4), 1fr));
  }
  .grid-auto-rows-5 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 5));
  }
  .grid-rows-auto-5 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 5), 1fr));
  }
  .grid-auto-cols-5 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 5));
  }
  .grid-cols-auto-5 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 5), 1fr));
  }
  .grid-auto-rows-6 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 6));
  }
  .grid-rows-auto-6 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 6), 1fr));
  }
  .grid-auto-cols-6 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 6));
  }
  .grid-cols-auto-6 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 6), 1fr));
  }
  .grid-auto-rows-7 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 7));
  }
  .grid-rows-auto-7 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 7), 1fr));
  }
  .grid-auto-cols-7 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 7));
  }
  .grid-cols-auto-7 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 7), 1fr));
  }
  .grid-auto-rows-8 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 8));
  }
  .grid-rows-auto-8 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 8), 1fr));
  }
  .grid-auto-cols-8 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 8));
  }
  .grid-cols-auto-8 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 8), 1fr));
  }
  .grid-auto-rows-9 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 9));
  }
  .grid-rows-auto-9 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 9), 1fr));
  }
  .grid-auto-cols-9 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 9));
  }
  .grid-cols-auto-9 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 9), 1fr));
  }
  .grid-auto-rows-10 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 10));
  }
  .grid-rows-auto-10 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 10), 1fr));
  }
  .grid-auto-cols-10 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 10));
  }
  .grid-cols-auto-10 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 10), 1fr));
  }
  .grid-auto-rows-11 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 11));
  }
  .grid-rows-auto-11 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 11), 1fr));
  }
  .grid-auto-cols-11 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 11));
  }
  .grid-cols-auto-11 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 11), 1fr));
  }
  .grid-auto-rows-12 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 12));
  }
  .grid-rows-auto-12 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 12), 1fr));
  }
  .grid-auto-cols-12 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 12));
  }
  .grid-cols-auto-12 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 12), 1fr));
  }
}
@media (max-width: 1024px) {
  .tablet\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .tablet\:grid-rows-1-auto {
    grid-template-rows: repeat(1, auto);
  }
  .tablet\:grid-rows-span-1 {
    grid-row: span 1/span 1;
  }
  .tablet\:grid-rows-span-start-1 {
    grid-row-start: span 1;
  }
  .tablet\:grid-rows-span-end-1 {
    grid-row-end: span 1;
  }
  .tablet\:grid-rows-start-1 {
    grid-row-start: 1;
  }
  .tablet\:grid-rows-end-1 {
    grid-row-end: 1;
  }
  .tablet\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .tablet\:grid-cols-1-auto {
    grid-template-columns: repeat(1, auto);
  }
  .tablet\:grid-col-span-1 {
    grid-column: span 1/span 1;
  }
  .tablet\:grid-col-span-start-1 {
    grid-column-start: span 1;
  }
  .tablet\:grid-col-span-end-1 {
    grid-column-end: span 1;
  }
  .tablet\:grid-col-start-1 {
    grid-column-start: 1;
  }
  .tablet\:grid-col-end-1 {
    grid-column-end: 1;
  }
  .tablet\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .tablet\:grid-rows-2-auto {
    grid-template-rows: repeat(2, auto);
  }
  .tablet\:grid-rows-span-2 {
    grid-row: span 2/span 2;
  }
  .tablet\:grid-rows-span-start-2 {
    grid-row-start: span 2;
  }
  .tablet\:grid-rows-span-end-2 {
    grid-row-end: span 2;
  }
  .tablet\:grid-rows-start-2 {
    grid-row-start: 2;
  }
  .tablet\:grid-rows-end-2 {
    grid-row-end: 2;
  }
  .tablet\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tablet\:grid-cols-2-auto {
    grid-template-columns: repeat(2, auto);
  }
  .tablet\:grid-col-span-2 {
    grid-column: span 2/span 2;
  }
  .tablet\:grid-col-span-start-2 {
    grid-column-start: span 2;
  }
  .tablet\:grid-col-span-end-2 {
    grid-column-end: span 2;
  }
  .tablet\:grid-col-start-2 {
    grid-column-start: 2;
  }
  .tablet\:grid-col-end-2 {
    grid-column-end: 2;
  }
  .tablet\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .tablet\:grid-rows-3-auto {
    grid-template-rows: repeat(3, auto);
  }
  .tablet\:grid-rows-span-3 {
    grid-row: span 3/span 3;
  }
  .tablet\:grid-rows-span-start-3 {
    grid-row-start: span 3;
  }
  .tablet\:grid-rows-span-end-3 {
    grid-row-end: span 3;
  }
  .tablet\:grid-rows-start-3 {
    grid-row-start: 3;
  }
  .tablet\:grid-rows-end-3 {
    grid-row-end: 3;
  }
  .tablet\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .tablet\:grid-cols-3-auto {
    grid-template-columns: repeat(3, auto);
  }
  .tablet\:grid-col-span-3 {
    grid-column: span 3/span 3;
  }
  .tablet\:grid-col-span-start-3 {
    grid-column-start: span 3;
  }
  .tablet\:grid-col-span-end-3 {
    grid-column-end: span 3;
  }
  .tablet\:grid-col-start-3 {
    grid-column-start: 3;
  }
  .tablet\:grid-col-end-3 {
    grid-column-end: 3;
  }
  .tablet\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .tablet\:grid-rows-4-auto {
    grid-template-rows: repeat(4, auto);
  }
  .tablet\:grid-rows-span-4 {
    grid-row: span 4/span 4;
  }
  .tablet\:grid-rows-span-start-4 {
    grid-row-start: span 4;
  }
  .tablet\:grid-rows-span-end-4 {
    grid-row-end: span 4;
  }
  .tablet\:grid-rows-start-4 {
    grid-row-start: 4;
  }
  .tablet\:grid-rows-end-4 {
    grid-row-end: 4;
  }
  .tablet\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .tablet\:grid-cols-4-auto {
    grid-template-columns: repeat(4, auto);
  }
  .tablet\:grid-col-span-4 {
    grid-column: span 4/span 4;
  }
  .tablet\:grid-col-span-start-4 {
    grid-column-start: span 4;
  }
  .tablet\:grid-col-span-end-4 {
    grid-column-end: span 4;
  }
  .tablet\:grid-col-start-4 {
    grid-column-start: 4;
  }
  .tablet\:grid-col-end-4 {
    grid-column-end: 4;
  }
  .tablet\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .tablet\:grid-rows-5-auto {
    grid-template-rows: repeat(5, auto);
  }
  .tablet\:grid-rows-span-5 {
    grid-row: span 5/span 5;
  }
  .tablet\:grid-rows-span-start-5 {
    grid-row-start: span 5;
  }
  .tablet\:grid-rows-span-end-5 {
    grid-row-end: span 5;
  }
  .tablet\:grid-rows-start-5 {
    grid-row-start: 5;
  }
  .tablet\:grid-rows-end-5 {
    grid-row-end: 5;
  }
  .tablet\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .tablet\:grid-cols-5-auto {
    grid-template-columns: repeat(5, auto);
  }
  .tablet\:grid-col-span-5 {
    grid-column: span 5/span 5;
  }
  .tablet\:grid-col-span-start-5 {
    grid-column-start: span 5;
  }
  .tablet\:grid-col-span-end-5 {
    grid-column-end: span 5;
  }
  .tablet\:grid-col-start-5 {
    grid-column-start: 5;
  }
  .tablet\:grid-col-end-5 {
    grid-column-end: 5;
  }
  .tablet\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .tablet\:grid-rows-6-auto {
    grid-template-rows: repeat(6, auto);
  }
  .tablet\:grid-rows-span-6 {
    grid-row: span 6/span 6;
  }
  .tablet\:grid-rows-span-start-6 {
    grid-row-start: span 6;
  }
  .tablet\:grid-rows-span-end-6 {
    grid-row-end: span 6;
  }
  .tablet\:grid-rows-start-6 {
    grid-row-start: 6;
  }
  .tablet\:grid-rows-end-6 {
    grid-row-end: 6;
  }
  .tablet\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .tablet\:grid-cols-6-auto {
    grid-template-columns: repeat(6, auto);
  }
  .tablet\:grid-col-span-6 {
    grid-column: span 6/span 6;
  }
  .tablet\:grid-col-span-start-6 {
    grid-column-start: span 6;
  }
  .tablet\:grid-col-span-end-6 {
    grid-column-end: span 6;
  }
  .tablet\:grid-col-start-6 {
    grid-column-start: 6;
  }
  .tablet\:grid-col-end-6 {
    grid-column-end: 6;
  }
  .tablet\:grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
  }
  .tablet\:grid-rows-7-auto {
    grid-template-rows: repeat(7, auto);
  }
  .tablet\:grid-rows-span-7 {
    grid-row: span 7/span 7;
  }
  .tablet\:grid-rows-span-start-7 {
    grid-row-start: span 7;
  }
  .tablet\:grid-rows-span-end-7 {
    grid-row-end: span 7;
  }
  .tablet\:grid-rows-start-7 {
    grid-row-start: 7;
  }
  .tablet\:grid-rows-end-7 {
    grid-row-end: 7;
  }
  .tablet\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .tablet\:grid-cols-7-auto {
    grid-template-columns: repeat(7, auto);
  }
  .tablet\:grid-col-span-7 {
    grid-column: span 7/span 7;
  }
  .tablet\:grid-col-span-start-7 {
    grid-column-start: span 7;
  }
  .tablet\:grid-col-span-end-7 {
    grid-column-end: span 7;
  }
  .tablet\:grid-col-start-7 {
    grid-column-start: 7;
  }
  .tablet\:grid-col-end-7 {
    grid-column-end: 7;
  }
  .tablet\:grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }
  .tablet\:grid-rows-8-auto {
    grid-template-rows: repeat(8, auto);
  }
  .tablet\:grid-rows-span-8 {
    grid-row: span 8/span 8;
  }
  .tablet\:grid-rows-span-start-8 {
    grid-row-start: span 8;
  }
  .tablet\:grid-rows-span-end-8 {
    grid-row-end: span 8;
  }
  .tablet\:grid-rows-start-8 {
    grid-row-start: 8;
  }
  .tablet\:grid-rows-end-8 {
    grid-row-end: 8;
  }
  .tablet\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .tablet\:grid-cols-8-auto {
    grid-template-columns: repeat(8, auto);
  }
  .tablet\:grid-col-span-8 {
    grid-column: span 8/span 8;
  }
  .tablet\:grid-col-span-start-8 {
    grid-column-start: span 8;
  }
  .tablet\:grid-col-span-end-8 {
    grid-column-end: span 8;
  }
  .tablet\:grid-col-start-8 {
    grid-column-start: 8;
  }
  .tablet\:grid-col-end-8 {
    grid-column-end: 8;
  }
  .tablet\:grid-rows-9 {
    grid-template-rows: repeat(9, minmax(0, 1fr));
  }
  .tablet\:grid-rows-9-auto {
    grid-template-rows: repeat(9, auto);
  }
  .tablet\:grid-rows-span-9 {
    grid-row: span 9/span 9;
  }
  .tablet\:grid-rows-span-start-9 {
    grid-row-start: span 9;
  }
  .tablet\:grid-rows-span-end-9 {
    grid-row-end: span 9;
  }
  .tablet\:grid-rows-start-9 {
    grid-row-start: 9;
  }
  .tablet\:grid-rows-end-9 {
    grid-row-end: 9;
  }
  .tablet\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .tablet\:grid-cols-9-auto {
    grid-template-columns: repeat(9, auto);
  }
  .tablet\:grid-col-span-9 {
    grid-column: span 9/span 9;
  }
  .tablet\:grid-col-span-start-9 {
    grid-column-start: span 9;
  }
  .tablet\:grid-col-span-end-9 {
    grid-column-end: span 9;
  }
  .tablet\:grid-col-start-9 {
    grid-column-start: 9;
  }
  .tablet\:grid-col-end-9 {
    grid-column-end: 9;
  }
  .tablet\:grid-rows-10 {
    grid-template-rows: repeat(10, minmax(0, 1fr));
  }
  .tablet\:grid-rows-10-auto {
    grid-template-rows: repeat(10, auto);
  }
  .tablet\:grid-rows-span-10 {
    grid-row: span 10/span 10;
  }
  .tablet\:grid-rows-span-start-10 {
    grid-row-start: span 10;
  }
  .tablet\:grid-rows-span-end-10 {
    grid-row-end: span 10;
  }
  .tablet\:grid-rows-start-10 {
    grid-row-start: 10;
  }
  .tablet\:grid-rows-end-10 {
    grid-row-end: 10;
  }
  .tablet\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .tablet\:grid-cols-10-auto {
    grid-template-columns: repeat(10, auto);
  }
  .tablet\:grid-col-span-10 {
    grid-column: span 10/span 10;
  }
  .tablet\:grid-col-span-start-10 {
    grid-column-start: span 10;
  }
  .tablet\:grid-col-span-end-10 {
    grid-column-end: span 10;
  }
  .tablet\:grid-col-start-10 {
    grid-column-start: 10;
  }
  .tablet\:grid-col-end-10 {
    grid-column-end: 10;
  }
  .tablet\:grid-rows-11 {
    grid-template-rows: repeat(11, minmax(0, 1fr));
  }
  .tablet\:grid-rows-11-auto {
    grid-template-rows: repeat(11, auto);
  }
  .tablet\:grid-rows-span-11 {
    grid-row: span 11/span 11;
  }
  .tablet\:grid-rows-span-start-11 {
    grid-row-start: span 11;
  }
  .tablet\:grid-rows-span-end-11 {
    grid-row-end: span 11;
  }
  .tablet\:grid-rows-start-11 {
    grid-row-start: 11;
  }
  .tablet\:grid-rows-end-11 {
    grid-row-end: 11;
  }
  .tablet\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .tablet\:grid-cols-11-auto {
    grid-template-columns: repeat(11, auto);
  }
  .tablet\:grid-col-span-11 {
    grid-column: span 11/span 11;
  }
  .tablet\:grid-col-span-start-11 {
    grid-column-start: span 11;
  }
  .tablet\:grid-col-span-end-11 {
    grid-column-end: span 11;
  }
  .tablet\:grid-col-start-11 {
    grid-column-start: 11;
  }
  .tablet\:grid-col-end-11 {
    grid-column-end: 11;
  }
  .tablet\:grid-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
  }
  .tablet\:grid-rows-12-auto {
    grid-template-rows: repeat(12, auto);
  }
  .tablet\:grid-rows-span-12 {
    grid-row: span 12/span 12;
  }
  .tablet\:grid-rows-span-start-12 {
    grid-row-start: span 12;
  }
  .tablet\:grid-rows-span-end-12 {
    grid-row-end: span 12;
  }
  .tablet\:grid-rows-start-12 {
    grid-row-start: 12;
  }
  .tablet\:grid-rows-end-12 {
    grid-row-end: 12;
  }
  .tablet\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .tablet\:grid-cols-12-auto {
    grid-template-columns: repeat(12, auto);
  }
  .tablet\:grid-col-span-12 {
    grid-column: span 12/span 12;
  }
  .tablet\:grid-col-span-start-12 {
    grid-column-start: span 12;
  }
  .tablet\:grid-col-span-end-12 {
    grid-column-end: span 12;
  }
  .tablet\:grid-col-start-12 {
    grid-column-start: 12;
  }
  .tablet\:grid-col-end-12 {
    grid-column-end: 12;
  }
  .tablet\:grid-rows-13 {
    grid-template-rows: repeat(13, minmax(0, 1fr));
  }
  .tablet\:grid-rows-13-auto {
    grid-template-rows: repeat(13, auto);
  }
  .tablet\:grid-rows-span-13 {
    grid-row: span 13/span 13;
  }
  .tablet\:grid-rows-span-start-13 {
    grid-row-start: span 13;
  }
  .tablet\:grid-rows-span-end-13 {
    grid-row-end: span 13;
  }
  .tablet\:grid-rows-start-13 {
    grid-row-start: 13;
  }
  .tablet\:grid-rows-end-13 {
    grid-row-end: 13;
  }
  .tablet\:grid-cols-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .tablet\:grid-cols-13-auto {
    grid-template-columns: repeat(13, auto);
  }
  .tablet\:grid-col-span-13 {
    grid-column: span 13/span 13;
  }
  .tablet\:grid-col-span-start-13 {
    grid-column-start: span 13;
  }
  .tablet\:grid-col-span-end-13 {
    grid-column-end: span 13;
  }
  .tablet\:grid-col-start-13 {
    grid-column-start: 13;
  }
  .tablet\:grid-col-end-13 {
    grid-column-end: 13;
  }
  .tablet\:grid-rows-none {
    grid-template-rows: none;
  }
  .tablet\:grid-rows-auto {
    grid-row: auto;
  }
  .tablet\:grid-rows-span-full {
    grid-row: 1/-1;
  }
  .tablet\:grid-rows-start-auto {
    grid-row-start: auto;
  }
  .tablet\:grid-rows-end-auto {
    grid-row-end: auto;
  }
  .tablet\:grid-auto-rows {
    grid-auto-rows: auto;
  }
  .tablet\:grid-auto-rows-min {
    grid-auto-rows: min-content;
  }
  .tablet\:grid-auto-rows-max {
    grid-auto-rows: max-content;
  }
  .tablet\:grid-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr);
  }
  .tablet\:grid-flow-row {
    grid-auto-flow: row;
  }
  .tablet\:grid-flow-rows-dense {
    grid-auto-flow: row dense;
  }
  .tablet\:grid-cols-none {
    grid-template-columns: none;
  }
  .tablet\:grid-col-auto {
    grid-column: auto;
  }
  .tablet\:grid-col-span-full {
    grid-column: 1/-1;
  }
  .tablet\:grid-col-start-auto {
    grid-column-start: auto;
  }
  .tablet\:grid-col-end-auto {
    grid-column-end: auto;
  }
  .tablet\:grid-auto-cols {
    grid-auto-columns: auto;
  }
  .tablet\:grid-auto-cols-min {
    grid-auto-columns: min-content;
  }
  .tablet\:grid-auto-cols-max {
    grid-auto-columns: max-content;
  }
  .tablet\:grid-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr);
  }
  .tablet\:grid-flow-col {
    grid-auto-flow: column;
  }
  .tablet\:grid-flow-col-dense {
    grid-auto-flow: column dense;
  }
  .tablet\:grid-flow-dense {
    grid-auto-flow: dense;
  }
  .tablet\:grid-auto-rows-none {
    grid-auto-rows: minmax(0, var(--padding-none));
  }
  .tablet\:grid-rows-auto-none {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-none), 1fr));
  }
  .tablet\:grid-auto-cols-none {
    grid-auto-columns: minmax(0, var(--padding-none));
  }
  .tablet\:grid-cols-auto-none {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-none), 1fr));
  }
  .tablet\:grid-auto-rows-hairline {
    grid-auto-rows: minmax(0, var(--padding-hairline));
  }
  .tablet\:grid-rows-auto-hairline {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-hairline), 1fr));
  }
  .tablet\:grid-auto-cols-hairline {
    grid-auto-columns: minmax(0, var(--padding-hairline));
  }
  .tablet\:grid-cols-auto-hairline {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-hairline), 1fr));
  }
  .tablet\:grid-auto-rows-thin {
    grid-auto-rows: minmax(0, var(--padding-thin));
  }
  .tablet\:grid-rows-auto-thin {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-thin), 1fr));
  }
  .tablet\:grid-auto-cols-thin {
    grid-auto-columns: minmax(0, var(--padding-thin));
  }
  .tablet\:grid-cols-auto-thin {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-thin), 1fr));
  }
  .tablet\:grid-auto-rows-slim {
    grid-auto-rows: minmax(0, var(--padding-slim));
  }
  .tablet\:grid-rows-auto-slim {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-slim), 1fr));
  }
  .tablet\:grid-auto-cols-slim {
    grid-auto-columns: minmax(0, var(--padding-slim));
  }
  .tablet\:grid-cols-auto-slim {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-slim), 1fr));
  }
  .tablet\:grid-auto-rows-extra-small {
    grid-auto-rows: minmax(0, var(--padding-extra-small));
  }
  .tablet\:grid-rows-auto-extra-small {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-extra-small), 1fr));
  }
  .tablet\:grid-auto-cols-extra-small {
    grid-auto-columns: minmax(0, var(--padding-extra-small));
  }
  .tablet\:grid-cols-auto-extra-small {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-extra-small), 1fr));
  }
  .tablet\:grid-auto-rows-small {
    grid-auto-rows: minmax(0, var(--padding-small));
  }
  .tablet\:grid-rows-auto-small {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-small), 1fr));
  }
  .tablet\:grid-auto-cols-small {
    grid-auto-columns: minmax(0, var(--padding-small));
  }
  .tablet\:grid-cols-auto-small {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-small), 1fr));
  }
  .tablet\:grid-auto-rows-medium {
    grid-auto-rows: minmax(0, var(--padding-medium));
  }
  .tablet\:grid-rows-auto-medium {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-medium), 1fr));
  }
  .tablet\:grid-auto-cols-medium {
    grid-auto-columns: minmax(0, var(--padding-medium));
  }
  .tablet\:grid-cols-auto-medium {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-medium), 1fr));
  }
  .tablet\:grid-auto-rows-large {
    grid-auto-rows: minmax(0, var(--padding-large));
  }
  .tablet\:grid-rows-auto-large {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-large), 1fr));
  }
  .tablet\:grid-auto-cols-large {
    grid-auto-columns: minmax(0, var(--padding-large));
  }
  .tablet\:grid-cols-auto-large {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-large), 1fr));
  }
  .tablet\:grid-auto-rows-extra-large {
    grid-auto-rows: minmax(0, var(--padding-extra-large));
  }
  .tablet\:grid-rows-auto-extra-large {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-extra-large), 1fr));
  }
  .tablet\:grid-auto-cols-extra-large {
    grid-auto-columns: minmax(0, var(--padding-extra-large));
  }
  .tablet\:grid-cols-auto-extra-large {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-extra-large), 1fr));
  }
  .tablet\:grid-auto-rows-huge {
    grid-auto-rows: minmax(0, var(--padding-huge));
  }
  .tablet\:grid-rows-auto-huge {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-huge), 1fr));
  }
  .tablet\:grid-auto-cols-huge {
    grid-auto-columns: minmax(0, var(--padding-huge));
  }
  .tablet\:grid-cols-auto-huge {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-huge), 1fr));
  }
  .tablet\:grid-auto-rows-1 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 1));
  }
  .tablet\:grid-rows-auto-1 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 1), 1fr));
  }
  .tablet\:grid-auto-cols-1 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 1));
  }
  .tablet\:grid-cols-auto-1 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 1), 1fr));
  }
  .tablet\:grid-auto-rows-2 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 2));
  }
  .tablet\:grid-rows-auto-2 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 2), 1fr));
  }
  .tablet\:grid-auto-cols-2 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 2));
  }
  .tablet\:grid-cols-auto-2 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 2), 1fr));
  }
  .tablet\:grid-auto-rows-3 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 3));
  }
  .tablet\:grid-rows-auto-3 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 3), 1fr));
  }
  .tablet\:grid-auto-cols-3 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 3));
  }
  .tablet\:grid-cols-auto-3 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 3), 1fr));
  }
  .tablet\:grid-auto-rows-4 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 4));
  }
  .tablet\:grid-rows-auto-4 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 4), 1fr));
  }
  .tablet\:grid-auto-cols-4 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 4));
  }
  .tablet\:grid-cols-auto-4 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 4), 1fr));
  }
  .tablet\:grid-auto-rows-5 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 5));
  }
  .tablet\:grid-rows-auto-5 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 5), 1fr));
  }
  .tablet\:grid-auto-cols-5 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 5));
  }
  .tablet\:grid-cols-auto-5 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 5), 1fr));
  }
  .tablet\:grid-auto-rows-6 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 6));
  }
  .tablet\:grid-rows-auto-6 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 6), 1fr));
  }
  .tablet\:grid-auto-cols-6 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 6));
  }
  .tablet\:grid-cols-auto-6 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 6), 1fr));
  }
  .tablet\:grid-auto-rows-7 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 7));
  }
  .tablet\:grid-rows-auto-7 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 7), 1fr));
  }
  .tablet\:grid-auto-cols-7 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 7));
  }
  .tablet\:grid-cols-auto-7 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 7), 1fr));
  }
  .tablet\:grid-auto-rows-8 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 8));
  }
  .tablet\:grid-rows-auto-8 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 8), 1fr));
  }
  .tablet\:grid-auto-cols-8 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 8));
  }
  .tablet\:grid-cols-auto-8 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 8), 1fr));
  }
  .tablet\:grid-auto-rows-9 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 9));
  }
  .tablet\:grid-rows-auto-9 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 9), 1fr));
  }
  .tablet\:grid-auto-cols-9 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 9));
  }
  .tablet\:grid-cols-auto-9 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 9), 1fr));
  }
  .tablet\:grid-auto-rows-10 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 10));
  }
  .tablet\:grid-rows-auto-10 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 10), 1fr));
  }
  .tablet\:grid-auto-cols-10 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 10));
  }
  .tablet\:grid-cols-auto-10 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 10), 1fr));
  }
  .tablet\:grid-auto-rows-11 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 11));
  }
  .tablet\:grid-rows-auto-11 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 11), 1fr));
  }
  .tablet\:grid-auto-cols-11 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 11));
  }
  .tablet\:grid-cols-auto-11 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 11), 1fr));
  }
  .tablet\:grid-auto-rows-12 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 12));
  }
  .tablet\:grid-rows-auto-12 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 12), 1fr));
  }
  .tablet\:grid-auto-cols-12 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 12));
  }
  .tablet\:grid-cols-auto-12 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 12), 1fr));
  }
}
@media (max-width: 768px) {
  .mobile\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .mobile\:grid-rows-1-auto {
    grid-template-rows: repeat(1, auto);
  }
  .mobile\:grid-rows-span-1 {
    grid-row: span 1/span 1;
  }
  .mobile\:grid-rows-span-start-1 {
    grid-row-start: span 1;
  }
  .mobile\:grid-rows-span-end-1 {
    grid-row-end: span 1;
  }
  .mobile\:grid-rows-start-1 {
    grid-row-start: 1;
  }
  .mobile\:grid-rows-end-1 {
    grid-row-end: 1;
  }
  .mobile\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .mobile\:grid-cols-1-auto {
    grid-template-columns: repeat(1, auto);
  }
  .mobile\:grid-col-span-1 {
    grid-column: span 1/span 1;
  }
  .mobile\:grid-col-span-start-1 {
    grid-column-start: span 1;
  }
  .mobile\:grid-col-span-end-1 {
    grid-column-end: span 1;
  }
  .mobile\:grid-col-start-1 {
    grid-column-start: 1;
  }
  .mobile\:grid-col-end-1 {
    grid-column-end: 1;
  }
  .mobile\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .mobile\:grid-rows-2-auto {
    grid-template-rows: repeat(2, auto);
  }
  .mobile\:grid-rows-span-2 {
    grid-row: span 2/span 2;
  }
  .mobile\:grid-rows-span-start-2 {
    grid-row-start: span 2;
  }
  .mobile\:grid-rows-span-end-2 {
    grid-row-end: span 2;
  }
  .mobile\:grid-rows-start-2 {
    grid-row-start: 2;
  }
  .mobile\:grid-rows-end-2 {
    grid-row-end: 2;
  }
  .mobile\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mobile\:grid-cols-2-auto {
    grid-template-columns: repeat(2, auto);
  }
  .mobile\:grid-col-span-2 {
    grid-column: span 2/span 2;
  }
  .mobile\:grid-col-span-start-2 {
    grid-column-start: span 2;
  }
  .mobile\:grid-col-span-end-2 {
    grid-column-end: span 2;
  }
  .mobile\:grid-col-start-2 {
    grid-column-start: 2;
  }
  .mobile\:grid-col-end-2 {
    grid-column-end: 2;
  }
  .mobile\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .mobile\:grid-rows-3-auto {
    grid-template-rows: repeat(3, auto);
  }
  .mobile\:grid-rows-span-3 {
    grid-row: span 3/span 3;
  }
  .mobile\:grid-rows-span-start-3 {
    grid-row-start: span 3;
  }
  .mobile\:grid-rows-span-end-3 {
    grid-row-end: span 3;
  }
  .mobile\:grid-rows-start-3 {
    grid-row-start: 3;
  }
  .mobile\:grid-rows-end-3 {
    grid-row-end: 3;
  }
  .mobile\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mobile\:grid-cols-3-auto {
    grid-template-columns: repeat(3, auto);
  }
  .mobile\:grid-col-span-3 {
    grid-column: span 3/span 3;
  }
  .mobile\:grid-col-span-start-3 {
    grid-column-start: span 3;
  }
  .mobile\:grid-col-span-end-3 {
    grid-column-end: span 3;
  }
  .mobile\:grid-col-start-3 {
    grid-column-start: 3;
  }
  .mobile\:grid-col-end-3 {
    grid-column-end: 3;
  }
  .mobile\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .mobile\:grid-rows-4-auto {
    grid-template-rows: repeat(4, auto);
  }
  .mobile\:grid-rows-span-4 {
    grid-row: span 4/span 4;
  }
  .mobile\:grid-rows-span-start-4 {
    grid-row-start: span 4;
  }
  .mobile\:grid-rows-span-end-4 {
    grid-row-end: span 4;
  }
  .mobile\:grid-rows-start-4 {
    grid-row-start: 4;
  }
  .mobile\:grid-rows-end-4 {
    grid-row-end: 4;
  }
  .mobile\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .mobile\:grid-cols-4-auto {
    grid-template-columns: repeat(4, auto);
  }
  .mobile\:grid-col-span-4 {
    grid-column: span 4/span 4;
  }
  .mobile\:grid-col-span-start-4 {
    grid-column-start: span 4;
  }
  .mobile\:grid-col-span-end-4 {
    grid-column-end: span 4;
  }
  .mobile\:grid-col-start-4 {
    grid-column-start: 4;
  }
  .mobile\:grid-col-end-4 {
    grid-column-end: 4;
  }
  .mobile\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .mobile\:grid-rows-5-auto {
    grid-template-rows: repeat(5, auto);
  }
  .mobile\:grid-rows-span-5 {
    grid-row: span 5/span 5;
  }
  .mobile\:grid-rows-span-start-5 {
    grid-row-start: span 5;
  }
  .mobile\:grid-rows-span-end-5 {
    grid-row-end: span 5;
  }
  .mobile\:grid-rows-start-5 {
    grid-row-start: 5;
  }
  .mobile\:grid-rows-end-5 {
    grid-row-end: 5;
  }
  .mobile\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .mobile\:grid-cols-5-auto {
    grid-template-columns: repeat(5, auto);
  }
  .mobile\:grid-col-span-5 {
    grid-column: span 5/span 5;
  }
  .mobile\:grid-col-span-start-5 {
    grid-column-start: span 5;
  }
  .mobile\:grid-col-span-end-5 {
    grid-column-end: span 5;
  }
  .mobile\:grid-col-start-5 {
    grid-column-start: 5;
  }
  .mobile\:grid-col-end-5 {
    grid-column-end: 5;
  }
  .mobile\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .mobile\:grid-rows-6-auto {
    grid-template-rows: repeat(6, auto);
  }
  .mobile\:grid-rows-span-6 {
    grid-row: span 6/span 6;
  }
  .mobile\:grid-rows-span-start-6 {
    grid-row-start: span 6;
  }
  .mobile\:grid-rows-span-end-6 {
    grid-row-end: span 6;
  }
  .mobile\:grid-rows-start-6 {
    grid-row-start: 6;
  }
  .mobile\:grid-rows-end-6 {
    grid-row-end: 6;
  }
  .mobile\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .mobile\:grid-cols-6-auto {
    grid-template-columns: repeat(6, auto);
  }
  .mobile\:grid-col-span-6 {
    grid-column: span 6/span 6;
  }
  .mobile\:grid-col-span-start-6 {
    grid-column-start: span 6;
  }
  .mobile\:grid-col-span-end-6 {
    grid-column-end: span 6;
  }
  .mobile\:grid-col-start-6 {
    grid-column-start: 6;
  }
  .mobile\:grid-col-end-6 {
    grid-column-end: 6;
  }
  .mobile\:grid-rows-7 {
    grid-template-rows: repeat(7, minmax(0, 1fr));
  }
  .mobile\:grid-rows-7-auto {
    grid-template-rows: repeat(7, auto);
  }
  .mobile\:grid-rows-span-7 {
    grid-row: span 7/span 7;
  }
  .mobile\:grid-rows-span-start-7 {
    grid-row-start: span 7;
  }
  .mobile\:grid-rows-span-end-7 {
    grid-row-end: span 7;
  }
  .mobile\:grid-rows-start-7 {
    grid-row-start: 7;
  }
  .mobile\:grid-rows-end-7 {
    grid-row-end: 7;
  }
  .mobile\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .mobile\:grid-cols-7-auto {
    grid-template-columns: repeat(7, auto);
  }
  .mobile\:grid-col-span-7 {
    grid-column: span 7/span 7;
  }
  .mobile\:grid-col-span-start-7 {
    grid-column-start: span 7;
  }
  .mobile\:grid-col-span-end-7 {
    grid-column-end: span 7;
  }
  .mobile\:grid-col-start-7 {
    grid-column-start: 7;
  }
  .mobile\:grid-col-end-7 {
    grid-column-end: 7;
  }
  .mobile\:grid-rows-8 {
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }
  .mobile\:grid-rows-8-auto {
    grid-template-rows: repeat(8, auto);
  }
  .mobile\:grid-rows-span-8 {
    grid-row: span 8/span 8;
  }
  .mobile\:grid-rows-span-start-8 {
    grid-row-start: span 8;
  }
  .mobile\:grid-rows-span-end-8 {
    grid-row-end: span 8;
  }
  .mobile\:grid-rows-start-8 {
    grid-row-start: 8;
  }
  .mobile\:grid-rows-end-8 {
    grid-row-end: 8;
  }
  .mobile\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .mobile\:grid-cols-8-auto {
    grid-template-columns: repeat(8, auto);
  }
  .mobile\:grid-col-span-8 {
    grid-column: span 8/span 8;
  }
  .mobile\:grid-col-span-start-8 {
    grid-column-start: span 8;
  }
  .mobile\:grid-col-span-end-8 {
    grid-column-end: span 8;
  }
  .mobile\:grid-col-start-8 {
    grid-column-start: 8;
  }
  .mobile\:grid-col-end-8 {
    grid-column-end: 8;
  }
  .mobile\:grid-rows-9 {
    grid-template-rows: repeat(9, minmax(0, 1fr));
  }
  .mobile\:grid-rows-9-auto {
    grid-template-rows: repeat(9, auto);
  }
  .mobile\:grid-rows-span-9 {
    grid-row: span 9/span 9;
  }
  .mobile\:grid-rows-span-start-9 {
    grid-row-start: span 9;
  }
  .mobile\:grid-rows-span-end-9 {
    grid-row-end: span 9;
  }
  .mobile\:grid-rows-start-9 {
    grid-row-start: 9;
  }
  .mobile\:grid-rows-end-9 {
    grid-row-end: 9;
  }
  .mobile\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .mobile\:grid-cols-9-auto {
    grid-template-columns: repeat(9, auto);
  }
  .mobile\:grid-col-span-9 {
    grid-column: span 9/span 9;
  }
  .mobile\:grid-col-span-start-9 {
    grid-column-start: span 9;
  }
  .mobile\:grid-col-span-end-9 {
    grid-column-end: span 9;
  }
  .mobile\:grid-col-start-9 {
    grid-column-start: 9;
  }
  .mobile\:grid-col-end-9 {
    grid-column-end: 9;
  }
  .mobile\:grid-rows-10 {
    grid-template-rows: repeat(10, minmax(0, 1fr));
  }
  .mobile\:grid-rows-10-auto {
    grid-template-rows: repeat(10, auto);
  }
  .mobile\:grid-rows-span-10 {
    grid-row: span 10/span 10;
  }
  .mobile\:grid-rows-span-start-10 {
    grid-row-start: span 10;
  }
  .mobile\:grid-rows-span-end-10 {
    grid-row-end: span 10;
  }
  .mobile\:grid-rows-start-10 {
    grid-row-start: 10;
  }
  .mobile\:grid-rows-end-10 {
    grid-row-end: 10;
  }
  .mobile\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .mobile\:grid-cols-10-auto {
    grid-template-columns: repeat(10, auto);
  }
  .mobile\:grid-col-span-10 {
    grid-column: span 10/span 10;
  }
  .mobile\:grid-col-span-start-10 {
    grid-column-start: span 10;
  }
  .mobile\:grid-col-span-end-10 {
    grid-column-end: span 10;
  }
  .mobile\:grid-col-start-10 {
    grid-column-start: 10;
  }
  .mobile\:grid-col-end-10 {
    grid-column-end: 10;
  }
  .mobile\:grid-rows-11 {
    grid-template-rows: repeat(11, minmax(0, 1fr));
  }
  .mobile\:grid-rows-11-auto {
    grid-template-rows: repeat(11, auto);
  }
  .mobile\:grid-rows-span-11 {
    grid-row: span 11/span 11;
  }
  .mobile\:grid-rows-span-start-11 {
    grid-row-start: span 11;
  }
  .mobile\:grid-rows-span-end-11 {
    grid-row-end: span 11;
  }
  .mobile\:grid-rows-start-11 {
    grid-row-start: 11;
  }
  .mobile\:grid-rows-end-11 {
    grid-row-end: 11;
  }
  .mobile\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .mobile\:grid-cols-11-auto {
    grid-template-columns: repeat(11, auto);
  }
  .mobile\:grid-col-span-11 {
    grid-column: span 11/span 11;
  }
  .mobile\:grid-col-span-start-11 {
    grid-column-start: span 11;
  }
  .mobile\:grid-col-span-end-11 {
    grid-column-end: span 11;
  }
  .mobile\:grid-col-start-11 {
    grid-column-start: 11;
  }
  .mobile\:grid-col-end-11 {
    grid-column-end: 11;
  }
  .mobile\:grid-rows-12 {
    grid-template-rows: repeat(12, minmax(0, 1fr));
  }
  .mobile\:grid-rows-12-auto {
    grid-template-rows: repeat(12, auto);
  }
  .mobile\:grid-rows-span-12 {
    grid-row: span 12/span 12;
  }
  .mobile\:grid-rows-span-start-12 {
    grid-row-start: span 12;
  }
  .mobile\:grid-rows-span-end-12 {
    grid-row-end: span 12;
  }
  .mobile\:grid-rows-start-12 {
    grid-row-start: 12;
  }
  .mobile\:grid-rows-end-12 {
    grid-row-end: 12;
  }
  .mobile\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .mobile\:grid-cols-12-auto {
    grid-template-columns: repeat(12, auto);
  }
  .mobile\:grid-col-span-12 {
    grid-column: span 12/span 12;
  }
  .mobile\:grid-col-span-start-12 {
    grid-column-start: span 12;
  }
  .mobile\:grid-col-span-end-12 {
    grid-column-end: span 12;
  }
  .mobile\:grid-col-start-12 {
    grid-column-start: 12;
  }
  .mobile\:grid-col-end-12 {
    grid-column-end: 12;
  }
  .mobile\:grid-rows-13 {
    grid-template-rows: repeat(13, minmax(0, 1fr));
  }
  .mobile\:grid-rows-13-auto {
    grid-template-rows: repeat(13, auto);
  }
  .mobile\:grid-rows-span-13 {
    grid-row: span 13/span 13;
  }
  .mobile\:grid-rows-span-start-13 {
    grid-row-start: span 13;
  }
  .mobile\:grid-rows-span-end-13 {
    grid-row-end: span 13;
  }
  .mobile\:grid-rows-start-13 {
    grid-row-start: 13;
  }
  .mobile\:grid-rows-end-13 {
    grid-row-end: 13;
  }
  .mobile\:grid-cols-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .mobile\:grid-cols-13-auto {
    grid-template-columns: repeat(13, auto);
  }
  .mobile\:grid-col-span-13 {
    grid-column: span 13/span 13;
  }
  .mobile\:grid-col-span-start-13 {
    grid-column-start: span 13;
  }
  .mobile\:grid-col-span-end-13 {
    grid-column-end: span 13;
  }
  .mobile\:grid-col-start-13 {
    grid-column-start: 13;
  }
  .mobile\:grid-col-end-13 {
    grid-column-end: 13;
  }
  .mobile\:grid-rows-none {
    grid-template-rows: none;
  }
  .mobile\:grid-rows-auto {
    grid-row: auto;
  }
  .mobile\:grid-rows-span-full {
    grid-row: 1/-1;
  }
  .mobile\:grid-rows-start-auto {
    grid-row-start: auto;
  }
  .mobile\:grid-rows-end-auto {
    grid-row-end: auto;
  }
  .mobile\:grid-auto-rows {
    grid-auto-rows: auto;
  }
  .mobile\:grid-auto-rows-min {
    grid-auto-rows: min-content;
  }
  .mobile\:grid-auto-rows-max {
    grid-auto-rows: max-content;
  }
  .mobile\:grid-auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr);
  }
  .mobile\:grid-flow-row {
    grid-auto-flow: row;
  }
  .mobile\:grid-flow-rows-dense {
    grid-auto-flow: row dense;
  }
  .mobile\:grid-cols-none {
    grid-template-columns: none;
  }
  .mobile\:grid-col-auto {
    grid-column: auto;
  }
  .mobile\:grid-col-span-full {
    grid-column: 1/-1;
  }
  .mobile\:grid-col-start-auto {
    grid-column-start: auto;
  }
  .mobile\:grid-col-end-auto {
    grid-column-end: auto;
  }
  .mobile\:grid-auto-cols {
    grid-auto-columns: auto;
  }
  .mobile\:grid-auto-cols-min {
    grid-auto-columns: min-content;
  }
  .mobile\:grid-auto-cols-max {
    grid-auto-columns: max-content;
  }
  .mobile\:grid-auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr);
  }
  .mobile\:grid-flow-col {
    grid-auto-flow: column;
  }
  .mobile\:grid-flow-col-dense {
    grid-auto-flow: column dense;
  }
  .mobile\:grid-flow-dense {
    grid-auto-flow: dense;
  }
  .mobile\:grid-auto-rows-none {
    grid-auto-rows: minmax(0, var(--padding-none));
  }
  .mobile\:grid-rows-auto-none {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-none), 1fr));
  }
  .mobile\:grid-auto-cols-none {
    grid-auto-columns: minmax(0, var(--padding-none));
  }
  .mobile\:grid-cols-auto-none {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-none), 1fr));
  }
  .mobile\:grid-auto-rows-hairline {
    grid-auto-rows: minmax(0, var(--padding-hairline));
  }
  .mobile\:grid-rows-auto-hairline {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-hairline), 1fr));
  }
  .mobile\:grid-auto-cols-hairline {
    grid-auto-columns: minmax(0, var(--padding-hairline));
  }
  .mobile\:grid-cols-auto-hairline {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-hairline), 1fr));
  }
  .mobile\:grid-auto-rows-thin {
    grid-auto-rows: minmax(0, var(--padding-thin));
  }
  .mobile\:grid-rows-auto-thin {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-thin), 1fr));
  }
  .mobile\:grid-auto-cols-thin {
    grid-auto-columns: minmax(0, var(--padding-thin));
  }
  .mobile\:grid-cols-auto-thin {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-thin), 1fr));
  }
  .mobile\:grid-auto-rows-slim {
    grid-auto-rows: minmax(0, var(--padding-slim));
  }
  .mobile\:grid-rows-auto-slim {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-slim), 1fr));
  }
  .mobile\:grid-auto-cols-slim {
    grid-auto-columns: minmax(0, var(--padding-slim));
  }
  .mobile\:grid-cols-auto-slim {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-slim), 1fr));
  }
  .mobile\:grid-auto-rows-extra-small {
    grid-auto-rows: minmax(0, var(--padding-extra-small));
  }
  .mobile\:grid-rows-auto-extra-small {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-extra-small), 1fr));
  }
  .mobile\:grid-auto-cols-extra-small {
    grid-auto-columns: minmax(0, var(--padding-extra-small));
  }
  .mobile\:grid-cols-auto-extra-small {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-extra-small), 1fr));
  }
  .mobile\:grid-auto-rows-small {
    grid-auto-rows: minmax(0, var(--padding-small));
  }
  .mobile\:grid-rows-auto-small {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-small), 1fr));
  }
  .mobile\:grid-auto-cols-small {
    grid-auto-columns: minmax(0, var(--padding-small));
  }
  .mobile\:grid-cols-auto-small {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-small), 1fr));
  }
  .mobile\:grid-auto-rows-medium {
    grid-auto-rows: minmax(0, var(--padding-medium));
  }
  .mobile\:grid-rows-auto-medium {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-medium), 1fr));
  }
  .mobile\:grid-auto-cols-medium {
    grid-auto-columns: minmax(0, var(--padding-medium));
  }
  .mobile\:grid-cols-auto-medium {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-medium), 1fr));
  }
  .mobile\:grid-auto-rows-large {
    grid-auto-rows: minmax(0, var(--padding-large));
  }
  .mobile\:grid-rows-auto-large {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-large), 1fr));
  }
  .mobile\:grid-auto-cols-large {
    grid-auto-columns: minmax(0, var(--padding-large));
  }
  .mobile\:grid-cols-auto-large {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-large), 1fr));
  }
  .mobile\:grid-auto-rows-extra-large {
    grid-auto-rows: minmax(0, var(--padding-extra-large));
  }
  .mobile\:grid-rows-auto-extra-large {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-extra-large), 1fr));
  }
  .mobile\:grid-auto-cols-extra-large {
    grid-auto-columns: minmax(0, var(--padding-extra-large));
  }
  .mobile\:grid-cols-auto-extra-large {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-extra-large), 1fr));
  }
  .mobile\:grid-auto-rows-huge {
    grid-auto-rows: minmax(0, var(--padding-huge));
  }
  .mobile\:grid-rows-auto-huge {
    grid-template-rows: repeat(auto-fill, minmax(var(--padding-huge), 1fr));
  }
  .mobile\:grid-auto-cols-huge {
    grid-auto-columns: minmax(0, var(--padding-huge));
  }
  .mobile\:grid-cols-auto-huge {
    grid-template-columns: repeat(auto-fill, minmax(var(--padding-huge), 1fr));
  }
  .mobile\:grid-auto-rows-1 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 1));
  }
  .mobile\:grid-rows-auto-1 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 1), 1fr));
  }
  .mobile\:grid-auto-cols-1 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 1));
  }
  .mobile\:grid-cols-auto-1 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 1), 1fr));
  }
  .mobile\:grid-auto-rows-2 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 2));
  }
  .mobile\:grid-rows-auto-2 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 2), 1fr));
  }
  .mobile\:grid-auto-cols-2 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 2));
  }
  .mobile\:grid-cols-auto-2 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 2), 1fr));
  }
  .mobile\:grid-auto-rows-3 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 3));
  }
  .mobile\:grid-rows-auto-3 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 3), 1fr));
  }
  .mobile\:grid-auto-cols-3 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 3));
  }
  .mobile\:grid-cols-auto-3 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 3), 1fr));
  }
  .mobile\:grid-auto-rows-4 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 4));
  }
  .mobile\:grid-rows-auto-4 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 4), 1fr));
  }
  .mobile\:grid-auto-cols-4 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 4));
  }
  .mobile\:grid-cols-auto-4 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 4), 1fr));
  }
  .mobile\:grid-auto-rows-5 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 5));
  }
  .mobile\:grid-rows-auto-5 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 5), 1fr));
  }
  .mobile\:grid-auto-cols-5 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 5));
  }
  .mobile\:grid-cols-auto-5 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 5), 1fr));
  }
  .mobile\:grid-auto-rows-6 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 6));
  }
  .mobile\:grid-rows-auto-6 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 6), 1fr));
  }
  .mobile\:grid-auto-cols-6 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 6));
  }
  .mobile\:grid-cols-auto-6 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 6), 1fr));
  }
  .mobile\:grid-auto-rows-7 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 7));
  }
  .mobile\:grid-rows-auto-7 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 7), 1fr));
  }
  .mobile\:grid-auto-cols-7 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 7));
  }
  .mobile\:grid-cols-auto-7 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 7), 1fr));
  }
  .mobile\:grid-auto-rows-8 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 8));
  }
  .mobile\:grid-rows-auto-8 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 8), 1fr));
  }
  .mobile\:grid-auto-cols-8 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 8));
  }
  .mobile\:grid-cols-auto-8 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 8), 1fr));
  }
  .mobile\:grid-auto-rows-9 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 9));
  }
  .mobile\:grid-rows-auto-9 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 9), 1fr));
  }
  .mobile\:grid-auto-cols-9 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 9));
  }
  .mobile\:grid-cols-auto-9 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 9), 1fr));
  }
  .mobile\:grid-auto-rows-10 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 10));
  }
  .mobile\:grid-rows-auto-10 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 10), 1fr));
  }
  .mobile\:grid-auto-cols-10 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 10));
  }
  .mobile\:grid-cols-auto-10 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 10), 1fr));
  }
  .mobile\:grid-auto-rows-11 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 11));
  }
  .mobile\:grid-rows-auto-11 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 11), 1fr));
  }
  .mobile\:grid-auto-cols-11 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 11));
  }
  .mobile\:grid-cols-auto-11 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 11), 1fr));
  }
  .mobile\:grid-auto-rows-12 {
    grid-auto-rows: minmax(0, calc(1440px / 12 * 12));
  }
  .mobile\:grid-rows-auto-12 {
    grid-template-rows: repeat(auto-fill, minmax(calc(1440px / 12 * 12), 1fr));
  }
  .mobile\:grid-auto-cols-12 {
    grid-auto-columns: minmax(0, calc(1440px / 12 * 12));
  }
  .mobile\:grid-cols-auto-12 {
    grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 12), 1fr));
  }
}
.grid-editorial {
  display: grid;
}
@media (min-width: 1025px) {
  .grid-editorial.grid-items {
    /* Styles for 2 cards */
  }
  .grid-editorial.grid-items {
    /* Styles for 3 cards */
    /* Styles for 4 cards */
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  .grid-editorial.grid-items-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  .grid-editorial.grid-items-3 > :nth-child(1), .grid-editorial.grid-items-3 > :nth-child(3) {
    grid-column: span 6;
  }
  .grid-editorial.grid-items-3 > :nth-child(2) {
    grid-column: 7/span 6;
    grid-row: span 2;
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  .grid-editorial.grid-items-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-editorial.grid-items-4 > :first-child {
    min-height: calc(1440px / 12 * 3);
    grid-column: 1/-1;
  }
}
@media (min-width: 1025px) and (min-width: 1025px) {
  .grid-editorial.grid-items-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-editorial.grid-items-5 > :first-child {
    min-height: calc(1440px / 12 * 3);
    grid-column: span 2/span 2;
  }
}

/* Temporary styles until real content is present
   TODO: may need to split this into a 2 column grid,
   with a nested grid within the right column.
*/
.grid-masonry {
  display: grid;
  gap: var(--padding-large);
}
@media (min-width: 769px) {
  .grid-masonry.grid-items-9 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: unset;
  }
  .grid-masonry.grid-items-9 > * {
    grid-column: span 1;
    grid-row: span 4;
  }
  .grid-masonry.grid-items-9 > :nth-child(7) {
    grid-column: span 2;
    grid-row: span 3;
  }
}
@media (min-width: 1025px) {
  .grid-masonry.grid-items-9 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
  .grid-masonry.grid-items-9 > * {
    grid-column: span 3;
    grid-row: span 7;
  }
  .grid-masonry.grid-items-9 > :nth-child(1), .grid-masonry.grid-items-9 > :nth-child(6) {
    grid-column: span 4;
    grid-row: span 10;
  }
  .grid-masonry.grid-items-9 > :nth-child(7) {
    grid-column: span 6;
    grid-row: span 4;
  }
}

.grid-collapsible {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(1440px / 12 * 2.5), 1fr));
}

@media (max-width: 8640px) {
  .pointer-events-none {
    pointer-events: none;
  }
  .pointer-events-initial {
    pointer-events: initial;
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .cursor-default {
    cursor: default;
  }
  .cursor-not-allowed {
    cursor: not-allowed;
  }
  .cursor-initial {
    cursor: initial;
  }
  .no-scrollbar {
    scrollbar-width: none;
  }
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .overscroll-contain {
    overscroll-behavior: contain;
  }
}
@media (max-width: 1024px) {
  .tablet\:pointer-events-none {
    pointer-events: none;
  }
  .tablet\:pointer-events-initial {
    pointer-events: initial;
  }
  .tablet\:cursor-pointer {
    cursor: pointer;
  }
  .tablet\:cursor-default {
    cursor: default;
  }
  .tablet\:cursor-not-allowed {
    cursor: not-allowed;
  }
  .tablet\:cursor-initial {
    cursor: initial;
  }
  .tablet\:no-scrollbar {
    scrollbar-width: none;
  }
  .tablet\:no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .tablet\:overscroll-contain {
    overscroll-behavior: contain;
  }
}
@media (max-width: 768px) {
  .mobile\:pointer-events-none {
    pointer-events: none;
  }
  .mobile\:pointer-events-initial {
    pointer-events: initial;
  }
  .mobile\:cursor-pointer {
    cursor: pointer;
  }
  .mobile\:cursor-default {
    cursor: default;
  }
  .mobile\:cursor-not-allowed {
    cursor: not-allowed;
  }
  .mobile\:cursor-initial {
    cursor: initial;
  }
  .mobile\:no-scrollbar {
    scrollbar-width: none;
  }
  .mobile\:no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .mobile\:overscroll-contain {
    overscroll-behavior: contain;
  }
}
.list-style-disc {
  list-style: disc;
}

.list-style-circle {
  list-style: circle;
}

.list-style-square {
  list-style: square;
}

.list-style-decimal {
  list-style: decimal;
}

.list-style-decimal-leading-zero {
  list-style: decimal-leading-zero;
}

.list-style-lower-roman {
  list-style: lower-roman;
}

.list-style-upper-roman {
  list-style: upper-roman;
}

.list-style-lower-greek {
  list-style: lower-greek;
}

.list-style-lower-latin {
  list-style: lower-latin;
}

.list-style-upper-latin {
  list-style: upper-latin;
}

.list-style-armenian {
  list-style: armenian;
}

.list-style-georgian {
  list-style: georgian;
}

.list-style-lower-alpha {
  list-style: lower-alpha;
}

.list-style-upper-alpha {
  list-style: upper-alpha;
}

.list-style-none {
  list-style: none;
}

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

@media (max-width: 8640px) {
  .object-fit-fill,
  .object-fit-fill-inner img {
    object-fit: fill;
  }
  .object-fit-contain,
  .object-fit-contain-inner img {
    object-fit: contain;
  }
  .object-fit-cover,
  .object-fit-cover-inner img {
    object-fit: cover;
  }
  .object-fit-none,
  .object-fit-none-inner img {
    object-fit: none;
  }
  .object-fit-scale-down,
  .object-fit-scale-down-inner img {
    object-fit: scale-down;
  }
  .object-fit-initial,
  .object-fit-initial-inner img {
    object-fit: initial;
  }
  .object-position-top,
  .object-position-top-inner img {
    object-position: top;
  }
  .object-position-right,
  .object-position-right-inner img {
    object-position: right;
  }
  .object-position-bottom,
  .object-position-bottom-inner img {
    object-position: bottom;
  }
  .object-position-left,
  .object-position-left-inner img {
    object-position: left;
  }
  .object-position-center,
  .object-position-center-inner img {
    object-position: center;
  }
  .object-position-initial,
  .object-position-initial-inner img {
    object-position: initial;
  }
  .video-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  .video-wrap iframe,
  .video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .tablet\:object-fit-fill,
  .tablet\:object-fit-fill-inner img {
    object-fit: fill;
  }
  .tablet\:object-fit-contain,
  .tablet\:object-fit-contain-inner img {
    object-fit: contain;
  }
  .tablet\:object-fit-cover,
  .tablet\:object-fit-cover-inner img {
    object-fit: cover;
  }
  .tablet\:object-fit-none,
  .tablet\:object-fit-none-inner img {
    object-fit: none;
  }
  .tablet\:object-fit-scale-down,
  .tablet\:object-fit-scale-down-inner img {
    object-fit: scale-down;
  }
  .tablet\:object-fit-initial,
  .tablet\:object-fit-initial-inner img {
    object-fit: initial;
  }
  .tablet\:object-position-top,
  .tablet\:object-position-top-inner img {
    object-position: top;
  }
  .tablet\:object-position-right,
  .tablet\:object-position-right-inner img {
    object-position: right;
  }
  .tablet\:object-position-bottom,
  .tablet\:object-position-bottom-inner img {
    object-position: bottom;
  }
  .tablet\:object-position-left,
  .tablet\:object-position-left-inner img {
    object-position: left;
  }
  .tablet\:object-position-center,
  .tablet\:object-position-center-inner img {
    object-position: center;
  }
  .tablet\:object-position-initial,
  .tablet\:object-position-initial-inner img {
    object-position: initial;
  }
  .tablet\:video-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  .tablet\:video-wrap iframe,
  .tablet\:video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .mobile\:object-fit-fill,
  .mobile\:object-fit-fill-inner img {
    object-fit: fill;
  }
  .mobile\:object-fit-contain,
  .mobile\:object-fit-contain-inner img {
    object-fit: contain;
  }
  .mobile\:object-fit-cover,
  .mobile\:object-fit-cover-inner img {
    object-fit: cover;
  }
  .mobile\:object-fit-none,
  .mobile\:object-fit-none-inner img {
    object-fit: none;
  }
  .mobile\:object-fit-scale-down,
  .mobile\:object-fit-scale-down-inner img {
    object-fit: scale-down;
  }
  .mobile\:object-fit-initial,
  .mobile\:object-fit-initial-inner img {
    object-fit: initial;
  }
  .mobile\:object-position-top,
  .mobile\:object-position-top-inner img {
    object-position: top;
  }
  .mobile\:object-position-right,
  .mobile\:object-position-right-inner img {
    object-position: right;
  }
  .mobile\:object-position-bottom,
  .mobile\:object-position-bottom-inner img {
    object-position: bottom;
  }
  .mobile\:object-position-left,
  .mobile\:object-position-left-inner img {
    object-position: left;
  }
  .mobile\:object-position-center,
  .mobile\:object-position-center-inner img {
    object-position: center;
  }
  .mobile\:object-position-initial,
  .mobile\:object-position-initial-inner img {
    object-position: initial;
  }
  .mobile\:video-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  .mobile\:video-wrap iframe,
  .mobile\:video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
/*
The rich text class applies default styling to HTML when you cannot apply class names directly to the children of a parent
*/
.txt-rich,
.txt-rich-long {
  display: flex;
  flex-direction: column;
  gap: var(--padding-small);
}
.txt-rich h1:not([class]),
.txt-rich-long h1:not([class]) {
  font-family: var(--txt-page-title-family);
  font-size: var(--txt-page-title-size);
  font-weight: var(--txt-page-title-weight);
  line-height: var(--txt-page-title-lh);
  letter-spacing: var(--txt-page-title-ls, normal);
  text-transform: var(--txt-page-title-tt, none);
}
.txt-rich h2:not([class]),
.txt-rich-long h2:not([class]) {
  font-family: var(--txt-headline-small-family);
  font-size: var(--txt-headline-small-size);
  font-weight: var(--txt-headline-small-weight);
  line-height: var(--txt-headline-small-lh);
  letter-spacing: var(--txt-headline-small-ls, normal);
  text-transform: var(--txt-headline-small-tt, none);
}
.txt-rich h3:not([class]),
.txt-rich-long h3:not([class]) {
  font-family: var(--txt-subhead-family);
  font-size: var(--txt-subhead-size);
  font-weight: var(--txt-subhead-weight);
  line-height: var(--txt-subhead-lh);
  letter-spacing: var(--txt-subhead-ls, normal);
  text-transform: var(--txt-subhead-tt, none);
}
.txt-rich h4:not([class]),
.txt-rich-long h4:not([class]) {
  font-family: var(--txt-subhead-small-family);
  font-size: var(--txt-subhead-small-size);
  font-weight: var(--txt-subhead-small-weight);
  line-height: var(--txt-subhead-small-lh);
  letter-spacing: var(--txt-subhead-small-ls, normal);
  text-transform: var(--txt-subhead-small-tt, none);
}
.txt-rich h5:not([class]),
.txt-rich-long h5:not([class]) {
  font-family: var(--txt-body-bold-family);
  font-size: var(--txt-body-bold-size);
  font-weight: var(--txt-body-bold-weight);
  line-height: var(--txt-body-bold-lh);
  letter-spacing: var(--txt-body-bold-ls, normal);
  text-transform: var(--txt-body-bold-tt, none);
}
.txt-rich h5:not([class]) strong,
.txt-rich h5:not([class]) b,
.txt-rich-long h5:not([class]) strong,
.txt-rich-long h5:not([class]) b {
  font-weight: 700;
}
.txt-rich h6:not([class]),
.txt-rich-long h6:not([class]) {
  font-family: var(--txt-body-bold-family);
  font-size: var(--txt-body-bold-size);
  font-weight: var(--txt-body-bold-weight);
  line-height: var(--txt-body-bold-lh);
  letter-spacing: var(--txt-body-bold-ls, normal);
  text-transform: var(--txt-body-bold-tt, none);
}
.txt-rich h6:not([class]) strong,
.txt-rich h6:not([class]) b,
.txt-rich-long h6:not([class]) strong,
.txt-rich-long h6:not([class]) b {
  font-weight: 700;
}
.txt-rich p:not([class]),
.txt-rich-long p:not([class]) {
  line-height: var(--txt-body-lh);
}
.txt-rich a.jumplink,
.txt-rich-long a.jumplink {
  color: var(--ui-headline);
}
.txt-rich a:not([class]),
.txt-rich-long a:not([class]) {
  overflow-wrap: break-word;
  text-decoration: underline;
  font-weight: 700;
  color: var(--action);
}
.txt-rich a:not([class]):hover, .txt-rich a:not([class]):focus,
.txt-rich-long a:not([class]):hover,
.txt-rich-long a:not([class]):focus {
  color: var(--action-tertiary);
}
.txt-rich blockquote:not([class]),
.txt-rich-long blockquote:not([class]) {
  margin-top: var(--padding-large);
  margin-bottom: var(--padding-large);
  border-left: 0.1875rem solid;
  padding-left: 2.5rem;
  margin-left: 0;
  font-family: var(--txt-body-lead-family);
  font-size: var(--txt-body-lead-size);
  font-weight: var(--txt-body-lead-weight);
  line-height: var(--txt-body-lead-lh);
  letter-spacing: var(--txt-body-lead-ls, normal);
  text-transform: var(--txt-body-lead-tt, none);
}
.txt-rich ul ul,
.txt-rich ol ul,
.txt-rich ol ol,
.txt-rich-long ul ul,
.txt-rich-long ol ul,
.txt-rich-long ol ol {
  margin-top: var(--padding-small);
}

.txt-rich-long {
  gap: var(--padding-medium);
}
.txt-rich-long h1:not([class]),
.txt-rich-long h2:not([class]),
.txt-rich-long h3:not([class]),
.txt-rich-long h4:not([class]),
.txt-rich-long h5:not([class]),
.txt-rich-long h6:not([class]) {
  margin-top: var(--padding-medium);
}
.txt-rich-long h2:not([class]) .jumplink:not(.button) {
  font-weight: 700;
}
.txt-rich-long p:not([class]) {
  line-height: var(--txt-body-long-lh);
}
.txt-rich-long table p:not([class]),
.txt-rich-long li p:not([class]),
.txt-rich-long .txt-rich p:not([class]) {
  line-height: var(--txt-body-lh);
}
.txt-rich-long li {
  margin-bottom: var(--padding-small);
}

.txt-rich-two-cols {
  display: block;
  column-count: 2;
  column-gap: var(--padding-extra-large);
}
.txt-rich-two-cols p {
  margin-bottom: var(--padding-small);
}
@media (max-width: 768px) {
  .txt-rich-two-cols {
    column-count: 1;
  }
}

.list-legal {
  font-size: var(--txt-body-lead-size);
}
.list-legal ol {
  font-weight: bold;
  counter-reset: ol;
  list-style-type: none;
  padding-left: 0;
}
.list-legal ol > li {
  margin: 0.625rem 0;
  padding: 0;
}
.list-legal ol li::before {
  counter-increment: ol;
  content: counters(ol, ".") ". ";
  font-weight: bold;
}
.list-legal ol ol {
  font-weight: 400;
}
.list-legal ol ol li {
  padding-left: 1.5rem;
}
.list-legal ol ol li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.brandui-scrollbar ::-webkit-scrollbar {
  scrollbar-width: thin;
}
.brandui-scrollbar ::-webkit-scrollbar-track {
  background: transparent;
}
.brandui-scrollbar ::-webkit-scrollbar-thumb {
  border-radius: 20px;
  border: transparent;
  background-color: color-mix(in srgb, var(--neutral-6), transparent 75%);
}
.brandui-scrollbar ::-webkit-scrollbar-thumb:hover {
  background-color: color-mix(in srgb, var(--neutral-6), transparent 50%);
}

@media (max-width: 8640px) {
  .radius-none {
    border-radius: 0;
  }
  .group:hover .group-hover\:radius-none {
    border-radius: 0;
  }
  .radius-extra-small {
    border-radius: var(--radius-extra-small);
  }
  .radius-extra-small-plus {
    border-radius: calc(var(--radius-extra-small) + 2px);
  }
  .group:hover .group-hover\:radius-extra-small-plus {
    border-radius: calc(var(--radius-extra-small) + 2px);
  }
  .group:hover .group-hover\:radius-extra-small {
    border-radius: var(--radius-extra-small);
  }
  .radius-small {
    border-radius: var(--radius-small);
  }
  .radius-small-plus {
    border-radius: calc(var(--radius-small) + 2px);
  }
  .group:hover .group-hover\:radius-small-plus {
    border-radius: calc(var(--radius-small) + 2px);
  }
  .group:hover .group-hover\:radius-small {
    border-radius: var(--radius-small);
  }
  .radius-medium {
    border-radius: var(--radius-medium);
  }
  .radius-medium-plus {
    border-radius: calc(var(--radius-medium) + 2px);
  }
  .group:hover .group-hover\:radius-medium-plus {
    border-radius: calc(var(--radius-medium) + 2px);
  }
  .group:hover .group-hover\:radius-medium {
    border-radius: var(--radius-medium);
  }
  .radius-large {
    border-radius: var(--radius-large);
  }
  .radius-large-plus {
    border-radius: calc(var(--radius-large) + 2px);
  }
  .group:hover .group-hover\:radius-large-plus {
    border-radius: calc(var(--radius-large) + 2px);
  }
  .group:hover .group-hover\:radius-large {
    border-radius: var(--radius-large);
  }
  .radius-extra-large {
    border-radius: var(--radius-extra-large);
  }
  .radius-extra-large-plus {
    border-radius: calc(var(--radius-extra-large) + 2px);
  }
  .group:hover .group-hover\:radius-extra-large-plus {
    border-radius: calc(var(--radius-extra-large) + 2px);
  }
  .group:hover .group-hover\:radius-extra-large {
    border-radius: var(--radius-extra-large);
  }
  .radius-pill {
    border-radius: var(--radius-pill);
  }
  .radius-pill-plus {
    border-radius: calc(var(--radius-pill) + 2px);
  }
  .group:hover .group-hover\:radius-pill-plus {
    border-radius: calc(var(--radius-pill) + 2px);
  }
  .group:hover .group-hover\:radius-pill {
    border-radius: var(--radius-pill);
  }
  .radius-full {
    border-radius: var(--radius-full);
  }
  .radius-full-plus {
    border-radius: calc(var(--radius-full) + 2px);
  }
  .group:hover .group-hover\:radius-full-plus {
    border-radius: calc(var(--radius-full) + 2px);
  }
  .group:hover .group-hover\:radius-full {
    border-radius: var(--radius-full);
  }
  .radius-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .group:hover .group-hover\:radius-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .radius-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .group:hover .group-hover\:radius-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .radius-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .group:hover .group-hover\:radius-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .radius-l-none {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .group:hover .group-hover\:radius-l-none {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}
@media (max-width: 1024px) {
  .tablet\:radius-none {
    border-radius: 0;
  }
  .tablet\:group:hover .group-hover\:radius-none {
    border-radius: 0;
  }
  .tablet\:radius-extra-small {
    border-radius: var(--radius-extra-small);
  }
  .tablet\:radius-extra-small-plus {
    border-radius: calc(var(--radius-extra-small) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-extra-small-plus {
    border-radius: calc(var(--radius-extra-small) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-extra-small {
    border-radius: var(--radius-extra-small);
  }
  .tablet\:radius-small {
    border-radius: var(--radius-small);
  }
  .tablet\:radius-small-plus {
    border-radius: calc(var(--radius-small) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-small-plus {
    border-radius: calc(var(--radius-small) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-small {
    border-radius: var(--radius-small);
  }
  .tablet\:radius-medium {
    border-radius: var(--radius-medium);
  }
  .tablet\:radius-medium-plus {
    border-radius: calc(var(--radius-medium) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-medium-plus {
    border-radius: calc(var(--radius-medium) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-medium {
    border-radius: var(--radius-medium);
  }
  .tablet\:radius-large {
    border-radius: var(--radius-large);
  }
  .tablet\:radius-large-plus {
    border-radius: calc(var(--radius-large) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-large-plus {
    border-radius: calc(var(--radius-large) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-large {
    border-radius: var(--radius-large);
  }
  .tablet\:radius-extra-large {
    border-radius: var(--radius-extra-large);
  }
  .tablet\:radius-extra-large-plus {
    border-radius: calc(var(--radius-extra-large) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-extra-large-plus {
    border-radius: calc(var(--radius-extra-large) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-extra-large {
    border-radius: var(--radius-extra-large);
  }
  .tablet\:radius-pill {
    border-radius: var(--radius-pill);
  }
  .tablet\:radius-pill-plus {
    border-radius: calc(var(--radius-pill) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-pill-plus {
    border-radius: calc(var(--radius-pill) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-pill {
    border-radius: var(--radius-pill);
  }
  .tablet\:radius-full {
    border-radius: var(--radius-full);
  }
  .tablet\:radius-full-plus {
    border-radius: calc(var(--radius-full) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-full-plus {
    border-radius: calc(var(--radius-full) + 2px);
  }
  .tablet\:group:hover .group-hover\:radius-full {
    border-radius: var(--radius-full);
  }
  .tablet\:radius-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .tablet\:group:hover .group-hover\:radius-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .tablet\:radius-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .tablet\:group:hover .group-hover\:radius-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .tablet\:radius-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .tablet\:group:hover .group-hover\:radius-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .tablet\:radius-l-none {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .tablet\:group:hover .group-hover\:radius-l-none {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}
@media (max-width: 768px) {
  .mobile\:radius-none {
    border-radius: 0;
  }
  .mobile\:group:hover .group-hover\:radius-none {
    border-radius: 0;
  }
  .mobile\:radius-extra-small {
    border-radius: var(--radius-extra-small);
  }
  .mobile\:radius-extra-small-plus {
    border-radius: calc(var(--radius-extra-small) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-extra-small-plus {
    border-radius: calc(var(--radius-extra-small) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-extra-small {
    border-radius: var(--radius-extra-small);
  }
  .mobile\:radius-small {
    border-radius: var(--radius-small);
  }
  .mobile\:radius-small-plus {
    border-radius: calc(var(--radius-small) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-small-plus {
    border-radius: calc(var(--radius-small) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-small {
    border-radius: var(--radius-small);
  }
  .mobile\:radius-medium {
    border-radius: var(--radius-medium);
  }
  .mobile\:radius-medium-plus {
    border-radius: calc(var(--radius-medium) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-medium-plus {
    border-radius: calc(var(--radius-medium) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-medium {
    border-radius: var(--radius-medium);
  }
  .mobile\:radius-large {
    border-radius: var(--radius-large);
  }
  .mobile\:radius-large-plus {
    border-radius: calc(var(--radius-large) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-large-plus {
    border-radius: calc(var(--radius-large) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-large {
    border-radius: var(--radius-large);
  }
  .mobile\:radius-extra-large {
    border-radius: var(--radius-extra-large);
  }
  .mobile\:radius-extra-large-plus {
    border-radius: calc(var(--radius-extra-large) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-extra-large-plus {
    border-radius: calc(var(--radius-extra-large) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-extra-large {
    border-radius: var(--radius-extra-large);
  }
  .mobile\:radius-pill {
    border-radius: var(--radius-pill);
  }
  .mobile\:radius-pill-plus {
    border-radius: calc(var(--radius-pill) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-pill-plus {
    border-radius: calc(var(--radius-pill) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-pill {
    border-radius: var(--radius-pill);
  }
  .mobile\:radius-full {
    border-radius: var(--radius-full);
  }
  .mobile\:radius-full-plus {
    border-radius: calc(var(--radius-full) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-full-plus {
    border-radius: calc(var(--radius-full) + 2px);
  }
  .mobile\:group:hover .group-hover\:radius-full {
    border-radius: var(--radius-full);
  }
  .mobile\:radius-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .mobile\:group:hover .group-hover\:radius-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .mobile\:radius-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .mobile\:group:hover .group-hover\:radius-r-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .mobile\:radius-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .mobile\:group:hover .group-hover\:radius-b-none {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .mobile\:radius-l-none {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .mobile\:group:hover .group-hover\:radius-l-none {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}
.break-word {
  overflow-wrap: break-word;
}

.wrap-anywhere {
  overflow-wrap: anywhere;
}

.vertical-align-top {
  vertical-align: top;
}

@media (max-width: 8640px) {
  .translate-none,
  .hover\:translate-none:hover,
  .focus\:translate-none:focus,
  .group:hover .group-hover\:translate-none,
  .group:focus-within .group-focus-within\:translate-none {
    transform: translate(var(--padding-none), var(--padding-none));
  }
  .translate-x-none,
  .hover\:translate-x-none:hover,
  .focus\:translate-x-none:focus,
  .group:hover .group-hover\:translate-x-none,
  .group:focus-within .group-focus-within\:translate-x-none {
    transform: translateX(var(--padding-none));
  }
  .translate-y-none,
  .hover\:translate-y-none:hover,
  .focus\:translate-y-none:focus,
  .group:hover .group-hover\:translate-y-none,
  .group:focus-within .group-focus-within\:translate-y-none {
    transform: translateY(var(--padding-none));
  }
  .-translate-none,
  .hover\:-translate-none:hover,
  .focus\:-translate-none:focus,
  .group:hover .group-hover\:-translate-none,
  .group:focus-within .group-focus-within\:-translate-none {
    transform: translate(calc(-1 * var(--padding-none)), calc(-1 * var(--padding-none)));
  }
  .-translate-x-none,
  .hover\:-translate-x-none:hover,
  .focus\:-translate-x-none:focus,
  .group:hover .group-hover\:-translate-x-none,
  .group:focus-within .group-focus-within\:-translate-x-none {
    transform: translateX(calc(-1 * var(--padding-none)));
  }
  .-translate-y-none,
  .hover\:-translate-y-none:hover,
  .focus\:-translate-y-none:focus,
  .group:hover .group-hover\:-translate-y-none,
  .group:focus-within .group-focus-within\:-translate-y-none {
    transform: translateY(calc(-1 * var(--padding-none)));
  }
  .translate-hairline,
  .hover\:translate-hairline:hover,
  .focus\:translate-hairline:focus,
  .group:hover .group-hover\:translate-hairline,
  .group:focus-within .group-focus-within\:translate-hairline {
    transform: translate(var(--padding-hairline), var(--padding-hairline));
  }
  .translate-x-hairline,
  .hover\:translate-x-hairline:hover,
  .focus\:translate-x-hairline:focus,
  .group:hover .group-hover\:translate-x-hairline,
  .group:focus-within .group-focus-within\:translate-x-hairline {
    transform: translateX(var(--padding-hairline));
  }
  .translate-y-hairline,
  .hover\:translate-y-hairline:hover,
  .focus\:translate-y-hairline:focus,
  .group:hover .group-hover\:translate-y-hairline,
  .group:focus-within .group-focus-within\:translate-y-hairline {
    transform: translateY(var(--padding-hairline));
  }
  .-translate-hairline,
  .hover\:-translate-hairline:hover,
  .focus\:-translate-hairline:focus,
  .group:hover .group-hover\:-translate-hairline,
  .group:focus-within .group-focus-within\:-translate-hairline {
    transform: translate(calc(-1 * var(--padding-hairline)), calc(-1 * var(--padding-hairline)));
  }
  .-translate-x-hairline,
  .hover\:-translate-x-hairline:hover,
  .focus\:-translate-x-hairline:focus,
  .group:hover .group-hover\:-translate-x-hairline,
  .group:focus-within .group-focus-within\:-translate-x-hairline {
    transform: translateX(calc(-1 * var(--padding-hairline)));
  }
  .-translate-y-hairline,
  .hover\:-translate-y-hairline:hover,
  .focus\:-translate-y-hairline:focus,
  .group:hover .group-hover\:-translate-y-hairline,
  .group:focus-within .group-focus-within\:-translate-y-hairline {
    transform: translateY(calc(-1 * var(--padding-hairline)));
  }
  .translate-thin,
  .hover\:translate-thin:hover,
  .focus\:translate-thin:focus,
  .group:hover .group-hover\:translate-thin,
  .group:focus-within .group-focus-within\:translate-thin {
    transform: translate(var(--padding-thin), var(--padding-thin));
  }
  .translate-x-thin,
  .hover\:translate-x-thin:hover,
  .focus\:translate-x-thin:focus,
  .group:hover .group-hover\:translate-x-thin,
  .group:focus-within .group-focus-within\:translate-x-thin {
    transform: translateX(var(--padding-thin));
  }
  .translate-y-thin,
  .hover\:translate-y-thin:hover,
  .focus\:translate-y-thin:focus,
  .group:hover .group-hover\:translate-y-thin,
  .group:focus-within .group-focus-within\:translate-y-thin {
    transform: translateY(var(--padding-thin));
  }
  .-translate-thin,
  .hover\:-translate-thin:hover,
  .focus\:-translate-thin:focus,
  .group:hover .group-hover\:-translate-thin,
  .group:focus-within .group-focus-within\:-translate-thin {
    transform: translate(calc(-1 * var(--padding-thin)), calc(-1 * var(--padding-thin)));
  }
  .-translate-x-thin,
  .hover\:-translate-x-thin:hover,
  .focus\:-translate-x-thin:focus,
  .group:hover .group-hover\:-translate-x-thin,
  .group:focus-within .group-focus-within\:-translate-x-thin {
    transform: translateX(calc(-1 * var(--padding-thin)));
  }
  .-translate-y-thin,
  .hover\:-translate-y-thin:hover,
  .focus\:-translate-y-thin:focus,
  .group:hover .group-hover\:-translate-y-thin,
  .group:focus-within .group-focus-within\:-translate-y-thin {
    transform: translateY(calc(-1 * var(--padding-thin)));
  }
  .translate-slim,
  .hover\:translate-slim:hover,
  .focus\:translate-slim:focus,
  .group:hover .group-hover\:translate-slim,
  .group:focus-within .group-focus-within\:translate-slim {
    transform: translate(var(--padding-slim), var(--padding-slim));
  }
  .translate-x-slim,
  .hover\:translate-x-slim:hover,
  .focus\:translate-x-slim:focus,
  .group:hover .group-hover\:translate-x-slim,
  .group:focus-within .group-focus-within\:translate-x-slim {
    transform: translateX(var(--padding-slim));
  }
  .translate-y-slim,
  .hover\:translate-y-slim:hover,
  .focus\:translate-y-slim:focus,
  .group:hover .group-hover\:translate-y-slim,
  .group:focus-within .group-focus-within\:translate-y-slim {
    transform: translateY(var(--padding-slim));
  }
  .-translate-slim,
  .hover\:-translate-slim:hover,
  .focus\:-translate-slim:focus,
  .group:hover .group-hover\:-translate-slim,
  .group:focus-within .group-focus-within\:-translate-slim {
    transform: translate(calc(-1 * var(--padding-slim)), calc(-1 * var(--padding-slim)));
  }
  .-translate-x-slim,
  .hover\:-translate-x-slim:hover,
  .focus\:-translate-x-slim:focus,
  .group:hover .group-hover\:-translate-x-slim,
  .group:focus-within .group-focus-within\:-translate-x-slim {
    transform: translateX(calc(-1 * var(--padding-slim)));
  }
  .-translate-y-slim,
  .hover\:-translate-y-slim:hover,
  .focus\:-translate-y-slim:focus,
  .group:hover .group-hover\:-translate-y-slim,
  .group:focus-within .group-focus-within\:-translate-y-slim {
    transform: translateY(calc(-1 * var(--padding-slim)));
  }
  .translate-extra-small,
  .hover\:translate-extra-small:hover,
  .focus\:translate-extra-small:focus,
  .group:hover .group-hover\:translate-extra-small,
  .group:focus-within .group-focus-within\:translate-extra-small {
    transform: translate(var(--padding-extra-small), var(--padding-extra-small));
  }
  .translate-x-extra-small,
  .hover\:translate-x-extra-small:hover,
  .focus\:translate-x-extra-small:focus,
  .group:hover .group-hover\:translate-x-extra-small,
  .group:focus-within .group-focus-within\:translate-x-extra-small {
    transform: translateX(var(--padding-extra-small));
  }
  .translate-y-extra-small,
  .hover\:translate-y-extra-small:hover,
  .focus\:translate-y-extra-small:focus,
  .group:hover .group-hover\:translate-y-extra-small,
  .group:focus-within .group-focus-within\:translate-y-extra-small {
    transform: translateY(var(--padding-extra-small));
  }
  .-translate-extra-small,
  .hover\:-translate-extra-small:hover,
  .focus\:-translate-extra-small:focus,
  .group:hover .group-hover\:-translate-extra-small,
  .group:focus-within .group-focus-within\:-translate-extra-small {
    transform: translate(calc(-1 * var(--padding-extra-small)), calc(-1 * var(--padding-extra-small)));
  }
  .-translate-x-extra-small,
  .hover\:-translate-x-extra-small:hover,
  .focus\:-translate-x-extra-small:focus,
  .group:hover .group-hover\:-translate-x-extra-small,
  .group:focus-within .group-focus-within\:-translate-x-extra-small {
    transform: translateX(calc(-1 * var(--padding-extra-small)));
  }
  .-translate-y-extra-small,
  .hover\:-translate-y-extra-small:hover,
  .focus\:-translate-y-extra-small:focus,
  .group:hover .group-hover\:-translate-y-extra-small,
  .group:focus-within .group-focus-within\:-translate-y-extra-small {
    transform: translateY(calc(-1 * var(--padding-extra-small)));
  }
  .translate-small,
  .hover\:translate-small:hover,
  .focus\:translate-small:focus,
  .group:hover .group-hover\:translate-small,
  .group:focus-within .group-focus-within\:translate-small {
    transform: translate(var(--padding-small), var(--padding-small));
  }
  .translate-x-small,
  .hover\:translate-x-small:hover,
  .focus\:translate-x-small:focus,
  .group:hover .group-hover\:translate-x-small,
  .group:focus-within .group-focus-within\:translate-x-small {
    transform: translateX(var(--padding-small));
  }
  .translate-y-small,
  .hover\:translate-y-small:hover,
  .focus\:translate-y-small:focus,
  .group:hover .group-hover\:translate-y-small,
  .group:focus-within .group-focus-within\:translate-y-small {
    transform: translateY(var(--padding-small));
  }
  .-translate-small,
  .hover\:-translate-small:hover,
  .focus\:-translate-small:focus,
  .group:hover .group-hover\:-translate-small,
  .group:focus-within .group-focus-within\:-translate-small {
    transform: translate(calc(-1 * var(--padding-small)), calc(-1 * var(--padding-small)));
  }
  .-translate-x-small,
  .hover\:-translate-x-small:hover,
  .focus\:-translate-x-small:focus,
  .group:hover .group-hover\:-translate-x-small,
  .group:focus-within .group-focus-within\:-translate-x-small {
    transform: translateX(calc(-1 * var(--padding-small)));
  }
  .-translate-y-small,
  .hover\:-translate-y-small:hover,
  .focus\:-translate-y-small:focus,
  .group:hover .group-hover\:-translate-y-small,
  .group:focus-within .group-focus-within\:-translate-y-small {
    transform: translateY(calc(-1 * var(--padding-small)));
  }
  .translate-medium,
  .hover\:translate-medium:hover,
  .focus\:translate-medium:focus,
  .group:hover .group-hover\:translate-medium,
  .group:focus-within .group-focus-within\:translate-medium {
    transform: translate(var(--padding-medium), var(--padding-medium));
  }
  .translate-x-medium,
  .hover\:translate-x-medium:hover,
  .focus\:translate-x-medium:focus,
  .group:hover .group-hover\:translate-x-medium,
  .group:focus-within .group-focus-within\:translate-x-medium {
    transform: translateX(var(--padding-medium));
  }
  .translate-y-medium,
  .hover\:translate-y-medium:hover,
  .focus\:translate-y-medium:focus,
  .group:hover .group-hover\:translate-y-medium,
  .group:focus-within .group-focus-within\:translate-y-medium {
    transform: translateY(var(--padding-medium));
  }
  .-translate-medium,
  .hover\:-translate-medium:hover,
  .focus\:-translate-medium:focus,
  .group:hover .group-hover\:-translate-medium,
  .group:focus-within .group-focus-within\:-translate-medium {
    transform: translate(calc(-1 * var(--padding-medium)), calc(-1 * var(--padding-medium)));
  }
  .-translate-x-medium,
  .hover\:-translate-x-medium:hover,
  .focus\:-translate-x-medium:focus,
  .group:hover .group-hover\:-translate-x-medium,
  .group:focus-within .group-focus-within\:-translate-x-medium {
    transform: translateX(calc(-1 * var(--padding-medium)));
  }
  .-translate-y-medium,
  .hover\:-translate-y-medium:hover,
  .focus\:-translate-y-medium:focus,
  .group:hover .group-hover\:-translate-y-medium,
  .group:focus-within .group-focus-within\:-translate-y-medium {
    transform: translateY(calc(-1 * var(--padding-medium)));
  }
  .translate-large,
  .hover\:translate-large:hover,
  .focus\:translate-large:focus,
  .group:hover .group-hover\:translate-large,
  .group:focus-within .group-focus-within\:translate-large {
    transform: translate(var(--padding-large), var(--padding-large));
  }
  .translate-x-large,
  .hover\:translate-x-large:hover,
  .focus\:translate-x-large:focus,
  .group:hover .group-hover\:translate-x-large,
  .group:focus-within .group-focus-within\:translate-x-large {
    transform: translateX(var(--padding-large));
  }
  .translate-y-large,
  .hover\:translate-y-large:hover,
  .focus\:translate-y-large:focus,
  .group:hover .group-hover\:translate-y-large,
  .group:focus-within .group-focus-within\:translate-y-large {
    transform: translateY(var(--padding-large));
  }
  .-translate-large,
  .hover\:-translate-large:hover,
  .focus\:-translate-large:focus,
  .group:hover .group-hover\:-translate-large,
  .group:focus-within .group-focus-within\:-translate-large {
    transform: translate(calc(-1 * var(--padding-large)), calc(-1 * var(--padding-large)));
  }
  .-translate-x-large,
  .hover\:-translate-x-large:hover,
  .focus\:-translate-x-large:focus,
  .group:hover .group-hover\:-translate-x-large,
  .group:focus-within .group-focus-within\:-translate-x-large {
    transform: translateX(calc(-1 * var(--padding-large)));
  }
  .-translate-y-large,
  .hover\:-translate-y-large:hover,
  .focus\:-translate-y-large:focus,
  .group:hover .group-hover\:-translate-y-large,
  .group:focus-within .group-focus-within\:-translate-y-large {
    transform: translateY(calc(-1 * var(--padding-large)));
  }
  .translate-extra-large,
  .hover\:translate-extra-large:hover,
  .focus\:translate-extra-large:focus,
  .group:hover .group-hover\:translate-extra-large,
  .group:focus-within .group-focus-within\:translate-extra-large {
    transform: translate(var(--padding-extra-large), var(--padding-extra-large));
  }
  .translate-x-extra-large,
  .hover\:translate-x-extra-large:hover,
  .focus\:translate-x-extra-large:focus,
  .group:hover .group-hover\:translate-x-extra-large,
  .group:focus-within .group-focus-within\:translate-x-extra-large {
    transform: translateX(var(--padding-extra-large));
  }
  .translate-y-extra-large,
  .hover\:translate-y-extra-large:hover,
  .focus\:translate-y-extra-large:focus,
  .group:hover .group-hover\:translate-y-extra-large,
  .group:focus-within .group-focus-within\:translate-y-extra-large {
    transform: translateY(var(--padding-extra-large));
  }
  .-translate-extra-large,
  .hover\:-translate-extra-large:hover,
  .focus\:-translate-extra-large:focus,
  .group:hover .group-hover\:-translate-extra-large,
  .group:focus-within .group-focus-within\:-translate-extra-large {
    transform: translate(calc(-1 * var(--padding-extra-large)), calc(-1 * var(--padding-extra-large)));
  }
  .-translate-x-extra-large,
  .hover\:-translate-x-extra-large:hover,
  .focus\:-translate-x-extra-large:focus,
  .group:hover .group-hover\:-translate-x-extra-large,
  .group:focus-within .group-focus-within\:-translate-x-extra-large {
    transform: translateX(calc(-1 * var(--padding-extra-large)));
  }
  .-translate-y-extra-large,
  .hover\:-translate-y-extra-large:hover,
  .focus\:-translate-y-extra-large:focus,
  .group:hover .group-hover\:-translate-y-extra-large,
  .group:focus-within .group-focus-within\:-translate-y-extra-large {
    transform: translateY(calc(-1 * var(--padding-extra-large)));
  }
  .translate-huge,
  .hover\:translate-huge:hover,
  .focus\:translate-huge:focus,
  .group:hover .group-hover\:translate-huge,
  .group:focus-within .group-focus-within\:translate-huge {
    transform: translate(var(--padding-huge), var(--padding-huge));
  }
  .translate-x-huge,
  .hover\:translate-x-huge:hover,
  .focus\:translate-x-huge:focus,
  .group:hover .group-hover\:translate-x-huge,
  .group:focus-within .group-focus-within\:translate-x-huge {
    transform: translateX(var(--padding-huge));
  }
  .translate-y-huge,
  .hover\:translate-y-huge:hover,
  .focus\:translate-y-huge:focus,
  .group:hover .group-hover\:translate-y-huge,
  .group:focus-within .group-focus-within\:translate-y-huge {
    transform: translateY(var(--padding-huge));
  }
  .-translate-huge,
  .hover\:-translate-huge:hover,
  .focus\:-translate-huge:focus,
  .group:hover .group-hover\:-translate-huge,
  .group:focus-within .group-focus-within\:-translate-huge {
    transform: translate(calc(-1 * var(--padding-huge)), calc(-1 * var(--padding-huge)));
  }
  .-translate-x-huge,
  .hover\:-translate-x-huge:hover,
  .focus\:-translate-x-huge:focus,
  .group:hover .group-hover\:-translate-x-huge,
  .group:focus-within .group-focus-within\:-translate-x-huge {
    transform: translateX(calc(-1 * var(--padding-huge)));
  }
  .-translate-y-huge,
  .hover\:-translate-y-huge:hover,
  .focus\:-translate-y-huge:focus,
  .group:hover .group-hover\:-translate-y-huge,
  .group:focus-within .group-focus-within\:-translate-y-huge {
    transform: translateY(calc(-1 * var(--padding-huge)));
  }
  .translate-full,
  .hover\:translate-full:hover,
  .focus\:translate-full:focus,
  .group:hover .group-hover\:translate-full,
  .group:focus-within .group-focus-within\:translate-full {
    transform: translate(var(--padding-full), var(--padding-full));
  }
  .translate-x-full,
  .hover\:translate-x-full:hover,
  .focus\:translate-x-full:focus,
  .group:hover .group-hover\:translate-x-full,
  .group:focus-within .group-focus-within\:translate-x-full {
    transform: translateX(var(--padding-full));
  }
  .translate-y-full,
  .hover\:translate-y-full:hover,
  .focus\:translate-y-full:focus,
  .group:hover .group-hover\:translate-y-full,
  .group:focus-within .group-focus-within\:translate-y-full {
    transform: translateY(var(--padding-full));
  }
  .-translate-full,
  .hover\:-translate-full:hover,
  .focus\:-translate-full:focus,
  .group:hover .group-hover\:-translate-full,
  .group:focus-within .group-focus-within\:-translate-full {
    transform: translate(calc(-1 * var(--padding-full)), calc(-1 * var(--padding-full)));
  }
  .-translate-x-full,
  .hover\:-translate-x-full:hover,
  .focus\:-translate-x-full:focus,
  .group:hover .group-hover\:-translate-x-full,
  .group:focus-within .group-focus-within\:-translate-x-full {
    transform: translateX(calc(-1 * var(--padding-full)));
  }
  .-translate-y-full,
  .hover\:-translate-y-full:hover,
  .focus\:-translate-y-full:focus,
  .group:hover .group-hover\:-translate-y-full,
  .group:focus-within .group-focus-within\:-translate-y-full {
    transform: translateY(calc(-1 * var(--padding-full)));
  }
  .flip-h {
    transform: scaleX(-1);
  }
  .flip-v {
    transform: scaleY(-1);
  }
  .-rotate-0,
  .hover\:-rotate-0:hover,
  .focus\:-rotate-0:focus,
  .group:hover .group-hover\:-rotate-0,
  .group:focus-within .group-focus-within\:-rotate-0 {
    transform: rotate(-0deg);
  }
  .-rotate-1,
  .hover\:-rotate-1:hover,
  .focus\:-rotate-1:focus,
  .group:hover .group-hover\:-rotate-1,
  .group:focus-within .group-focus-within\:-rotate-1 {
    transform: rotate(-1deg);
  }
  .-rotate-2,
  .hover\:-rotate-2:hover,
  .focus\:-rotate-2:focus,
  .group:hover .group-hover\:-rotate-2,
  .group:focus-within .group-focus-within\:-rotate-2 {
    transform: rotate(-2deg);
  }
  .-rotate-3,
  .hover\:-rotate-3:hover,
  .focus\:-rotate-3:focus,
  .group:hover .group-hover\:-rotate-3,
  .group:focus-within .group-focus-within\:-rotate-3 {
    transform: rotate(-3deg);
  }
  .-rotate-4,
  .hover\:-rotate-4:hover,
  .focus\:-rotate-4:focus,
  .group:hover .group-hover\:-rotate-4,
  .group:focus-within .group-focus-within\:-rotate-4 {
    transform: rotate(-4deg);
  }
  .-rotate-5,
  .hover\:-rotate-5:hover,
  .focus\:-rotate-5:focus,
  .group:hover .group-hover\:-rotate-5,
  .group:focus-within .group-focus-within\:-rotate-5 {
    transform: rotate(-5deg);
  }
  .-rotate-6,
  .hover\:-rotate-6:hover,
  .focus\:-rotate-6:focus,
  .group:hover .group-hover\:-rotate-6,
  .group:focus-within .group-focus-within\:-rotate-6 {
    transform: rotate(-6deg);
  }
  .-rotate-7,
  .hover\:-rotate-7:hover,
  .focus\:-rotate-7:focus,
  .group:hover .group-hover\:-rotate-7,
  .group:focus-within .group-focus-within\:-rotate-7 {
    transform: rotate(-7deg);
  }
  .-rotate-8,
  .hover\:-rotate-8:hover,
  .focus\:-rotate-8:focus,
  .group:hover .group-hover\:-rotate-8,
  .group:focus-within .group-focus-within\:-rotate-8 {
    transform: rotate(-8deg);
  }
  .-rotate-9,
  .hover\:-rotate-9:hover,
  .focus\:-rotate-9:focus,
  .group:hover .group-hover\:-rotate-9,
  .group:focus-within .group-focus-within\:-rotate-9 {
    transform: rotate(-9deg);
  }
  .-rotate-10,
  .hover\:-rotate-10:hover,
  .focus\:-rotate-10:focus,
  .group:hover .group-hover\:-rotate-10,
  .group:focus-within .group-focus-within\:-rotate-10 {
    transform: rotate(-10deg);
  }
  .-rotate-11,
  .hover\:-rotate-11:hover,
  .focus\:-rotate-11:focus,
  .group:hover .group-hover\:-rotate-11,
  .group:focus-within .group-focus-within\:-rotate-11 {
    transform: rotate(-11deg);
  }
  .-rotate-12,
  .hover\:-rotate-12:hover,
  .focus\:-rotate-12:focus,
  .group:hover .group-hover\:-rotate-12,
  .group:focus-within .group-focus-within\:-rotate-12 {
    transform: rotate(-12deg);
  }
  .-rotate-13,
  .hover\:-rotate-13:hover,
  .focus\:-rotate-13:focus,
  .group:hover .group-hover\:-rotate-13,
  .group:focus-within .group-focus-within\:-rotate-13 {
    transform: rotate(-13deg);
  }
  .-rotate-14,
  .hover\:-rotate-14:hover,
  .focus\:-rotate-14:focus,
  .group:hover .group-hover\:-rotate-14,
  .group:focus-within .group-focus-within\:-rotate-14 {
    transform: rotate(-14deg);
  }
  .-rotate-15,
  .hover\:-rotate-15:hover,
  .focus\:-rotate-15:focus,
  .group:hover .group-hover\:-rotate-15,
  .group:focus-within .group-focus-within\:-rotate-15 {
    transform: rotate(-15deg);
  }
  .-rotate-16,
  .hover\:-rotate-16:hover,
  .focus\:-rotate-16:focus,
  .group:hover .group-hover\:-rotate-16,
  .group:focus-within .group-focus-within\:-rotate-16 {
    transform: rotate(-16deg);
  }
  .-rotate-17,
  .hover\:-rotate-17:hover,
  .focus\:-rotate-17:focus,
  .group:hover .group-hover\:-rotate-17,
  .group:focus-within .group-focus-within\:-rotate-17 {
    transform: rotate(-17deg);
  }
  .-rotate-18,
  .hover\:-rotate-18:hover,
  .focus\:-rotate-18:focus,
  .group:hover .group-hover\:-rotate-18,
  .group:focus-within .group-focus-within\:-rotate-18 {
    transform: rotate(-18deg);
  }
  .-rotate-19,
  .hover\:-rotate-19:hover,
  .focus\:-rotate-19:focus,
  .group:hover .group-hover\:-rotate-19,
  .group:focus-within .group-focus-within\:-rotate-19 {
    transform: rotate(-19deg);
  }
  .-rotate-20,
  .hover\:-rotate-20:hover,
  .focus\:-rotate-20:focus,
  .group:hover .group-hover\:-rotate-20,
  .group:focus-within .group-focus-within\:-rotate-20 {
    transform: rotate(-20deg);
  }
  .-rotate-21,
  .hover\:-rotate-21:hover,
  .focus\:-rotate-21:focus,
  .group:hover .group-hover\:-rotate-21,
  .group:focus-within .group-focus-within\:-rotate-21 {
    transform: rotate(-21deg);
  }
  .-rotate-22,
  .hover\:-rotate-22:hover,
  .focus\:-rotate-22:focus,
  .group:hover .group-hover\:-rotate-22,
  .group:focus-within .group-focus-within\:-rotate-22 {
    transform: rotate(-22deg);
  }
  .-rotate-23,
  .hover\:-rotate-23:hover,
  .focus\:-rotate-23:focus,
  .group:hover .group-hover\:-rotate-23,
  .group:focus-within .group-focus-within\:-rotate-23 {
    transform: rotate(-23deg);
  }
  .-rotate-24,
  .hover\:-rotate-24:hover,
  .focus\:-rotate-24:focus,
  .group:hover .group-hover\:-rotate-24,
  .group:focus-within .group-focus-within\:-rotate-24 {
    transform: rotate(-24deg);
  }
  .-rotate-25,
  .hover\:-rotate-25:hover,
  .focus\:-rotate-25:focus,
  .group:hover .group-hover\:-rotate-25,
  .group:focus-within .group-focus-within\:-rotate-25 {
    transform: rotate(-25deg);
  }
  .-rotate-26,
  .hover\:-rotate-26:hover,
  .focus\:-rotate-26:focus,
  .group:hover .group-hover\:-rotate-26,
  .group:focus-within .group-focus-within\:-rotate-26 {
    transform: rotate(-26deg);
  }
  .-rotate-27,
  .hover\:-rotate-27:hover,
  .focus\:-rotate-27:focus,
  .group:hover .group-hover\:-rotate-27,
  .group:focus-within .group-focus-within\:-rotate-27 {
    transform: rotate(-27deg);
  }
  .-rotate-28,
  .hover\:-rotate-28:hover,
  .focus\:-rotate-28:focus,
  .group:hover .group-hover\:-rotate-28,
  .group:focus-within .group-focus-within\:-rotate-28 {
    transform: rotate(-28deg);
  }
  .-rotate-29,
  .hover\:-rotate-29:hover,
  .focus\:-rotate-29:focus,
  .group:hover .group-hover\:-rotate-29,
  .group:focus-within .group-focus-within\:-rotate-29 {
    transform: rotate(-29deg);
  }
  .-rotate-30,
  .hover\:-rotate-30:hover,
  .focus\:-rotate-30:focus,
  .group:hover .group-hover\:-rotate-30,
  .group:focus-within .group-focus-within\:-rotate-30 {
    transform: rotate(-30deg);
  }
  .-rotate-31,
  .hover\:-rotate-31:hover,
  .focus\:-rotate-31:focus,
  .group:hover .group-hover\:-rotate-31,
  .group:focus-within .group-focus-within\:-rotate-31 {
    transform: rotate(-31deg);
  }
  .-rotate-32,
  .hover\:-rotate-32:hover,
  .focus\:-rotate-32:focus,
  .group:hover .group-hover\:-rotate-32,
  .group:focus-within .group-focus-within\:-rotate-32 {
    transform: rotate(-32deg);
  }
  .-rotate-33,
  .hover\:-rotate-33:hover,
  .focus\:-rotate-33:focus,
  .group:hover .group-hover\:-rotate-33,
  .group:focus-within .group-focus-within\:-rotate-33 {
    transform: rotate(-33deg);
  }
  .-rotate-34,
  .hover\:-rotate-34:hover,
  .focus\:-rotate-34:focus,
  .group:hover .group-hover\:-rotate-34,
  .group:focus-within .group-focus-within\:-rotate-34 {
    transform: rotate(-34deg);
  }
  .-rotate-35,
  .hover\:-rotate-35:hover,
  .focus\:-rotate-35:focus,
  .group:hover .group-hover\:-rotate-35,
  .group:focus-within .group-focus-within\:-rotate-35 {
    transform: rotate(-35deg);
  }
  .-rotate-36,
  .hover\:-rotate-36:hover,
  .focus\:-rotate-36:focus,
  .group:hover .group-hover\:-rotate-36,
  .group:focus-within .group-focus-within\:-rotate-36 {
    transform: rotate(-36deg);
  }
  .-rotate-37,
  .hover\:-rotate-37:hover,
  .focus\:-rotate-37:focus,
  .group:hover .group-hover\:-rotate-37,
  .group:focus-within .group-focus-within\:-rotate-37 {
    transform: rotate(-37deg);
  }
  .-rotate-38,
  .hover\:-rotate-38:hover,
  .focus\:-rotate-38:focus,
  .group:hover .group-hover\:-rotate-38,
  .group:focus-within .group-focus-within\:-rotate-38 {
    transform: rotate(-38deg);
  }
  .-rotate-39,
  .hover\:-rotate-39:hover,
  .focus\:-rotate-39:focus,
  .group:hover .group-hover\:-rotate-39,
  .group:focus-within .group-focus-within\:-rotate-39 {
    transform: rotate(-39deg);
  }
  .-rotate-40,
  .hover\:-rotate-40:hover,
  .focus\:-rotate-40:focus,
  .group:hover .group-hover\:-rotate-40,
  .group:focus-within .group-focus-within\:-rotate-40 {
    transform: rotate(-40deg);
  }
  .-rotate-41,
  .hover\:-rotate-41:hover,
  .focus\:-rotate-41:focus,
  .group:hover .group-hover\:-rotate-41,
  .group:focus-within .group-focus-within\:-rotate-41 {
    transform: rotate(-41deg);
  }
  .-rotate-42,
  .hover\:-rotate-42:hover,
  .focus\:-rotate-42:focus,
  .group:hover .group-hover\:-rotate-42,
  .group:focus-within .group-focus-within\:-rotate-42 {
    transform: rotate(-42deg);
  }
  .-rotate-43,
  .hover\:-rotate-43:hover,
  .focus\:-rotate-43:focus,
  .group:hover .group-hover\:-rotate-43,
  .group:focus-within .group-focus-within\:-rotate-43 {
    transform: rotate(-43deg);
  }
  .-rotate-44,
  .hover\:-rotate-44:hover,
  .focus\:-rotate-44:focus,
  .group:hover .group-hover\:-rotate-44,
  .group:focus-within .group-focus-within\:-rotate-44 {
    transform: rotate(-44deg);
  }
  .-rotate-45,
  .hover\:-rotate-45:hover,
  .focus\:-rotate-45:focus,
  .group:hover .group-hover\:-rotate-45,
  .group:focus-within .group-focus-within\:-rotate-45 {
    transform: rotate(-45deg);
  }
  .-rotate-46,
  .hover\:-rotate-46:hover,
  .focus\:-rotate-46:focus,
  .group:hover .group-hover\:-rotate-46,
  .group:focus-within .group-focus-within\:-rotate-46 {
    transform: rotate(-46deg);
  }
  .-rotate-47,
  .hover\:-rotate-47:hover,
  .focus\:-rotate-47:focus,
  .group:hover .group-hover\:-rotate-47,
  .group:focus-within .group-focus-within\:-rotate-47 {
    transform: rotate(-47deg);
  }
  .-rotate-48,
  .hover\:-rotate-48:hover,
  .focus\:-rotate-48:focus,
  .group:hover .group-hover\:-rotate-48,
  .group:focus-within .group-focus-within\:-rotate-48 {
    transform: rotate(-48deg);
  }
  .-rotate-49,
  .hover\:-rotate-49:hover,
  .focus\:-rotate-49:focus,
  .group:hover .group-hover\:-rotate-49,
  .group:focus-within .group-focus-within\:-rotate-49 {
    transform: rotate(-49deg);
  }
  .-rotate-50,
  .hover\:-rotate-50:hover,
  .focus\:-rotate-50:focus,
  .group:hover .group-hover\:-rotate-50,
  .group:focus-within .group-focus-within\:-rotate-50 {
    transform: rotate(-50deg);
  }
  .-rotate-51,
  .hover\:-rotate-51:hover,
  .focus\:-rotate-51:focus,
  .group:hover .group-hover\:-rotate-51,
  .group:focus-within .group-focus-within\:-rotate-51 {
    transform: rotate(-51deg);
  }
  .-rotate-52,
  .hover\:-rotate-52:hover,
  .focus\:-rotate-52:focus,
  .group:hover .group-hover\:-rotate-52,
  .group:focus-within .group-focus-within\:-rotate-52 {
    transform: rotate(-52deg);
  }
  .-rotate-53,
  .hover\:-rotate-53:hover,
  .focus\:-rotate-53:focus,
  .group:hover .group-hover\:-rotate-53,
  .group:focus-within .group-focus-within\:-rotate-53 {
    transform: rotate(-53deg);
  }
  .-rotate-54,
  .hover\:-rotate-54:hover,
  .focus\:-rotate-54:focus,
  .group:hover .group-hover\:-rotate-54,
  .group:focus-within .group-focus-within\:-rotate-54 {
    transform: rotate(-54deg);
  }
  .-rotate-55,
  .hover\:-rotate-55:hover,
  .focus\:-rotate-55:focus,
  .group:hover .group-hover\:-rotate-55,
  .group:focus-within .group-focus-within\:-rotate-55 {
    transform: rotate(-55deg);
  }
  .-rotate-56,
  .hover\:-rotate-56:hover,
  .focus\:-rotate-56:focus,
  .group:hover .group-hover\:-rotate-56,
  .group:focus-within .group-focus-within\:-rotate-56 {
    transform: rotate(-56deg);
  }
  .-rotate-57,
  .hover\:-rotate-57:hover,
  .focus\:-rotate-57:focus,
  .group:hover .group-hover\:-rotate-57,
  .group:focus-within .group-focus-within\:-rotate-57 {
    transform: rotate(-57deg);
  }
  .-rotate-58,
  .hover\:-rotate-58:hover,
  .focus\:-rotate-58:focus,
  .group:hover .group-hover\:-rotate-58,
  .group:focus-within .group-focus-within\:-rotate-58 {
    transform: rotate(-58deg);
  }
  .-rotate-59,
  .hover\:-rotate-59:hover,
  .focus\:-rotate-59:focus,
  .group:hover .group-hover\:-rotate-59,
  .group:focus-within .group-focus-within\:-rotate-59 {
    transform: rotate(-59deg);
  }
  .-rotate-60,
  .hover\:-rotate-60:hover,
  .focus\:-rotate-60:focus,
  .group:hover .group-hover\:-rotate-60,
  .group:focus-within .group-focus-within\:-rotate-60 {
    transform: rotate(-60deg);
  }
  .-rotate-61,
  .hover\:-rotate-61:hover,
  .focus\:-rotate-61:focus,
  .group:hover .group-hover\:-rotate-61,
  .group:focus-within .group-focus-within\:-rotate-61 {
    transform: rotate(-61deg);
  }
  .-rotate-62,
  .hover\:-rotate-62:hover,
  .focus\:-rotate-62:focus,
  .group:hover .group-hover\:-rotate-62,
  .group:focus-within .group-focus-within\:-rotate-62 {
    transform: rotate(-62deg);
  }
  .-rotate-63,
  .hover\:-rotate-63:hover,
  .focus\:-rotate-63:focus,
  .group:hover .group-hover\:-rotate-63,
  .group:focus-within .group-focus-within\:-rotate-63 {
    transform: rotate(-63deg);
  }
  .-rotate-64,
  .hover\:-rotate-64:hover,
  .focus\:-rotate-64:focus,
  .group:hover .group-hover\:-rotate-64,
  .group:focus-within .group-focus-within\:-rotate-64 {
    transform: rotate(-64deg);
  }
  .-rotate-65,
  .hover\:-rotate-65:hover,
  .focus\:-rotate-65:focus,
  .group:hover .group-hover\:-rotate-65,
  .group:focus-within .group-focus-within\:-rotate-65 {
    transform: rotate(-65deg);
  }
  .-rotate-66,
  .hover\:-rotate-66:hover,
  .focus\:-rotate-66:focus,
  .group:hover .group-hover\:-rotate-66,
  .group:focus-within .group-focus-within\:-rotate-66 {
    transform: rotate(-66deg);
  }
  .-rotate-67,
  .hover\:-rotate-67:hover,
  .focus\:-rotate-67:focus,
  .group:hover .group-hover\:-rotate-67,
  .group:focus-within .group-focus-within\:-rotate-67 {
    transform: rotate(-67deg);
  }
  .-rotate-68,
  .hover\:-rotate-68:hover,
  .focus\:-rotate-68:focus,
  .group:hover .group-hover\:-rotate-68,
  .group:focus-within .group-focus-within\:-rotate-68 {
    transform: rotate(-68deg);
  }
  .-rotate-69,
  .hover\:-rotate-69:hover,
  .focus\:-rotate-69:focus,
  .group:hover .group-hover\:-rotate-69,
  .group:focus-within .group-focus-within\:-rotate-69 {
    transform: rotate(-69deg);
  }
  .-rotate-70,
  .hover\:-rotate-70:hover,
  .focus\:-rotate-70:focus,
  .group:hover .group-hover\:-rotate-70,
  .group:focus-within .group-focus-within\:-rotate-70 {
    transform: rotate(-70deg);
  }
  .-rotate-71,
  .hover\:-rotate-71:hover,
  .focus\:-rotate-71:focus,
  .group:hover .group-hover\:-rotate-71,
  .group:focus-within .group-focus-within\:-rotate-71 {
    transform: rotate(-71deg);
  }
  .-rotate-72,
  .hover\:-rotate-72:hover,
  .focus\:-rotate-72:focus,
  .group:hover .group-hover\:-rotate-72,
  .group:focus-within .group-focus-within\:-rotate-72 {
    transform: rotate(-72deg);
  }
  .-rotate-73,
  .hover\:-rotate-73:hover,
  .focus\:-rotate-73:focus,
  .group:hover .group-hover\:-rotate-73,
  .group:focus-within .group-focus-within\:-rotate-73 {
    transform: rotate(-73deg);
  }
  .-rotate-74,
  .hover\:-rotate-74:hover,
  .focus\:-rotate-74:focus,
  .group:hover .group-hover\:-rotate-74,
  .group:focus-within .group-focus-within\:-rotate-74 {
    transform: rotate(-74deg);
  }
  .-rotate-75,
  .hover\:-rotate-75:hover,
  .focus\:-rotate-75:focus,
  .group:hover .group-hover\:-rotate-75,
  .group:focus-within .group-focus-within\:-rotate-75 {
    transform: rotate(-75deg);
  }
  .-rotate-76,
  .hover\:-rotate-76:hover,
  .focus\:-rotate-76:focus,
  .group:hover .group-hover\:-rotate-76,
  .group:focus-within .group-focus-within\:-rotate-76 {
    transform: rotate(-76deg);
  }
  .-rotate-77,
  .hover\:-rotate-77:hover,
  .focus\:-rotate-77:focus,
  .group:hover .group-hover\:-rotate-77,
  .group:focus-within .group-focus-within\:-rotate-77 {
    transform: rotate(-77deg);
  }
  .-rotate-78,
  .hover\:-rotate-78:hover,
  .focus\:-rotate-78:focus,
  .group:hover .group-hover\:-rotate-78,
  .group:focus-within .group-focus-within\:-rotate-78 {
    transform: rotate(-78deg);
  }
  .-rotate-79,
  .hover\:-rotate-79:hover,
  .focus\:-rotate-79:focus,
  .group:hover .group-hover\:-rotate-79,
  .group:focus-within .group-focus-within\:-rotate-79 {
    transform: rotate(-79deg);
  }
  .-rotate-80,
  .hover\:-rotate-80:hover,
  .focus\:-rotate-80:focus,
  .group:hover .group-hover\:-rotate-80,
  .group:focus-within .group-focus-within\:-rotate-80 {
    transform: rotate(-80deg);
  }
  .-rotate-81,
  .hover\:-rotate-81:hover,
  .focus\:-rotate-81:focus,
  .group:hover .group-hover\:-rotate-81,
  .group:focus-within .group-focus-within\:-rotate-81 {
    transform: rotate(-81deg);
  }
  .-rotate-82,
  .hover\:-rotate-82:hover,
  .focus\:-rotate-82:focus,
  .group:hover .group-hover\:-rotate-82,
  .group:focus-within .group-focus-within\:-rotate-82 {
    transform: rotate(-82deg);
  }
  .-rotate-83,
  .hover\:-rotate-83:hover,
  .focus\:-rotate-83:focus,
  .group:hover .group-hover\:-rotate-83,
  .group:focus-within .group-focus-within\:-rotate-83 {
    transform: rotate(-83deg);
  }
  .-rotate-84,
  .hover\:-rotate-84:hover,
  .focus\:-rotate-84:focus,
  .group:hover .group-hover\:-rotate-84,
  .group:focus-within .group-focus-within\:-rotate-84 {
    transform: rotate(-84deg);
  }
  .-rotate-85,
  .hover\:-rotate-85:hover,
  .focus\:-rotate-85:focus,
  .group:hover .group-hover\:-rotate-85,
  .group:focus-within .group-focus-within\:-rotate-85 {
    transform: rotate(-85deg);
  }
  .-rotate-86,
  .hover\:-rotate-86:hover,
  .focus\:-rotate-86:focus,
  .group:hover .group-hover\:-rotate-86,
  .group:focus-within .group-focus-within\:-rotate-86 {
    transform: rotate(-86deg);
  }
  .-rotate-87,
  .hover\:-rotate-87:hover,
  .focus\:-rotate-87:focus,
  .group:hover .group-hover\:-rotate-87,
  .group:focus-within .group-focus-within\:-rotate-87 {
    transform: rotate(-87deg);
  }
  .-rotate-88,
  .hover\:-rotate-88:hover,
  .focus\:-rotate-88:focus,
  .group:hover .group-hover\:-rotate-88,
  .group:focus-within .group-focus-within\:-rotate-88 {
    transform: rotate(-88deg);
  }
  .-rotate-89,
  .hover\:-rotate-89:hover,
  .focus\:-rotate-89:focus,
  .group:hover .group-hover\:-rotate-89,
  .group:focus-within .group-focus-within\:-rotate-89 {
    transform: rotate(-89deg);
  }
  .-rotate-90,
  .hover\:-rotate-90:hover,
  .focus\:-rotate-90:focus,
  .group:hover .group-hover\:-rotate-90,
  .group:focus-within .group-focus-within\:-rotate-90 {
    transform: rotate(-90deg);
  }
  .-rotate-91,
  .hover\:-rotate-91:hover,
  .focus\:-rotate-91:focus,
  .group:hover .group-hover\:-rotate-91,
  .group:focus-within .group-focus-within\:-rotate-91 {
    transform: rotate(-91deg);
  }
  .-rotate-92,
  .hover\:-rotate-92:hover,
  .focus\:-rotate-92:focus,
  .group:hover .group-hover\:-rotate-92,
  .group:focus-within .group-focus-within\:-rotate-92 {
    transform: rotate(-92deg);
  }
  .-rotate-93,
  .hover\:-rotate-93:hover,
  .focus\:-rotate-93:focus,
  .group:hover .group-hover\:-rotate-93,
  .group:focus-within .group-focus-within\:-rotate-93 {
    transform: rotate(-93deg);
  }
  .-rotate-94,
  .hover\:-rotate-94:hover,
  .focus\:-rotate-94:focus,
  .group:hover .group-hover\:-rotate-94,
  .group:focus-within .group-focus-within\:-rotate-94 {
    transform: rotate(-94deg);
  }
  .-rotate-95,
  .hover\:-rotate-95:hover,
  .focus\:-rotate-95:focus,
  .group:hover .group-hover\:-rotate-95,
  .group:focus-within .group-focus-within\:-rotate-95 {
    transform: rotate(-95deg);
  }
  .-rotate-96,
  .hover\:-rotate-96:hover,
  .focus\:-rotate-96:focus,
  .group:hover .group-hover\:-rotate-96,
  .group:focus-within .group-focus-within\:-rotate-96 {
    transform: rotate(-96deg);
  }
  .-rotate-97,
  .hover\:-rotate-97:hover,
  .focus\:-rotate-97:focus,
  .group:hover .group-hover\:-rotate-97,
  .group:focus-within .group-focus-within\:-rotate-97 {
    transform: rotate(-97deg);
  }
  .-rotate-98,
  .hover\:-rotate-98:hover,
  .focus\:-rotate-98:focus,
  .group:hover .group-hover\:-rotate-98,
  .group:focus-within .group-focus-within\:-rotate-98 {
    transform: rotate(-98deg);
  }
  .-rotate-99,
  .hover\:-rotate-99:hover,
  .focus\:-rotate-99:focus,
  .group:hover .group-hover\:-rotate-99,
  .group:focus-within .group-focus-within\:-rotate-99 {
    transform: rotate(-99deg);
  }
  .-rotate-100,
  .hover\:-rotate-100:hover,
  .focus\:-rotate-100:focus,
  .group:hover .group-hover\:-rotate-100,
  .group:focus-within .group-focus-within\:-rotate-100 {
    transform: rotate(-100deg);
  }
  .-rotate-101,
  .hover\:-rotate-101:hover,
  .focus\:-rotate-101:focus,
  .group:hover .group-hover\:-rotate-101,
  .group:focus-within .group-focus-within\:-rotate-101 {
    transform: rotate(-101deg);
  }
  .-rotate-102,
  .hover\:-rotate-102:hover,
  .focus\:-rotate-102:focus,
  .group:hover .group-hover\:-rotate-102,
  .group:focus-within .group-focus-within\:-rotate-102 {
    transform: rotate(-102deg);
  }
  .-rotate-103,
  .hover\:-rotate-103:hover,
  .focus\:-rotate-103:focus,
  .group:hover .group-hover\:-rotate-103,
  .group:focus-within .group-focus-within\:-rotate-103 {
    transform: rotate(-103deg);
  }
  .-rotate-104,
  .hover\:-rotate-104:hover,
  .focus\:-rotate-104:focus,
  .group:hover .group-hover\:-rotate-104,
  .group:focus-within .group-focus-within\:-rotate-104 {
    transform: rotate(-104deg);
  }
  .-rotate-105,
  .hover\:-rotate-105:hover,
  .focus\:-rotate-105:focus,
  .group:hover .group-hover\:-rotate-105,
  .group:focus-within .group-focus-within\:-rotate-105 {
    transform: rotate(-105deg);
  }
  .-rotate-106,
  .hover\:-rotate-106:hover,
  .focus\:-rotate-106:focus,
  .group:hover .group-hover\:-rotate-106,
  .group:focus-within .group-focus-within\:-rotate-106 {
    transform: rotate(-106deg);
  }
  .-rotate-107,
  .hover\:-rotate-107:hover,
  .focus\:-rotate-107:focus,
  .group:hover .group-hover\:-rotate-107,
  .group:focus-within .group-focus-within\:-rotate-107 {
    transform: rotate(-107deg);
  }
  .-rotate-108,
  .hover\:-rotate-108:hover,
  .focus\:-rotate-108:focus,
  .group:hover .group-hover\:-rotate-108,
  .group:focus-within .group-focus-within\:-rotate-108 {
    transform: rotate(-108deg);
  }
  .-rotate-109,
  .hover\:-rotate-109:hover,
  .focus\:-rotate-109:focus,
  .group:hover .group-hover\:-rotate-109,
  .group:focus-within .group-focus-within\:-rotate-109 {
    transform: rotate(-109deg);
  }
  .-rotate-110,
  .hover\:-rotate-110:hover,
  .focus\:-rotate-110:focus,
  .group:hover .group-hover\:-rotate-110,
  .group:focus-within .group-focus-within\:-rotate-110 {
    transform: rotate(-110deg);
  }
  .-rotate-111,
  .hover\:-rotate-111:hover,
  .focus\:-rotate-111:focus,
  .group:hover .group-hover\:-rotate-111,
  .group:focus-within .group-focus-within\:-rotate-111 {
    transform: rotate(-111deg);
  }
  .-rotate-112,
  .hover\:-rotate-112:hover,
  .focus\:-rotate-112:focus,
  .group:hover .group-hover\:-rotate-112,
  .group:focus-within .group-focus-within\:-rotate-112 {
    transform: rotate(-112deg);
  }
  .-rotate-113,
  .hover\:-rotate-113:hover,
  .focus\:-rotate-113:focus,
  .group:hover .group-hover\:-rotate-113,
  .group:focus-within .group-focus-within\:-rotate-113 {
    transform: rotate(-113deg);
  }
  .-rotate-114,
  .hover\:-rotate-114:hover,
  .focus\:-rotate-114:focus,
  .group:hover .group-hover\:-rotate-114,
  .group:focus-within .group-focus-within\:-rotate-114 {
    transform: rotate(-114deg);
  }
  .-rotate-115,
  .hover\:-rotate-115:hover,
  .focus\:-rotate-115:focus,
  .group:hover .group-hover\:-rotate-115,
  .group:focus-within .group-focus-within\:-rotate-115 {
    transform: rotate(-115deg);
  }
  .-rotate-116,
  .hover\:-rotate-116:hover,
  .focus\:-rotate-116:focus,
  .group:hover .group-hover\:-rotate-116,
  .group:focus-within .group-focus-within\:-rotate-116 {
    transform: rotate(-116deg);
  }
  .-rotate-117,
  .hover\:-rotate-117:hover,
  .focus\:-rotate-117:focus,
  .group:hover .group-hover\:-rotate-117,
  .group:focus-within .group-focus-within\:-rotate-117 {
    transform: rotate(-117deg);
  }
  .-rotate-118,
  .hover\:-rotate-118:hover,
  .focus\:-rotate-118:focus,
  .group:hover .group-hover\:-rotate-118,
  .group:focus-within .group-focus-within\:-rotate-118 {
    transform: rotate(-118deg);
  }
  .-rotate-119,
  .hover\:-rotate-119:hover,
  .focus\:-rotate-119:focus,
  .group:hover .group-hover\:-rotate-119,
  .group:focus-within .group-focus-within\:-rotate-119 {
    transform: rotate(-119deg);
  }
  .-rotate-120,
  .hover\:-rotate-120:hover,
  .focus\:-rotate-120:focus,
  .group:hover .group-hover\:-rotate-120,
  .group:focus-within .group-focus-within\:-rotate-120 {
    transform: rotate(-120deg);
  }
  .-rotate-121,
  .hover\:-rotate-121:hover,
  .focus\:-rotate-121:focus,
  .group:hover .group-hover\:-rotate-121,
  .group:focus-within .group-focus-within\:-rotate-121 {
    transform: rotate(-121deg);
  }
  .-rotate-122,
  .hover\:-rotate-122:hover,
  .focus\:-rotate-122:focus,
  .group:hover .group-hover\:-rotate-122,
  .group:focus-within .group-focus-within\:-rotate-122 {
    transform: rotate(-122deg);
  }
  .-rotate-123,
  .hover\:-rotate-123:hover,
  .focus\:-rotate-123:focus,
  .group:hover .group-hover\:-rotate-123,
  .group:focus-within .group-focus-within\:-rotate-123 {
    transform: rotate(-123deg);
  }
  .-rotate-124,
  .hover\:-rotate-124:hover,
  .focus\:-rotate-124:focus,
  .group:hover .group-hover\:-rotate-124,
  .group:focus-within .group-focus-within\:-rotate-124 {
    transform: rotate(-124deg);
  }
  .-rotate-125,
  .hover\:-rotate-125:hover,
  .focus\:-rotate-125:focus,
  .group:hover .group-hover\:-rotate-125,
  .group:focus-within .group-focus-within\:-rotate-125 {
    transform: rotate(-125deg);
  }
  .-rotate-126,
  .hover\:-rotate-126:hover,
  .focus\:-rotate-126:focus,
  .group:hover .group-hover\:-rotate-126,
  .group:focus-within .group-focus-within\:-rotate-126 {
    transform: rotate(-126deg);
  }
  .-rotate-127,
  .hover\:-rotate-127:hover,
  .focus\:-rotate-127:focus,
  .group:hover .group-hover\:-rotate-127,
  .group:focus-within .group-focus-within\:-rotate-127 {
    transform: rotate(-127deg);
  }
  .-rotate-128,
  .hover\:-rotate-128:hover,
  .focus\:-rotate-128:focus,
  .group:hover .group-hover\:-rotate-128,
  .group:focus-within .group-focus-within\:-rotate-128 {
    transform: rotate(-128deg);
  }
  .-rotate-129,
  .hover\:-rotate-129:hover,
  .focus\:-rotate-129:focus,
  .group:hover .group-hover\:-rotate-129,
  .group:focus-within .group-focus-within\:-rotate-129 {
    transform: rotate(-129deg);
  }
  .-rotate-130,
  .hover\:-rotate-130:hover,
  .focus\:-rotate-130:focus,
  .group:hover .group-hover\:-rotate-130,
  .group:focus-within .group-focus-within\:-rotate-130 {
    transform: rotate(-130deg);
  }
  .-rotate-131,
  .hover\:-rotate-131:hover,
  .focus\:-rotate-131:focus,
  .group:hover .group-hover\:-rotate-131,
  .group:focus-within .group-focus-within\:-rotate-131 {
    transform: rotate(-131deg);
  }
  .-rotate-132,
  .hover\:-rotate-132:hover,
  .focus\:-rotate-132:focus,
  .group:hover .group-hover\:-rotate-132,
  .group:focus-within .group-focus-within\:-rotate-132 {
    transform: rotate(-132deg);
  }
  .-rotate-133,
  .hover\:-rotate-133:hover,
  .focus\:-rotate-133:focus,
  .group:hover .group-hover\:-rotate-133,
  .group:focus-within .group-focus-within\:-rotate-133 {
    transform: rotate(-133deg);
  }
  .-rotate-134,
  .hover\:-rotate-134:hover,
  .focus\:-rotate-134:focus,
  .group:hover .group-hover\:-rotate-134,
  .group:focus-within .group-focus-within\:-rotate-134 {
    transform: rotate(-134deg);
  }
  .-rotate-135,
  .hover\:-rotate-135:hover,
  .focus\:-rotate-135:focus,
  .group:hover .group-hover\:-rotate-135,
  .group:focus-within .group-focus-within\:-rotate-135 {
    transform: rotate(-135deg);
  }
  .-rotate-136,
  .hover\:-rotate-136:hover,
  .focus\:-rotate-136:focus,
  .group:hover .group-hover\:-rotate-136,
  .group:focus-within .group-focus-within\:-rotate-136 {
    transform: rotate(-136deg);
  }
  .-rotate-137,
  .hover\:-rotate-137:hover,
  .focus\:-rotate-137:focus,
  .group:hover .group-hover\:-rotate-137,
  .group:focus-within .group-focus-within\:-rotate-137 {
    transform: rotate(-137deg);
  }
  .-rotate-138,
  .hover\:-rotate-138:hover,
  .focus\:-rotate-138:focus,
  .group:hover .group-hover\:-rotate-138,
  .group:focus-within .group-focus-within\:-rotate-138 {
    transform: rotate(-138deg);
  }
  .-rotate-139,
  .hover\:-rotate-139:hover,
  .focus\:-rotate-139:focus,
  .group:hover .group-hover\:-rotate-139,
  .group:focus-within .group-focus-within\:-rotate-139 {
    transform: rotate(-139deg);
  }
  .-rotate-140,
  .hover\:-rotate-140:hover,
  .focus\:-rotate-140:focus,
  .group:hover .group-hover\:-rotate-140,
  .group:focus-within .group-focus-within\:-rotate-140 {
    transform: rotate(-140deg);
  }
  .-rotate-141,
  .hover\:-rotate-141:hover,
  .focus\:-rotate-141:focus,
  .group:hover .group-hover\:-rotate-141,
  .group:focus-within .group-focus-within\:-rotate-141 {
    transform: rotate(-141deg);
  }
  .-rotate-142,
  .hover\:-rotate-142:hover,
  .focus\:-rotate-142:focus,
  .group:hover .group-hover\:-rotate-142,
  .group:focus-within .group-focus-within\:-rotate-142 {
    transform: rotate(-142deg);
  }
  .-rotate-143,
  .hover\:-rotate-143:hover,
  .focus\:-rotate-143:focus,
  .group:hover .group-hover\:-rotate-143,
  .group:focus-within .group-focus-within\:-rotate-143 {
    transform: rotate(-143deg);
  }
  .-rotate-144,
  .hover\:-rotate-144:hover,
  .focus\:-rotate-144:focus,
  .group:hover .group-hover\:-rotate-144,
  .group:focus-within .group-focus-within\:-rotate-144 {
    transform: rotate(-144deg);
  }
  .-rotate-145,
  .hover\:-rotate-145:hover,
  .focus\:-rotate-145:focus,
  .group:hover .group-hover\:-rotate-145,
  .group:focus-within .group-focus-within\:-rotate-145 {
    transform: rotate(-145deg);
  }
  .-rotate-146,
  .hover\:-rotate-146:hover,
  .focus\:-rotate-146:focus,
  .group:hover .group-hover\:-rotate-146,
  .group:focus-within .group-focus-within\:-rotate-146 {
    transform: rotate(-146deg);
  }
  .-rotate-147,
  .hover\:-rotate-147:hover,
  .focus\:-rotate-147:focus,
  .group:hover .group-hover\:-rotate-147,
  .group:focus-within .group-focus-within\:-rotate-147 {
    transform: rotate(-147deg);
  }
  .-rotate-148,
  .hover\:-rotate-148:hover,
  .focus\:-rotate-148:focus,
  .group:hover .group-hover\:-rotate-148,
  .group:focus-within .group-focus-within\:-rotate-148 {
    transform: rotate(-148deg);
  }
  .-rotate-149,
  .hover\:-rotate-149:hover,
  .focus\:-rotate-149:focus,
  .group:hover .group-hover\:-rotate-149,
  .group:focus-within .group-focus-within\:-rotate-149 {
    transform: rotate(-149deg);
  }
  .-rotate-150,
  .hover\:-rotate-150:hover,
  .focus\:-rotate-150:focus,
  .group:hover .group-hover\:-rotate-150,
  .group:focus-within .group-focus-within\:-rotate-150 {
    transform: rotate(-150deg);
  }
  .-rotate-151,
  .hover\:-rotate-151:hover,
  .focus\:-rotate-151:focus,
  .group:hover .group-hover\:-rotate-151,
  .group:focus-within .group-focus-within\:-rotate-151 {
    transform: rotate(-151deg);
  }
  .-rotate-152,
  .hover\:-rotate-152:hover,
  .focus\:-rotate-152:focus,
  .group:hover .group-hover\:-rotate-152,
  .group:focus-within .group-focus-within\:-rotate-152 {
    transform: rotate(-152deg);
  }
  .-rotate-153,
  .hover\:-rotate-153:hover,
  .focus\:-rotate-153:focus,
  .group:hover .group-hover\:-rotate-153,
  .group:focus-within .group-focus-within\:-rotate-153 {
    transform: rotate(-153deg);
  }
  .-rotate-154,
  .hover\:-rotate-154:hover,
  .focus\:-rotate-154:focus,
  .group:hover .group-hover\:-rotate-154,
  .group:focus-within .group-focus-within\:-rotate-154 {
    transform: rotate(-154deg);
  }
  .-rotate-155,
  .hover\:-rotate-155:hover,
  .focus\:-rotate-155:focus,
  .group:hover .group-hover\:-rotate-155,
  .group:focus-within .group-focus-within\:-rotate-155 {
    transform: rotate(-155deg);
  }
  .-rotate-156,
  .hover\:-rotate-156:hover,
  .focus\:-rotate-156:focus,
  .group:hover .group-hover\:-rotate-156,
  .group:focus-within .group-focus-within\:-rotate-156 {
    transform: rotate(-156deg);
  }
  .-rotate-157,
  .hover\:-rotate-157:hover,
  .focus\:-rotate-157:focus,
  .group:hover .group-hover\:-rotate-157,
  .group:focus-within .group-focus-within\:-rotate-157 {
    transform: rotate(-157deg);
  }
  .-rotate-158,
  .hover\:-rotate-158:hover,
  .focus\:-rotate-158:focus,
  .group:hover .group-hover\:-rotate-158,
  .group:focus-within .group-focus-within\:-rotate-158 {
    transform: rotate(-158deg);
  }
  .-rotate-159,
  .hover\:-rotate-159:hover,
  .focus\:-rotate-159:focus,
  .group:hover .group-hover\:-rotate-159,
  .group:focus-within .group-focus-within\:-rotate-159 {
    transform: rotate(-159deg);
  }
  .-rotate-160,
  .hover\:-rotate-160:hover,
  .focus\:-rotate-160:focus,
  .group:hover .group-hover\:-rotate-160,
  .group:focus-within .group-focus-within\:-rotate-160 {
    transform: rotate(-160deg);
  }
  .-rotate-161,
  .hover\:-rotate-161:hover,
  .focus\:-rotate-161:focus,
  .group:hover .group-hover\:-rotate-161,
  .group:focus-within .group-focus-within\:-rotate-161 {
    transform: rotate(-161deg);
  }
  .-rotate-162,
  .hover\:-rotate-162:hover,
  .focus\:-rotate-162:focus,
  .group:hover .group-hover\:-rotate-162,
  .group:focus-within .group-focus-within\:-rotate-162 {
    transform: rotate(-162deg);
  }
  .-rotate-163,
  .hover\:-rotate-163:hover,
  .focus\:-rotate-163:focus,
  .group:hover .group-hover\:-rotate-163,
  .group:focus-within .group-focus-within\:-rotate-163 {
    transform: rotate(-163deg);
  }
  .-rotate-164,
  .hover\:-rotate-164:hover,
  .focus\:-rotate-164:focus,
  .group:hover .group-hover\:-rotate-164,
  .group:focus-within .group-focus-within\:-rotate-164 {
    transform: rotate(-164deg);
  }
  .-rotate-165,
  .hover\:-rotate-165:hover,
  .focus\:-rotate-165:focus,
  .group:hover .group-hover\:-rotate-165,
  .group:focus-within .group-focus-within\:-rotate-165 {
    transform: rotate(-165deg);
  }
  .-rotate-166,
  .hover\:-rotate-166:hover,
  .focus\:-rotate-166:focus,
  .group:hover .group-hover\:-rotate-166,
  .group:focus-within .group-focus-within\:-rotate-166 {
    transform: rotate(-166deg);
  }
  .-rotate-167,
  .hover\:-rotate-167:hover,
  .focus\:-rotate-167:focus,
  .group:hover .group-hover\:-rotate-167,
  .group:focus-within .group-focus-within\:-rotate-167 {
    transform: rotate(-167deg);
  }
  .-rotate-168,
  .hover\:-rotate-168:hover,
  .focus\:-rotate-168:focus,
  .group:hover .group-hover\:-rotate-168,
  .group:focus-within .group-focus-within\:-rotate-168 {
    transform: rotate(-168deg);
  }
  .-rotate-169,
  .hover\:-rotate-169:hover,
  .focus\:-rotate-169:focus,
  .group:hover .group-hover\:-rotate-169,
  .group:focus-within .group-focus-within\:-rotate-169 {
    transform: rotate(-169deg);
  }
  .-rotate-170,
  .hover\:-rotate-170:hover,
  .focus\:-rotate-170:focus,
  .group:hover .group-hover\:-rotate-170,
  .group:focus-within .group-focus-within\:-rotate-170 {
    transform: rotate(-170deg);
  }
  .-rotate-171,
  .hover\:-rotate-171:hover,
  .focus\:-rotate-171:focus,
  .group:hover .group-hover\:-rotate-171,
  .group:focus-within .group-focus-within\:-rotate-171 {
    transform: rotate(-171deg);
  }
  .-rotate-172,
  .hover\:-rotate-172:hover,
  .focus\:-rotate-172:focus,
  .group:hover .group-hover\:-rotate-172,
  .group:focus-within .group-focus-within\:-rotate-172 {
    transform: rotate(-172deg);
  }
  .-rotate-173,
  .hover\:-rotate-173:hover,
  .focus\:-rotate-173:focus,
  .group:hover .group-hover\:-rotate-173,
  .group:focus-within .group-focus-within\:-rotate-173 {
    transform: rotate(-173deg);
  }
  .-rotate-174,
  .hover\:-rotate-174:hover,
  .focus\:-rotate-174:focus,
  .group:hover .group-hover\:-rotate-174,
  .group:focus-within .group-focus-within\:-rotate-174 {
    transform: rotate(-174deg);
  }
  .-rotate-175,
  .hover\:-rotate-175:hover,
  .focus\:-rotate-175:focus,
  .group:hover .group-hover\:-rotate-175,
  .group:focus-within .group-focus-within\:-rotate-175 {
    transform: rotate(-175deg);
  }
  .-rotate-176,
  .hover\:-rotate-176:hover,
  .focus\:-rotate-176:focus,
  .group:hover .group-hover\:-rotate-176,
  .group:focus-within .group-focus-within\:-rotate-176 {
    transform: rotate(-176deg);
  }
  .-rotate-177,
  .hover\:-rotate-177:hover,
  .focus\:-rotate-177:focus,
  .group:hover .group-hover\:-rotate-177,
  .group:focus-within .group-focus-within\:-rotate-177 {
    transform: rotate(-177deg);
  }
  .-rotate-178,
  .hover\:-rotate-178:hover,
  .focus\:-rotate-178:focus,
  .group:hover .group-hover\:-rotate-178,
  .group:focus-within .group-focus-within\:-rotate-178 {
    transform: rotate(-178deg);
  }
  .-rotate-179,
  .hover\:-rotate-179:hover,
  .focus\:-rotate-179:focus,
  .group:hover .group-hover\:-rotate-179,
  .group:focus-within .group-focus-within\:-rotate-179 {
    transform: rotate(-179deg);
  }
  .-rotate-180,
  .hover\:-rotate-180:hover,
  .focus\:-rotate-180:focus,
  .group:hover .group-hover\:-rotate-180,
  .group:focus-within .group-focus-within\:-rotate-180 {
    transform: rotate(-180deg);
  }
  .-rotate-181,
  .hover\:-rotate-181:hover,
  .focus\:-rotate-181:focus,
  .group:hover .group-hover\:-rotate-181,
  .group:focus-within .group-focus-within\:-rotate-181 {
    transform: rotate(-181deg);
  }
  .-rotate-182,
  .hover\:-rotate-182:hover,
  .focus\:-rotate-182:focus,
  .group:hover .group-hover\:-rotate-182,
  .group:focus-within .group-focus-within\:-rotate-182 {
    transform: rotate(-182deg);
  }
  .-rotate-183,
  .hover\:-rotate-183:hover,
  .focus\:-rotate-183:focus,
  .group:hover .group-hover\:-rotate-183,
  .group:focus-within .group-focus-within\:-rotate-183 {
    transform: rotate(-183deg);
  }
  .-rotate-184,
  .hover\:-rotate-184:hover,
  .focus\:-rotate-184:focus,
  .group:hover .group-hover\:-rotate-184,
  .group:focus-within .group-focus-within\:-rotate-184 {
    transform: rotate(-184deg);
  }
  .-rotate-185,
  .hover\:-rotate-185:hover,
  .focus\:-rotate-185:focus,
  .group:hover .group-hover\:-rotate-185,
  .group:focus-within .group-focus-within\:-rotate-185 {
    transform: rotate(-185deg);
  }
  .-rotate-186,
  .hover\:-rotate-186:hover,
  .focus\:-rotate-186:focus,
  .group:hover .group-hover\:-rotate-186,
  .group:focus-within .group-focus-within\:-rotate-186 {
    transform: rotate(-186deg);
  }
  .-rotate-187,
  .hover\:-rotate-187:hover,
  .focus\:-rotate-187:focus,
  .group:hover .group-hover\:-rotate-187,
  .group:focus-within .group-focus-within\:-rotate-187 {
    transform: rotate(-187deg);
  }
  .-rotate-188,
  .hover\:-rotate-188:hover,
  .focus\:-rotate-188:focus,
  .group:hover .group-hover\:-rotate-188,
  .group:focus-within .group-focus-within\:-rotate-188 {
    transform: rotate(-188deg);
  }
  .-rotate-189,
  .hover\:-rotate-189:hover,
  .focus\:-rotate-189:focus,
  .group:hover .group-hover\:-rotate-189,
  .group:focus-within .group-focus-within\:-rotate-189 {
    transform: rotate(-189deg);
  }
  .-rotate-190,
  .hover\:-rotate-190:hover,
  .focus\:-rotate-190:focus,
  .group:hover .group-hover\:-rotate-190,
  .group:focus-within .group-focus-within\:-rotate-190 {
    transform: rotate(-190deg);
  }
  .-rotate-191,
  .hover\:-rotate-191:hover,
  .focus\:-rotate-191:focus,
  .group:hover .group-hover\:-rotate-191,
  .group:focus-within .group-focus-within\:-rotate-191 {
    transform: rotate(-191deg);
  }
  .-rotate-192,
  .hover\:-rotate-192:hover,
  .focus\:-rotate-192:focus,
  .group:hover .group-hover\:-rotate-192,
  .group:focus-within .group-focus-within\:-rotate-192 {
    transform: rotate(-192deg);
  }
  .-rotate-193,
  .hover\:-rotate-193:hover,
  .focus\:-rotate-193:focus,
  .group:hover .group-hover\:-rotate-193,
  .group:focus-within .group-focus-within\:-rotate-193 {
    transform: rotate(-193deg);
  }
  .-rotate-194,
  .hover\:-rotate-194:hover,
  .focus\:-rotate-194:focus,
  .group:hover .group-hover\:-rotate-194,
  .group:focus-within .group-focus-within\:-rotate-194 {
    transform: rotate(-194deg);
  }
  .-rotate-195,
  .hover\:-rotate-195:hover,
  .focus\:-rotate-195:focus,
  .group:hover .group-hover\:-rotate-195,
  .group:focus-within .group-focus-within\:-rotate-195 {
    transform: rotate(-195deg);
  }
  .-rotate-196,
  .hover\:-rotate-196:hover,
  .focus\:-rotate-196:focus,
  .group:hover .group-hover\:-rotate-196,
  .group:focus-within .group-focus-within\:-rotate-196 {
    transform: rotate(-196deg);
  }
  .-rotate-197,
  .hover\:-rotate-197:hover,
  .focus\:-rotate-197:focus,
  .group:hover .group-hover\:-rotate-197,
  .group:focus-within .group-focus-within\:-rotate-197 {
    transform: rotate(-197deg);
  }
  .-rotate-198,
  .hover\:-rotate-198:hover,
  .focus\:-rotate-198:focus,
  .group:hover .group-hover\:-rotate-198,
  .group:focus-within .group-focus-within\:-rotate-198 {
    transform: rotate(-198deg);
  }
  .-rotate-199,
  .hover\:-rotate-199:hover,
  .focus\:-rotate-199:focus,
  .group:hover .group-hover\:-rotate-199,
  .group:focus-within .group-focus-within\:-rotate-199 {
    transform: rotate(-199deg);
  }
  .-rotate-200,
  .hover\:-rotate-200:hover,
  .focus\:-rotate-200:focus,
  .group:hover .group-hover\:-rotate-200,
  .group:focus-within .group-focus-within\:-rotate-200 {
    transform: rotate(-200deg);
  }
  .-rotate-201,
  .hover\:-rotate-201:hover,
  .focus\:-rotate-201:focus,
  .group:hover .group-hover\:-rotate-201,
  .group:focus-within .group-focus-within\:-rotate-201 {
    transform: rotate(-201deg);
  }
  .-rotate-202,
  .hover\:-rotate-202:hover,
  .focus\:-rotate-202:focus,
  .group:hover .group-hover\:-rotate-202,
  .group:focus-within .group-focus-within\:-rotate-202 {
    transform: rotate(-202deg);
  }
  .-rotate-203,
  .hover\:-rotate-203:hover,
  .focus\:-rotate-203:focus,
  .group:hover .group-hover\:-rotate-203,
  .group:focus-within .group-focus-within\:-rotate-203 {
    transform: rotate(-203deg);
  }
  .-rotate-204,
  .hover\:-rotate-204:hover,
  .focus\:-rotate-204:focus,
  .group:hover .group-hover\:-rotate-204,
  .group:focus-within .group-focus-within\:-rotate-204 {
    transform: rotate(-204deg);
  }
  .-rotate-205,
  .hover\:-rotate-205:hover,
  .focus\:-rotate-205:focus,
  .group:hover .group-hover\:-rotate-205,
  .group:focus-within .group-focus-within\:-rotate-205 {
    transform: rotate(-205deg);
  }
  .-rotate-206,
  .hover\:-rotate-206:hover,
  .focus\:-rotate-206:focus,
  .group:hover .group-hover\:-rotate-206,
  .group:focus-within .group-focus-within\:-rotate-206 {
    transform: rotate(-206deg);
  }
  .-rotate-207,
  .hover\:-rotate-207:hover,
  .focus\:-rotate-207:focus,
  .group:hover .group-hover\:-rotate-207,
  .group:focus-within .group-focus-within\:-rotate-207 {
    transform: rotate(-207deg);
  }
  .-rotate-208,
  .hover\:-rotate-208:hover,
  .focus\:-rotate-208:focus,
  .group:hover .group-hover\:-rotate-208,
  .group:focus-within .group-focus-within\:-rotate-208 {
    transform: rotate(-208deg);
  }
  .-rotate-209,
  .hover\:-rotate-209:hover,
  .focus\:-rotate-209:focus,
  .group:hover .group-hover\:-rotate-209,
  .group:focus-within .group-focus-within\:-rotate-209 {
    transform: rotate(-209deg);
  }
  .-rotate-210,
  .hover\:-rotate-210:hover,
  .focus\:-rotate-210:focus,
  .group:hover .group-hover\:-rotate-210,
  .group:focus-within .group-focus-within\:-rotate-210 {
    transform: rotate(-210deg);
  }
  .-rotate-211,
  .hover\:-rotate-211:hover,
  .focus\:-rotate-211:focus,
  .group:hover .group-hover\:-rotate-211,
  .group:focus-within .group-focus-within\:-rotate-211 {
    transform: rotate(-211deg);
  }
  .-rotate-212,
  .hover\:-rotate-212:hover,
  .focus\:-rotate-212:focus,
  .group:hover .group-hover\:-rotate-212,
  .group:focus-within .group-focus-within\:-rotate-212 {
    transform: rotate(-212deg);
  }
  .-rotate-213,
  .hover\:-rotate-213:hover,
  .focus\:-rotate-213:focus,
  .group:hover .group-hover\:-rotate-213,
  .group:focus-within .group-focus-within\:-rotate-213 {
    transform: rotate(-213deg);
  }
  .-rotate-214,
  .hover\:-rotate-214:hover,
  .focus\:-rotate-214:focus,
  .group:hover .group-hover\:-rotate-214,
  .group:focus-within .group-focus-within\:-rotate-214 {
    transform: rotate(-214deg);
  }
  .-rotate-215,
  .hover\:-rotate-215:hover,
  .focus\:-rotate-215:focus,
  .group:hover .group-hover\:-rotate-215,
  .group:focus-within .group-focus-within\:-rotate-215 {
    transform: rotate(-215deg);
  }
  .-rotate-216,
  .hover\:-rotate-216:hover,
  .focus\:-rotate-216:focus,
  .group:hover .group-hover\:-rotate-216,
  .group:focus-within .group-focus-within\:-rotate-216 {
    transform: rotate(-216deg);
  }
  .-rotate-217,
  .hover\:-rotate-217:hover,
  .focus\:-rotate-217:focus,
  .group:hover .group-hover\:-rotate-217,
  .group:focus-within .group-focus-within\:-rotate-217 {
    transform: rotate(-217deg);
  }
  .-rotate-218,
  .hover\:-rotate-218:hover,
  .focus\:-rotate-218:focus,
  .group:hover .group-hover\:-rotate-218,
  .group:focus-within .group-focus-within\:-rotate-218 {
    transform: rotate(-218deg);
  }
  .-rotate-219,
  .hover\:-rotate-219:hover,
  .focus\:-rotate-219:focus,
  .group:hover .group-hover\:-rotate-219,
  .group:focus-within .group-focus-within\:-rotate-219 {
    transform: rotate(-219deg);
  }
  .-rotate-220,
  .hover\:-rotate-220:hover,
  .focus\:-rotate-220:focus,
  .group:hover .group-hover\:-rotate-220,
  .group:focus-within .group-focus-within\:-rotate-220 {
    transform: rotate(-220deg);
  }
  .-rotate-221,
  .hover\:-rotate-221:hover,
  .focus\:-rotate-221:focus,
  .group:hover .group-hover\:-rotate-221,
  .group:focus-within .group-focus-within\:-rotate-221 {
    transform: rotate(-221deg);
  }
  .-rotate-222,
  .hover\:-rotate-222:hover,
  .focus\:-rotate-222:focus,
  .group:hover .group-hover\:-rotate-222,
  .group:focus-within .group-focus-within\:-rotate-222 {
    transform: rotate(-222deg);
  }
  .-rotate-223,
  .hover\:-rotate-223:hover,
  .focus\:-rotate-223:focus,
  .group:hover .group-hover\:-rotate-223,
  .group:focus-within .group-focus-within\:-rotate-223 {
    transform: rotate(-223deg);
  }
  .-rotate-224,
  .hover\:-rotate-224:hover,
  .focus\:-rotate-224:focus,
  .group:hover .group-hover\:-rotate-224,
  .group:focus-within .group-focus-within\:-rotate-224 {
    transform: rotate(-224deg);
  }
  .-rotate-225,
  .hover\:-rotate-225:hover,
  .focus\:-rotate-225:focus,
  .group:hover .group-hover\:-rotate-225,
  .group:focus-within .group-focus-within\:-rotate-225 {
    transform: rotate(-225deg);
  }
  .-rotate-226,
  .hover\:-rotate-226:hover,
  .focus\:-rotate-226:focus,
  .group:hover .group-hover\:-rotate-226,
  .group:focus-within .group-focus-within\:-rotate-226 {
    transform: rotate(-226deg);
  }
  .-rotate-227,
  .hover\:-rotate-227:hover,
  .focus\:-rotate-227:focus,
  .group:hover .group-hover\:-rotate-227,
  .group:focus-within .group-focus-within\:-rotate-227 {
    transform: rotate(-227deg);
  }
  .-rotate-228,
  .hover\:-rotate-228:hover,
  .focus\:-rotate-228:focus,
  .group:hover .group-hover\:-rotate-228,
  .group:focus-within .group-focus-within\:-rotate-228 {
    transform: rotate(-228deg);
  }
  .-rotate-229,
  .hover\:-rotate-229:hover,
  .focus\:-rotate-229:focus,
  .group:hover .group-hover\:-rotate-229,
  .group:focus-within .group-focus-within\:-rotate-229 {
    transform: rotate(-229deg);
  }
  .-rotate-230,
  .hover\:-rotate-230:hover,
  .focus\:-rotate-230:focus,
  .group:hover .group-hover\:-rotate-230,
  .group:focus-within .group-focus-within\:-rotate-230 {
    transform: rotate(-230deg);
  }
  .-rotate-231,
  .hover\:-rotate-231:hover,
  .focus\:-rotate-231:focus,
  .group:hover .group-hover\:-rotate-231,
  .group:focus-within .group-focus-within\:-rotate-231 {
    transform: rotate(-231deg);
  }
  .-rotate-232,
  .hover\:-rotate-232:hover,
  .focus\:-rotate-232:focus,
  .group:hover .group-hover\:-rotate-232,
  .group:focus-within .group-focus-within\:-rotate-232 {
    transform: rotate(-232deg);
  }
  .-rotate-233,
  .hover\:-rotate-233:hover,
  .focus\:-rotate-233:focus,
  .group:hover .group-hover\:-rotate-233,
  .group:focus-within .group-focus-within\:-rotate-233 {
    transform: rotate(-233deg);
  }
  .-rotate-234,
  .hover\:-rotate-234:hover,
  .focus\:-rotate-234:focus,
  .group:hover .group-hover\:-rotate-234,
  .group:focus-within .group-focus-within\:-rotate-234 {
    transform: rotate(-234deg);
  }
  .-rotate-235,
  .hover\:-rotate-235:hover,
  .focus\:-rotate-235:focus,
  .group:hover .group-hover\:-rotate-235,
  .group:focus-within .group-focus-within\:-rotate-235 {
    transform: rotate(-235deg);
  }
  .-rotate-236,
  .hover\:-rotate-236:hover,
  .focus\:-rotate-236:focus,
  .group:hover .group-hover\:-rotate-236,
  .group:focus-within .group-focus-within\:-rotate-236 {
    transform: rotate(-236deg);
  }
  .-rotate-237,
  .hover\:-rotate-237:hover,
  .focus\:-rotate-237:focus,
  .group:hover .group-hover\:-rotate-237,
  .group:focus-within .group-focus-within\:-rotate-237 {
    transform: rotate(-237deg);
  }
  .-rotate-238,
  .hover\:-rotate-238:hover,
  .focus\:-rotate-238:focus,
  .group:hover .group-hover\:-rotate-238,
  .group:focus-within .group-focus-within\:-rotate-238 {
    transform: rotate(-238deg);
  }
  .-rotate-239,
  .hover\:-rotate-239:hover,
  .focus\:-rotate-239:focus,
  .group:hover .group-hover\:-rotate-239,
  .group:focus-within .group-focus-within\:-rotate-239 {
    transform: rotate(-239deg);
  }
  .-rotate-240,
  .hover\:-rotate-240:hover,
  .focus\:-rotate-240:focus,
  .group:hover .group-hover\:-rotate-240,
  .group:focus-within .group-focus-within\:-rotate-240 {
    transform: rotate(-240deg);
  }
  .-rotate-241,
  .hover\:-rotate-241:hover,
  .focus\:-rotate-241:focus,
  .group:hover .group-hover\:-rotate-241,
  .group:focus-within .group-focus-within\:-rotate-241 {
    transform: rotate(-241deg);
  }
  .-rotate-242,
  .hover\:-rotate-242:hover,
  .focus\:-rotate-242:focus,
  .group:hover .group-hover\:-rotate-242,
  .group:focus-within .group-focus-within\:-rotate-242 {
    transform: rotate(-242deg);
  }
  .-rotate-243,
  .hover\:-rotate-243:hover,
  .focus\:-rotate-243:focus,
  .group:hover .group-hover\:-rotate-243,
  .group:focus-within .group-focus-within\:-rotate-243 {
    transform: rotate(-243deg);
  }
  .-rotate-244,
  .hover\:-rotate-244:hover,
  .focus\:-rotate-244:focus,
  .group:hover .group-hover\:-rotate-244,
  .group:focus-within .group-focus-within\:-rotate-244 {
    transform: rotate(-244deg);
  }
  .-rotate-245,
  .hover\:-rotate-245:hover,
  .focus\:-rotate-245:focus,
  .group:hover .group-hover\:-rotate-245,
  .group:focus-within .group-focus-within\:-rotate-245 {
    transform: rotate(-245deg);
  }
  .-rotate-246,
  .hover\:-rotate-246:hover,
  .focus\:-rotate-246:focus,
  .group:hover .group-hover\:-rotate-246,
  .group:focus-within .group-focus-within\:-rotate-246 {
    transform: rotate(-246deg);
  }
  .-rotate-247,
  .hover\:-rotate-247:hover,
  .focus\:-rotate-247:focus,
  .group:hover .group-hover\:-rotate-247,
  .group:focus-within .group-focus-within\:-rotate-247 {
    transform: rotate(-247deg);
  }
  .-rotate-248,
  .hover\:-rotate-248:hover,
  .focus\:-rotate-248:focus,
  .group:hover .group-hover\:-rotate-248,
  .group:focus-within .group-focus-within\:-rotate-248 {
    transform: rotate(-248deg);
  }
  .-rotate-249,
  .hover\:-rotate-249:hover,
  .focus\:-rotate-249:focus,
  .group:hover .group-hover\:-rotate-249,
  .group:focus-within .group-focus-within\:-rotate-249 {
    transform: rotate(-249deg);
  }
  .-rotate-250,
  .hover\:-rotate-250:hover,
  .focus\:-rotate-250:focus,
  .group:hover .group-hover\:-rotate-250,
  .group:focus-within .group-focus-within\:-rotate-250 {
    transform: rotate(-250deg);
  }
  .-rotate-251,
  .hover\:-rotate-251:hover,
  .focus\:-rotate-251:focus,
  .group:hover .group-hover\:-rotate-251,
  .group:focus-within .group-focus-within\:-rotate-251 {
    transform: rotate(-251deg);
  }
  .-rotate-252,
  .hover\:-rotate-252:hover,
  .focus\:-rotate-252:focus,
  .group:hover .group-hover\:-rotate-252,
  .group:focus-within .group-focus-within\:-rotate-252 {
    transform: rotate(-252deg);
  }
  .-rotate-253,
  .hover\:-rotate-253:hover,
  .focus\:-rotate-253:focus,
  .group:hover .group-hover\:-rotate-253,
  .group:focus-within .group-focus-within\:-rotate-253 {
    transform: rotate(-253deg);
  }
  .-rotate-254,
  .hover\:-rotate-254:hover,
  .focus\:-rotate-254:focus,
  .group:hover .group-hover\:-rotate-254,
  .group:focus-within .group-focus-within\:-rotate-254 {
    transform: rotate(-254deg);
  }
  .-rotate-255,
  .hover\:-rotate-255:hover,
  .focus\:-rotate-255:focus,
  .group:hover .group-hover\:-rotate-255,
  .group:focus-within .group-focus-within\:-rotate-255 {
    transform: rotate(-255deg);
  }
  .-rotate-256,
  .hover\:-rotate-256:hover,
  .focus\:-rotate-256:focus,
  .group:hover .group-hover\:-rotate-256,
  .group:focus-within .group-focus-within\:-rotate-256 {
    transform: rotate(-256deg);
  }
  .-rotate-257,
  .hover\:-rotate-257:hover,
  .focus\:-rotate-257:focus,
  .group:hover .group-hover\:-rotate-257,
  .group:focus-within .group-focus-within\:-rotate-257 {
    transform: rotate(-257deg);
  }
  .-rotate-258,
  .hover\:-rotate-258:hover,
  .focus\:-rotate-258:focus,
  .group:hover .group-hover\:-rotate-258,
  .group:focus-within .group-focus-within\:-rotate-258 {
    transform: rotate(-258deg);
  }
  .-rotate-259,
  .hover\:-rotate-259:hover,
  .focus\:-rotate-259:focus,
  .group:hover .group-hover\:-rotate-259,
  .group:focus-within .group-focus-within\:-rotate-259 {
    transform: rotate(-259deg);
  }
  .-rotate-260,
  .hover\:-rotate-260:hover,
  .focus\:-rotate-260:focus,
  .group:hover .group-hover\:-rotate-260,
  .group:focus-within .group-focus-within\:-rotate-260 {
    transform: rotate(-260deg);
  }
  .-rotate-261,
  .hover\:-rotate-261:hover,
  .focus\:-rotate-261:focus,
  .group:hover .group-hover\:-rotate-261,
  .group:focus-within .group-focus-within\:-rotate-261 {
    transform: rotate(-261deg);
  }
  .-rotate-262,
  .hover\:-rotate-262:hover,
  .focus\:-rotate-262:focus,
  .group:hover .group-hover\:-rotate-262,
  .group:focus-within .group-focus-within\:-rotate-262 {
    transform: rotate(-262deg);
  }
  .-rotate-263,
  .hover\:-rotate-263:hover,
  .focus\:-rotate-263:focus,
  .group:hover .group-hover\:-rotate-263,
  .group:focus-within .group-focus-within\:-rotate-263 {
    transform: rotate(-263deg);
  }
  .-rotate-264,
  .hover\:-rotate-264:hover,
  .focus\:-rotate-264:focus,
  .group:hover .group-hover\:-rotate-264,
  .group:focus-within .group-focus-within\:-rotate-264 {
    transform: rotate(-264deg);
  }
  .-rotate-265,
  .hover\:-rotate-265:hover,
  .focus\:-rotate-265:focus,
  .group:hover .group-hover\:-rotate-265,
  .group:focus-within .group-focus-within\:-rotate-265 {
    transform: rotate(-265deg);
  }
  .-rotate-266,
  .hover\:-rotate-266:hover,
  .focus\:-rotate-266:focus,
  .group:hover .group-hover\:-rotate-266,
  .group:focus-within .group-focus-within\:-rotate-266 {
    transform: rotate(-266deg);
  }
  .-rotate-267,
  .hover\:-rotate-267:hover,
  .focus\:-rotate-267:focus,
  .group:hover .group-hover\:-rotate-267,
  .group:focus-within .group-focus-within\:-rotate-267 {
    transform: rotate(-267deg);
  }
  .-rotate-268,
  .hover\:-rotate-268:hover,
  .focus\:-rotate-268:focus,
  .group:hover .group-hover\:-rotate-268,
  .group:focus-within .group-focus-within\:-rotate-268 {
    transform: rotate(-268deg);
  }
  .-rotate-269,
  .hover\:-rotate-269:hover,
  .focus\:-rotate-269:focus,
  .group:hover .group-hover\:-rotate-269,
  .group:focus-within .group-focus-within\:-rotate-269 {
    transform: rotate(-269deg);
  }
  .-rotate-270,
  .hover\:-rotate-270:hover,
  .focus\:-rotate-270:focus,
  .group:hover .group-hover\:-rotate-270,
  .group:focus-within .group-focus-within\:-rotate-270 {
    transform: rotate(-270deg);
  }
  .-rotate-271,
  .hover\:-rotate-271:hover,
  .focus\:-rotate-271:focus,
  .group:hover .group-hover\:-rotate-271,
  .group:focus-within .group-focus-within\:-rotate-271 {
    transform: rotate(-271deg);
  }
  .-rotate-272,
  .hover\:-rotate-272:hover,
  .focus\:-rotate-272:focus,
  .group:hover .group-hover\:-rotate-272,
  .group:focus-within .group-focus-within\:-rotate-272 {
    transform: rotate(-272deg);
  }
  .-rotate-273,
  .hover\:-rotate-273:hover,
  .focus\:-rotate-273:focus,
  .group:hover .group-hover\:-rotate-273,
  .group:focus-within .group-focus-within\:-rotate-273 {
    transform: rotate(-273deg);
  }
  .-rotate-274,
  .hover\:-rotate-274:hover,
  .focus\:-rotate-274:focus,
  .group:hover .group-hover\:-rotate-274,
  .group:focus-within .group-focus-within\:-rotate-274 {
    transform: rotate(-274deg);
  }
  .-rotate-275,
  .hover\:-rotate-275:hover,
  .focus\:-rotate-275:focus,
  .group:hover .group-hover\:-rotate-275,
  .group:focus-within .group-focus-within\:-rotate-275 {
    transform: rotate(-275deg);
  }
  .-rotate-276,
  .hover\:-rotate-276:hover,
  .focus\:-rotate-276:focus,
  .group:hover .group-hover\:-rotate-276,
  .group:focus-within .group-focus-within\:-rotate-276 {
    transform: rotate(-276deg);
  }
  .-rotate-277,
  .hover\:-rotate-277:hover,
  .focus\:-rotate-277:focus,
  .group:hover .group-hover\:-rotate-277,
  .group:focus-within .group-focus-within\:-rotate-277 {
    transform: rotate(-277deg);
  }
  .-rotate-278,
  .hover\:-rotate-278:hover,
  .focus\:-rotate-278:focus,
  .group:hover .group-hover\:-rotate-278,
  .group:focus-within .group-focus-within\:-rotate-278 {
    transform: rotate(-278deg);
  }
  .-rotate-279,
  .hover\:-rotate-279:hover,
  .focus\:-rotate-279:focus,
  .group:hover .group-hover\:-rotate-279,
  .group:focus-within .group-focus-within\:-rotate-279 {
    transform: rotate(-279deg);
  }
  .-rotate-280,
  .hover\:-rotate-280:hover,
  .focus\:-rotate-280:focus,
  .group:hover .group-hover\:-rotate-280,
  .group:focus-within .group-focus-within\:-rotate-280 {
    transform: rotate(-280deg);
  }
  .-rotate-281,
  .hover\:-rotate-281:hover,
  .focus\:-rotate-281:focus,
  .group:hover .group-hover\:-rotate-281,
  .group:focus-within .group-focus-within\:-rotate-281 {
    transform: rotate(-281deg);
  }
  .-rotate-282,
  .hover\:-rotate-282:hover,
  .focus\:-rotate-282:focus,
  .group:hover .group-hover\:-rotate-282,
  .group:focus-within .group-focus-within\:-rotate-282 {
    transform: rotate(-282deg);
  }
  .-rotate-283,
  .hover\:-rotate-283:hover,
  .focus\:-rotate-283:focus,
  .group:hover .group-hover\:-rotate-283,
  .group:focus-within .group-focus-within\:-rotate-283 {
    transform: rotate(-283deg);
  }
  .-rotate-284,
  .hover\:-rotate-284:hover,
  .focus\:-rotate-284:focus,
  .group:hover .group-hover\:-rotate-284,
  .group:focus-within .group-focus-within\:-rotate-284 {
    transform: rotate(-284deg);
  }
  .-rotate-285,
  .hover\:-rotate-285:hover,
  .focus\:-rotate-285:focus,
  .group:hover .group-hover\:-rotate-285,
  .group:focus-within .group-focus-within\:-rotate-285 {
    transform: rotate(-285deg);
  }
  .-rotate-286,
  .hover\:-rotate-286:hover,
  .focus\:-rotate-286:focus,
  .group:hover .group-hover\:-rotate-286,
  .group:focus-within .group-focus-within\:-rotate-286 {
    transform: rotate(-286deg);
  }
  .-rotate-287,
  .hover\:-rotate-287:hover,
  .focus\:-rotate-287:focus,
  .group:hover .group-hover\:-rotate-287,
  .group:focus-within .group-focus-within\:-rotate-287 {
    transform: rotate(-287deg);
  }
  .-rotate-288,
  .hover\:-rotate-288:hover,
  .focus\:-rotate-288:focus,
  .group:hover .group-hover\:-rotate-288,
  .group:focus-within .group-focus-within\:-rotate-288 {
    transform: rotate(-288deg);
  }
  .-rotate-289,
  .hover\:-rotate-289:hover,
  .focus\:-rotate-289:focus,
  .group:hover .group-hover\:-rotate-289,
  .group:focus-within .group-focus-within\:-rotate-289 {
    transform: rotate(-289deg);
  }
  .-rotate-290,
  .hover\:-rotate-290:hover,
  .focus\:-rotate-290:focus,
  .group:hover .group-hover\:-rotate-290,
  .group:focus-within .group-focus-within\:-rotate-290 {
    transform: rotate(-290deg);
  }
  .-rotate-291,
  .hover\:-rotate-291:hover,
  .focus\:-rotate-291:focus,
  .group:hover .group-hover\:-rotate-291,
  .group:focus-within .group-focus-within\:-rotate-291 {
    transform: rotate(-291deg);
  }
  .-rotate-292,
  .hover\:-rotate-292:hover,
  .focus\:-rotate-292:focus,
  .group:hover .group-hover\:-rotate-292,
  .group:focus-within .group-focus-within\:-rotate-292 {
    transform: rotate(-292deg);
  }
  .-rotate-293,
  .hover\:-rotate-293:hover,
  .focus\:-rotate-293:focus,
  .group:hover .group-hover\:-rotate-293,
  .group:focus-within .group-focus-within\:-rotate-293 {
    transform: rotate(-293deg);
  }
  .-rotate-294,
  .hover\:-rotate-294:hover,
  .focus\:-rotate-294:focus,
  .group:hover .group-hover\:-rotate-294,
  .group:focus-within .group-focus-within\:-rotate-294 {
    transform: rotate(-294deg);
  }
  .-rotate-295,
  .hover\:-rotate-295:hover,
  .focus\:-rotate-295:focus,
  .group:hover .group-hover\:-rotate-295,
  .group:focus-within .group-focus-within\:-rotate-295 {
    transform: rotate(-295deg);
  }
  .-rotate-296,
  .hover\:-rotate-296:hover,
  .focus\:-rotate-296:focus,
  .group:hover .group-hover\:-rotate-296,
  .group:focus-within .group-focus-within\:-rotate-296 {
    transform: rotate(-296deg);
  }
  .-rotate-297,
  .hover\:-rotate-297:hover,
  .focus\:-rotate-297:focus,
  .group:hover .group-hover\:-rotate-297,
  .group:focus-within .group-focus-within\:-rotate-297 {
    transform: rotate(-297deg);
  }
  .-rotate-298,
  .hover\:-rotate-298:hover,
  .focus\:-rotate-298:focus,
  .group:hover .group-hover\:-rotate-298,
  .group:focus-within .group-focus-within\:-rotate-298 {
    transform: rotate(-298deg);
  }
  .-rotate-299,
  .hover\:-rotate-299:hover,
  .focus\:-rotate-299:focus,
  .group:hover .group-hover\:-rotate-299,
  .group:focus-within .group-focus-within\:-rotate-299 {
    transform: rotate(-299deg);
  }
  .-rotate-300,
  .hover\:-rotate-300:hover,
  .focus\:-rotate-300:focus,
  .group:hover .group-hover\:-rotate-300,
  .group:focus-within .group-focus-within\:-rotate-300 {
    transform: rotate(-300deg);
  }
  .-rotate-301,
  .hover\:-rotate-301:hover,
  .focus\:-rotate-301:focus,
  .group:hover .group-hover\:-rotate-301,
  .group:focus-within .group-focus-within\:-rotate-301 {
    transform: rotate(-301deg);
  }
  .-rotate-302,
  .hover\:-rotate-302:hover,
  .focus\:-rotate-302:focus,
  .group:hover .group-hover\:-rotate-302,
  .group:focus-within .group-focus-within\:-rotate-302 {
    transform: rotate(-302deg);
  }
  .-rotate-303,
  .hover\:-rotate-303:hover,
  .focus\:-rotate-303:focus,
  .group:hover .group-hover\:-rotate-303,
  .group:focus-within .group-focus-within\:-rotate-303 {
    transform: rotate(-303deg);
  }
  .-rotate-304,
  .hover\:-rotate-304:hover,
  .focus\:-rotate-304:focus,
  .group:hover .group-hover\:-rotate-304,
  .group:focus-within .group-focus-within\:-rotate-304 {
    transform: rotate(-304deg);
  }
  .-rotate-305,
  .hover\:-rotate-305:hover,
  .focus\:-rotate-305:focus,
  .group:hover .group-hover\:-rotate-305,
  .group:focus-within .group-focus-within\:-rotate-305 {
    transform: rotate(-305deg);
  }
  .-rotate-306,
  .hover\:-rotate-306:hover,
  .focus\:-rotate-306:focus,
  .group:hover .group-hover\:-rotate-306,
  .group:focus-within .group-focus-within\:-rotate-306 {
    transform: rotate(-306deg);
  }
  .-rotate-307,
  .hover\:-rotate-307:hover,
  .focus\:-rotate-307:focus,
  .group:hover .group-hover\:-rotate-307,
  .group:focus-within .group-focus-within\:-rotate-307 {
    transform: rotate(-307deg);
  }
  .-rotate-308,
  .hover\:-rotate-308:hover,
  .focus\:-rotate-308:focus,
  .group:hover .group-hover\:-rotate-308,
  .group:focus-within .group-focus-within\:-rotate-308 {
    transform: rotate(-308deg);
  }
  .-rotate-309,
  .hover\:-rotate-309:hover,
  .focus\:-rotate-309:focus,
  .group:hover .group-hover\:-rotate-309,
  .group:focus-within .group-focus-within\:-rotate-309 {
    transform: rotate(-309deg);
  }
  .-rotate-310,
  .hover\:-rotate-310:hover,
  .focus\:-rotate-310:focus,
  .group:hover .group-hover\:-rotate-310,
  .group:focus-within .group-focus-within\:-rotate-310 {
    transform: rotate(-310deg);
  }
  .-rotate-311,
  .hover\:-rotate-311:hover,
  .focus\:-rotate-311:focus,
  .group:hover .group-hover\:-rotate-311,
  .group:focus-within .group-focus-within\:-rotate-311 {
    transform: rotate(-311deg);
  }
  .-rotate-312,
  .hover\:-rotate-312:hover,
  .focus\:-rotate-312:focus,
  .group:hover .group-hover\:-rotate-312,
  .group:focus-within .group-focus-within\:-rotate-312 {
    transform: rotate(-312deg);
  }
  .-rotate-313,
  .hover\:-rotate-313:hover,
  .focus\:-rotate-313:focus,
  .group:hover .group-hover\:-rotate-313,
  .group:focus-within .group-focus-within\:-rotate-313 {
    transform: rotate(-313deg);
  }
  .-rotate-314,
  .hover\:-rotate-314:hover,
  .focus\:-rotate-314:focus,
  .group:hover .group-hover\:-rotate-314,
  .group:focus-within .group-focus-within\:-rotate-314 {
    transform: rotate(-314deg);
  }
  .-rotate-315,
  .hover\:-rotate-315:hover,
  .focus\:-rotate-315:focus,
  .group:hover .group-hover\:-rotate-315,
  .group:focus-within .group-focus-within\:-rotate-315 {
    transform: rotate(-315deg);
  }
  .-rotate-316,
  .hover\:-rotate-316:hover,
  .focus\:-rotate-316:focus,
  .group:hover .group-hover\:-rotate-316,
  .group:focus-within .group-focus-within\:-rotate-316 {
    transform: rotate(-316deg);
  }
  .-rotate-317,
  .hover\:-rotate-317:hover,
  .focus\:-rotate-317:focus,
  .group:hover .group-hover\:-rotate-317,
  .group:focus-within .group-focus-within\:-rotate-317 {
    transform: rotate(-317deg);
  }
  .-rotate-318,
  .hover\:-rotate-318:hover,
  .focus\:-rotate-318:focus,
  .group:hover .group-hover\:-rotate-318,
  .group:focus-within .group-focus-within\:-rotate-318 {
    transform: rotate(-318deg);
  }
  .-rotate-319,
  .hover\:-rotate-319:hover,
  .focus\:-rotate-319:focus,
  .group:hover .group-hover\:-rotate-319,
  .group:focus-within .group-focus-within\:-rotate-319 {
    transform: rotate(-319deg);
  }
  .-rotate-320,
  .hover\:-rotate-320:hover,
  .focus\:-rotate-320:focus,
  .group:hover .group-hover\:-rotate-320,
  .group:focus-within .group-focus-within\:-rotate-320 {
    transform: rotate(-320deg);
  }
  .-rotate-321,
  .hover\:-rotate-321:hover,
  .focus\:-rotate-321:focus,
  .group:hover .group-hover\:-rotate-321,
  .group:focus-within .group-focus-within\:-rotate-321 {
    transform: rotate(-321deg);
  }
  .-rotate-322,
  .hover\:-rotate-322:hover,
  .focus\:-rotate-322:focus,
  .group:hover .group-hover\:-rotate-322,
  .group:focus-within .group-focus-within\:-rotate-322 {
    transform: rotate(-322deg);
  }
  .-rotate-323,
  .hover\:-rotate-323:hover,
  .focus\:-rotate-323:focus,
  .group:hover .group-hover\:-rotate-323,
  .group:focus-within .group-focus-within\:-rotate-323 {
    transform: rotate(-323deg);
  }
  .-rotate-324,
  .hover\:-rotate-324:hover,
  .focus\:-rotate-324:focus,
  .group:hover .group-hover\:-rotate-324,
  .group:focus-within .group-focus-within\:-rotate-324 {
    transform: rotate(-324deg);
  }
  .-rotate-325,
  .hover\:-rotate-325:hover,
  .focus\:-rotate-325:focus,
  .group:hover .group-hover\:-rotate-325,
  .group:focus-within .group-focus-within\:-rotate-325 {
    transform: rotate(-325deg);
  }
  .-rotate-326,
  .hover\:-rotate-326:hover,
  .focus\:-rotate-326:focus,
  .group:hover .group-hover\:-rotate-326,
  .group:focus-within .group-focus-within\:-rotate-326 {
    transform: rotate(-326deg);
  }
  .-rotate-327,
  .hover\:-rotate-327:hover,
  .focus\:-rotate-327:focus,
  .group:hover .group-hover\:-rotate-327,
  .group:focus-within .group-focus-within\:-rotate-327 {
    transform: rotate(-327deg);
  }
  .-rotate-328,
  .hover\:-rotate-328:hover,
  .focus\:-rotate-328:focus,
  .group:hover .group-hover\:-rotate-328,
  .group:focus-within .group-focus-within\:-rotate-328 {
    transform: rotate(-328deg);
  }
  .-rotate-329,
  .hover\:-rotate-329:hover,
  .focus\:-rotate-329:focus,
  .group:hover .group-hover\:-rotate-329,
  .group:focus-within .group-focus-within\:-rotate-329 {
    transform: rotate(-329deg);
  }
  .-rotate-330,
  .hover\:-rotate-330:hover,
  .focus\:-rotate-330:focus,
  .group:hover .group-hover\:-rotate-330,
  .group:focus-within .group-focus-within\:-rotate-330 {
    transform: rotate(-330deg);
  }
  .-rotate-331,
  .hover\:-rotate-331:hover,
  .focus\:-rotate-331:focus,
  .group:hover .group-hover\:-rotate-331,
  .group:focus-within .group-focus-within\:-rotate-331 {
    transform: rotate(-331deg);
  }
  .-rotate-332,
  .hover\:-rotate-332:hover,
  .focus\:-rotate-332:focus,
  .group:hover .group-hover\:-rotate-332,
  .group:focus-within .group-focus-within\:-rotate-332 {
    transform: rotate(-332deg);
  }
  .-rotate-333,
  .hover\:-rotate-333:hover,
  .focus\:-rotate-333:focus,
  .group:hover .group-hover\:-rotate-333,
  .group:focus-within .group-focus-within\:-rotate-333 {
    transform: rotate(-333deg);
  }
  .-rotate-334,
  .hover\:-rotate-334:hover,
  .focus\:-rotate-334:focus,
  .group:hover .group-hover\:-rotate-334,
  .group:focus-within .group-focus-within\:-rotate-334 {
    transform: rotate(-334deg);
  }
  .-rotate-335,
  .hover\:-rotate-335:hover,
  .focus\:-rotate-335:focus,
  .group:hover .group-hover\:-rotate-335,
  .group:focus-within .group-focus-within\:-rotate-335 {
    transform: rotate(-335deg);
  }
  .-rotate-336,
  .hover\:-rotate-336:hover,
  .focus\:-rotate-336:focus,
  .group:hover .group-hover\:-rotate-336,
  .group:focus-within .group-focus-within\:-rotate-336 {
    transform: rotate(-336deg);
  }
  .-rotate-337,
  .hover\:-rotate-337:hover,
  .focus\:-rotate-337:focus,
  .group:hover .group-hover\:-rotate-337,
  .group:focus-within .group-focus-within\:-rotate-337 {
    transform: rotate(-337deg);
  }
  .-rotate-338,
  .hover\:-rotate-338:hover,
  .focus\:-rotate-338:focus,
  .group:hover .group-hover\:-rotate-338,
  .group:focus-within .group-focus-within\:-rotate-338 {
    transform: rotate(-338deg);
  }
  .-rotate-339,
  .hover\:-rotate-339:hover,
  .focus\:-rotate-339:focus,
  .group:hover .group-hover\:-rotate-339,
  .group:focus-within .group-focus-within\:-rotate-339 {
    transform: rotate(-339deg);
  }
  .-rotate-340,
  .hover\:-rotate-340:hover,
  .focus\:-rotate-340:focus,
  .group:hover .group-hover\:-rotate-340,
  .group:focus-within .group-focus-within\:-rotate-340 {
    transform: rotate(-340deg);
  }
  .-rotate-341,
  .hover\:-rotate-341:hover,
  .focus\:-rotate-341:focus,
  .group:hover .group-hover\:-rotate-341,
  .group:focus-within .group-focus-within\:-rotate-341 {
    transform: rotate(-341deg);
  }
  .-rotate-342,
  .hover\:-rotate-342:hover,
  .focus\:-rotate-342:focus,
  .group:hover .group-hover\:-rotate-342,
  .group:focus-within .group-focus-within\:-rotate-342 {
    transform: rotate(-342deg);
  }
  .-rotate-343,
  .hover\:-rotate-343:hover,
  .focus\:-rotate-343:focus,
  .group:hover .group-hover\:-rotate-343,
  .group:focus-within .group-focus-within\:-rotate-343 {
    transform: rotate(-343deg);
  }
  .-rotate-344,
  .hover\:-rotate-344:hover,
  .focus\:-rotate-344:focus,
  .group:hover .group-hover\:-rotate-344,
  .group:focus-within .group-focus-within\:-rotate-344 {
    transform: rotate(-344deg);
  }
  .-rotate-345,
  .hover\:-rotate-345:hover,
  .focus\:-rotate-345:focus,
  .group:hover .group-hover\:-rotate-345,
  .group:focus-within .group-focus-within\:-rotate-345 {
    transform: rotate(-345deg);
  }
  .-rotate-346,
  .hover\:-rotate-346:hover,
  .focus\:-rotate-346:focus,
  .group:hover .group-hover\:-rotate-346,
  .group:focus-within .group-focus-within\:-rotate-346 {
    transform: rotate(-346deg);
  }
  .-rotate-347,
  .hover\:-rotate-347:hover,
  .focus\:-rotate-347:focus,
  .group:hover .group-hover\:-rotate-347,
  .group:focus-within .group-focus-within\:-rotate-347 {
    transform: rotate(-347deg);
  }
  .-rotate-348,
  .hover\:-rotate-348:hover,
  .focus\:-rotate-348:focus,
  .group:hover .group-hover\:-rotate-348,
  .group:focus-within .group-focus-within\:-rotate-348 {
    transform: rotate(-348deg);
  }
  .-rotate-349,
  .hover\:-rotate-349:hover,
  .focus\:-rotate-349:focus,
  .group:hover .group-hover\:-rotate-349,
  .group:focus-within .group-focus-within\:-rotate-349 {
    transform: rotate(-349deg);
  }
  .-rotate-350,
  .hover\:-rotate-350:hover,
  .focus\:-rotate-350:focus,
  .group:hover .group-hover\:-rotate-350,
  .group:focus-within .group-focus-within\:-rotate-350 {
    transform: rotate(-350deg);
  }
  .-rotate-351,
  .hover\:-rotate-351:hover,
  .focus\:-rotate-351:focus,
  .group:hover .group-hover\:-rotate-351,
  .group:focus-within .group-focus-within\:-rotate-351 {
    transform: rotate(-351deg);
  }
  .-rotate-352,
  .hover\:-rotate-352:hover,
  .focus\:-rotate-352:focus,
  .group:hover .group-hover\:-rotate-352,
  .group:focus-within .group-focus-within\:-rotate-352 {
    transform: rotate(-352deg);
  }
  .-rotate-353,
  .hover\:-rotate-353:hover,
  .focus\:-rotate-353:focus,
  .group:hover .group-hover\:-rotate-353,
  .group:focus-within .group-focus-within\:-rotate-353 {
    transform: rotate(-353deg);
  }
  .-rotate-354,
  .hover\:-rotate-354:hover,
  .focus\:-rotate-354:focus,
  .group:hover .group-hover\:-rotate-354,
  .group:focus-within .group-focus-within\:-rotate-354 {
    transform: rotate(-354deg);
  }
  .-rotate-355,
  .hover\:-rotate-355:hover,
  .focus\:-rotate-355:focus,
  .group:hover .group-hover\:-rotate-355,
  .group:focus-within .group-focus-within\:-rotate-355 {
    transform: rotate(-355deg);
  }
  .-rotate-356,
  .hover\:-rotate-356:hover,
  .focus\:-rotate-356:focus,
  .group:hover .group-hover\:-rotate-356,
  .group:focus-within .group-focus-within\:-rotate-356 {
    transform: rotate(-356deg);
  }
  .-rotate-357,
  .hover\:-rotate-357:hover,
  .focus\:-rotate-357:focus,
  .group:hover .group-hover\:-rotate-357,
  .group:focus-within .group-focus-within\:-rotate-357 {
    transform: rotate(-357deg);
  }
  .-rotate-358,
  .hover\:-rotate-358:hover,
  .focus\:-rotate-358:focus,
  .group:hover .group-hover\:-rotate-358,
  .group:focus-within .group-focus-within\:-rotate-358 {
    transform: rotate(-358deg);
  }
  .-rotate-359,
  .hover\:-rotate-359:hover,
  .focus\:-rotate-359:focus,
  .group:hover .group-hover\:-rotate-359,
  .group:focus-within .group-focus-within\:-rotate-359 {
    transform: rotate(-359deg);
  }
  .-rotate-360,
  .hover\:-rotate-360:hover,
  .focus\:-rotate-360:focus,
  .group:hover .group-hover\:-rotate-360,
  .group:focus-within .group-focus-within\:-rotate-360 {
    transform: rotate(-360deg);
  }
  .rotate-0,
  .hover\:rotate-0:hover,
  .focus\:rotate-0:focus,
  .group:hover .group-hover\:rotate-0,
  .group:focus-within .group-focus-within\:rotate-0 {
    transform: rotate(0deg);
  }
  .rotate-1,
  .hover\:rotate-1:hover,
  .focus\:rotate-1:focus,
  .group:hover .group-hover\:rotate-1,
  .group:focus-within .group-focus-within\:rotate-1 {
    transform: rotate(1deg);
  }
  .rotate-2,
  .hover\:rotate-2:hover,
  .focus\:rotate-2:focus,
  .group:hover .group-hover\:rotate-2,
  .group:focus-within .group-focus-within\:rotate-2 {
    transform: rotate(2deg);
  }
  .rotate-3,
  .hover\:rotate-3:hover,
  .focus\:rotate-3:focus,
  .group:hover .group-hover\:rotate-3,
  .group:focus-within .group-focus-within\:rotate-3 {
    transform: rotate(3deg);
  }
  .rotate-4,
  .hover\:rotate-4:hover,
  .focus\:rotate-4:focus,
  .group:hover .group-hover\:rotate-4,
  .group:focus-within .group-focus-within\:rotate-4 {
    transform: rotate(4deg);
  }
  .rotate-5,
  .hover\:rotate-5:hover,
  .focus\:rotate-5:focus,
  .group:hover .group-hover\:rotate-5,
  .group:focus-within .group-focus-within\:rotate-5 {
    transform: rotate(5deg);
  }
  .rotate-6,
  .hover\:rotate-6:hover,
  .focus\:rotate-6:focus,
  .group:hover .group-hover\:rotate-6,
  .group:focus-within .group-focus-within\:rotate-6 {
    transform: rotate(6deg);
  }
  .rotate-7,
  .hover\:rotate-7:hover,
  .focus\:rotate-7:focus,
  .group:hover .group-hover\:rotate-7,
  .group:focus-within .group-focus-within\:rotate-7 {
    transform: rotate(7deg);
  }
  .rotate-8,
  .hover\:rotate-8:hover,
  .focus\:rotate-8:focus,
  .group:hover .group-hover\:rotate-8,
  .group:focus-within .group-focus-within\:rotate-8 {
    transform: rotate(8deg);
  }
  .rotate-9,
  .hover\:rotate-9:hover,
  .focus\:rotate-9:focus,
  .group:hover .group-hover\:rotate-9,
  .group:focus-within .group-focus-within\:rotate-9 {
    transform: rotate(9deg);
  }
  .rotate-10,
  .hover\:rotate-10:hover,
  .focus\:rotate-10:focus,
  .group:hover .group-hover\:rotate-10,
  .group:focus-within .group-focus-within\:rotate-10 {
    transform: rotate(10deg);
  }
  .rotate-11,
  .hover\:rotate-11:hover,
  .focus\:rotate-11:focus,
  .group:hover .group-hover\:rotate-11,
  .group:focus-within .group-focus-within\:rotate-11 {
    transform: rotate(11deg);
  }
  .rotate-12,
  .hover\:rotate-12:hover,
  .focus\:rotate-12:focus,
  .group:hover .group-hover\:rotate-12,
  .group:focus-within .group-focus-within\:rotate-12 {
    transform: rotate(12deg);
  }
  .rotate-13,
  .hover\:rotate-13:hover,
  .focus\:rotate-13:focus,
  .group:hover .group-hover\:rotate-13,
  .group:focus-within .group-focus-within\:rotate-13 {
    transform: rotate(13deg);
  }
  .rotate-14,
  .hover\:rotate-14:hover,
  .focus\:rotate-14:focus,
  .group:hover .group-hover\:rotate-14,
  .group:focus-within .group-focus-within\:rotate-14 {
    transform: rotate(14deg);
  }
  .rotate-15,
  .hover\:rotate-15:hover,
  .focus\:rotate-15:focus,
  .group:hover .group-hover\:rotate-15,
  .group:focus-within .group-focus-within\:rotate-15 {
    transform: rotate(15deg);
  }
  .rotate-16,
  .hover\:rotate-16:hover,
  .focus\:rotate-16:focus,
  .group:hover .group-hover\:rotate-16,
  .group:focus-within .group-focus-within\:rotate-16 {
    transform: rotate(16deg);
  }
  .rotate-17,
  .hover\:rotate-17:hover,
  .focus\:rotate-17:focus,
  .group:hover .group-hover\:rotate-17,
  .group:focus-within .group-focus-within\:rotate-17 {
    transform: rotate(17deg);
  }
  .rotate-18,
  .hover\:rotate-18:hover,
  .focus\:rotate-18:focus,
  .group:hover .group-hover\:rotate-18,
  .group:focus-within .group-focus-within\:rotate-18 {
    transform: rotate(18deg);
  }
  .rotate-19,
  .hover\:rotate-19:hover,
  .focus\:rotate-19:focus,
  .group:hover .group-hover\:rotate-19,
  .group:focus-within .group-focus-within\:rotate-19 {
    transform: rotate(19deg);
  }
  .rotate-20,
  .hover\:rotate-20:hover,
  .focus\:rotate-20:focus,
  .group:hover .group-hover\:rotate-20,
  .group:focus-within .group-focus-within\:rotate-20 {
    transform: rotate(20deg);
  }
  .rotate-21,
  .hover\:rotate-21:hover,
  .focus\:rotate-21:focus,
  .group:hover .group-hover\:rotate-21,
  .group:focus-within .group-focus-within\:rotate-21 {
    transform: rotate(21deg);
  }
  .rotate-22,
  .hover\:rotate-22:hover,
  .focus\:rotate-22:focus,
  .group:hover .group-hover\:rotate-22,
  .group:focus-within .group-focus-within\:rotate-22 {
    transform: rotate(22deg);
  }
  .rotate-23,
  .hover\:rotate-23:hover,
  .focus\:rotate-23:focus,
  .group:hover .group-hover\:rotate-23,
  .group:focus-within .group-focus-within\:rotate-23 {
    transform: rotate(23deg);
  }
  .rotate-24,
  .hover\:rotate-24:hover,
  .focus\:rotate-24:focus,
  .group:hover .group-hover\:rotate-24,
  .group:focus-within .group-focus-within\:rotate-24 {
    transform: rotate(24deg);
  }
  .rotate-25,
  .hover\:rotate-25:hover,
  .focus\:rotate-25:focus,
  .group:hover .group-hover\:rotate-25,
  .group:focus-within .group-focus-within\:rotate-25 {
    transform: rotate(25deg);
  }
  .rotate-26,
  .hover\:rotate-26:hover,
  .focus\:rotate-26:focus,
  .group:hover .group-hover\:rotate-26,
  .group:focus-within .group-focus-within\:rotate-26 {
    transform: rotate(26deg);
  }
  .rotate-27,
  .hover\:rotate-27:hover,
  .focus\:rotate-27:focus,
  .group:hover .group-hover\:rotate-27,
  .group:focus-within .group-focus-within\:rotate-27 {
    transform: rotate(27deg);
  }
  .rotate-28,
  .hover\:rotate-28:hover,
  .focus\:rotate-28:focus,
  .group:hover .group-hover\:rotate-28,
  .group:focus-within .group-focus-within\:rotate-28 {
    transform: rotate(28deg);
  }
  .rotate-29,
  .hover\:rotate-29:hover,
  .focus\:rotate-29:focus,
  .group:hover .group-hover\:rotate-29,
  .group:focus-within .group-focus-within\:rotate-29 {
    transform: rotate(29deg);
  }
  .rotate-30,
  .hover\:rotate-30:hover,
  .focus\:rotate-30:focus,
  .group:hover .group-hover\:rotate-30,
  .group:focus-within .group-focus-within\:rotate-30 {
    transform: rotate(30deg);
  }
  .rotate-31,
  .hover\:rotate-31:hover,
  .focus\:rotate-31:focus,
  .group:hover .group-hover\:rotate-31,
  .group:focus-within .group-focus-within\:rotate-31 {
    transform: rotate(31deg);
  }
  .rotate-32,
  .hover\:rotate-32:hover,
  .focus\:rotate-32:focus,
  .group:hover .group-hover\:rotate-32,
  .group:focus-within .group-focus-within\:rotate-32 {
    transform: rotate(32deg);
  }
  .rotate-33,
  .hover\:rotate-33:hover,
  .focus\:rotate-33:focus,
  .group:hover .group-hover\:rotate-33,
  .group:focus-within .group-focus-within\:rotate-33 {
    transform: rotate(33deg);
  }
  .rotate-34,
  .hover\:rotate-34:hover,
  .focus\:rotate-34:focus,
  .group:hover .group-hover\:rotate-34,
  .group:focus-within .group-focus-within\:rotate-34 {
    transform: rotate(34deg);
  }
  .rotate-35,
  .hover\:rotate-35:hover,
  .focus\:rotate-35:focus,
  .group:hover .group-hover\:rotate-35,
  .group:focus-within .group-focus-within\:rotate-35 {
    transform: rotate(35deg);
  }
  .rotate-36,
  .hover\:rotate-36:hover,
  .focus\:rotate-36:focus,
  .group:hover .group-hover\:rotate-36,
  .group:focus-within .group-focus-within\:rotate-36 {
    transform: rotate(36deg);
  }
  .rotate-37,
  .hover\:rotate-37:hover,
  .focus\:rotate-37:focus,
  .group:hover .group-hover\:rotate-37,
  .group:focus-within .group-focus-within\:rotate-37 {
    transform: rotate(37deg);
  }
  .rotate-38,
  .hover\:rotate-38:hover,
  .focus\:rotate-38:focus,
  .group:hover .group-hover\:rotate-38,
  .group:focus-within .group-focus-within\:rotate-38 {
    transform: rotate(38deg);
  }
  .rotate-39,
  .hover\:rotate-39:hover,
  .focus\:rotate-39:focus,
  .group:hover .group-hover\:rotate-39,
  .group:focus-within .group-focus-within\:rotate-39 {
    transform: rotate(39deg);
  }
  .rotate-40,
  .hover\:rotate-40:hover,
  .focus\:rotate-40:focus,
  .group:hover .group-hover\:rotate-40,
  .group:focus-within .group-focus-within\:rotate-40 {
    transform: rotate(40deg);
  }
  .rotate-41,
  .hover\:rotate-41:hover,
  .focus\:rotate-41:focus,
  .group:hover .group-hover\:rotate-41,
  .group:focus-within .group-focus-within\:rotate-41 {
    transform: rotate(41deg);
  }
  .rotate-42,
  .hover\:rotate-42:hover,
  .focus\:rotate-42:focus,
  .group:hover .group-hover\:rotate-42,
  .group:focus-within .group-focus-within\:rotate-42 {
    transform: rotate(42deg);
  }
  .rotate-43,
  .hover\:rotate-43:hover,
  .focus\:rotate-43:focus,
  .group:hover .group-hover\:rotate-43,
  .group:focus-within .group-focus-within\:rotate-43 {
    transform: rotate(43deg);
  }
  .rotate-44,
  .hover\:rotate-44:hover,
  .focus\:rotate-44:focus,
  .group:hover .group-hover\:rotate-44,
  .group:focus-within .group-focus-within\:rotate-44 {
    transform: rotate(44deg);
  }
  .rotate-45,
  .hover\:rotate-45:hover,
  .focus\:rotate-45:focus,
  .group:hover .group-hover\:rotate-45,
  .group:focus-within .group-focus-within\:rotate-45 {
    transform: rotate(45deg);
  }
  .rotate-46,
  .hover\:rotate-46:hover,
  .focus\:rotate-46:focus,
  .group:hover .group-hover\:rotate-46,
  .group:focus-within .group-focus-within\:rotate-46 {
    transform: rotate(46deg);
  }
  .rotate-47,
  .hover\:rotate-47:hover,
  .focus\:rotate-47:focus,
  .group:hover .group-hover\:rotate-47,
  .group:focus-within .group-focus-within\:rotate-47 {
    transform: rotate(47deg);
  }
  .rotate-48,
  .hover\:rotate-48:hover,
  .focus\:rotate-48:focus,
  .group:hover .group-hover\:rotate-48,
  .group:focus-within .group-focus-within\:rotate-48 {
    transform: rotate(48deg);
  }
  .rotate-49,
  .hover\:rotate-49:hover,
  .focus\:rotate-49:focus,
  .group:hover .group-hover\:rotate-49,
  .group:focus-within .group-focus-within\:rotate-49 {
    transform: rotate(49deg);
  }
  .rotate-50,
  .hover\:rotate-50:hover,
  .focus\:rotate-50:focus,
  .group:hover .group-hover\:rotate-50,
  .group:focus-within .group-focus-within\:rotate-50 {
    transform: rotate(50deg);
  }
  .rotate-51,
  .hover\:rotate-51:hover,
  .focus\:rotate-51:focus,
  .group:hover .group-hover\:rotate-51,
  .group:focus-within .group-focus-within\:rotate-51 {
    transform: rotate(51deg);
  }
  .rotate-52,
  .hover\:rotate-52:hover,
  .focus\:rotate-52:focus,
  .group:hover .group-hover\:rotate-52,
  .group:focus-within .group-focus-within\:rotate-52 {
    transform: rotate(52deg);
  }
  .rotate-53,
  .hover\:rotate-53:hover,
  .focus\:rotate-53:focus,
  .group:hover .group-hover\:rotate-53,
  .group:focus-within .group-focus-within\:rotate-53 {
    transform: rotate(53deg);
  }
  .rotate-54,
  .hover\:rotate-54:hover,
  .focus\:rotate-54:focus,
  .group:hover .group-hover\:rotate-54,
  .group:focus-within .group-focus-within\:rotate-54 {
    transform: rotate(54deg);
  }
  .rotate-55,
  .hover\:rotate-55:hover,
  .focus\:rotate-55:focus,
  .group:hover .group-hover\:rotate-55,
  .group:focus-within .group-focus-within\:rotate-55 {
    transform: rotate(55deg);
  }
  .rotate-56,
  .hover\:rotate-56:hover,
  .focus\:rotate-56:focus,
  .group:hover .group-hover\:rotate-56,
  .group:focus-within .group-focus-within\:rotate-56 {
    transform: rotate(56deg);
  }
  .rotate-57,
  .hover\:rotate-57:hover,
  .focus\:rotate-57:focus,
  .group:hover .group-hover\:rotate-57,
  .group:focus-within .group-focus-within\:rotate-57 {
    transform: rotate(57deg);
  }
  .rotate-58,
  .hover\:rotate-58:hover,
  .focus\:rotate-58:focus,
  .group:hover .group-hover\:rotate-58,
  .group:focus-within .group-focus-within\:rotate-58 {
    transform: rotate(58deg);
  }
  .rotate-59,
  .hover\:rotate-59:hover,
  .focus\:rotate-59:focus,
  .group:hover .group-hover\:rotate-59,
  .group:focus-within .group-focus-within\:rotate-59 {
    transform: rotate(59deg);
  }
  .rotate-60,
  .hover\:rotate-60:hover,
  .focus\:rotate-60:focus,
  .group:hover .group-hover\:rotate-60,
  .group:focus-within .group-focus-within\:rotate-60 {
    transform: rotate(60deg);
  }
  .rotate-61,
  .hover\:rotate-61:hover,
  .focus\:rotate-61:focus,
  .group:hover .group-hover\:rotate-61,
  .group:focus-within .group-focus-within\:rotate-61 {
    transform: rotate(61deg);
  }
  .rotate-62,
  .hover\:rotate-62:hover,
  .focus\:rotate-62:focus,
  .group:hover .group-hover\:rotate-62,
  .group:focus-within .group-focus-within\:rotate-62 {
    transform: rotate(62deg);
  }
  .rotate-63,
  .hover\:rotate-63:hover,
  .focus\:rotate-63:focus,
  .group:hover .group-hover\:rotate-63,
  .group:focus-within .group-focus-within\:rotate-63 {
    transform: rotate(63deg);
  }
  .rotate-64,
  .hover\:rotate-64:hover,
  .focus\:rotate-64:focus,
  .group:hover .group-hover\:rotate-64,
  .group:focus-within .group-focus-within\:rotate-64 {
    transform: rotate(64deg);
  }
  .rotate-65,
  .hover\:rotate-65:hover,
  .focus\:rotate-65:focus,
  .group:hover .group-hover\:rotate-65,
  .group:focus-within .group-focus-within\:rotate-65 {
    transform: rotate(65deg);
  }
  .rotate-66,
  .hover\:rotate-66:hover,
  .focus\:rotate-66:focus,
  .group:hover .group-hover\:rotate-66,
  .group:focus-within .group-focus-within\:rotate-66 {
    transform: rotate(66deg);
  }
  .rotate-67,
  .hover\:rotate-67:hover,
  .focus\:rotate-67:focus,
  .group:hover .group-hover\:rotate-67,
  .group:focus-within .group-focus-within\:rotate-67 {
    transform: rotate(67deg);
  }
  .rotate-68,
  .hover\:rotate-68:hover,
  .focus\:rotate-68:focus,
  .group:hover .group-hover\:rotate-68,
  .group:focus-within .group-focus-within\:rotate-68 {
    transform: rotate(68deg);
  }
  .rotate-69,
  .hover\:rotate-69:hover,
  .focus\:rotate-69:focus,
  .group:hover .group-hover\:rotate-69,
  .group:focus-within .group-focus-within\:rotate-69 {
    transform: rotate(69deg);
  }
  .rotate-70,
  .hover\:rotate-70:hover,
  .focus\:rotate-70:focus,
  .group:hover .group-hover\:rotate-70,
  .group:focus-within .group-focus-within\:rotate-70 {
    transform: rotate(70deg);
  }
  .rotate-71,
  .hover\:rotate-71:hover,
  .focus\:rotate-71:focus,
  .group:hover .group-hover\:rotate-71,
  .group:focus-within .group-focus-within\:rotate-71 {
    transform: rotate(71deg);
  }
  .rotate-72,
  .hover\:rotate-72:hover,
  .focus\:rotate-72:focus,
  .group:hover .group-hover\:rotate-72,
  .group:focus-within .group-focus-within\:rotate-72 {
    transform: rotate(72deg);
  }
  .rotate-73,
  .hover\:rotate-73:hover,
  .focus\:rotate-73:focus,
  .group:hover .group-hover\:rotate-73,
  .group:focus-within .group-focus-within\:rotate-73 {
    transform: rotate(73deg);
  }
  .rotate-74,
  .hover\:rotate-74:hover,
  .focus\:rotate-74:focus,
  .group:hover .group-hover\:rotate-74,
  .group:focus-within .group-focus-within\:rotate-74 {
    transform: rotate(74deg);
  }
  .rotate-75,
  .hover\:rotate-75:hover,
  .focus\:rotate-75:focus,
  .group:hover .group-hover\:rotate-75,
  .group:focus-within .group-focus-within\:rotate-75 {
    transform: rotate(75deg);
  }
  .rotate-76,
  .hover\:rotate-76:hover,
  .focus\:rotate-76:focus,
  .group:hover .group-hover\:rotate-76,
  .group:focus-within .group-focus-within\:rotate-76 {
    transform: rotate(76deg);
  }
  .rotate-77,
  .hover\:rotate-77:hover,
  .focus\:rotate-77:focus,
  .group:hover .group-hover\:rotate-77,
  .group:focus-within .group-focus-within\:rotate-77 {
    transform: rotate(77deg);
  }
  .rotate-78,
  .hover\:rotate-78:hover,
  .focus\:rotate-78:focus,
  .group:hover .group-hover\:rotate-78,
  .group:focus-within .group-focus-within\:rotate-78 {
    transform: rotate(78deg);
  }
  .rotate-79,
  .hover\:rotate-79:hover,
  .focus\:rotate-79:focus,
  .group:hover .group-hover\:rotate-79,
  .group:focus-within .group-focus-within\:rotate-79 {
    transform: rotate(79deg);
  }
  .rotate-80,
  .hover\:rotate-80:hover,
  .focus\:rotate-80:focus,
  .group:hover .group-hover\:rotate-80,
  .group:focus-within .group-focus-within\:rotate-80 {
    transform: rotate(80deg);
  }
  .rotate-81,
  .hover\:rotate-81:hover,
  .focus\:rotate-81:focus,
  .group:hover .group-hover\:rotate-81,
  .group:focus-within .group-focus-within\:rotate-81 {
    transform: rotate(81deg);
  }
  .rotate-82,
  .hover\:rotate-82:hover,
  .focus\:rotate-82:focus,
  .group:hover .group-hover\:rotate-82,
  .group:focus-within .group-focus-within\:rotate-82 {
    transform: rotate(82deg);
  }
  .rotate-83,
  .hover\:rotate-83:hover,
  .focus\:rotate-83:focus,
  .group:hover .group-hover\:rotate-83,
  .group:focus-within .group-focus-within\:rotate-83 {
    transform: rotate(83deg);
  }
  .rotate-84,
  .hover\:rotate-84:hover,
  .focus\:rotate-84:focus,
  .group:hover .group-hover\:rotate-84,
  .group:focus-within .group-focus-within\:rotate-84 {
    transform: rotate(84deg);
  }
  .rotate-85,
  .hover\:rotate-85:hover,
  .focus\:rotate-85:focus,
  .group:hover .group-hover\:rotate-85,
  .group:focus-within .group-focus-within\:rotate-85 {
    transform: rotate(85deg);
  }
  .rotate-86,
  .hover\:rotate-86:hover,
  .focus\:rotate-86:focus,
  .group:hover .group-hover\:rotate-86,
  .group:focus-within .group-focus-within\:rotate-86 {
    transform: rotate(86deg);
  }
  .rotate-87,
  .hover\:rotate-87:hover,
  .focus\:rotate-87:focus,
  .group:hover .group-hover\:rotate-87,
  .group:focus-within .group-focus-within\:rotate-87 {
    transform: rotate(87deg);
  }
  .rotate-88,
  .hover\:rotate-88:hover,
  .focus\:rotate-88:focus,
  .group:hover .group-hover\:rotate-88,
  .group:focus-within .group-focus-within\:rotate-88 {
    transform: rotate(88deg);
  }
  .rotate-89,
  .hover\:rotate-89:hover,
  .focus\:rotate-89:focus,
  .group:hover .group-hover\:rotate-89,
  .group:focus-within .group-focus-within\:rotate-89 {
    transform: rotate(89deg);
  }
  .rotate-90,
  .hover\:rotate-90:hover,
  .focus\:rotate-90:focus,
  .group:hover .group-hover\:rotate-90,
  .group:focus-within .group-focus-within\:rotate-90 {
    transform: rotate(90deg);
  }
  .rotate-91,
  .hover\:rotate-91:hover,
  .focus\:rotate-91:focus,
  .group:hover .group-hover\:rotate-91,
  .group:focus-within .group-focus-within\:rotate-91 {
    transform: rotate(91deg);
  }
  .rotate-92,
  .hover\:rotate-92:hover,
  .focus\:rotate-92:focus,
  .group:hover .group-hover\:rotate-92,
  .group:focus-within .group-focus-within\:rotate-92 {
    transform: rotate(92deg);
  }
  .rotate-93,
  .hover\:rotate-93:hover,
  .focus\:rotate-93:focus,
  .group:hover .group-hover\:rotate-93,
  .group:focus-within .group-focus-within\:rotate-93 {
    transform: rotate(93deg);
  }
  .rotate-94,
  .hover\:rotate-94:hover,
  .focus\:rotate-94:focus,
  .group:hover .group-hover\:rotate-94,
  .group:focus-within .group-focus-within\:rotate-94 {
    transform: rotate(94deg);
  }
  .rotate-95,
  .hover\:rotate-95:hover,
  .focus\:rotate-95:focus,
  .group:hover .group-hover\:rotate-95,
  .group:focus-within .group-focus-within\:rotate-95 {
    transform: rotate(95deg);
  }
  .rotate-96,
  .hover\:rotate-96:hover,
  .focus\:rotate-96:focus,
  .group:hover .group-hover\:rotate-96,
  .group:focus-within .group-focus-within\:rotate-96 {
    transform: rotate(96deg);
  }
  .rotate-97,
  .hover\:rotate-97:hover,
  .focus\:rotate-97:focus,
  .group:hover .group-hover\:rotate-97,
  .group:focus-within .group-focus-within\:rotate-97 {
    transform: rotate(97deg);
  }
  .rotate-98,
  .hover\:rotate-98:hover,
  .focus\:rotate-98:focus,
  .group:hover .group-hover\:rotate-98,
  .group:focus-within .group-focus-within\:rotate-98 {
    transform: rotate(98deg);
  }
  .rotate-99,
  .hover\:rotate-99:hover,
  .focus\:rotate-99:focus,
  .group:hover .group-hover\:rotate-99,
  .group:focus-within .group-focus-within\:rotate-99 {
    transform: rotate(99deg);
  }
  .rotate-100,
  .hover\:rotate-100:hover,
  .focus\:rotate-100:focus,
  .group:hover .group-hover\:rotate-100,
  .group:focus-within .group-focus-within\:rotate-100 {
    transform: rotate(100deg);
  }
  .rotate-101,
  .hover\:rotate-101:hover,
  .focus\:rotate-101:focus,
  .group:hover .group-hover\:rotate-101,
  .group:focus-within .group-focus-within\:rotate-101 {
    transform: rotate(101deg);
  }
  .rotate-102,
  .hover\:rotate-102:hover,
  .focus\:rotate-102:focus,
  .group:hover .group-hover\:rotate-102,
  .group:focus-within .group-focus-within\:rotate-102 {
    transform: rotate(102deg);
  }
  .rotate-103,
  .hover\:rotate-103:hover,
  .focus\:rotate-103:focus,
  .group:hover .group-hover\:rotate-103,
  .group:focus-within .group-focus-within\:rotate-103 {
    transform: rotate(103deg);
  }
  .rotate-104,
  .hover\:rotate-104:hover,
  .focus\:rotate-104:focus,
  .group:hover .group-hover\:rotate-104,
  .group:focus-within .group-focus-within\:rotate-104 {
    transform: rotate(104deg);
  }
  .rotate-105,
  .hover\:rotate-105:hover,
  .focus\:rotate-105:focus,
  .group:hover .group-hover\:rotate-105,
  .group:focus-within .group-focus-within\:rotate-105 {
    transform: rotate(105deg);
  }
  .rotate-106,
  .hover\:rotate-106:hover,
  .focus\:rotate-106:focus,
  .group:hover .group-hover\:rotate-106,
  .group:focus-within .group-focus-within\:rotate-106 {
    transform: rotate(106deg);
  }
  .rotate-107,
  .hover\:rotate-107:hover,
  .focus\:rotate-107:focus,
  .group:hover .group-hover\:rotate-107,
  .group:focus-within .group-focus-within\:rotate-107 {
    transform: rotate(107deg);
  }
  .rotate-108,
  .hover\:rotate-108:hover,
  .focus\:rotate-108:focus,
  .group:hover .group-hover\:rotate-108,
  .group:focus-within .group-focus-within\:rotate-108 {
    transform: rotate(108deg);
  }
  .rotate-109,
  .hover\:rotate-109:hover,
  .focus\:rotate-109:focus,
  .group:hover .group-hover\:rotate-109,
  .group:focus-within .group-focus-within\:rotate-109 {
    transform: rotate(109deg);
  }
  .rotate-110,
  .hover\:rotate-110:hover,
  .focus\:rotate-110:focus,
  .group:hover .group-hover\:rotate-110,
  .group:focus-within .group-focus-within\:rotate-110 {
    transform: rotate(110deg);
  }
  .rotate-111,
  .hover\:rotate-111:hover,
  .focus\:rotate-111:focus,
  .group:hover .group-hover\:rotate-111,
  .group:focus-within .group-focus-within\:rotate-111 {
    transform: rotate(111deg);
  }
  .rotate-112,
  .hover\:rotate-112:hover,
  .focus\:rotate-112:focus,
  .group:hover .group-hover\:rotate-112,
  .group:focus-within .group-focus-within\:rotate-112 {
    transform: rotate(112deg);
  }
  .rotate-113,
  .hover\:rotate-113:hover,
  .focus\:rotate-113:focus,
  .group:hover .group-hover\:rotate-113,
  .group:focus-within .group-focus-within\:rotate-113 {
    transform: rotate(113deg);
  }
  .rotate-114,
  .hover\:rotate-114:hover,
  .focus\:rotate-114:focus,
  .group:hover .group-hover\:rotate-114,
  .group:focus-within .group-focus-within\:rotate-114 {
    transform: rotate(114deg);
  }
  .rotate-115,
  .hover\:rotate-115:hover,
  .focus\:rotate-115:focus,
  .group:hover .group-hover\:rotate-115,
  .group:focus-within .group-focus-within\:rotate-115 {
    transform: rotate(115deg);
  }
  .rotate-116,
  .hover\:rotate-116:hover,
  .focus\:rotate-116:focus,
  .group:hover .group-hover\:rotate-116,
  .group:focus-within .group-focus-within\:rotate-116 {
    transform: rotate(116deg);
  }
  .rotate-117,
  .hover\:rotate-117:hover,
  .focus\:rotate-117:focus,
  .group:hover .group-hover\:rotate-117,
  .group:focus-within .group-focus-within\:rotate-117 {
    transform: rotate(117deg);
  }
  .rotate-118,
  .hover\:rotate-118:hover,
  .focus\:rotate-118:focus,
  .group:hover .group-hover\:rotate-118,
  .group:focus-within .group-focus-within\:rotate-118 {
    transform: rotate(118deg);
  }
  .rotate-119,
  .hover\:rotate-119:hover,
  .focus\:rotate-119:focus,
  .group:hover .group-hover\:rotate-119,
  .group:focus-within .group-focus-within\:rotate-119 {
    transform: rotate(119deg);
  }
  .rotate-120,
  .hover\:rotate-120:hover,
  .focus\:rotate-120:focus,
  .group:hover .group-hover\:rotate-120,
  .group:focus-within .group-focus-within\:rotate-120 {
    transform: rotate(120deg);
  }
  .rotate-121,
  .hover\:rotate-121:hover,
  .focus\:rotate-121:focus,
  .group:hover .group-hover\:rotate-121,
  .group:focus-within .group-focus-within\:rotate-121 {
    transform: rotate(121deg);
  }
  .rotate-122,
  .hover\:rotate-122:hover,
  .focus\:rotate-122:focus,
  .group:hover .group-hover\:rotate-122,
  .group:focus-within .group-focus-within\:rotate-122 {
    transform: rotate(122deg);
  }
  .rotate-123,
  .hover\:rotate-123:hover,
  .focus\:rotate-123:focus,
  .group:hover .group-hover\:rotate-123,
  .group:focus-within .group-focus-within\:rotate-123 {
    transform: rotate(123deg);
  }
  .rotate-124,
  .hover\:rotate-124:hover,
  .focus\:rotate-124:focus,
  .group:hover .group-hover\:rotate-124,
  .group:focus-within .group-focus-within\:rotate-124 {
    transform: rotate(124deg);
  }
  .rotate-125,
  .hover\:rotate-125:hover,
  .focus\:rotate-125:focus,
  .group:hover .group-hover\:rotate-125,
  .group:focus-within .group-focus-within\:rotate-125 {
    transform: rotate(125deg);
  }
  .rotate-126,
  .hover\:rotate-126:hover,
  .focus\:rotate-126:focus,
  .group:hover .group-hover\:rotate-126,
  .group:focus-within .group-focus-within\:rotate-126 {
    transform: rotate(126deg);
  }
  .rotate-127,
  .hover\:rotate-127:hover,
  .focus\:rotate-127:focus,
  .group:hover .group-hover\:rotate-127,
  .group:focus-within .group-focus-within\:rotate-127 {
    transform: rotate(127deg);
  }
  .rotate-128,
  .hover\:rotate-128:hover,
  .focus\:rotate-128:focus,
  .group:hover .group-hover\:rotate-128,
  .group:focus-within .group-focus-within\:rotate-128 {
    transform: rotate(128deg);
  }
  .rotate-129,
  .hover\:rotate-129:hover,
  .focus\:rotate-129:focus,
  .group:hover .group-hover\:rotate-129,
  .group:focus-within .group-focus-within\:rotate-129 {
    transform: rotate(129deg);
  }
  .rotate-130,
  .hover\:rotate-130:hover,
  .focus\:rotate-130:focus,
  .group:hover .group-hover\:rotate-130,
  .group:focus-within .group-focus-within\:rotate-130 {
    transform: rotate(130deg);
  }
  .rotate-131,
  .hover\:rotate-131:hover,
  .focus\:rotate-131:focus,
  .group:hover .group-hover\:rotate-131,
  .group:focus-within .group-focus-within\:rotate-131 {
    transform: rotate(131deg);
  }
  .rotate-132,
  .hover\:rotate-132:hover,
  .focus\:rotate-132:focus,
  .group:hover .group-hover\:rotate-132,
  .group:focus-within .group-focus-within\:rotate-132 {
    transform: rotate(132deg);
  }
  .rotate-133,
  .hover\:rotate-133:hover,
  .focus\:rotate-133:focus,
  .group:hover .group-hover\:rotate-133,
  .group:focus-within .group-focus-within\:rotate-133 {
    transform: rotate(133deg);
  }
  .rotate-134,
  .hover\:rotate-134:hover,
  .focus\:rotate-134:focus,
  .group:hover .group-hover\:rotate-134,
  .group:focus-within .group-focus-within\:rotate-134 {
    transform: rotate(134deg);
  }
  .rotate-135,
  .hover\:rotate-135:hover,
  .focus\:rotate-135:focus,
  .group:hover .group-hover\:rotate-135,
  .group:focus-within .group-focus-within\:rotate-135 {
    transform: rotate(135deg);
  }
  .rotate-136,
  .hover\:rotate-136:hover,
  .focus\:rotate-136:focus,
  .group:hover .group-hover\:rotate-136,
  .group:focus-within .group-focus-within\:rotate-136 {
    transform: rotate(136deg);
  }
  .rotate-137,
  .hover\:rotate-137:hover,
  .focus\:rotate-137:focus,
  .group:hover .group-hover\:rotate-137,
  .group:focus-within .group-focus-within\:rotate-137 {
    transform: rotate(137deg);
  }
  .rotate-138,
  .hover\:rotate-138:hover,
  .focus\:rotate-138:focus,
  .group:hover .group-hover\:rotate-138,
  .group:focus-within .group-focus-within\:rotate-138 {
    transform: rotate(138deg);
  }
  .rotate-139,
  .hover\:rotate-139:hover,
  .focus\:rotate-139:focus,
  .group:hover .group-hover\:rotate-139,
  .group:focus-within .group-focus-within\:rotate-139 {
    transform: rotate(139deg);
  }
  .rotate-140,
  .hover\:rotate-140:hover,
  .focus\:rotate-140:focus,
  .group:hover .group-hover\:rotate-140,
  .group:focus-within .group-focus-within\:rotate-140 {
    transform: rotate(140deg);
  }
  .rotate-141,
  .hover\:rotate-141:hover,
  .focus\:rotate-141:focus,
  .group:hover .group-hover\:rotate-141,
  .group:focus-within .group-focus-within\:rotate-141 {
    transform: rotate(141deg);
  }
  .rotate-142,
  .hover\:rotate-142:hover,
  .focus\:rotate-142:focus,
  .group:hover .group-hover\:rotate-142,
  .group:focus-within .group-focus-within\:rotate-142 {
    transform: rotate(142deg);
  }
  .rotate-143,
  .hover\:rotate-143:hover,
  .focus\:rotate-143:focus,
  .group:hover .group-hover\:rotate-143,
  .group:focus-within .group-focus-within\:rotate-143 {
    transform: rotate(143deg);
  }
  .rotate-144,
  .hover\:rotate-144:hover,
  .focus\:rotate-144:focus,
  .group:hover .group-hover\:rotate-144,
  .group:focus-within .group-focus-within\:rotate-144 {
    transform: rotate(144deg);
  }
  .rotate-145,
  .hover\:rotate-145:hover,
  .focus\:rotate-145:focus,
  .group:hover .group-hover\:rotate-145,
  .group:focus-within .group-focus-within\:rotate-145 {
    transform: rotate(145deg);
  }
  .rotate-146,
  .hover\:rotate-146:hover,
  .focus\:rotate-146:focus,
  .group:hover .group-hover\:rotate-146,
  .group:focus-within .group-focus-within\:rotate-146 {
    transform: rotate(146deg);
  }
  .rotate-147,
  .hover\:rotate-147:hover,
  .focus\:rotate-147:focus,
  .group:hover .group-hover\:rotate-147,
  .group:focus-within .group-focus-within\:rotate-147 {
    transform: rotate(147deg);
  }
  .rotate-148,
  .hover\:rotate-148:hover,
  .focus\:rotate-148:focus,
  .group:hover .group-hover\:rotate-148,
  .group:focus-within .group-focus-within\:rotate-148 {
    transform: rotate(148deg);
  }
  .rotate-149,
  .hover\:rotate-149:hover,
  .focus\:rotate-149:focus,
  .group:hover .group-hover\:rotate-149,
  .group:focus-within .group-focus-within\:rotate-149 {
    transform: rotate(149deg);
  }
  .rotate-150,
  .hover\:rotate-150:hover,
  .focus\:rotate-150:focus,
  .group:hover .group-hover\:rotate-150,
  .group:focus-within .group-focus-within\:rotate-150 {
    transform: rotate(150deg);
  }
  .rotate-151,
  .hover\:rotate-151:hover,
  .focus\:rotate-151:focus,
  .group:hover .group-hover\:rotate-151,
  .group:focus-within .group-focus-within\:rotate-151 {
    transform: rotate(151deg);
  }
  .rotate-152,
  .hover\:rotate-152:hover,
  .focus\:rotate-152:focus,
  .group:hover .group-hover\:rotate-152,
  .group:focus-within .group-focus-within\:rotate-152 {
    transform: rotate(152deg);
  }
  .rotate-153,
  .hover\:rotate-153:hover,
  .focus\:rotate-153:focus,
  .group:hover .group-hover\:rotate-153,
  .group:focus-within .group-focus-within\:rotate-153 {
    transform: rotate(153deg);
  }
  .rotate-154,
  .hover\:rotate-154:hover,
  .focus\:rotate-154:focus,
  .group:hover .group-hover\:rotate-154,
  .group:focus-within .group-focus-within\:rotate-154 {
    transform: rotate(154deg);
  }
  .rotate-155,
  .hover\:rotate-155:hover,
  .focus\:rotate-155:focus,
  .group:hover .group-hover\:rotate-155,
  .group:focus-within .group-focus-within\:rotate-155 {
    transform: rotate(155deg);
  }
  .rotate-156,
  .hover\:rotate-156:hover,
  .focus\:rotate-156:focus,
  .group:hover .group-hover\:rotate-156,
  .group:focus-within .group-focus-within\:rotate-156 {
    transform: rotate(156deg);
  }
  .rotate-157,
  .hover\:rotate-157:hover,
  .focus\:rotate-157:focus,
  .group:hover .group-hover\:rotate-157,
  .group:focus-within .group-focus-within\:rotate-157 {
    transform: rotate(157deg);
  }
  .rotate-158,
  .hover\:rotate-158:hover,
  .focus\:rotate-158:focus,
  .group:hover .group-hover\:rotate-158,
  .group:focus-within .group-focus-within\:rotate-158 {
    transform: rotate(158deg);
  }
  .rotate-159,
  .hover\:rotate-159:hover,
  .focus\:rotate-159:focus,
  .group:hover .group-hover\:rotate-159,
  .group:focus-within .group-focus-within\:rotate-159 {
    transform: rotate(159deg);
  }
  .rotate-160,
  .hover\:rotate-160:hover,
  .focus\:rotate-160:focus,
  .group:hover .group-hover\:rotate-160,
  .group:focus-within .group-focus-within\:rotate-160 {
    transform: rotate(160deg);
  }
  .rotate-161,
  .hover\:rotate-161:hover,
  .focus\:rotate-161:focus,
  .group:hover .group-hover\:rotate-161,
  .group:focus-within .group-focus-within\:rotate-161 {
    transform: rotate(161deg);
  }
  .rotate-162,
  .hover\:rotate-162:hover,
  .focus\:rotate-162:focus,
  .group:hover .group-hover\:rotate-162,
  .group:focus-within .group-focus-within\:rotate-162 {
    transform: rotate(162deg);
  }
  .rotate-163,
  .hover\:rotate-163:hover,
  .focus\:rotate-163:focus,
  .group:hover .group-hover\:rotate-163,
  .group:focus-within .group-focus-within\:rotate-163 {
    transform: rotate(163deg);
  }
  .rotate-164,
  .hover\:rotate-164:hover,
  .focus\:rotate-164:focus,
  .group:hover .group-hover\:rotate-164,
  .group:focus-within .group-focus-within\:rotate-164 {
    transform: rotate(164deg);
  }
  .rotate-165,
  .hover\:rotate-165:hover,
  .focus\:rotate-165:focus,
  .group:hover .group-hover\:rotate-165,
  .group:focus-within .group-focus-within\:rotate-165 {
    transform: rotate(165deg);
  }
  .rotate-166,
  .hover\:rotate-166:hover,
  .focus\:rotate-166:focus,
  .group:hover .group-hover\:rotate-166,
  .group:focus-within .group-focus-within\:rotate-166 {
    transform: rotate(166deg);
  }
  .rotate-167,
  .hover\:rotate-167:hover,
  .focus\:rotate-167:focus,
  .group:hover .group-hover\:rotate-167,
  .group:focus-within .group-focus-within\:rotate-167 {
    transform: rotate(167deg);
  }
  .rotate-168,
  .hover\:rotate-168:hover,
  .focus\:rotate-168:focus,
  .group:hover .group-hover\:rotate-168,
  .group:focus-within .group-focus-within\:rotate-168 {
    transform: rotate(168deg);
  }
  .rotate-169,
  .hover\:rotate-169:hover,
  .focus\:rotate-169:focus,
  .group:hover .group-hover\:rotate-169,
  .group:focus-within .group-focus-within\:rotate-169 {
    transform: rotate(169deg);
  }
  .rotate-170,
  .hover\:rotate-170:hover,
  .focus\:rotate-170:focus,
  .group:hover .group-hover\:rotate-170,
  .group:focus-within .group-focus-within\:rotate-170 {
    transform: rotate(170deg);
  }
  .rotate-171,
  .hover\:rotate-171:hover,
  .focus\:rotate-171:focus,
  .group:hover .group-hover\:rotate-171,
  .group:focus-within .group-focus-within\:rotate-171 {
    transform: rotate(171deg);
  }
  .rotate-172,
  .hover\:rotate-172:hover,
  .focus\:rotate-172:focus,
  .group:hover .group-hover\:rotate-172,
  .group:focus-within .group-focus-within\:rotate-172 {
    transform: rotate(172deg);
  }
  .rotate-173,
  .hover\:rotate-173:hover,
  .focus\:rotate-173:focus,
  .group:hover .group-hover\:rotate-173,
  .group:focus-within .group-focus-within\:rotate-173 {
    transform: rotate(173deg);
  }
  .rotate-174,
  .hover\:rotate-174:hover,
  .focus\:rotate-174:focus,
  .group:hover .group-hover\:rotate-174,
  .group:focus-within .group-focus-within\:rotate-174 {
    transform: rotate(174deg);
  }
  .rotate-175,
  .hover\:rotate-175:hover,
  .focus\:rotate-175:focus,
  .group:hover .group-hover\:rotate-175,
  .group:focus-within .group-focus-within\:rotate-175 {
    transform: rotate(175deg);
  }
  .rotate-176,
  .hover\:rotate-176:hover,
  .focus\:rotate-176:focus,
  .group:hover .group-hover\:rotate-176,
  .group:focus-within .group-focus-within\:rotate-176 {
    transform: rotate(176deg);
  }
  .rotate-177,
  .hover\:rotate-177:hover,
  .focus\:rotate-177:focus,
  .group:hover .group-hover\:rotate-177,
  .group:focus-within .group-focus-within\:rotate-177 {
    transform: rotate(177deg);
  }
  .rotate-178,
  .hover\:rotate-178:hover,
  .focus\:rotate-178:focus,
  .group:hover .group-hover\:rotate-178,
  .group:focus-within .group-focus-within\:rotate-178 {
    transform: rotate(178deg);
  }
  .rotate-179,
  .hover\:rotate-179:hover,
  .focus\:rotate-179:focus,
  .group:hover .group-hover\:rotate-179,
  .group:focus-within .group-focus-within\:rotate-179 {
    transform: rotate(179deg);
  }
  .rotate-180,
  .hover\:rotate-180:hover,
  .focus\:rotate-180:focus,
  .group:hover .group-hover\:rotate-180,
  .group:focus-within .group-focus-within\:rotate-180 {
    transform: rotate(180deg);
  }
  .rotate-181,
  .hover\:rotate-181:hover,
  .focus\:rotate-181:focus,
  .group:hover .group-hover\:rotate-181,
  .group:focus-within .group-focus-within\:rotate-181 {
    transform: rotate(181deg);
  }
  .rotate-182,
  .hover\:rotate-182:hover,
  .focus\:rotate-182:focus,
  .group:hover .group-hover\:rotate-182,
  .group:focus-within .group-focus-within\:rotate-182 {
    transform: rotate(182deg);
  }
  .rotate-183,
  .hover\:rotate-183:hover,
  .focus\:rotate-183:focus,
  .group:hover .group-hover\:rotate-183,
  .group:focus-within .group-focus-within\:rotate-183 {
    transform: rotate(183deg);
  }
  .rotate-184,
  .hover\:rotate-184:hover,
  .focus\:rotate-184:focus,
  .group:hover .group-hover\:rotate-184,
  .group:focus-within .group-focus-within\:rotate-184 {
    transform: rotate(184deg);
  }
  .rotate-185,
  .hover\:rotate-185:hover,
  .focus\:rotate-185:focus,
  .group:hover .group-hover\:rotate-185,
  .group:focus-within .group-focus-within\:rotate-185 {
    transform: rotate(185deg);
  }
  .rotate-186,
  .hover\:rotate-186:hover,
  .focus\:rotate-186:focus,
  .group:hover .group-hover\:rotate-186,
  .group:focus-within .group-focus-within\:rotate-186 {
    transform: rotate(186deg);
  }
  .rotate-187,
  .hover\:rotate-187:hover,
  .focus\:rotate-187:focus,
  .group:hover .group-hover\:rotate-187,
  .group:focus-within .group-focus-within\:rotate-187 {
    transform: rotate(187deg);
  }
  .rotate-188,
  .hover\:rotate-188:hover,
  .focus\:rotate-188:focus,
  .group:hover .group-hover\:rotate-188,
  .group:focus-within .group-focus-within\:rotate-188 {
    transform: rotate(188deg);
  }
  .rotate-189,
  .hover\:rotate-189:hover,
  .focus\:rotate-189:focus,
  .group:hover .group-hover\:rotate-189,
  .group:focus-within .group-focus-within\:rotate-189 {
    transform: rotate(189deg);
  }
  .rotate-190,
  .hover\:rotate-190:hover,
  .focus\:rotate-190:focus,
  .group:hover .group-hover\:rotate-190,
  .group:focus-within .group-focus-within\:rotate-190 {
    transform: rotate(190deg);
  }
  .rotate-191,
  .hover\:rotate-191:hover,
  .focus\:rotate-191:focus,
  .group:hover .group-hover\:rotate-191,
  .group:focus-within .group-focus-within\:rotate-191 {
    transform: rotate(191deg);
  }
  .rotate-192,
  .hover\:rotate-192:hover,
  .focus\:rotate-192:focus,
  .group:hover .group-hover\:rotate-192,
  .group:focus-within .group-focus-within\:rotate-192 {
    transform: rotate(192deg);
  }
  .rotate-193,
  .hover\:rotate-193:hover,
  .focus\:rotate-193:focus,
  .group:hover .group-hover\:rotate-193,
  .group:focus-within .group-focus-within\:rotate-193 {
    transform: rotate(193deg);
  }
  .rotate-194,
  .hover\:rotate-194:hover,
  .focus\:rotate-194:focus,
  .group:hover .group-hover\:rotate-194,
  .group:focus-within .group-focus-within\:rotate-194 {
    transform: rotate(194deg);
  }
  .rotate-195,
  .hover\:rotate-195:hover,
  .focus\:rotate-195:focus,
  .group:hover .group-hover\:rotate-195,
  .group:focus-within .group-focus-within\:rotate-195 {
    transform: rotate(195deg);
  }
  .rotate-196,
  .hover\:rotate-196:hover,
  .focus\:rotate-196:focus,
  .group:hover .group-hover\:rotate-196,
  .group:focus-within .group-focus-within\:rotate-196 {
    transform: rotate(196deg);
  }
  .rotate-197,
  .hover\:rotate-197:hover,
  .focus\:rotate-197:focus,
  .group:hover .group-hover\:rotate-197,
  .group:focus-within .group-focus-within\:rotate-197 {
    transform: rotate(197deg);
  }
  .rotate-198,
  .hover\:rotate-198:hover,
  .focus\:rotate-198:focus,
  .group:hover .group-hover\:rotate-198,
  .group:focus-within .group-focus-within\:rotate-198 {
    transform: rotate(198deg);
  }
  .rotate-199,
  .hover\:rotate-199:hover,
  .focus\:rotate-199:focus,
  .group:hover .group-hover\:rotate-199,
  .group:focus-within .group-focus-within\:rotate-199 {
    transform: rotate(199deg);
  }
  .rotate-200,
  .hover\:rotate-200:hover,
  .focus\:rotate-200:focus,
  .group:hover .group-hover\:rotate-200,
  .group:focus-within .group-focus-within\:rotate-200 {
    transform: rotate(200deg);
  }
  .rotate-201,
  .hover\:rotate-201:hover,
  .focus\:rotate-201:focus,
  .group:hover .group-hover\:rotate-201,
  .group:focus-within .group-focus-within\:rotate-201 {
    transform: rotate(201deg);
  }
  .rotate-202,
  .hover\:rotate-202:hover,
  .focus\:rotate-202:focus,
  .group:hover .group-hover\:rotate-202,
  .group:focus-within .group-focus-within\:rotate-202 {
    transform: rotate(202deg);
  }
  .rotate-203,
  .hover\:rotate-203:hover,
  .focus\:rotate-203:focus,
  .group:hover .group-hover\:rotate-203,
  .group:focus-within .group-focus-within\:rotate-203 {
    transform: rotate(203deg);
  }
  .rotate-204,
  .hover\:rotate-204:hover,
  .focus\:rotate-204:focus,
  .group:hover .group-hover\:rotate-204,
  .group:focus-within .group-focus-within\:rotate-204 {
    transform: rotate(204deg);
  }
  .rotate-205,
  .hover\:rotate-205:hover,
  .focus\:rotate-205:focus,
  .group:hover .group-hover\:rotate-205,
  .group:focus-within .group-focus-within\:rotate-205 {
    transform: rotate(205deg);
  }
  .rotate-206,
  .hover\:rotate-206:hover,
  .focus\:rotate-206:focus,
  .group:hover .group-hover\:rotate-206,
  .group:focus-within .group-focus-within\:rotate-206 {
    transform: rotate(206deg);
  }
  .rotate-207,
  .hover\:rotate-207:hover,
  .focus\:rotate-207:focus,
  .group:hover .group-hover\:rotate-207,
  .group:focus-within .group-focus-within\:rotate-207 {
    transform: rotate(207deg);
  }
  .rotate-208,
  .hover\:rotate-208:hover,
  .focus\:rotate-208:focus,
  .group:hover .group-hover\:rotate-208,
  .group:focus-within .group-focus-within\:rotate-208 {
    transform: rotate(208deg);
  }
  .rotate-209,
  .hover\:rotate-209:hover,
  .focus\:rotate-209:focus,
  .group:hover .group-hover\:rotate-209,
  .group:focus-within .group-focus-within\:rotate-209 {
    transform: rotate(209deg);
  }
  .rotate-210,
  .hover\:rotate-210:hover,
  .focus\:rotate-210:focus,
  .group:hover .group-hover\:rotate-210,
  .group:focus-within .group-focus-within\:rotate-210 {
    transform: rotate(210deg);
  }
  .rotate-211,
  .hover\:rotate-211:hover,
  .focus\:rotate-211:focus,
  .group:hover .group-hover\:rotate-211,
  .group:focus-within .group-focus-within\:rotate-211 {
    transform: rotate(211deg);
  }
  .rotate-212,
  .hover\:rotate-212:hover,
  .focus\:rotate-212:focus,
  .group:hover .group-hover\:rotate-212,
  .group:focus-within .group-focus-within\:rotate-212 {
    transform: rotate(212deg);
  }
  .rotate-213,
  .hover\:rotate-213:hover,
  .focus\:rotate-213:focus,
  .group:hover .group-hover\:rotate-213,
  .group:focus-within .group-focus-within\:rotate-213 {
    transform: rotate(213deg);
  }
  .rotate-214,
  .hover\:rotate-214:hover,
  .focus\:rotate-214:focus,
  .group:hover .group-hover\:rotate-214,
  .group:focus-within .group-focus-within\:rotate-214 {
    transform: rotate(214deg);
  }
  .rotate-215,
  .hover\:rotate-215:hover,
  .focus\:rotate-215:focus,
  .group:hover .group-hover\:rotate-215,
  .group:focus-within .group-focus-within\:rotate-215 {
    transform: rotate(215deg);
  }
  .rotate-216,
  .hover\:rotate-216:hover,
  .focus\:rotate-216:focus,
  .group:hover .group-hover\:rotate-216,
  .group:focus-within .group-focus-within\:rotate-216 {
    transform: rotate(216deg);
  }
  .rotate-217,
  .hover\:rotate-217:hover,
  .focus\:rotate-217:focus,
  .group:hover .group-hover\:rotate-217,
  .group:focus-within .group-focus-within\:rotate-217 {
    transform: rotate(217deg);
  }
  .rotate-218,
  .hover\:rotate-218:hover,
  .focus\:rotate-218:focus,
  .group:hover .group-hover\:rotate-218,
  .group:focus-within .group-focus-within\:rotate-218 {
    transform: rotate(218deg);
  }
  .rotate-219,
  .hover\:rotate-219:hover,
  .focus\:rotate-219:focus,
  .group:hover .group-hover\:rotate-219,
  .group:focus-within .group-focus-within\:rotate-219 {
    transform: rotate(219deg);
  }
  .rotate-220,
  .hover\:rotate-220:hover,
  .focus\:rotate-220:focus,
  .group:hover .group-hover\:rotate-220,
  .group:focus-within .group-focus-within\:rotate-220 {
    transform: rotate(220deg);
  }
  .rotate-221,
  .hover\:rotate-221:hover,
  .focus\:rotate-221:focus,
  .group:hover .group-hover\:rotate-221,
  .group:focus-within .group-focus-within\:rotate-221 {
    transform: rotate(221deg);
  }
  .rotate-222,
  .hover\:rotate-222:hover,
  .focus\:rotate-222:focus,
  .group:hover .group-hover\:rotate-222,
  .group:focus-within .group-focus-within\:rotate-222 {
    transform: rotate(222deg);
  }
  .rotate-223,
  .hover\:rotate-223:hover,
  .focus\:rotate-223:focus,
  .group:hover .group-hover\:rotate-223,
  .group:focus-within .group-focus-within\:rotate-223 {
    transform: rotate(223deg);
  }
  .rotate-224,
  .hover\:rotate-224:hover,
  .focus\:rotate-224:focus,
  .group:hover .group-hover\:rotate-224,
  .group:focus-within .group-focus-within\:rotate-224 {
    transform: rotate(224deg);
  }
  .rotate-225,
  .hover\:rotate-225:hover,
  .focus\:rotate-225:focus,
  .group:hover .group-hover\:rotate-225,
  .group:focus-within .group-focus-within\:rotate-225 {
    transform: rotate(225deg);
  }
  .rotate-226,
  .hover\:rotate-226:hover,
  .focus\:rotate-226:focus,
  .group:hover .group-hover\:rotate-226,
  .group:focus-within .group-focus-within\:rotate-226 {
    transform: rotate(226deg);
  }
  .rotate-227,
  .hover\:rotate-227:hover,
  .focus\:rotate-227:focus,
  .group:hover .group-hover\:rotate-227,
  .group:focus-within .group-focus-within\:rotate-227 {
    transform: rotate(227deg);
  }
  .rotate-228,
  .hover\:rotate-228:hover,
  .focus\:rotate-228:focus,
  .group:hover .group-hover\:rotate-228,
  .group:focus-within .group-focus-within\:rotate-228 {
    transform: rotate(228deg);
  }
  .rotate-229,
  .hover\:rotate-229:hover,
  .focus\:rotate-229:focus,
  .group:hover .group-hover\:rotate-229,
  .group:focus-within .group-focus-within\:rotate-229 {
    transform: rotate(229deg);
  }
  .rotate-230,
  .hover\:rotate-230:hover,
  .focus\:rotate-230:focus,
  .group:hover .group-hover\:rotate-230,
  .group:focus-within .group-focus-within\:rotate-230 {
    transform: rotate(230deg);
  }
  .rotate-231,
  .hover\:rotate-231:hover,
  .focus\:rotate-231:focus,
  .group:hover .group-hover\:rotate-231,
  .group:focus-within .group-focus-within\:rotate-231 {
    transform: rotate(231deg);
  }
  .rotate-232,
  .hover\:rotate-232:hover,
  .focus\:rotate-232:focus,
  .group:hover .group-hover\:rotate-232,
  .group:focus-within .group-focus-within\:rotate-232 {
    transform: rotate(232deg);
  }
  .rotate-233,
  .hover\:rotate-233:hover,
  .focus\:rotate-233:focus,
  .group:hover .group-hover\:rotate-233,
  .group:focus-within .group-focus-within\:rotate-233 {
    transform: rotate(233deg);
  }
  .rotate-234,
  .hover\:rotate-234:hover,
  .focus\:rotate-234:focus,
  .group:hover .group-hover\:rotate-234,
  .group:focus-within .group-focus-within\:rotate-234 {
    transform: rotate(234deg);
  }
  .rotate-235,
  .hover\:rotate-235:hover,
  .focus\:rotate-235:focus,
  .group:hover .group-hover\:rotate-235,
  .group:focus-within .group-focus-within\:rotate-235 {
    transform: rotate(235deg);
  }
  .rotate-236,
  .hover\:rotate-236:hover,
  .focus\:rotate-236:focus,
  .group:hover .group-hover\:rotate-236,
  .group:focus-within .group-focus-within\:rotate-236 {
    transform: rotate(236deg);
  }
  .rotate-237,
  .hover\:rotate-237:hover,
  .focus\:rotate-237:focus,
  .group:hover .group-hover\:rotate-237,
  .group:focus-within .group-focus-within\:rotate-237 {
    transform: rotate(237deg);
  }
  .rotate-238,
  .hover\:rotate-238:hover,
  .focus\:rotate-238:focus,
  .group:hover .group-hover\:rotate-238,
  .group:focus-within .group-focus-within\:rotate-238 {
    transform: rotate(238deg);
  }
  .rotate-239,
  .hover\:rotate-239:hover,
  .focus\:rotate-239:focus,
  .group:hover .group-hover\:rotate-239,
  .group:focus-within .group-focus-within\:rotate-239 {
    transform: rotate(239deg);
  }
  .rotate-240,
  .hover\:rotate-240:hover,
  .focus\:rotate-240:focus,
  .group:hover .group-hover\:rotate-240,
  .group:focus-within .group-focus-within\:rotate-240 {
    transform: rotate(240deg);
  }
  .rotate-241,
  .hover\:rotate-241:hover,
  .focus\:rotate-241:focus,
  .group:hover .group-hover\:rotate-241,
  .group:focus-within .group-focus-within\:rotate-241 {
    transform: rotate(241deg);
  }
  .rotate-242,
  .hover\:rotate-242:hover,
  .focus\:rotate-242:focus,
  .group:hover .group-hover\:rotate-242,
  .group:focus-within .group-focus-within\:rotate-242 {
    transform: rotate(242deg);
  }
  .rotate-243,
  .hover\:rotate-243:hover,
  .focus\:rotate-243:focus,
  .group:hover .group-hover\:rotate-243,
  .group:focus-within .group-focus-within\:rotate-243 {
    transform: rotate(243deg);
  }
  .rotate-244,
  .hover\:rotate-244:hover,
  .focus\:rotate-244:focus,
  .group:hover .group-hover\:rotate-244,
  .group:focus-within .group-focus-within\:rotate-244 {
    transform: rotate(244deg);
  }
  .rotate-245,
  .hover\:rotate-245:hover,
  .focus\:rotate-245:focus,
  .group:hover .group-hover\:rotate-245,
  .group:focus-within .group-focus-within\:rotate-245 {
    transform: rotate(245deg);
  }
  .rotate-246,
  .hover\:rotate-246:hover,
  .focus\:rotate-246:focus,
  .group:hover .group-hover\:rotate-246,
  .group:focus-within .group-focus-within\:rotate-246 {
    transform: rotate(246deg);
  }
  .rotate-247,
  .hover\:rotate-247:hover,
  .focus\:rotate-247:focus,
  .group:hover .group-hover\:rotate-247,
  .group:focus-within .group-focus-within\:rotate-247 {
    transform: rotate(247deg);
  }
  .rotate-248,
  .hover\:rotate-248:hover,
  .focus\:rotate-248:focus,
  .group:hover .group-hover\:rotate-248,
  .group:focus-within .group-focus-within\:rotate-248 {
    transform: rotate(248deg);
  }
  .rotate-249,
  .hover\:rotate-249:hover,
  .focus\:rotate-249:focus,
  .group:hover .group-hover\:rotate-249,
  .group:focus-within .group-focus-within\:rotate-249 {
    transform: rotate(249deg);
  }
  .rotate-250,
  .hover\:rotate-250:hover,
  .focus\:rotate-250:focus,
  .group:hover .group-hover\:rotate-250,
  .group:focus-within .group-focus-within\:rotate-250 {
    transform: rotate(250deg);
  }
  .rotate-251,
  .hover\:rotate-251:hover,
  .focus\:rotate-251:focus,
  .group:hover .group-hover\:rotate-251,
  .group:focus-within .group-focus-within\:rotate-251 {
    transform: rotate(251deg);
  }
  .rotate-252,
  .hover\:rotate-252:hover,
  .focus\:rotate-252:focus,
  .group:hover .group-hover\:rotate-252,
  .group:focus-within .group-focus-within\:rotate-252 {
    transform: rotate(252deg);
  }
  .rotate-253,
  .hover\:rotate-253:hover,
  .focus\:rotate-253:focus,
  .group:hover .group-hover\:rotate-253,
  .group:focus-within .group-focus-within\:rotate-253 {
    transform: rotate(253deg);
  }
  .rotate-254,
  .hover\:rotate-254:hover,
  .focus\:rotate-254:focus,
  .group:hover .group-hover\:rotate-254,
  .group:focus-within .group-focus-within\:rotate-254 {
    transform: rotate(254deg);
  }
  .rotate-255,
  .hover\:rotate-255:hover,
  .focus\:rotate-255:focus,
  .group:hover .group-hover\:rotate-255,
  .group:focus-within .group-focus-within\:rotate-255 {
    transform: rotate(255deg);
  }
  .rotate-256,
  .hover\:rotate-256:hover,
  .focus\:rotate-256:focus,
  .group:hover .group-hover\:rotate-256,
  .group:focus-within .group-focus-within\:rotate-256 {
    transform: rotate(256deg);
  }
  .rotate-257,
  .hover\:rotate-257:hover,
  .focus\:rotate-257:focus,
  .group:hover .group-hover\:rotate-257,
  .group:focus-within .group-focus-within\:rotate-257 {
    transform: rotate(257deg);
  }
  .rotate-258,
  .hover\:rotate-258:hover,
  .focus\:rotate-258:focus,
  .group:hover .group-hover\:rotate-258,
  .group:focus-within .group-focus-within\:rotate-258 {
    transform: rotate(258deg);
  }
  .rotate-259,
  .hover\:rotate-259:hover,
  .focus\:rotate-259:focus,
  .group:hover .group-hover\:rotate-259,
  .group:focus-within .group-focus-within\:rotate-259 {
    transform: rotate(259deg);
  }
  .rotate-260,
  .hover\:rotate-260:hover,
  .focus\:rotate-260:focus,
  .group:hover .group-hover\:rotate-260,
  .group:focus-within .group-focus-within\:rotate-260 {
    transform: rotate(260deg);
  }
  .rotate-261,
  .hover\:rotate-261:hover,
  .focus\:rotate-261:focus,
  .group:hover .group-hover\:rotate-261,
  .group:focus-within .group-focus-within\:rotate-261 {
    transform: rotate(261deg);
  }
  .rotate-262,
  .hover\:rotate-262:hover,
  .focus\:rotate-262:focus,
  .group:hover .group-hover\:rotate-262,
  .group:focus-within .group-focus-within\:rotate-262 {
    transform: rotate(262deg);
  }
  .rotate-263,
  .hover\:rotate-263:hover,
  .focus\:rotate-263:focus,
  .group:hover .group-hover\:rotate-263,
  .group:focus-within .group-focus-within\:rotate-263 {
    transform: rotate(263deg);
  }
  .rotate-264,
  .hover\:rotate-264:hover,
  .focus\:rotate-264:focus,
  .group:hover .group-hover\:rotate-264,
  .group:focus-within .group-focus-within\:rotate-264 {
    transform: rotate(264deg);
  }
  .rotate-265,
  .hover\:rotate-265:hover,
  .focus\:rotate-265:focus,
  .group:hover .group-hover\:rotate-265,
  .group:focus-within .group-focus-within\:rotate-265 {
    transform: rotate(265deg);
  }
  .rotate-266,
  .hover\:rotate-266:hover,
  .focus\:rotate-266:focus,
  .group:hover .group-hover\:rotate-266,
  .group:focus-within .group-focus-within\:rotate-266 {
    transform: rotate(266deg);
  }
  .rotate-267,
  .hover\:rotate-267:hover,
  .focus\:rotate-267:focus,
  .group:hover .group-hover\:rotate-267,
  .group:focus-within .group-focus-within\:rotate-267 {
    transform: rotate(267deg);
  }
  .rotate-268,
  .hover\:rotate-268:hover,
  .focus\:rotate-268:focus,
  .group:hover .group-hover\:rotate-268,
  .group:focus-within .group-focus-within\:rotate-268 {
    transform: rotate(268deg);
  }
  .rotate-269,
  .hover\:rotate-269:hover,
  .focus\:rotate-269:focus,
  .group:hover .group-hover\:rotate-269,
  .group:focus-within .group-focus-within\:rotate-269 {
    transform: rotate(269deg);
  }
  .rotate-270,
  .hover\:rotate-270:hover,
  .focus\:rotate-270:focus,
  .group:hover .group-hover\:rotate-270,
  .group:focus-within .group-focus-within\:rotate-270 {
    transform: rotate(270deg);
  }
  .rotate-271,
  .hover\:rotate-271:hover,
  .focus\:rotate-271:focus,
  .group:hover .group-hover\:rotate-271,
  .group:focus-within .group-focus-within\:rotate-271 {
    transform: rotate(271deg);
  }
  .rotate-272,
  .hover\:rotate-272:hover,
  .focus\:rotate-272:focus,
  .group:hover .group-hover\:rotate-272,
  .group:focus-within .group-focus-within\:rotate-272 {
    transform: rotate(272deg);
  }
  .rotate-273,
  .hover\:rotate-273:hover,
  .focus\:rotate-273:focus,
  .group:hover .group-hover\:rotate-273,
  .group:focus-within .group-focus-within\:rotate-273 {
    transform: rotate(273deg);
  }
  .rotate-274,
  .hover\:rotate-274:hover,
  .focus\:rotate-274:focus,
  .group:hover .group-hover\:rotate-274,
  .group:focus-within .group-focus-within\:rotate-274 {
    transform: rotate(274deg);
  }
  .rotate-275,
  .hover\:rotate-275:hover,
  .focus\:rotate-275:focus,
  .group:hover .group-hover\:rotate-275,
  .group:focus-within .group-focus-within\:rotate-275 {
    transform: rotate(275deg);
  }
  .rotate-276,
  .hover\:rotate-276:hover,
  .focus\:rotate-276:focus,
  .group:hover .group-hover\:rotate-276,
  .group:focus-within .group-focus-within\:rotate-276 {
    transform: rotate(276deg);
  }
  .rotate-277,
  .hover\:rotate-277:hover,
  .focus\:rotate-277:focus,
  .group:hover .group-hover\:rotate-277,
  .group:focus-within .group-focus-within\:rotate-277 {
    transform: rotate(277deg);
  }
  .rotate-278,
  .hover\:rotate-278:hover,
  .focus\:rotate-278:focus,
  .group:hover .group-hover\:rotate-278,
  .group:focus-within .group-focus-within\:rotate-278 {
    transform: rotate(278deg);
  }
  .rotate-279,
  .hover\:rotate-279:hover,
  .focus\:rotate-279:focus,
  .group:hover .group-hover\:rotate-279,
  .group:focus-within .group-focus-within\:rotate-279 {
    transform: rotate(279deg);
  }
  .rotate-280,
  .hover\:rotate-280:hover,
  .focus\:rotate-280:focus,
  .group:hover .group-hover\:rotate-280,
  .group:focus-within .group-focus-within\:rotate-280 {
    transform: rotate(280deg);
  }
  .rotate-281,
  .hover\:rotate-281:hover,
  .focus\:rotate-281:focus,
  .group:hover .group-hover\:rotate-281,
  .group:focus-within .group-focus-within\:rotate-281 {
    transform: rotate(281deg);
  }
  .rotate-282,
  .hover\:rotate-282:hover,
  .focus\:rotate-282:focus,
  .group:hover .group-hover\:rotate-282,
  .group:focus-within .group-focus-within\:rotate-282 {
    transform: rotate(282deg);
  }
  .rotate-283,
  .hover\:rotate-283:hover,
  .focus\:rotate-283:focus,
  .group:hover .group-hover\:rotate-283,
  .group:focus-within .group-focus-within\:rotate-283 {
    transform: rotate(283deg);
  }
  .rotate-284,
  .hover\:rotate-284:hover,
  .focus\:rotate-284:focus,
  .group:hover .group-hover\:rotate-284,
  .group:focus-within .group-focus-within\:rotate-284 {
    transform: rotate(284deg);
  }
  .rotate-285,
  .hover\:rotate-285:hover,
  .focus\:rotate-285:focus,
  .group:hover .group-hover\:rotate-285,
  .group:focus-within .group-focus-within\:rotate-285 {
    transform: rotate(285deg);
  }
  .rotate-286,
  .hover\:rotate-286:hover,
  .focus\:rotate-286:focus,
  .group:hover .group-hover\:rotate-286,
  .group:focus-within .group-focus-within\:rotate-286 {
    transform: rotate(286deg);
  }
  .rotate-287,
  .hover\:rotate-287:hover,
  .focus\:rotate-287:focus,
  .group:hover .group-hover\:rotate-287,
  .group:focus-within .group-focus-within\:rotate-287 {
    transform: rotate(287deg);
  }
  .rotate-288,
  .hover\:rotate-288:hover,
  .focus\:rotate-288:focus,
  .group:hover .group-hover\:rotate-288,
  .group:focus-within .group-focus-within\:rotate-288 {
    transform: rotate(288deg);
  }
  .rotate-289,
  .hover\:rotate-289:hover,
  .focus\:rotate-289:focus,
  .group:hover .group-hover\:rotate-289,
  .group:focus-within .group-focus-within\:rotate-289 {
    transform: rotate(289deg);
  }
  .rotate-290,
  .hover\:rotate-290:hover,
  .focus\:rotate-290:focus,
  .group:hover .group-hover\:rotate-290,
  .group:focus-within .group-focus-within\:rotate-290 {
    transform: rotate(290deg);
  }
  .rotate-291,
  .hover\:rotate-291:hover,
  .focus\:rotate-291:focus,
  .group:hover .group-hover\:rotate-291,
  .group:focus-within .group-focus-within\:rotate-291 {
    transform: rotate(291deg);
  }
  .rotate-292,
  .hover\:rotate-292:hover,
  .focus\:rotate-292:focus,
  .group:hover .group-hover\:rotate-292,
  .group:focus-within .group-focus-within\:rotate-292 {
    transform: rotate(292deg);
  }
  .rotate-293,
  .hover\:rotate-293:hover,
  .focus\:rotate-293:focus,
  .group:hover .group-hover\:rotate-293,
  .group:focus-within .group-focus-within\:rotate-293 {
    transform: rotate(293deg);
  }
  .rotate-294,
  .hover\:rotate-294:hover,
  .focus\:rotate-294:focus,
  .group:hover .group-hover\:rotate-294,
  .group:focus-within .group-focus-within\:rotate-294 {
    transform: rotate(294deg);
  }
  .rotate-295,
  .hover\:rotate-295:hover,
  .focus\:rotate-295:focus,
  .group:hover .group-hover\:rotate-295,
  .group:focus-within .group-focus-within\:rotate-295 {
    transform: rotate(295deg);
  }
  .rotate-296,
  .hover\:rotate-296:hover,
  .focus\:rotate-296:focus,
  .group:hover .group-hover\:rotate-296,
  .group:focus-within .group-focus-within\:rotate-296 {
    transform: rotate(296deg);
  }
  .rotate-297,
  .hover\:rotate-297:hover,
  .focus\:rotate-297:focus,
  .group:hover .group-hover\:rotate-297,
  .group:focus-within .group-focus-within\:rotate-297 {
    transform: rotate(297deg);
  }
  .rotate-298,
  .hover\:rotate-298:hover,
  .focus\:rotate-298:focus,
  .group:hover .group-hover\:rotate-298,
  .group:focus-within .group-focus-within\:rotate-298 {
    transform: rotate(298deg);
  }
  .rotate-299,
  .hover\:rotate-299:hover,
  .focus\:rotate-299:focus,
  .group:hover .group-hover\:rotate-299,
  .group:focus-within .group-focus-within\:rotate-299 {
    transform: rotate(299deg);
  }
  .rotate-300,
  .hover\:rotate-300:hover,
  .focus\:rotate-300:focus,
  .group:hover .group-hover\:rotate-300,
  .group:focus-within .group-focus-within\:rotate-300 {
    transform: rotate(300deg);
  }
  .rotate-301,
  .hover\:rotate-301:hover,
  .focus\:rotate-301:focus,
  .group:hover .group-hover\:rotate-301,
  .group:focus-within .group-focus-within\:rotate-301 {
    transform: rotate(301deg);
  }
  .rotate-302,
  .hover\:rotate-302:hover,
  .focus\:rotate-302:focus,
  .group:hover .group-hover\:rotate-302,
  .group:focus-within .group-focus-within\:rotate-302 {
    transform: rotate(302deg);
  }
  .rotate-303,
  .hover\:rotate-303:hover,
  .focus\:rotate-303:focus,
  .group:hover .group-hover\:rotate-303,
  .group:focus-within .group-focus-within\:rotate-303 {
    transform: rotate(303deg);
  }
  .rotate-304,
  .hover\:rotate-304:hover,
  .focus\:rotate-304:focus,
  .group:hover .group-hover\:rotate-304,
  .group:focus-within .group-focus-within\:rotate-304 {
    transform: rotate(304deg);
  }
  .rotate-305,
  .hover\:rotate-305:hover,
  .focus\:rotate-305:focus,
  .group:hover .group-hover\:rotate-305,
  .group:focus-within .group-focus-within\:rotate-305 {
    transform: rotate(305deg);
  }
  .rotate-306,
  .hover\:rotate-306:hover,
  .focus\:rotate-306:focus,
  .group:hover .group-hover\:rotate-306,
  .group:focus-within .group-focus-within\:rotate-306 {
    transform: rotate(306deg);
  }
  .rotate-307,
  .hover\:rotate-307:hover,
  .focus\:rotate-307:focus,
  .group:hover .group-hover\:rotate-307,
  .group:focus-within .group-focus-within\:rotate-307 {
    transform: rotate(307deg);
  }
  .rotate-308,
  .hover\:rotate-308:hover,
  .focus\:rotate-308:focus,
  .group:hover .group-hover\:rotate-308,
  .group:focus-within .group-focus-within\:rotate-308 {
    transform: rotate(308deg);
  }
  .rotate-309,
  .hover\:rotate-309:hover,
  .focus\:rotate-309:focus,
  .group:hover .group-hover\:rotate-309,
  .group:focus-within .group-focus-within\:rotate-309 {
    transform: rotate(309deg);
  }
  .rotate-310,
  .hover\:rotate-310:hover,
  .focus\:rotate-310:focus,
  .group:hover .group-hover\:rotate-310,
  .group:focus-within .group-focus-within\:rotate-310 {
    transform: rotate(310deg);
  }
  .rotate-311,
  .hover\:rotate-311:hover,
  .focus\:rotate-311:focus,
  .group:hover .group-hover\:rotate-311,
  .group:focus-within .group-focus-within\:rotate-311 {
    transform: rotate(311deg);
  }
  .rotate-312,
  .hover\:rotate-312:hover,
  .focus\:rotate-312:focus,
  .group:hover .group-hover\:rotate-312,
  .group:focus-within .group-focus-within\:rotate-312 {
    transform: rotate(312deg);
  }
  .rotate-313,
  .hover\:rotate-313:hover,
  .focus\:rotate-313:focus,
  .group:hover .group-hover\:rotate-313,
  .group:focus-within .group-focus-within\:rotate-313 {
    transform: rotate(313deg);
  }
  .rotate-314,
  .hover\:rotate-314:hover,
  .focus\:rotate-314:focus,
  .group:hover .group-hover\:rotate-314,
  .group:focus-within .group-focus-within\:rotate-314 {
    transform: rotate(314deg);
  }
  .rotate-315,
  .hover\:rotate-315:hover,
  .focus\:rotate-315:focus,
  .group:hover .group-hover\:rotate-315,
  .group:focus-within .group-focus-within\:rotate-315 {
    transform: rotate(315deg);
  }
  .rotate-316,
  .hover\:rotate-316:hover,
  .focus\:rotate-316:focus,
  .group:hover .group-hover\:rotate-316,
  .group:focus-within .group-focus-within\:rotate-316 {
    transform: rotate(316deg);
  }
  .rotate-317,
  .hover\:rotate-317:hover,
  .focus\:rotate-317:focus,
  .group:hover .group-hover\:rotate-317,
  .group:focus-within .group-focus-within\:rotate-317 {
    transform: rotate(317deg);
  }
  .rotate-318,
  .hover\:rotate-318:hover,
  .focus\:rotate-318:focus,
  .group:hover .group-hover\:rotate-318,
  .group:focus-within .group-focus-within\:rotate-318 {
    transform: rotate(318deg);
  }
  .rotate-319,
  .hover\:rotate-319:hover,
  .focus\:rotate-319:focus,
  .group:hover .group-hover\:rotate-319,
  .group:focus-within .group-focus-within\:rotate-319 {
    transform: rotate(319deg);
  }
  .rotate-320,
  .hover\:rotate-320:hover,
  .focus\:rotate-320:focus,
  .group:hover .group-hover\:rotate-320,
  .group:focus-within .group-focus-within\:rotate-320 {
    transform: rotate(320deg);
  }
  .rotate-321,
  .hover\:rotate-321:hover,
  .focus\:rotate-321:focus,
  .group:hover .group-hover\:rotate-321,
  .group:focus-within .group-focus-within\:rotate-321 {
    transform: rotate(321deg);
  }
  .rotate-322,
  .hover\:rotate-322:hover,
  .focus\:rotate-322:focus,
  .group:hover .group-hover\:rotate-322,
  .group:focus-within .group-focus-within\:rotate-322 {
    transform: rotate(322deg);
  }
  .rotate-323,
  .hover\:rotate-323:hover,
  .focus\:rotate-323:focus,
  .group:hover .group-hover\:rotate-323,
  .group:focus-within .group-focus-within\:rotate-323 {
    transform: rotate(323deg);
  }
  .rotate-324,
  .hover\:rotate-324:hover,
  .focus\:rotate-324:focus,
  .group:hover .group-hover\:rotate-324,
  .group:focus-within .group-focus-within\:rotate-324 {
    transform: rotate(324deg);
  }
  .rotate-325,
  .hover\:rotate-325:hover,
  .focus\:rotate-325:focus,
  .group:hover .group-hover\:rotate-325,
  .group:focus-within .group-focus-within\:rotate-325 {
    transform: rotate(325deg);
  }
  .rotate-326,
  .hover\:rotate-326:hover,
  .focus\:rotate-326:focus,
  .group:hover .group-hover\:rotate-326,
  .group:focus-within .group-focus-within\:rotate-326 {
    transform: rotate(326deg);
  }
  .rotate-327,
  .hover\:rotate-327:hover,
  .focus\:rotate-327:focus,
  .group:hover .group-hover\:rotate-327,
  .group:focus-within .group-focus-within\:rotate-327 {
    transform: rotate(327deg);
  }
  .rotate-328,
  .hover\:rotate-328:hover,
  .focus\:rotate-328:focus,
  .group:hover .group-hover\:rotate-328,
  .group:focus-within .group-focus-within\:rotate-328 {
    transform: rotate(328deg);
  }
  .rotate-329,
  .hover\:rotate-329:hover,
  .focus\:rotate-329:focus,
  .group:hover .group-hover\:rotate-329,
  .group:focus-within .group-focus-within\:rotate-329 {
    transform: rotate(329deg);
  }
  .rotate-330,
  .hover\:rotate-330:hover,
  .focus\:rotate-330:focus,
  .group:hover .group-hover\:rotate-330,
  .group:focus-within .group-focus-within\:rotate-330 {
    transform: rotate(330deg);
  }
  .rotate-331,
  .hover\:rotate-331:hover,
  .focus\:rotate-331:focus,
  .group:hover .group-hover\:rotate-331,
  .group:focus-within .group-focus-within\:rotate-331 {
    transform: rotate(331deg);
  }
  .rotate-332,
  .hover\:rotate-332:hover,
  .focus\:rotate-332:focus,
  .group:hover .group-hover\:rotate-332,
  .group:focus-within .group-focus-within\:rotate-332 {
    transform: rotate(332deg);
  }
  .rotate-333,
  .hover\:rotate-333:hover,
  .focus\:rotate-333:focus,
  .group:hover .group-hover\:rotate-333,
  .group:focus-within .group-focus-within\:rotate-333 {
    transform: rotate(333deg);
  }
  .rotate-334,
  .hover\:rotate-334:hover,
  .focus\:rotate-334:focus,
  .group:hover .group-hover\:rotate-334,
  .group:focus-within .group-focus-within\:rotate-334 {
    transform: rotate(334deg);
  }
  .rotate-335,
  .hover\:rotate-335:hover,
  .focus\:rotate-335:focus,
  .group:hover .group-hover\:rotate-335,
  .group:focus-within .group-focus-within\:rotate-335 {
    transform: rotate(335deg);
  }
  .rotate-336,
  .hover\:rotate-336:hover,
  .focus\:rotate-336:focus,
  .group:hover .group-hover\:rotate-336,
  .group:focus-within .group-focus-within\:rotate-336 {
    transform: rotate(336deg);
  }
  .rotate-337,
  .hover\:rotate-337:hover,
  .focus\:rotate-337:focus,
  .group:hover .group-hover\:rotate-337,
  .group:focus-within .group-focus-within\:rotate-337 {
    transform: rotate(337deg);
  }
  .rotate-338,
  .hover\:rotate-338:hover,
  .focus\:rotate-338:focus,
  .group:hover .group-hover\:rotate-338,
  .group:focus-within .group-focus-within\:rotate-338 {
    transform: rotate(338deg);
  }
  .rotate-339,
  .hover\:rotate-339:hover,
  .focus\:rotate-339:focus,
  .group:hover .group-hover\:rotate-339,
  .group:focus-within .group-focus-within\:rotate-339 {
    transform: rotate(339deg);
  }
  .rotate-340,
  .hover\:rotate-340:hover,
  .focus\:rotate-340:focus,
  .group:hover .group-hover\:rotate-340,
  .group:focus-within .group-focus-within\:rotate-340 {
    transform: rotate(340deg);
  }
  .rotate-341,
  .hover\:rotate-341:hover,
  .focus\:rotate-341:focus,
  .group:hover .group-hover\:rotate-341,
  .group:focus-within .group-focus-within\:rotate-341 {
    transform: rotate(341deg);
  }
  .rotate-342,
  .hover\:rotate-342:hover,
  .focus\:rotate-342:focus,
  .group:hover .group-hover\:rotate-342,
  .group:focus-within .group-focus-within\:rotate-342 {
    transform: rotate(342deg);
  }
  .rotate-343,
  .hover\:rotate-343:hover,
  .focus\:rotate-343:focus,
  .group:hover .group-hover\:rotate-343,
  .group:focus-within .group-focus-within\:rotate-343 {
    transform: rotate(343deg);
  }
  .rotate-344,
  .hover\:rotate-344:hover,
  .focus\:rotate-344:focus,
  .group:hover .group-hover\:rotate-344,
  .group:focus-within .group-focus-within\:rotate-344 {
    transform: rotate(344deg);
  }
  .rotate-345,
  .hover\:rotate-345:hover,
  .focus\:rotate-345:focus,
  .group:hover .group-hover\:rotate-345,
  .group:focus-within .group-focus-within\:rotate-345 {
    transform: rotate(345deg);
  }
  .rotate-346,
  .hover\:rotate-346:hover,
  .focus\:rotate-346:focus,
  .group:hover .group-hover\:rotate-346,
  .group:focus-within .group-focus-within\:rotate-346 {
    transform: rotate(346deg);
  }
  .rotate-347,
  .hover\:rotate-347:hover,
  .focus\:rotate-347:focus,
  .group:hover .group-hover\:rotate-347,
  .group:focus-within .group-focus-within\:rotate-347 {
    transform: rotate(347deg);
  }
  .rotate-348,
  .hover\:rotate-348:hover,
  .focus\:rotate-348:focus,
  .group:hover .group-hover\:rotate-348,
  .group:focus-within .group-focus-within\:rotate-348 {
    transform: rotate(348deg);
  }
  .rotate-349,
  .hover\:rotate-349:hover,
  .focus\:rotate-349:focus,
  .group:hover .group-hover\:rotate-349,
  .group:focus-within .group-focus-within\:rotate-349 {
    transform: rotate(349deg);
  }
  .rotate-350,
  .hover\:rotate-350:hover,
  .focus\:rotate-350:focus,
  .group:hover .group-hover\:rotate-350,
  .group:focus-within .group-focus-within\:rotate-350 {
    transform: rotate(350deg);
  }
  .rotate-351,
  .hover\:rotate-351:hover,
  .focus\:rotate-351:focus,
  .group:hover .group-hover\:rotate-351,
  .group:focus-within .group-focus-within\:rotate-351 {
    transform: rotate(351deg);
  }
  .rotate-352,
  .hover\:rotate-352:hover,
  .focus\:rotate-352:focus,
  .group:hover .group-hover\:rotate-352,
  .group:focus-within .group-focus-within\:rotate-352 {
    transform: rotate(352deg);
  }
  .rotate-353,
  .hover\:rotate-353:hover,
  .focus\:rotate-353:focus,
  .group:hover .group-hover\:rotate-353,
  .group:focus-within .group-focus-within\:rotate-353 {
    transform: rotate(353deg);
  }
  .rotate-354,
  .hover\:rotate-354:hover,
  .focus\:rotate-354:focus,
  .group:hover .group-hover\:rotate-354,
  .group:focus-within .group-focus-within\:rotate-354 {
    transform: rotate(354deg);
  }
  .rotate-355,
  .hover\:rotate-355:hover,
  .focus\:rotate-355:focus,
  .group:hover .group-hover\:rotate-355,
  .group:focus-within .group-focus-within\:rotate-355 {
    transform: rotate(355deg);
  }
  .rotate-356,
  .hover\:rotate-356:hover,
  .focus\:rotate-356:focus,
  .group:hover .group-hover\:rotate-356,
  .group:focus-within .group-focus-within\:rotate-356 {
    transform: rotate(356deg);
  }
  .rotate-357,
  .hover\:rotate-357:hover,
  .focus\:rotate-357:focus,
  .group:hover .group-hover\:rotate-357,
  .group:focus-within .group-focus-within\:rotate-357 {
    transform: rotate(357deg);
  }
  .rotate-358,
  .hover\:rotate-358:hover,
  .focus\:rotate-358:focus,
  .group:hover .group-hover\:rotate-358,
  .group:focus-within .group-focus-within\:rotate-358 {
    transform: rotate(358deg);
  }
  .rotate-359,
  .hover\:rotate-359:hover,
  .focus\:rotate-359:focus,
  .group:hover .group-hover\:rotate-359,
  .group:focus-within .group-focus-within\:rotate-359 {
    transform: rotate(359deg);
  }
  .rotate-360,
  .hover\:rotate-360:hover,
  .focus\:rotate-360:focus,
  .group:hover .group-hover\:rotate-360,
  .group:focus-within .group-focus-within\:rotate-360 {
    transform: rotate(360deg);
  }
  .scale-0,
  .hover\:scale-0:hover,
  .focus\:scale-0:focus,
  .group:hover .group-hover\:scale-0,
  .group:focus-within .group-focus-within\:scale-0 {
    transform: scale(0);
  }
  .scale-1,
  .hover\:scale-1:hover,
  .focus\:scale-1:focus,
  .group:hover .group-hover\:scale-1,
  .group:focus-within .group-focus-within\:scale-1 {
    transform: scale(0.1);
  }
  .scale-2,
  .hover\:scale-2:hover,
  .focus\:scale-2:focus,
  .group:hover .group-hover\:scale-2,
  .group:focus-within .group-focus-within\:scale-2 {
    transform: scale(0.2);
  }
  .scale-3,
  .hover\:scale-3:hover,
  .focus\:scale-3:focus,
  .group:hover .group-hover\:scale-3,
  .group:focus-within .group-focus-within\:scale-3 {
    transform: scale(0.3);
  }
  .scale-4,
  .hover\:scale-4:hover,
  .focus\:scale-4:focus,
  .group:hover .group-hover\:scale-4,
  .group:focus-within .group-focus-within\:scale-4 {
    transform: scale(0.4);
  }
  .scale-5,
  .hover\:scale-5:hover,
  .focus\:scale-5:focus,
  .group:hover .group-hover\:scale-5,
  .group:focus-within .group-focus-within\:scale-5 {
    transform: scale(0.5);
  }
  .scale-6,
  .hover\:scale-6:hover,
  .focus\:scale-6:focus,
  .group:hover .group-hover\:scale-6,
  .group:focus-within .group-focus-within\:scale-6 {
    transform: scale(0.6);
  }
  .scale-7,
  .hover\:scale-7:hover,
  .focus\:scale-7:focus,
  .group:hover .group-hover\:scale-7,
  .group:focus-within .group-focus-within\:scale-7 {
    transform: scale(0.7);
  }
  .scale-8,
  .hover\:scale-8:hover,
  .focus\:scale-8:focus,
  .group:hover .group-hover\:scale-8,
  .group:focus-within .group-focus-within\:scale-8 {
    transform: scale(0.8);
  }
  .scale-9,
  .hover\:scale-9:hover,
  .focus\:scale-9:focus,
  .group:hover .group-hover\:scale-9,
  .group:focus-within .group-focus-within\:scale-9 {
    transform: scale(0.9);
  }
  .scale-10,
  .hover\:scale-10:hover,
  .focus\:scale-10:focus,
  .group:hover .group-hover\:scale-10,
  .group:focus-within .group-focus-within\:scale-10 {
    transform: scale(1);
  }
  .scale-11,
  .hover\:scale-11:hover,
  .focus\:scale-11:focus,
  .group:hover .group-hover\:scale-11,
  .group:focus-within .group-focus-within\:scale-11 {
    transform: scale(1.1);
  }
  .scale-12,
  .hover\:scale-12:hover,
  .focus\:scale-12:focus,
  .group:hover .group-hover\:scale-12,
  .group:focus-within .group-focus-within\:scale-12 {
    transform: scale(1.2);
  }
  .scale-13,
  .hover\:scale-13:hover,
  .focus\:scale-13:focus,
  .group:hover .group-hover\:scale-13,
  .group:focus-within .group-focus-within\:scale-13 {
    transform: scale(1.3);
  }
  .scale-14,
  .hover\:scale-14:hover,
  .focus\:scale-14:focus,
  .group:hover .group-hover\:scale-14,
  .group:focus-within .group-focus-within\:scale-14 {
    transform: scale(1.4);
  }
  .scale-15,
  .hover\:scale-15:hover,
  .focus\:scale-15:focus,
  .group:hover .group-hover\:scale-15,
  .group:focus-within .group-focus-within\:scale-15 {
    transform: scale(1.5);
  }
  .scale-16,
  .hover\:scale-16:hover,
  .focus\:scale-16:focus,
  .group:hover .group-hover\:scale-16,
  .group:focus-within .group-focus-within\:scale-16 {
    transform: scale(1.6);
  }
  .scale-17,
  .hover\:scale-17:hover,
  .focus\:scale-17:focus,
  .group:hover .group-hover\:scale-17,
  .group:focus-within .group-focus-within\:scale-17 {
    transform: scale(1.7);
  }
  .scale-18,
  .hover\:scale-18:hover,
  .focus\:scale-18:focus,
  .group:hover .group-hover\:scale-18,
  .group:focus-within .group-focus-within\:scale-18 {
    transform: scale(1.8);
  }
  .scale-19,
  .hover\:scale-19:hover,
  .focus\:scale-19:focus,
  .group:hover .group-hover\:scale-19,
  .group:focus-within .group-focus-within\:scale-19 {
    transform: scale(1.9);
  }
  .scale-20,
  .hover\:scale-20:hover,
  .focus\:scale-20:focus,
  .group:hover .group-hover\:scale-20,
  .group:focus-within .group-focus-within\:scale-20 {
    transform: scale(2);
  }
  .scale-21,
  .hover\:scale-21:hover,
  .focus\:scale-21:focus,
  .group:hover .group-hover\:scale-21,
  .group:focus-within .group-focus-within\:scale-21 {
    transform: scale(2.1);
  }
  .scale-22,
  .hover\:scale-22:hover,
  .focus\:scale-22:focus,
  .group:hover .group-hover\:scale-22,
  .group:focus-within .group-focus-within\:scale-22 {
    transform: scale(2.2);
  }
  .scale-23,
  .hover\:scale-23:hover,
  .focus\:scale-23:focus,
  .group:hover .group-hover\:scale-23,
  .group:focus-within .group-focus-within\:scale-23 {
    transform: scale(2.3);
  }
  .scale-24,
  .hover\:scale-24:hover,
  .focus\:scale-24:focus,
  .group:hover .group-hover\:scale-24,
  .group:focus-within .group-focus-within\:scale-24 {
    transform: scale(2.4);
  }
  .scale-25,
  .hover\:scale-25:hover,
  .focus\:scale-25:focus,
  .group:hover .group-hover\:scale-25,
  .group:focus-within .group-focus-within\:scale-25 {
    transform: scale(2.5);
  }
  .scale-26,
  .hover\:scale-26:hover,
  .focus\:scale-26:focus,
  .group:hover .group-hover\:scale-26,
  .group:focus-within .group-focus-within\:scale-26 {
    transform: scale(2.6);
  }
  .scale-27,
  .hover\:scale-27:hover,
  .focus\:scale-27:focus,
  .group:hover .group-hover\:scale-27,
  .group:focus-within .group-focus-within\:scale-27 {
    transform: scale(2.7);
  }
  .scale-28,
  .hover\:scale-28:hover,
  .focus\:scale-28:focus,
  .group:hover .group-hover\:scale-28,
  .group:focus-within .group-focus-within\:scale-28 {
    transform: scale(2.8);
  }
  .scale-29,
  .hover\:scale-29:hover,
  .focus\:scale-29:focus,
  .group:hover .group-hover\:scale-29,
  .group:focus-within .group-focus-within\:scale-29 {
    transform: scale(2.9);
  }
  .scale-30,
  .hover\:scale-30:hover,
  .focus\:scale-30:focus,
  .group:hover .group-hover\:scale-30,
  .group:focus-within .group-focus-within\:scale-30 {
    transform: scale(3);
  }
}
@media (max-width: 1024px) {
  .tablet\:translate-none,
  .tablet\:hover\:translate-none:hover,
  .tablet\:focus\:translate-none:focus,
  .tablet\:group:hover .group-hover\:translate-none,
  .tablet\:group:focus-within .group-focus-within\:translate-none {
    transform: translate(var(--padding-none), var(--padding-none));
  }
  .tablet\:translate-x-none,
  .tablet\:hover\:translate-x-none:hover,
  .tablet\:focus\:translate-x-none:focus,
  .tablet\:group:hover .group-hover\:translate-x-none,
  .tablet\:group:focus-within .group-focus-within\:translate-x-none {
    transform: translateX(var(--padding-none));
  }
  .tablet\:translate-y-none,
  .tablet\:hover\:translate-y-none:hover,
  .tablet\:focus\:translate-y-none:focus,
  .tablet\:group:hover .group-hover\:translate-y-none,
  .tablet\:group:focus-within .group-focus-within\:translate-y-none {
    transform: translateY(var(--padding-none));
  }
  .tablet\:-translate-none,
  .tablet\:hover\:-translate-none:hover,
  .tablet\:focus\:-translate-none:focus,
  .tablet\:group:hover .group-hover\:-translate-none,
  .tablet\:group:focus-within .group-focus-within\:-translate-none {
    transform: translate(calc(-1 * var(--padding-none)), calc(-1 * var(--padding-none)));
  }
  .tablet\:-translate-x-none,
  .tablet\:hover\:-translate-x-none:hover,
  .tablet\:focus\:-translate-x-none:focus,
  .tablet\:group:hover .group-hover\:-translate-x-none,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-none {
    transform: translateX(calc(-1 * var(--padding-none)));
  }
  .tablet\:-translate-y-none,
  .tablet\:hover\:-translate-y-none:hover,
  .tablet\:focus\:-translate-y-none:focus,
  .tablet\:group:hover .group-hover\:-translate-y-none,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-none {
    transform: translateY(calc(-1 * var(--padding-none)));
  }
  .tablet\:translate-hairline,
  .tablet\:hover\:translate-hairline:hover,
  .tablet\:focus\:translate-hairline:focus,
  .tablet\:group:hover .group-hover\:translate-hairline,
  .tablet\:group:focus-within .group-focus-within\:translate-hairline {
    transform: translate(var(--padding-hairline), var(--padding-hairline));
  }
  .tablet\:translate-x-hairline,
  .tablet\:hover\:translate-x-hairline:hover,
  .tablet\:focus\:translate-x-hairline:focus,
  .tablet\:group:hover .group-hover\:translate-x-hairline,
  .tablet\:group:focus-within .group-focus-within\:translate-x-hairline {
    transform: translateX(var(--padding-hairline));
  }
  .tablet\:translate-y-hairline,
  .tablet\:hover\:translate-y-hairline:hover,
  .tablet\:focus\:translate-y-hairline:focus,
  .tablet\:group:hover .group-hover\:translate-y-hairline,
  .tablet\:group:focus-within .group-focus-within\:translate-y-hairline {
    transform: translateY(var(--padding-hairline));
  }
  .tablet\:-translate-hairline,
  .tablet\:hover\:-translate-hairline:hover,
  .tablet\:focus\:-translate-hairline:focus,
  .tablet\:group:hover .group-hover\:-translate-hairline,
  .tablet\:group:focus-within .group-focus-within\:-translate-hairline {
    transform: translate(calc(-1 * var(--padding-hairline)), calc(-1 * var(--padding-hairline)));
  }
  .tablet\:-translate-x-hairline,
  .tablet\:hover\:-translate-x-hairline:hover,
  .tablet\:focus\:-translate-x-hairline:focus,
  .tablet\:group:hover .group-hover\:-translate-x-hairline,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-hairline {
    transform: translateX(calc(-1 * var(--padding-hairline)));
  }
  .tablet\:-translate-y-hairline,
  .tablet\:hover\:-translate-y-hairline:hover,
  .tablet\:focus\:-translate-y-hairline:focus,
  .tablet\:group:hover .group-hover\:-translate-y-hairline,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-hairline {
    transform: translateY(calc(-1 * var(--padding-hairline)));
  }
  .tablet\:translate-thin,
  .tablet\:hover\:translate-thin:hover,
  .tablet\:focus\:translate-thin:focus,
  .tablet\:group:hover .group-hover\:translate-thin,
  .tablet\:group:focus-within .group-focus-within\:translate-thin {
    transform: translate(var(--padding-thin), var(--padding-thin));
  }
  .tablet\:translate-x-thin,
  .tablet\:hover\:translate-x-thin:hover,
  .tablet\:focus\:translate-x-thin:focus,
  .tablet\:group:hover .group-hover\:translate-x-thin,
  .tablet\:group:focus-within .group-focus-within\:translate-x-thin {
    transform: translateX(var(--padding-thin));
  }
  .tablet\:translate-y-thin,
  .tablet\:hover\:translate-y-thin:hover,
  .tablet\:focus\:translate-y-thin:focus,
  .tablet\:group:hover .group-hover\:translate-y-thin,
  .tablet\:group:focus-within .group-focus-within\:translate-y-thin {
    transform: translateY(var(--padding-thin));
  }
  .tablet\:-translate-thin,
  .tablet\:hover\:-translate-thin:hover,
  .tablet\:focus\:-translate-thin:focus,
  .tablet\:group:hover .group-hover\:-translate-thin,
  .tablet\:group:focus-within .group-focus-within\:-translate-thin {
    transform: translate(calc(-1 * var(--padding-thin)), calc(-1 * var(--padding-thin)));
  }
  .tablet\:-translate-x-thin,
  .tablet\:hover\:-translate-x-thin:hover,
  .tablet\:focus\:-translate-x-thin:focus,
  .tablet\:group:hover .group-hover\:-translate-x-thin,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-thin {
    transform: translateX(calc(-1 * var(--padding-thin)));
  }
  .tablet\:-translate-y-thin,
  .tablet\:hover\:-translate-y-thin:hover,
  .tablet\:focus\:-translate-y-thin:focus,
  .tablet\:group:hover .group-hover\:-translate-y-thin,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-thin {
    transform: translateY(calc(-1 * var(--padding-thin)));
  }
  .tablet\:translate-slim,
  .tablet\:hover\:translate-slim:hover,
  .tablet\:focus\:translate-slim:focus,
  .tablet\:group:hover .group-hover\:translate-slim,
  .tablet\:group:focus-within .group-focus-within\:translate-slim {
    transform: translate(var(--padding-slim), var(--padding-slim));
  }
  .tablet\:translate-x-slim,
  .tablet\:hover\:translate-x-slim:hover,
  .tablet\:focus\:translate-x-slim:focus,
  .tablet\:group:hover .group-hover\:translate-x-slim,
  .tablet\:group:focus-within .group-focus-within\:translate-x-slim {
    transform: translateX(var(--padding-slim));
  }
  .tablet\:translate-y-slim,
  .tablet\:hover\:translate-y-slim:hover,
  .tablet\:focus\:translate-y-slim:focus,
  .tablet\:group:hover .group-hover\:translate-y-slim,
  .tablet\:group:focus-within .group-focus-within\:translate-y-slim {
    transform: translateY(var(--padding-slim));
  }
  .tablet\:-translate-slim,
  .tablet\:hover\:-translate-slim:hover,
  .tablet\:focus\:-translate-slim:focus,
  .tablet\:group:hover .group-hover\:-translate-slim,
  .tablet\:group:focus-within .group-focus-within\:-translate-slim {
    transform: translate(calc(-1 * var(--padding-slim)), calc(-1 * var(--padding-slim)));
  }
  .tablet\:-translate-x-slim,
  .tablet\:hover\:-translate-x-slim:hover,
  .tablet\:focus\:-translate-x-slim:focus,
  .tablet\:group:hover .group-hover\:-translate-x-slim,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-slim {
    transform: translateX(calc(-1 * var(--padding-slim)));
  }
  .tablet\:-translate-y-slim,
  .tablet\:hover\:-translate-y-slim:hover,
  .tablet\:focus\:-translate-y-slim:focus,
  .tablet\:group:hover .group-hover\:-translate-y-slim,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-slim {
    transform: translateY(calc(-1 * var(--padding-slim)));
  }
  .tablet\:translate-extra-small,
  .tablet\:hover\:translate-extra-small:hover,
  .tablet\:focus\:translate-extra-small:focus,
  .tablet\:group:hover .group-hover\:translate-extra-small,
  .tablet\:group:focus-within .group-focus-within\:translate-extra-small {
    transform: translate(var(--padding-extra-small), var(--padding-extra-small));
  }
  .tablet\:translate-x-extra-small,
  .tablet\:hover\:translate-x-extra-small:hover,
  .tablet\:focus\:translate-x-extra-small:focus,
  .tablet\:group:hover .group-hover\:translate-x-extra-small,
  .tablet\:group:focus-within .group-focus-within\:translate-x-extra-small {
    transform: translateX(var(--padding-extra-small));
  }
  .tablet\:translate-y-extra-small,
  .tablet\:hover\:translate-y-extra-small:hover,
  .tablet\:focus\:translate-y-extra-small:focus,
  .tablet\:group:hover .group-hover\:translate-y-extra-small,
  .tablet\:group:focus-within .group-focus-within\:translate-y-extra-small {
    transform: translateY(var(--padding-extra-small));
  }
  .tablet\:-translate-extra-small,
  .tablet\:hover\:-translate-extra-small:hover,
  .tablet\:focus\:-translate-extra-small:focus,
  .tablet\:group:hover .group-hover\:-translate-extra-small,
  .tablet\:group:focus-within .group-focus-within\:-translate-extra-small {
    transform: translate(calc(-1 * var(--padding-extra-small)), calc(-1 * var(--padding-extra-small)));
  }
  .tablet\:-translate-x-extra-small,
  .tablet\:hover\:-translate-x-extra-small:hover,
  .tablet\:focus\:-translate-x-extra-small:focus,
  .tablet\:group:hover .group-hover\:-translate-x-extra-small,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-extra-small {
    transform: translateX(calc(-1 * var(--padding-extra-small)));
  }
  .tablet\:-translate-y-extra-small,
  .tablet\:hover\:-translate-y-extra-small:hover,
  .tablet\:focus\:-translate-y-extra-small:focus,
  .tablet\:group:hover .group-hover\:-translate-y-extra-small,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-extra-small {
    transform: translateY(calc(-1 * var(--padding-extra-small)));
  }
  .tablet\:translate-small,
  .tablet\:hover\:translate-small:hover,
  .tablet\:focus\:translate-small:focus,
  .tablet\:group:hover .group-hover\:translate-small,
  .tablet\:group:focus-within .group-focus-within\:translate-small {
    transform: translate(var(--padding-small), var(--padding-small));
  }
  .tablet\:translate-x-small,
  .tablet\:hover\:translate-x-small:hover,
  .tablet\:focus\:translate-x-small:focus,
  .tablet\:group:hover .group-hover\:translate-x-small,
  .tablet\:group:focus-within .group-focus-within\:translate-x-small {
    transform: translateX(var(--padding-small));
  }
  .tablet\:translate-y-small,
  .tablet\:hover\:translate-y-small:hover,
  .tablet\:focus\:translate-y-small:focus,
  .tablet\:group:hover .group-hover\:translate-y-small,
  .tablet\:group:focus-within .group-focus-within\:translate-y-small {
    transform: translateY(var(--padding-small));
  }
  .tablet\:-translate-small,
  .tablet\:hover\:-translate-small:hover,
  .tablet\:focus\:-translate-small:focus,
  .tablet\:group:hover .group-hover\:-translate-small,
  .tablet\:group:focus-within .group-focus-within\:-translate-small {
    transform: translate(calc(-1 * var(--padding-small)), calc(-1 * var(--padding-small)));
  }
  .tablet\:-translate-x-small,
  .tablet\:hover\:-translate-x-small:hover,
  .tablet\:focus\:-translate-x-small:focus,
  .tablet\:group:hover .group-hover\:-translate-x-small,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-small {
    transform: translateX(calc(-1 * var(--padding-small)));
  }
  .tablet\:-translate-y-small,
  .tablet\:hover\:-translate-y-small:hover,
  .tablet\:focus\:-translate-y-small:focus,
  .tablet\:group:hover .group-hover\:-translate-y-small,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-small {
    transform: translateY(calc(-1 * var(--padding-small)));
  }
  .tablet\:translate-medium,
  .tablet\:hover\:translate-medium:hover,
  .tablet\:focus\:translate-medium:focus,
  .tablet\:group:hover .group-hover\:translate-medium,
  .tablet\:group:focus-within .group-focus-within\:translate-medium {
    transform: translate(var(--padding-medium), var(--padding-medium));
  }
  .tablet\:translate-x-medium,
  .tablet\:hover\:translate-x-medium:hover,
  .tablet\:focus\:translate-x-medium:focus,
  .tablet\:group:hover .group-hover\:translate-x-medium,
  .tablet\:group:focus-within .group-focus-within\:translate-x-medium {
    transform: translateX(var(--padding-medium));
  }
  .tablet\:translate-y-medium,
  .tablet\:hover\:translate-y-medium:hover,
  .tablet\:focus\:translate-y-medium:focus,
  .tablet\:group:hover .group-hover\:translate-y-medium,
  .tablet\:group:focus-within .group-focus-within\:translate-y-medium {
    transform: translateY(var(--padding-medium));
  }
  .tablet\:-translate-medium,
  .tablet\:hover\:-translate-medium:hover,
  .tablet\:focus\:-translate-medium:focus,
  .tablet\:group:hover .group-hover\:-translate-medium,
  .tablet\:group:focus-within .group-focus-within\:-translate-medium {
    transform: translate(calc(-1 * var(--padding-medium)), calc(-1 * var(--padding-medium)));
  }
  .tablet\:-translate-x-medium,
  .tablet\:hover\:-translate-x-medium:hover,
  .tablet\:focus\:-translate-x-medium:focus,
  .tablet\:group:hover .group-hover\:-translate-x-medium,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-medium {
    transform: translateX(calc(-1 * var(--padding-medium)));
  }
  .tablet\:-translate-y-medium,
  .tablet\:hover\:-translate-y-medium:hover,
  .tablet\:focus\:-translate-y-medium:focus,
  .tablet\:group:hover .group-hover\:-translate-y-medium,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-medium {
    transform: translateY(calc(-1 * var(--padding-medium)));
  }
  .tablet\:translate-large,
  .tablet\:hover\:translate-large:hover,
  .tablet\:focus\:translate-large:focus,
  .tablet\:group:hover .group-hover\:translate-large,
  .tablet\:group:focus-within .group-focus-within\:translate-large {
    transform: translate(var(--padding-large), var(--padding-large));
  }
  .tablet\:translate-x-large,
  .tablet\:hover\:translate-x-large:hover,
  .tablet\:focus\:translate-x-large:focus,
  .tablet\:group:hover .group-hover\:translate-x-large,
  .tablet\:group:focus-within .group-focus-within\:translate-x-large {
    transform: translateX(var(--padding-large));
  }
  .tablet\:translate-y-large,
  .tablet\:hover\:translate-y-large:hover,
  .tablet\:focus\:translate-y-large:focus,
  .tablet\:group:hover .group-hover\:translate-y-large,
  .tablet\:group:focus-within .group-focus-within\:translate-y-large {
    transform: translateY(var(--padding-large));
  }
  .tablet\:-translate-large,
  .tablet\:hover\:-translate-large:hover,
  .tablet\:focus\:-translate-large:focus,
  .tablet\:group:hover .group-hover\:-translate-large,
  .tablet\:group:focus-within .group-focus-within\:-translate-large {
    transform: translate(calc(-1 * var(--padding-large)), calc(-1 * var(--padding-large)));
  }
  .tablet\:-translate-x-large,
  .tablet\:hover\:-translate-x-large:hover,
  .tablet\:focus\:-translate-x-large:focus,
  .tablet\:group:hover .group-hover\:-translate-x-large,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-large {
    transform: translateX(calc(-1 * var(--padding-large)));
  }
  .tablet\:-translate-y-large,
  .tablet\:hover\:-translate-y-large:hover,
  .tablet\:focus\:-translate-y-large:focus,
  .tablet\:group:hover .group-hover\:-translate-y-large,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-large {
    transform: translateY(calc(-1 * var(--padding-large)));
  }
  .tablet\:translate-extra-large,
  .tablet\:hover\:translate-extra-large:hover,
  .tablet\:focus\:translate-extra-large:focus,
  .tablet\:group:hover .group-hover\:translate-extra-large,
  .tablet\:group:focus-within .group-focus-within\:translate-extra-large {
    transform: translate(var(--padding-extra-large), var(--padding-extra-large));
  }
  .tablet\:translate-x-extra-large,
  .tablet\:hover\:translate-x-extra-large:hover,
  .tablet\:focus\:translate-x-extra-large:focus,
  .tablet\:group:hover .group-hover\:translate-x-extra-large,
  .tablet\:group:focus-within .group-focus-within\:translate-x-extra-large {
    transform: translateX(var(--padding-extra-large));
  }
  .tablet\:translate-y-extra-large,
  .tablet\:hover\:translate-y-extra-large:hover,
  .tablet\:focus\:translate-y-extra-large:focus,
  .tablet\:group:hover .group-hover\:translate-y-extra-large,
  .tablet\:group:focus-within .group-focus-within\:translate-y-extra-large {
    transform: translateY(var(--padding-extra-large));
  }
  .tablet\:-translate-extra-large,
  .tablet\:hover\:-translate-extra-large:hover,
  .tablet\:focus\:-translate-extra-large:focus,
  .tablet\:group:hover .group-hover\:-translate-extra-large,
  .tablet\:group:focus-within .group-focus-within\:-translate-extra-large {
    transform: translate(calc(-1 * var(--padding-extra-large)), calc(-1 * var(--padding-extra-large)));
  }
  .tablet\:-translate-x-extra-large,
  .tablet\:hover\:-translate-x-extra-large:hover,
  .tablet\:focus\:-translate-x-extra-large:focus,
  .tablet\:group:hover .group-hover\:-translate-x-extra-large,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-extra-large {
    transform: translateX(calc(-1 * var(--padding-extra-large)));
  }
  .tablet\:-translate-y-extra-large,
  .tablet\:hover\:-translate-y-extra-large:hover,
  .tablet\:focus\:-translate-y-extra-large:focus,
  .tablet\:group:hover .group-hover\:-translate-y-extra-large,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-extra-large {
    transform: translateY(calc(-1 * var(--padding-extra-large)));
  }
  .tablet\:translate-huge,
  .tablet\:hover\:translate-huge:hover,
  .tablet\:focus\:translate-huge:focus,
  .tablet\:group:hover .group-hover\:translate-huge,
  .tablet\:group:focus-within .group-focus-within\:translate-huge {
    transform: translate(var(--padding-huge), var(--padding-huge));
  }
  .tablet\:translate-x-huge,
  .tablet\:hover\:translate-x-huge:hover,
  .tablet\:focus\:translate-x-huge:focus,
  .tablet\:group:hover .group-hover\:translate-x-huge,
  .tablet\:group:focus-within .group-focus-within\:translate-x-huge {
    transform: translateX(var(--padding-huge));
  }
  .tablet\:translate-y-huge,
  .tablet\:hover\:translate-y-huge:hover,
  .tablet\:focus\:translate-y-huge:focus,
  .tablet\:group:hover .group-hover\:translate-y-huge,
  .tablet\:group:focus-within .group-focus-within\:translate-y-huge {
    transform: translateY(var(--padding-huge));
  }
  .tablet\:-translate-huge,
  .tablet\:hover\:-translate-huge:hover,
  .tablet\:focus\:-translate-huge:focus,
  .tablet\:group:hover .group-hover\:-translate-huge,
  .tablet\:group:focus-within .group-focus-within\:-translate-huge {
    transform: translate(calc(-1 * var(--padding-huge)), calc(-1 * var(--padding-huge)));
  }
  .tablet\:-translate-x-huge,
  .tablet\:hover\:-translate-x-huge:hover,
  .tablet\:focus\:-translate-x-huge:focus,
  .tablet\:group:hover .group-hover\:-translate-x-huge,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-huge {
    transform: translateX(calc(-1 * var(--padding-huge)));
  }
  .tablet\:-translate-y-huge,
  .tablet\:hover\:-translate-y-huge:hover,
  .tablet\:focus\:-translate-y-huge:focus,
  .tablet\:group:hover .group-hover\:-translate-y-huge,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-huge {
    transform: translateY(calc(-1 * var(--padding-huge)));
  }
  .tablet\:translate-full,
  .tablet\:hover\:translate-full:hover,
  .tablet\:focus\:translate-full:focus,
  .tablet\:group:hover .group-hover\:translate-full,
  .tablet\:group:focus-within .group-focus-within\:translate-full {
    transform: translate(var(--padding-full), var(--padding-full));
  }
  .tablet\:translate-x-full,
  .tablet\:hover\:translate-x-full:hover,
  .tablet\:focus\:translate-x-full:focus,
  .tablet\:group:hover .group-hover\:translate-x-full,
  .tablet\:group:focus-within .group-focus-within\:translate-x-full {
    transform: translateX(var(--padding-full));
  }
  .tablet\:translate-y-full,
  .tablet\:hover\:translate-y-full:hover,
  .tablet\:focus\:translate-y-full:focus,
  .tablet\:group:hover .group-hover\:translate-y-full,
  .tablet\:group:focus-within .group-focus-within\:translate-y-full {
    transform: translateY(var(--padding-full));
  }
  .tablet\:-translate-full,
  .tablet\:hover\:-translate-full:hover,
  .tablet\:focus\:-translate-full:focus,
  .tablet\:group:hover .group-hover\:-translate-full,
  .tablet\:group:focus-within .group-focus-within\:-translate-full {
    transform: translate(calc(-1 * var(--padding-full)), calc(-1 * var(--padding-full)));
  }
  .tablet\:-translate-x-full,
  .tablet\:hover\:-translate-x-full:hover,
  .tablet\:focus\:-translate-x-full:focus,
  .tablet\:group:hover .group-hover\:-translate-x-full,
  .tablet\:group:focus-within .group-focus-within\:-translate-x-full {
    transform: translateX(calc(-1 * var(--padding-full)));
  }
  .tablet\:-translate-y-full,
  .tablet\:hover\:-translate-y-full:hover,
  .tablet\:focus\:-translate-y-full:focus,
  .tablet\:group:hover .group-hover\:-translate-y-full,
  .tablet\:group:focus-within .group-focus-within\:-translate-y-full {
    transform: translateY(calc(-1 * var(--padding-full)));
  }
  .flip-h {
    transform: scaleX(-1);
  }
  .flip-v {
    transform: scaleY(-1);
  }
  .tablet\:-rotate-0,
  .tablet\:hover\:-rotate-0:hover,
  .tablet\:focus\:-rotate-0:focus,
  .tablet\:group:hover .group-hover\:-rotate-0,
  .tablet\:group:focus-within .group-focus-within\:-rotate-0 {
    transform: rotate(-0deg);
  }
  .tablet\:-rotate-1,
  .tablet\:hover\:-rotate-1:hover,
  .tablet\:focus\:-rotate-1:focus,
  .tablet\:group:hover .group-hover\:-rotate-1,
  .tablet\:group:focus-within .group-focus-within\:-rotate-1 {
    transform: rotate(-1deg);
  }
  .tablet\:-rotate-2,
  .tablet\:hover\:-rotate-2:hover,
  .tablet\:focus\:-rotate-2:focus,
  .tablet\:group:hover .group-hover\:-rotate-2,
  .tablet\:group:focus-within .group-focus-within\:-rotate-2 {
    transform: rotate(-2deg);
  }
  .tablet\:-rotate-3,
  .tablet\:hover\:-rotate-3:hover,
  .tablet\:focus\:-rotate-3:focus,
  .tablet\:group:hover .group-hover\:-rotate-3,
  .tablet\:group:focus-within .group-focus-within\:-rotate-3 {
    transform: rotate(-3deg);
  }
  .tablet\:-rotate-4,
  .tablet\:hover\:-rotate-4:hover,
  .tablet\:focus\:-rotate-4:focus,
  .tablet\:group:hover .group-hover\:-rotate-4,
  .tablet\:group:focus-within .group-focus-within\:-rotate-4 {
    transform: rotate(-4deg);
  }
  .tablet\:-rotate-5,
  .tablet\:hover\:-rotate-5:hover,
  .tablet\:focus\:-rotate-5:focus,
  .tablet\:group:hover .group-hover\:-rotate-5,
  .tablet\:group:focus-within .group-focus-within\:-rotate-5 {
    transform: rotate(-5deg);
  }
  .tablet\:-rotate-6,
  .tablet\:hover\:-rotate-6:hover,
  .tablet\:focus\:-rotate-6:focus,
  .tablet\:group:hover .group-hover\:-rotate-6,
  .tablet\:group:focus-within .group-focus-within\:-rotate-6 {
    transform: rotate(-6deg);
  }
  .tablet\:-rotate-7,
  .tablet\:hover\:-rotate-7:hover,
  .tablet\:focus\:-rotate-7:focus,
  .tablet\:group:hover .group-hover\:-rotate-7,
  .tablet\:group:focus-within .group-focus-within\:-rotate-7 {
    transform: rotate(-7deg);
  }
  .tablet\:-rotate-8,
  .tablet\:hover\:-rotate-8:hover,
  .tablet\:focus\:-rotate-8:focus,
  .tablet\:group:hover .group-hover\:-rotate-8,
  .tablet\:group:focus-within .group-focus-within\:-rotate-8 {
    transform: rotate(-8deg);
  }
  .tablet\:-rotate-9,
  .tablet\:hover\:-rotate-9:hover,
  .tablet\:focus\:-rotate-9:focus,
  .tablet\:group:hover .group-hover\:-rotate-9,
  .tablet\:group:focus-within .group-focus-within\:-rotate-9 {
    transform: rotate(-9deg);
  }
  .tablet\:-rotate-10,
  .tablet\:hover\:-rotate-10:hover,
  .tablet\:focus\:-rotate-10:focus,
  .tablet\:group:hover .group-hover\:-rotate-10,
  .tablet\:group:focus-within .group-focus-within\:-rotate-10 {
    transform: rotate(-10deg);
  }
  .tablet\:-rotate-11,
  .tablet\:hover\:-rotate-11:hover,
  .tablet\:focus\:-rotate-11:focus,
  .tablet\:group:hover .group-hover\:-rotate-11,
  .tablet\:group:focus-within .group-focus-within\:-rotate-11 {
    transform: rotate(-11deg);
  }
  .tablet\:-rotate-12,
  .tablet\:hover\:-rotate-12:hover,
  .tablet\:focus\:-rotate-12:focus,
  .tablet\:group:hover .group-hover\:-rotate-12,
  .tablet\:group:focus-within .group-focus-within\:-rotate-12 {
    transform: rotate(-12deg);
  }
  .tablet\:-rotate-13,
  .tablet\:hover\:-rotate-13:hover,
  .tablet\:focus\:-rotate-13:focus,
  .tablet\:group:hover .group-hover\:-rotate-13,
  .tablet\:group:focus-within .group-focus-within\:-rotate-13 {
    transform: rotate(-13deg);
  }
  .tablet\:-rotate-14,
  .tablet\:hover\:-rotate-14:hover,
  .tablet\:focus\:-rotate-14:focus,
  .tablet\:group:hover .group-hover\:-rotate-14,
  .tablet\:group:focus-within .group-focus-within\:-rotate-14 {
    transform: rotate(-14deg);
  }
  .tablet\:-rotate-15,
  .tablet\:hover\:-rotate-15:hover,
  .tablet\:focus\:-rotate-15:focus,
  .tablet\:group:hover .group-hover\:-rotate-15,
  .tablet\:group:focus-within .group-focus-within\:-rotate-15 {
    transform: rotate(-15deg);
  }
  .tablet\:-rotate-16,
  .tablet\:hover\:-rotate-16:hover,
  .tablet\:focus\:-rotate-16:focus,
  .tablet\:group:hover .group-hover\:-rotate-16,
  .tablet\:group:focus-within .group-focus-within\:-rotate-16 {
    transform: rotate(-16deg);
  }
  .tablet\:-rotate-17,
  .tablet\:hover\:-rotate-17:hover,
  .tablet\:focus\:-rotate-17:focus,
  .tablet\:group:hover .group-hover\:-rotate-17,
  .tablet\:group:focus-within .group-focus-within\:-rotate-17 {
    transform: rotate(-17deg);
  }
  .tablet\:-rotate-18,
  .tablet\:hover\:-rotate-18:hover,
  .tablet\:focus\:-rotate-18:focus,
  .tablet\:group:hover .group-hover\:-rotate-18,
  .tablet\:group:focus-within .group-focus-within\:-rotate-18 {
    transform: rotate(-18deg);
  }
  .tablet\:-rotate-19,
  .tablet\:hover\:-rotate-19:hover,
  .tablet\:focus\:-rotate-19:focus,
  .tablet\:group:hover .group-hover\:-rotate-19,
  .tablet\:group:focus-within .group-focus-within\:-rotate-19 {
    transform: rotate(-19deg);
  }
  .tablet\:-rotate-20,
  .tablet\:hover\:-rotate-20:hover,
  .tablet\:focus\:-rotate-20:focus,
  .tablet\:group:hover .group-hover\:-rotate-20,
  .tablet\:group:focus-within .group-focus-within\:-rotate-20 {
    transform: rotate(-20deg);
  }
  .tablet\:-rotate-21,
  .tablet\:hover\:-rotate-21:hover,
  .tablet\:focus\:-rotate-21:focus,
  .tablet\:group:hover .group-hover\:-rotate-21,
  .tablet\:group:focus-within .group-focus-within\:-rotate-21 {
    transform: rotate(-21deg);
  }
  .tablet\:-rotate-22,
  .tablet\:hover\:-rotate-22:hover,
  .tablet\:focus\:-rotate-22:focus,
  .tablet\:group:hover .group-hover\:-rotate-22,
  .tablet\:group:focus-within .group-focus-within\:-rotate-22 {
    transform: rotate(-22deg);
  }
  .tablet\:-rotate-23,
  .tablet\:hover\:-rotate-23:hover,
  .tablet\:focus\:-rotate-23:focus,
  .tablet\:group:hover .group-hover\:-rotate-23,
  .tablet\:group:focus-within .group-focus-within\:-rotate-23 {
    transform: rotate(-23deg);
  }
  .tablet\:-rotate-24,
  .tablet\:hover\:-rotate-24:hover,
  .tablet\:focus\:-rotate-24:focus,
  .tablet\:group:hover .group-hover\:-rotate-24,
  .tablet\:group:focus-within .group-focus-within\:-rotate-24 {
    transform: rotate(-24deg);
  }
  .tablet\:-rotate-25,
  .tablet\:hover\:-rotate-25:hover,
  .tablet\:focus\:-rotate-25:focus,
  .tablet\:group:hover .group-hover\:-rotate-25,
  .tablet\:group:focus-within .group-focus-within\:-rotate-25 {
    transform: rotate(-25deg);
  }
  .tablet\:-rotate-26,
  .tablet\:hover\:-rotate-26:hover,
  .tablet\:focus\:-rotate-26:focus,
  .tablet\:group:hover .group-hover\:-rotate-26,
  .tablet\:group:focus-within .group-focus-within\:-rotate-26 {
    transform: rotate(-26deg);
  }
  .tablet\:-rotate-27,
  .tablet\:hover\:-rotate-27:hover,
  .tablet\:focus\:-rotate-27:focus,
  .tablet\:group:hover .group-hover\:-rotate-27,
  .tablet\:group:focus-within .group-focus-within\:-rotate-27 {
    transform: rotate(-27deg);
  }
  .tablet\:-rotate-28,
  .tablet\:hover\:-rotate-28:hover,
  .tablet\:focus\:-rotate-28:focus,
  .tablet\:group:hover .group-hover\:-rotate-28,
  .tablet\:group:focus-within .group-focus-within\:-rotate-28 {
    transform: rotate(-28deg);
  }
  .tablet\:-rotate-29,
  .tablet\:hover\:-rotate-29:hover,
  .tablet\:focus\:-rotate-29:focus,
  .tablet\:group:hover .group-hover\:-rotate-29,
  .tablet\:group:focus-within .group-focus-within\:-rotate-29 {
    transform: rotate(-29deg);
  }
  .tablet\:-rotate-30,
  .tablet\:hover\:-rotate-30:hover,
  .tablet\:focus\:-rotate-30:focus,
  .tablet\:group:hover .group-hover\:-rotate-30,
  .tablet\:group:focus-within .group-focus-within\:-rotate-30 {
    transform: rotate(-30deg);
  }
  .tablet\:-rotate-31,
  .tablet\:hover\:-rotate-31:hover,
  .tablet\:focus\:-rotate-31:focus,
  .tablet\:group:hover .group-hover\:-rotate-31,
  .tablet\:group:focus-within .group-focus-within\:-rotate-31 {
    transform: rotate(-31deg);
  }
  .tablet\:-rotate-32,
  .tablet\:hover\:-rotate-32:hover,
  .tablet\:focus\:-rotate-32:focus,
  .tablet\:group:hover .group-hover\:-rotate-32,
  .tablet\:group:focus-within .group-focus-within\:-rotate-32 {
    transform: rotate(-32deg);
  }
  .tablet\:-rotate-33,
  .tablet\:hover\:-rotate-33:hover,
  .tablet\:focus\:-rotate-33:focus,
  .tablet\:group:hover .group-hover\:-rotate-33,
  .tablet\:group:focus-within .group-focus-within\:-rotate-33 {
    transform: rotate(-33deg);
  }
  .tablet\:-rotate-34,
  .tablet\:hover\:-rotate-34:hover,
  .tablet\:focus\:-rotate-34:focus,
  .tablet\:group:hover .group-hover\:-rotate-34,
  .tablet\:group:focus-within .group-focus-within\:-rotate-34 {
    transform: rotate(-34deg);
  }
  .tablet\:-rotate-35,
  .tablet\:hover\:-rotate-35:hover,
  .tablet\:focus\:-rotate-35:focus,
  .tablet\:group:hover .group-hover\:-rotate-35,
  .tablet\:group:focus-within .group-focus-within\:-rotate-35 {
    transform: rotate(-35deg);
  }
  .tablet\:-rotate-36,
  .tablet\:hover\:-rotate-36:hover,
  .tablet\:focus\:-rotate-36:focus,
  .tablet\:group:hover .group-hover\:-rotate-36,
  .tablet\:group:focus-within .group-focus-within\:-rotate-36 {
    transform: rotate(-36deg);
  }
  .tablet\:-rotate-37,
  .tablet\:hover\:-rotate-37:hover,
  .tablet\:focus\:-rotate-37:focus,
  .tablet\:group:hover .group-hover\:-rotate-37,
  .tablet\:group:focus-within .group-focus-within\:-rotate-37 {
    transform: rotate(-37deg);
  }
  .tablet\:-rotate-38,
  .tablet\:hover\:-rotate-38:hover,
  .tablet\:focus\:-rotate-38:focus,
  .tablet\:group:hover .group-hover\:-rotate-38,
  .tablet\:group:focus-within .group-focus-within\:-rotate-38 {
    transform: rotate(-38deg);
  }
  .tablet\:-rotate-39,
  .tablet\:hover\:-rotate-39:hover,
  .tablet\:focus\:-rotate-39:focus,
  .tablet\:group:hover .group-hover\:-rotate-39,
  .tablet\:group:focus-within .group-focus-within\:-rotate-39 {
    transform: rotate(-39deg);
  }
  .tablet\:-rotate-40,
  .tablet\:hover\:-rotate-40:hover,
  .tablet\:focus\:-rotate-40:focus,
  .tablet\:group:hover .group-hover\:-rotate-40,
  .tablet\:group:focus-within .group-focus-within\:-rotate-40 {
    transform: rotate(-40deg);
  }
  .tablet\:-rotate-41,
  .tablet\:hover\:-rotate-41:hover,
  .tablet\:focus\:-rotate-41:focus,
  .tablet\:group:hover .group-hover\:-rotate-41,
  .tablet\:group:focus-within .group-focus-within\:-rotate-41 {
    transform: rotate(-41deg);
  }
  .tablet\:-rotate-42,
  .tablet\:hover\:-rotate-42:hover,
  .tablet\:focus\:-rotate-42:focus,
  .tablet\:group:hover .group-hover\:-rotate-42,
  .tablet\:group:focus-within .group-focus-within\:-rotate-42 {
    transform: rotate(-42deg);
  }
  .tablet\:-rotate-43,
  .tablet\:hover\:-rotate-43:hover,
  .tablet\:focus\:-rotate-43:focus,
  .tablet\:group:hover .group-hover\:-rotate-43,
  .tablet\:group:focus-within .group-focus-within\:-rotate-43 {
    transform: rotate(-43deg);
  }
  .tablet\:-rotate-44,
  .tablet\:hover\:-rotate-44:hover,
  .tablet\:focus\:-rotate-44:focus,
  .tablet\:group:hover .group-hover\:-rotate-44,
  .tablet\:group:focus-within .group-focus-within\:-rotate-44 {
    transform: rotate(-44deg);
  }
  .tablet\:-rotate-45,
  .tablet\:hover\:-rotate-45:hover,
  .tablet\:focus\:-rotate-45:focus,
  .tablet\:group:hover .group-hover\:-rotate-45,
  .tablet\:group:focus-within .group-focus-within\:-rotate-45 {
    transform: rotate(-45deg);
  }
  .tablet\:-rotate-46,
  .tablet\:hover\:-rotate-46:hover,
  .tablet\:focus\:-rotate-46:focus,
  .tablet\:group:hover .group-hover\:-rotate-46,
  .tablet\:group:focus-within .group-focus-within\:-rotate-46 {
    transform: rotate(-46deg);
  }
  .tablet\:-rotate-47,
  .tablet\:hover\:-rotate-47:hover,
  .tablet\:focus\:-rotate-47:focus,
  .tablet\:group:hover .group-hover\:-rotate-47,
  .tablet\:group:focus-within .group-focus-within\:-rotate-47 {
    transform: rotate(-47deg);
  }
  .tablet\:-rotate-48,
  .tablet\:hover\:-rotate-48:hover,
  .tablet\:focus\:-rotate-48:focus,
  .tablet\:group:hover .group-hover\:-rotate-48,
  .tablet\:group:focus-within .group-focus-within\:-rotate-48 {
    transform: rotate(-48deg);
  }
  .tablet\:-rotate-49,
  .tablet\:hover\:-rotate-49:hover,
  .tablet\:focus\:-rotate-49:focus,
  .tablet\:group:hover .group-hover\:-rotate-49,
  .tablet\:group:focus-within .group-focus-within\:-rotate-49 {
    transform: rotate(-49deg);
  }
  .tablet\:-rotate-50,
  .tablet\:hover\:-rotate-50:hover,
  .tablet\:focus\:-rotate-50:focus,
  .tablet\:group:hover .group-hover\:-rotate-50,
  .tablet\:group:focus-within .group-focus-within\:-rotate-50 {
    transform: rotate(-50deg);
  }
  .tablet\:-rotate-51,
  .tablet\:hover\:-rotate-51:hover,
  .tablet\:focus\:-rotate-51:focus,
  .tablet\:group:hover .group-hover\:-rotate-51,
  .tablet\:group:focus-within .group-focus-within\:-rotate-51 {
    transform: rotate(-51deg);
  }
  .tablet\:-rotate-52,
  .tablet\:hover\:-rotate-52:hover,
  .tablet\:focus\:-rotate-52:focus,
  .tablet\:group:hover .group-hover\:-rotate-52,
  .tablet\:group:focus-within .group-focus-within\:-rotate-52 {
    transform: rotate(-52deg);
  }
  .tablet\:-rotate-53,
  .tablet\:hover\:-rotate-53:hover,
  .tablet\:focus\:-rotate-53:focus,
  .tablet\:group:hover .group-hover\:-rotate-53,
  .tablet\:group:focus-within .group-focus-within\:-rotate-53 {
    transform: rotate(-53deg);
  }
  .tablet\:-rotate-54,
  .tablet\:hover\:-rotate-54:hover,
  .tablet\:focus\:-rotate-54:focus,
  .tablet\:group:hover .group-hover\:-rotate-54,
  .tablet\:group:focus-within .group-focus-within\:-rotate-54 {
    transform: rotate(-54deg);
  }
  .tablet\:-rotate-55,
  .tablet\:hover\:-rotate-55:hover,
  .tablet\:focus\:-rotate-55:focus,
  .tablet\:group:hover .group-hover\:-rotate-55,
  .tablet\:group:focus-within .group-focus-within\:-rotate-55 {
    transform: rotate(-55deg);
  }
  .tablet\:-rotate-56,
  .tablet\:hover\:-rotate-56:hover,
  .tablet\:focus\:-rotate-56:focus,
  .tablet\:group:hover .group-hover\:-rotate-56,
  .tablet\:group:focus-within .group-focus-within\:-rotate-56 {
    transform: rotate(-56deg);
  }
  .tablet\:-rotate-57,
  .tablet\:hover\:-rotate-57:hover,
  .tablet\:focus\:-rotate-57:focus,
  .tablet\:group:hover .group-hover\:-rotate-57,
  .tablet\:group:focus-within .group-focus-within\:-rotate-57 {
    transform: rotate(-57deg);
  }
  .tablet\:-rotate-58,
  .tablet\:hover\:-rotate-58:hover,
  .tablet\:focus\:-rotate-58:focus,
  .tablet\:group:hover .group-hover\:-rotate-58,
  .tablet\:group:focus-within .group-focus-within\:-rotate-58 {
    transform: rotate(-58deg);
  }
  .tablet\:-rotate-59,
  .tablet\:hover\:-rotate-59:hover,
  .tablet\:focus\:-rotate-59:focus,
  .tablet\:group:hover .group-hover\:-rotate-59,
  .tablet\:group:focus-within .group-focus-within\:-rotate-59 {
    transform: rotate(-59deg);
  }
  .tablet\:-rotate-60,
  .tablet\:hover\:-rotate-60:hover,
  .tablet\:focus\:-rotate-60:focus,
  .tablet\:group:hover .group-hover\:-rotate-60,
  .tablet\:group:focus-within .group-focus-within\:-rotate-60 {
    transform: rotate(-60deg);
  }
  .tablet\:-rotate-61,
  .tablet\:hover\:-rotate-61:hover,
  .tablet\:focus\:-rotate-61:focus,
  .tablet\:group:hover .group-hover\:-rotate-61,
  .tablet\:group:focus-within .group-focus-within\:-rotate-61 {
    transform: rotate(-61deg);
  }
  .tablet\:-rotate-62,
  .tablet\:hover\:-rotate-62:hover,
  .tablet\:focus\:-rotate-62:focus,
  .tablet\:group:hover .group-hover\:-rotate-62,
  .tablet\:group:focus-within .group-focus-within\:-rotate-62 {
    transform: rotate(-62deg);
  }
  .tablet\:-rotate-63,
  .tablet\:hover\:-rotate-63:hover,
  .tablet\:focus\:-rotate-63:focus,
  .tablet\:group:hover .group-hover\:-rotate-63,
  .tablet\:group:focus-within .group-focus-within\:-rotate-63 {
    transform: rotate(-63deg);
  }
  .tablet\:-rotate-64,
  .tablet\:hover\:-rotate-64:hover,
  .tablet\:focus\:-rotate-64:focus,
  .tablet\:group:hover .group-hover\:-rotate-64,
  .tablet\:group:focus-within .group-focus-within\:-rotate-64 {
    transform: rotate(-64deg);
  }
  .tablet\:-rotate-65,
  .tablet\:hover\:-rotate-65:hover,
  .tablet\:focus\:-rotate-65:focus,
  .tablet\:group:hover .group-hover\:-rotate-65,
  .tablet\:group:focus-within .group-focus-within\:-rotate-65 {
    transform: rotate(-65deg);
  }
  .tablet\:-rotate-66,
  .tablet\:hover\:-rotate-66:hover,
  .tablet\:focus\:-rotate-66:focus,
  .tablet\:group:hover .group-hover\:-rotate-66,
  .tablet\:group:focus-within .group-focus-within\:-rotate-66 {
    transform: rotate(-66deg);
  }
  .tablet\:-rotate-67,
  .tablet\:hover\:-rotate-67:hover,
  .tablet\:focus\:-rotate-67:focus,
  .tablet\:group:hover .group-hover\:-rotate-67,
  .tablet\:group:focus-within .group-focus-within\:-rotate-67 {
    transform: rotate(-67deg);
  }
  .tablet\:-rotate-68,
  .tablet\:hover\:-rotate-68:hover,
  .tablet\:focus\:-rotate-68:focus,
  .tablet\:group:hover .group-hover\:-rotate-68,
  .tablet\:group:focus-within .group-focus-within\:-rotate-68 {
    transform: rotate(-68deg);
  }
  .tablet\:-rotate-69,
  .tablet\:hover\:-rotate-69:hover,
  .tablet\:focus\:-rotate-69:focus,
  .tablet\:group:hover .group-hover\:-rotate-69,
  .tablet\:group:focus-within .group-focus-within\:-rotate-69 {
    transform: rotate(-69deg);
  }
  .tablet\:-rotate-70,
  .tablet\:hover\:-rotate-70:hover,
  .tablet\:focus\:-rotate-70:focus,
  .tablet\:group:hover .group-hover\:-rotate-70,
  .tablet\:group:focus-within .group-focus-within\:-rotate-70 {
    transform: rotate(-70deg);
  }
  .tablet\:-rotate-71,
  .tablet\:hover\:-rotate-71:hover,
  .tablet\:focus\:-rotate-71:focus,
  .tablet\:group:hover .group-hover\:-rotate-71,
  .tablet\:group:focus-within .group-focus-within\:-rotate-71 {
    transform: rotate(-71deg);
  }
  .tablet\:-rotate-72,
  .tablet\:hover\:-rotate-72:hover,
  .tablet\:focus\:-rotate-72:focus,
  .tablet\:group:hover .group-hover\:-rotate-72,
  .tablet\:group:focus-within .group-focus-within\:-rotate-72 {
    transform: rotate(-72deg);
  }
  .tablet\:-rotate-73,
  .tablet\:hover\:-rotate-73:hover,
  .tablet\:focus\:-rotate-73:focus,
  .tablet\:group:hover .group-hover\:-rotate-73,
  .tablet\:group:focus-within .group-focus-within\:-rotate-73 {
    transform: rotate(-73deg);
  }
  .tablet\:-rotate-74,
  .tablet\:hover\:-rotate-74:hover,
  .tablet\:focus\:-rotate-74:focus,
  .tablet\:group:hover .group-hover\:-rotate-74,
  .tablet\:group:focus-within .group-focus-within\:-rotate-74 {
    transform: rotate(-74deg);
  }
  .tablet\:-rotate-75,
  .tablet\:hover\:-rotate-75:hover,
  .tablet\:focus\:-rotate-75:focus,
  .tablet\:group:hover .group-hover\:-rotate-75,
  .tablet\:group:focus-within .group-focus-within\:-rotate-75 {
    transform: rotate(-75deg);
  }
  .tablet\:-rotate-76,
  .tablet\:hover\:-rotate-76:hover,
  .tablet\:focus\:-rotate-76:focus,
  .tablet\:group:hover .group-hover\:-rotate-76,
  .tablet\:group:focus-within .group-focus-within\:-rotate-76 {
    transform: rotate(-76deg);
  }
  .tablet\:-rotate-77,
  .tablet\:hover\:-rotate-77:hover,
  .tablet\:focus\:-rotate-77:focus,
  .tablet\:group:hover .group-hover\:-rotate-77,
  .tablet\:group:focus-within .group-focus-within\:-rotate-77 {
    transform: rotate(-77deg);
  }
  .tablet\:-rotate-78,
  .tablet\:hover\:-rotate-78:hover,
  .tablet\:focus\:-rotate-78:focus,
  .tablet\:group:hover .group-hover\:-rotate-78,
  .tablet\:group:focus-within .group-focus-within\:-rotate-78 {
    transform: rotate(-78deg);
  }
  .tablet\:-rotate-79,
  .tablet\:hover\:-rotate-79:hover,
  .tablet\:focus\:-rotate-79:focus,
  .tablet\:group:hover .group-hover\:-rotate-79,
  .tablet\:group:focus-within .group-focus-within\:-rotate-79 {
    transform: rotate(-79deg);
  }
  .tablet\:-rotate-80,
  .tablet\:hover\:-rotate-80:hover,
  .tablet\:focus\:-rotate-80:focus,
  .tablet\:group:hover .group-hover\:-rotate-80,
  .tablet\:group:focus-within .group-focus-within\:-rotate-80 {
    transform: rotate(-80deg);
  }
  .tablet\:-rotate-81,
  .tablet\:hover\:-rotate-81:hover,
  .tablet\:focus\:-rotate-81:focus,
  .tablet\:group:hover .group-hover\:-rotate-81,
  .tablet\:group:focus-within .group-focus-within\:-rotate-81 {
    transform: rotate(-81deg);
  }
  .tablet\:-rotate-82,
  .tablet\:hover\:-rotate-82:hover,
  .tablet\:focus\:-rotate-82:focus,
  .tablet\:group:hover .group-hover\:-rotate-82,
  .tablet\:group:focus-within .group-focus-within\:-rotate-82 {
    transform: rotate(-82deg);
  }
  .tablet\:-rotate-83,
  .tablet\:hover\:-rotate-83:hover,
  .tablet\:focus\:-rotate-83:focus,
  .tablet\:group:hover .group-hover\:-rotate-83,
  .tablet\:group:focus-within .group-focus-within\:-rotate-83 {
    transform: rotate(-83deg);
  }
  .tablet\:-rotate-84,
  .tablet\:hover\:-rotate-84:hover,
  .tablet\:focus\:-rotate-84:focus,
  .tablet\:group:hover .group-hover\:-rotate-84,
  .tablet\:group:focus-within .group-focus-within\:-rotate-84 {
    transform: rotate(-84deg);
  }
  .tablet\:-rotate-85,
  .tablet\:hover\:-rotate-85:hover,
  .tablet\:focus\:-rotate-85:focus,
  .tablet\:group:hover .group-hover\:-rotate-85,
  .tablet\:group:focus-within .group-focus-within\:-rotate-85 {
    transform: rotate(-85deg);
  }
  .tablet\:-rotate-86,
  .tablet\:hover\:-rotate-86:hover,
  .tablet\:focus\:-rotate-86:focus,
  .tablet\:group:hover .group-hover\:-rotate-86,
  .tablet\:group:focus-within .group-focus-within\:-rotate-86 {
    transform: rotate(-86deg);
  }
  .tablet\:-rotate-87,
  .tablet\:hover\:-rotate-87:hover,
  .tablet\:focus\:-rotate-87:focus,
  .tablet\:group:hover .group-hover\:-rotate-87,
  .tablet\:group:focus-within .group-focus-within\:-rotate-87 {
    transform: rotate(-87deg);
  }
  .tablet\:-rotate-88,
  .tablet\:hover\:-rotate-88:hover,
  .tablet\:focus\:-rotate-88:focus,
  .tablet\:group:hover .group-hover\:-rotate-88,
  .tablet\:group:focus-within .group-focus-within\:-rotate-88 {
    transform: rotate(-88deg);
  }
  .tablet\:-rotate-89,
  .tablet\:hover\:-rotate-89:hover,
  .tablet\:focus\:-rotate-89:focus,
  .tablet\:group:hover .group-hover\:-rotate-89,
  .tablet\:group:focus-within .group-focus-within\:-rotate-89 {
    transform: rotate(-89deg);
  }
  .tablet\:-rotate-90,
  .tablet\:hover\:-rotate-90:hover,
  .tablet\:focus\:-rotate-90:focus,
  .tablet\:group:hover .group-hover\:-rotate-90,
  .tablet\:group:focus-within .group-focus-within\:-rotate-90 {
    transform: rotate(-90deg);
  }
  .tablet\:-rotate-91,
  .tablet\:hover\:-rotate-91:hover,
  .tablet\:focus\:-rotate-91:focus,
  .tablet\:group:hover .group-hover\:-rotate-91,
  .tablet\:group:focus-within .group-focus-within\:-rotate-91 {
    transform: rotate(-91deg);
  }
  .tablet\:-rotate-92,
  .tablet\:hover\:-rotate-92:hover,
  .tablet\:focus\:-rotate-92:focus,
  .tablet\:group:hover .group-hover\:-rotate-92,
  .tablet\:group:focus-within .group-focus-within\:-rotate-92 {
    transform: rotate(-92deg);
  }
  .tablet\:-rotate-93,
  .tablet\:hover\:-rotate-93:hover,
  .tablet\:focus\:-rotate-93:focus,
  .tablet\:group:hover .group-hover\:-rotate-93,
  .tablet\:group:focus-within .group-focus-within\:-rotate-93 {
    transform: rotate(-93deg);
  }
  .tablet\:-rotate-94,
  .tablet\:hover\:-rotate-94:hover,
  .tablet\:focus\:-rotate-94:focus,
  .tablet\:group:hover .group-hover\:-rotate-94,
  .tablet\:group:focus-within .group-focus-within\:-rotate-94 {
    transform: rotate(-94deg);
  }
  .tablet\:-rotate-95,
  .tablet\:hover\:-rotate-95:hover,
  .tablet\:focus\:-rotate-95:focus,
  .tablet\:group:hover .group-hover\:-rotate-95,
  .tablet\:group:focus-within .group-focus-within\:-rotate-95 {
    transform: rotate(-95deg);
  }
  .tablet\:-rotate-96,
  .tablet\:hover\:-rotate-96:hover,
  .tablet\:focus\:-rotate-96:focus,
  .tablet\:group:hover .group-hover\:-rotate-96,
  .tablet\:group:focus-within .group-focus-within\:-rotate-96 {
    transform: rotate(-96deg);
  }
  .tablet\:-rotate-97,
  .tablet\:hover\:-rotate-97:hover,
  .tablet\:focus\:-rotate-97:focus,
  .tablet\:group:hover .group-hover\:-rotate-97,
  .tablet\:group:focus-within .group-focus-within\:-rotate-97 {
    transform: rotate(-97deg);
  }
  .tablet\:-rotate-98,
  .tablet\:hover\:-rotate-98:hover,
  .tablet\:focus\:-rotate-98:focus,
  .tablet\:group:hover .group-hover\:-rotate-98,
  .tablet\:group:focus-within .group-focus-within\:-rotate-98 {
    transform: rotate(-98deg);
  }
  .tablet\:-rotate-99,
  .tablet\:hover\:-rotate-99:hover,
  .tablet\:focus\:-rotate-99:focus,
  .tablet\:group:hover .group-hover\:-rotate-99,
  .tablet\:group:focus-within .group-focus-within\:-rotate-99 {
    transform: rotate(-99deg);
  }
  .tablet\:-rotate-100,
  .tablet\:hover\:-rotate-100:hover,
  .tablet\:focus\:-rotate-100:focus,
  .tablet\:group:hover .group-hover\:-rotate-100,
  .tablet\:group:focus-within .group-focus-within\:-rotate-100 {
    transform: rotate(-100deg);
  }
  .tablet\:-rotate-101,
  .tablet\:hover\:-rotate-101:hover,
  .tablet\:focus\:-rotate-101:focus,
  .tablet\:group:hover .group-hover\:-rotate-101,
  .tablet\:group:focus-within .group-focus-within\:-rotate-101 {
    transform: rotate(-101deg);
  }
  .tablet\:-rotate-102,
  .tablet\:hover\:-rotate-102:hover,
  .tablet\:focus\:-rotate-102:focus,
  .tablet\:group:hover .group-hover\:-rotate-102,
  .tablet\:group:focus-within .group-focus-within\:-rotate-102 {
    transform: rotate(-102deg);
  }
  .tablet\:-rotate-103,
  .tablet\:hover\:-rotate-103:hover,
  .tablet\:focus\:-rotate-103:focus,
  .tablet\:group:hover .group-hover\:-rotate-103,
  .tablet\:group:focus-within .group-focus-within\:-rotate-103 {
    transform: rotate(-103deg);
  }
  .tablet\:-rotate-104,
  .tablet\:hover\:-rotate-104:hover,
  .tablet\:focus\:-rotate-104:focus,
  .tablet\:group:hover .group-hover\:-rotate-104,
  .tablet\:group:focus-within .group-focus-within\:-rotate-104 {
    transform: rotate(-104deg);
  }
  .tablet\:-rotate-105,
  .tablet\:hover\:-rotate-105:hover,
  .tablet\:focus\:-rotate-105:focus,
  .tablet\:group:hover .group-hover\:-rotate-105,
  .tablet\:group:focus-within .group-focus-within\:-rotate-105 {
    transform: rotate(-105deg);
  }
  .tablet\:-rotate-106,
  .tablet\:hover\:-rotate-106:hover,
  .tablet\:focus\:-rotate-106:focus,
  .tablet\:group:hover .group-hover\:-rotate-106,
  .tablet\:group:focus-within .group-focus-within\:-rotate-106 {
    transform: rotate(-106deg);
  }
  .tablet\:-rotate-107,
  .tablet\:hover\:-rotate-107:hover,
  .tablet\:focus\:-rotate-107:focus,
  .tablet\:group:hover .group-hover\:-rotate-107,
  .tablet\:group:focus-within .group-focus-within\:-rotate-107 {
    transform: rotate(-107deg);
  }
  .tablet\:-rotate-108,
  .tablet\:hover\:-rotate-108:hover,
  .tablet\:focus\:-rotate-108:focus,
  .tablet\:group:hover .group-hover\:-rotate-108,
  .tablet\:group:focus-within .group-focus-within\:-rotate-108 {
    transform: rotate(-108deg);
  }
  .tablet\:-rotate-109,
  .tablet\:hover\:-rotate-109:hover,
  .tablet\:focus\:-rotate-109:focus,
  .tablet\:group:hover .group-hover\:-rotate-109,
  .tablet\:group:focus-within .group-focus-within\:-rotate-109 {
    transform: rotate(-109deg);
  }
  .tablet\:-rotate-110,
  .tablet\:hover\:-rotate-110:hover,
  .tablet\:focus\:-rotate-110:focus,
  .tablet\:group:hover .group-hover\:-rotate-110,
  .tablet\:group:focus-within .group-focus-within\:-rotate-110 {
    transform: rotate(-110deg);
  }
  .tablet\:-rotate-111,
  .tablet\:hover\:-rotate-111:hover,
  .tablet\:focus\:-rotate-111:focus,
  .tablet\:group:hover .group-hover\:-rotate-111,
  .tablet\:group:focus-within .group-focus-within\:-rotate-111 {
    transform: rotate(-111deg);
  }
  .tablet\:-rotate-112,
  .tablet\:hover\:-rotate-112:hover,
  .tablet\:focus\:-rotate-112:focus,
  .tablet\:group:hover .group-hover\:-rotate-112,
  .tablet\:group:focus-within .group-focus-within\:-rotate-112 {
    transform: rotate(-112deg);
  }
  .tablet\:-rotate-113,
  .tablet\:hover\:-rotate-113:hover,
  .tablet\:focus\:-rotate-113:focus,
  .tablet\:group:hover .group-hover\:-rotate-113,
  .tablet\:group:focus-within .group-focus-within\:-rotate-113 {
    transform: rotate(-113deg);
  }
  .tablet\:-rotate-114,
  .tablet\:hover\:-rotate-114:hover,
  .tablet\:focus\:-rotate-114:focus,
  .tablet\:group:hover .group-hover\:-rotate-114,
  .tablet\:group:focus-within .group-focus-within\:-rotate-114 {
    transform: rotate(-114deg);
  }
  .tablet\:-rotate-115,
  .tablet\:hover\:-rotate-115:hover,
  .tablet\:focus\:-rotate-115:focus,
  .tablet\:group:hover .group-hover\:-rotate-115,
  .tablet\:group:focus-within .group-focus-within\:-rotate-115 {
    transform: rotate(-115deg);
  }
  .tablet\:-rotate-116,
  .tablet\:hover\:-rotate-116:hover,
  .tablet\:focus\:-rotate-116:focus,
  .tablet\:group:hover .group-hover\:-rotate-116,
  .tablet\:group:focus-within .group-focus-within\:-rotate-116 {
    transform: rotate(-116deg);
  }
  .tablet\:-rotate-117,
  .tablet\:hover\:-rotate-117:hover,
  .tablet\:focus\:-rotate-117:focus,
  .tablet\:group:hover .group-hover\:-rotate-117,
  .tablet\:group:focus-within .group-focus-within\:-rotate-117 {
    transform: rotate(-117deg);
  }
  .tablet\:-rotate-118,
  .tablet\:hover\:-rotate-118:hover,
  .tablet\:focus\:-rotate-118:focus,
  .tablet\:group:hover .group-hover\:-rotate-118,
  .tablet\:group:focus-within .group-focus-within\:-rotate-118 {
    transform: rotate(-118deg);
  }
  .tablet\:-rotate-119,
  .tablet\:hover\:-rotate-119:hover,
  .tablet\:focus\:-rotate-119:focus,
  .tablet\:group:hover .group-hover\:-rotate-119,
  .tablet\:group:focus-within .group-focus-within\:-rotate-119 {
    transform: rotate(-119deg);
  }
  .tablet\:-rotate-120,
  .tablet\:hover\:-rotate-120:hover,
  .tablet\:focus\:-rotate-120:focus,
  .tablet\:group:hover .group-hover\:-rotate-120,
  .tablet\:group:focus-within .group-focus-within\:-rotate-120 {
    transform: rotate(-120deg);
  }
  .tablet\:-rotate-121,
  .tablet\:hover\:-rotate-121:hover,
  .tablet\:focus\:-rotate-121:focus,
  .tablet\:group:hover .group-hover\:-rotate-121,
  .tablet\:group:focus-within .group-focus-within\:-rotate-121 {
    transform: rotate(-121deg);
  }
  .tablet\:-rotate-122,
  .tablet\:hover\:-rotate-122:hover,
  .tablet\:focus\:-rotate-122:focus,
  .tablet\:group:hover .group-hover\:-rotate-122,
  .tablet\:group:focus-within .group-focus-within\:-rotate-122 {
    transform: rotate(-122deg);
  }
  .tablet\:-rotate-123,
  .tablet\:hover\:-rotate-123:hover,
  .tablet\:focus\:-rotate-123:focus,
  .tablet\:group:hover .group-hover\:-rotate-123,
  .tablet\:group:focus-within .group-focus-within\:-rotate-123 {
    transform: rotate(-123deg);
  }
  .tablet\:-rotate-124,
  .tablet\:hover\:-rotate-124:hover,
  .tablet\:focus\:-rotate-124:focus,
  .tablet\:group:hover .group-hover\:-rotate-124,
  .tablet\:group:focus-within .group-focus-within\:-rotate-124 {
    transform: rotate(-124deg);
  }
  .tablet\:-rotate-125,
  .tablet\:hover\:-rotate-125:hover,
  .tablet\:focus\:-rotate-125:focus,
  .tablet\:group:hover .group-hover\:-rotate-125,
  .tablet\:group:focus-within .group-focus-within\:-rotate-125 {
    transform: rotate(-125deg);
  }
  .tablet\:-rotate-126,
  .tablet\:hover\:-rotate-126:hover,
  .tablet\:focus\:-rotate-126:focus,
  .tablet\:group:hover .group-hover\:-rotate-126,
  .tablet\:group:focus-within .group-focus-within\:-rotate-126 {
    transform: rotate(-126deg);
  }
  .tablet\:-rotate-127,
  .tablet\:hover\:-rotate-127:hover,
  .tablet\:focus\:-rotate-127:focus,
  .tablet\:group:hover .group-hover\:-rotate-127,
  .tablet\:group:focus-within .group-focus-within\:-rotate-127 {
    transform: rotate(-127deg);
  }
  .tablet\:-rotate-128,
  .tablet\:hover\:-rotate-128:hover,
  .tablet\:focus\:-rotate-128:focus,
  .tablet\:group:hover .group-hover\:-rotate-128,
  .tablet\:group:focus-within .group-focus-within\:-rotate-128 {
    transform: rotate(-128deg);
  }
  .tablet\:-rotate-129,
  .tablet\:hover\:-rotate-129:hover,
  .tablet\:focus\:-rotate-129:focus,
  .tablet\:group:hover .group-hover\:-rotate-129,
  .tablet\:group:focus-within .group-focus-within\:-rotate-129 {
    transform: rotate(-129deg);
  }
  .tablet\:-rotate-130,
  .tablet\:hover\:-rotate-130:hover,
  .tablet\:focus\:-rotate-130:focus,
  .tablet\:group:hover .group-hover\:-rotate-130,
  .tablet\:group:focus-within .group-focus-within\:-rotate-130 {
    transform: rotate(-130deg);
  }
  .tablet\:-rotate-131,
  .tablet\:hover\:-rotate-131:hover,
  .tablet\:focus\:-rotate-131:focus,
  .tablet\:group:hover .group-hover\:-rotate-131,
  .tablet\:group:focus-within .group-focus-within\:-rotate-131 {
    transform: rotate(-131deg);
  }
  .tablet\:-rotate-132,
  .tablet\:hover\:-rotate-132:hover,
  .tablet\:focus\:-rotate-132:focus,
  .tablet\:group:hover .group-hover\:-rotate-132,
  .tablet\:group:focus-within .group-focus-within\:-rotate-132 {
    transform: rotate(-132deg);
  }
  .tablet\:-rotate-133,
  .tablet\:hover\:-rotate-133:hover,
  .tablet\:focus\:-rotate-133:focus,
  .tablet\:group:hover .group-hover\:-rotate-133,
  .tablet\:group:focus-within .group-focus-within\:-rotate-133 {
    transform: rotate(-133deg);
  }
  .tablet\:-rotate-134,
  .tablet\:hover\:-rotate-134:hover,
  .tablet\:focus\:-rotate-134:focus,
  .tablet\:group:hover .group-hover\:-rotate-134,
  .tablet\:group:focus-within .group-focus-within\:-rotate-134 {
    transform: rotate(-134deg);
  }
  .tablet\:-rotate-135,
  .tablet\:hover\:-rotate-135:hover,
  .tablet\:focus\:-rotate-135:focus,
  .tablet\:group:hover .group-hover\:-rotate-135,
  .tablet\:group:focus-within .group-focus-within\:-rotate-135 {
    transform: rotate(-135deg);
  }
  .tablet\:-rotate-136,
  .tablet\:hover\:-rotate-136:hover,
  .tablet\:focus\:-rotate-136:focus,
  .tablet\:group:hover .group-hover\:-rotate-136,
  .tablet\:group:focus-within .group-focus-within\:-rotate-136 {
    transform: rotate(-136deg);
  }
  .tablet\:-rotate-137,
  .tablet\:hover\:-rotate-137:hover,
  .tablet\:focus\:-rotate-137:focus,
  .tablet\:group:hover .group-hover\:-rotate-137,
  .tablet\:group:focus-within .group-focus-within\:-rotate-137 {
    transform: rotate(-137deg);
  }
  .tablet\:-rotate-138,
  .tablet\:hover\:-rotate-138:hover,
  .tablet\:focus\:-rotate-138:focus,
  .tablet\:group:hover .group-hover\:-rotate-138,
  .tablet\:group:focus-within .group-focus-within\:-rotate-138 {
    transform: rotate(-138deg);
  }
  .tablet\:-rotate-139,
  .tablet\:hover\:-rotate-139:hover,
  .tablet\:focus\:-rotate-139:focus,
  .tablet\:group:hover .group-hover\:-rotate-139,
  .tablet\:group:focus-within .group-focus-within\:-rotate-139 {
    transform: rotate(-139deg);
  }
  .tablet\:-rotate-140,
  .tablet\:hover\:-rotate-140:hover,
  .tablet\:focus\:-rotate-140:focus,
  .tablet\:group:hover .group-hover\:-rotate-140,
  .tablet\:group:focus-within .group-focus-within\:-rotate-140 {
    transform: rotate(-140deg);
  }
  .tablet\:-rotate-141,
  .tablet\:hover\:-rotate-141:hover,
  .tablet\:focus\:-rotate-141:focus,
  .tablet\:group:hover .group-hover\:-rotate-141,
  .tablet\:group:focus-within .group-focus-within\:-rotate-141 {
    transform: rotate(-141deg);
  }
  .tablet\:-rotate-142,
  .tablet\:hover\:-rotate-142:hover,
  .tablet\:focus\:-rotate-142:focus,
  .tablet\:group:hover .group-hover\:-rotate-142,
  .tablet\:group:focus-within .group-focus-within\:-rotate-142 {
    transform: rotate(-142deg);
  }
  .tablet\:-rotate-143,
  .tablet\:hover\:-rotate-143:hover,
  .tablet\:focus\:-rotate-143:focus,
  .tablet\:group:hover .group-hover\:-rotate-143,
  .tablet\:group:focus-within .group-focus-within\:-rotate-143 {
    transform: rotate(-143deg);
  }
  .tablet\:-rotate-144,
  .tablet\:hover\:-rotate-144:hover,
  .tablet\:focus\:-rotate-144:focus,
  .tablet\:group:hover .group-hover\:-rotate-144,
  .tablet\:group:focus-within .group-focus-within\:-rotate-144 {
    transform: rotate(-144deg);
  }
  .tablet\:-rotate-145,
  .tablet\:hover\:-rotate-145:hover,
  .tablet\:focus\:-rotate-145:focus,
  .tablet\:group:hover .group-hover\:-rotate-145,
  .tablet\:group:focus-within .group-focus-within\:-rotate-145 {
    transform: rotate(-145deg);
  }
  .tablet\:-rotate-146,
  .tablet\:hover\:-rotate-146:hover,
  .tablet\:focus\:-rotate-146:focus,
  .tablet\:group:hover .group-hover\:-rotate-146,
  .tablet\:group:focus-within .group-focus-within\:-rotate-146 {
    transform: rotate(-146deg);
  }
  .tablet\:-rotate-147,
  .tablet\:hover\:-rotate-147:hover,
  .tablet\:focus\:-rotate-147:focus,
  .tablet\:group:hover .group-hover\:-rotate-147,
  .tablet\:group:focus-within .group-focus-within\:-rotate-147 {
    transform: rotate(-147deg);
  }
  .tablet\:-rotate-148,
  .tablet\:hover\:-rotate-148:hover,
  .tablet\:focus\:-rotate-148:focus,
  .tablet\:group:hover .group-hover\:-rotate-148,
  .tablet\:group:focus-within .group-focus-within\:-rotate-148 {
    transform: rotate(-148deg);
  }
  .tablet\:-rotate-149,
  .tablet\:hover\:-rotate-149:hover,
  .tablet\:focus\:-rotate-149:focus,
  .tablet\:group:hover .group-hover\:-rotate-149,
  .tablet\:group:focus-within .group-focus-within\:-rotate-149 {
    transform: rotate(-149deg);
  }
  .tablet\:-rotate-150,
  .tablet\:hover\:-rotate-150:hover,
  .tablet\:focus\:-rotate-150:focus,
  .tablet\:group:hover .group-hover\:-rotate-150,
  .tablet\:group:focus-within .group-focus-within\:-rotate-150 {
    transform: rotate(-150deg);
  }
  .tablet\:-rotate-151,
  .tablet\:hover\:-rotate-151:hover,
  .tablet\:focus\:-rotate-151:focus,
  .tablet\:group:hover .group-hover\:-rotate-151,
  .tablet\:group:focus-within .group-focus-within\:-rotate-151 {
    transform: rotate(-151deg);
  }
  .tablet\:-rotate-152,
  .tablet\:hover\:-rotate-152:hover,
  .tablet\:focus\:-rotate-152:focus,
  .tablet\:group:hover .group-hover\:-rotate-152,
  .tablet\:group:focus-within .group-focus-within\:-rotate-152 {
    transform: rotate(-152deg);
  }
  .tablet\:-rotate-153,
  .tablet\:hover\:-rotate-153:hover,
  .tablet\:focus\:-rotate-153:focus,
  .tablet\:group:hover .group-hover\:-rotate-153,
  .tablet\:group:focus-within .group-focus-within\:-rotate-153 {
    transform: rotate(-153deg);
  }
  .tablet\:-rotate-154,
  .tablet\:hover\:-rotate-154:hover,
  .tablet\:focus\:-rotate-154:focus,
  .tablet\:group:hover .group-hover\:-rotate-154,
  .tablet\:group:focus-within .group-focus-within\:-rotate-154 {
    transform: rotate(-154deg);
  }
  .tablet\:-rotate-155,
  .tablet\:hover\:-rotate-155:hover,
  .tablet\:focus\:-rotate-155:focus,
  .tablet\:group:hover .group-hover\:-rotate-155,
  .tablet\:group:focus-within .group-focus-within\:-rotate-155 {
    transform: rotate(-155deg);
  }
  .tablet\:-rotate-156,
  .tablet\:hover\:-rotate-156:hover,
  .tablet\:focus\:-rotate-156:focus,
  .tablet\:group:hover .group-hover\:-rotate-156,
  .tablet\:group:focus-within .group-focus-within\:-rotate-156 {
    transform: rotate(-156deg);
  }
  .tablet\:-rotate-157,
  .tablet\:hover\:-rotate-157:hover,
  .tablet\:focus\:-rotate-157:focus,
  .tablet\:group:hover .group-hover\:-rotate-157,
  .tablet\:group:focus-within .group-focus-within\:-rotate-157 {
    transform: rotate(-157deg);
  }
  .tablet\:-rotate-158,
  .tablet\:hover\:-rotate-158:hover,
  .tablet\:focus\:-rotate-158:focus,
  .tablet\:group:hover .group-hover\:-rotate-158,
  .tablet\:group:focus-within .group-focus-within\:-rotate-158 {
    transform: rotate(-158deg);
  }
  .tablet\:-rotate-159,
  .tablet\:hover\:-rotate-159:hover,
  .tablet\:focus\:-rotate-159:focus,
  .tablet\:group:hover .group-hover\:-rotate-159,
  .tablet\:group:focus-within .group-focus-within\:-rotate-159 {
    transform: rotate(-159deg);
  }
  .tablet\:-rotate-160,
  .tablet\:hover\:-rotate-160:hover,
  .tablet\:focus\:-rotate-160:focus,
  .tablet\:group:hover .group-hover\:-rotate-160,
  .tablet\:group:focus-within .group-focus-within\:-rotate-160 {
    transform: rotate(-160deg);
  }
  .tablet\:-rotate-161,
  .tablet\:hover\:-rotate-161:hover,
  .tablet\:focus\:-rotate-161:focus,
  .tablet\:group:hover .group-hover\:-rotate-161,
  .tablet\:group:focus-within .group-focus-within\:-rotate-161 {
    transform: rotate(-161deg);
  }
  .tablet\:-rotate-162,
  .tablet\:hover\:-rotate-162:hover,
  .tablet\:focus\:-rotate-162:focus,
  .tablet\:group:hover .group-hover\:-rotate-162,
  .tablet\:group:focus-within .group-focus-within\:-rotate-162 {
    transform: rotate(-162deg);
  }
  .tablet\:-rotate-163,
  .tablet\:hover\:-rotate-163:hover,
  .tablet\:focus\:-rotate-163:focus,
  .tablet\:group:hover .group-hover\:-rotate-163,
  .tablet\:group:focus-within .group-focus-within\:-rotate-163 {
    transform: rotate(-163deg);
  }
  .tablet\:-rotate-164,
  .tablet\:hover\:-rotate-164:hover,
  .tablet\:focus\:-rotate-164:focus,
  .tablet\:group:hover .group-hover\:-rotate-164,
  .tablet\:group:focus-within .group-focus-within\:-rotate-164 {
    transform: rotate(-164deg);
  }
  .tablet\:-rotate-165,
  .tablet\:hover\:-rotate-165:hover,
  .tablet\:focus\:-rotate-165:focus,
  .tablet\:group:hover .group-hover\:-rotate-165,
  .tablet\:group:focus-within .group-focus-within\:-rotate-165 {
    transform: rotate(-165deg);
  }
  .tablet\:-rotate-166,
  .tablet\:hover\:-rotate-166:hover,
  .tablet\:focus\:-rotate-166:focus,
  .tablet\:group:hover .group-hover\:-rotate-166,
  .tablet\:group:focus-within .group-focus-within\:-rotate-166 {
    transform: rotate(-166deg);
  }
  .tablet\:-rotate-167,
  .tablet\:hover\:-rotate-167:hover,
  .tablet\:focus\:-rotate-167:focus,
  .tablet\:group:hover .group-hover\:-rotate-167,
  .tablet\:group:focus-within .group-focus-within\:-rotate-167 {
    transform: rotate(-167deg);
  }
  .tablet\:-rotate-168,
  .tablet\:hover\:-rotate-168:hover,
  .tablet\:focus\:-rotate-168:focus,
  .tablet\:group:hover .group-hover\:-rotate-168,
  .tablet\:group:focus-within .group-focus-within\:-rotate-168 {
    transform: rotate(-168deg);
  }
  .tablet\:-rotate-169,
  .tablet\:hover\:-rotate-169:hover,
  .tablet\:focus\:-rotate-169:focus,
  .tablet\:group:hover .group-hover\:-rotate-169,
  .tablet\:group:focus-within .group-focus-within\:-rotate-169 {
    transform: rotate(-169deg);
  }
  .tablet\:-rotate-170,
  .tablet\:hover\:-rotate-170:hover,
  .tablet\:focus\:-rotate-170:focus,
  .tablet\:group:hover .group-hover\:-rotate-170,
  .tablet\:group:focus-within .group-focus-within\:-rotate-170 {
    transform: rotate(-170deg);
  }
  .tablet\:-rotate-171,
  .tablet\:hover\:-rotate-171:hover,
  .tablet\:focus\:-rotate-171:focus,
  .tablet\:group:hover .group-hover\:-rotate-171,
  .tablet\:group:focus-within .group-focus-within\:-rotate-171 {
    transform: rotate(-171deg);
  }
  .tablet\:-rotate-172,
  .tablet\:hover\:-rotate-172:hover,
  .tablet\:focus\:-rotate-172:focus,
  .tablet\:group:hover .group-hover\:-rotate-172,
  .tablet\:group:focus-within .group-focus-within\:-rotate-172 {
    transform: rotate(-172deg);
  }
  .tablet\:-rotate-173,
  .tablet\:hover\:-rotate-173:hover,
  .tablet\:focus\:-rotate-173:focus,
  .tablet\:group:hover .group-hover\:-rotate-173,
  .tablet\:group:focus-within .group-focus-within\:-rotate-173 {
    transform: rotate(-173deg);
  }
  .tablet\:-rotate-174,
  .tablet\:hover\:-rotate-174:hover,
  .tablet\:focus\:-rotate-174:focus,
  .tablet\:group:hover .group-hover\:-rotate-174,
  .tablet\:group:focus-within .group-focus-within\:-rotate-174 {
    transform: rotate(-174deg);
  }
  .tablet\:-rotate-175,
  .tablet\:hover\:-rotate-175:hover,
  .tablet\:focus\:-rotate-175:focus,
  .tablet\:group:hover .group-hover\:-rotate-175,
  .tablet\:group:focus-within .group-focus-within\:-rotate-175 {
    transform: rotate(-175deg);
  }
  .tablet\:-rotate-176,
  .tablet\:hover\:-rotate-176:hover,
  .tablet\:focus\:-rotate-176:focus,
  .tablet\:group:hover .group-hover\:-rotate-176,
  .tablet\:group:focus-within .group-focus-within\:-rotate-176 {
    transform: rotate(-176deg);
  }
  .tablet\:-rotate-177,
  .tablet\:hover\:-rotate-177:hover,
  .tablet\:focus\:-rotate-177:focus,
  .tablet\:group:hover .group-hover\:-rotate-177,
  .tablet\:group:focus-within .group-focus-within\:-rotate-177 {
    transform: rotate(-177deg);
  }
  .tablet\:-rotate-178,
  .tablet\:hover\:-rotate-178:hover,
  .tablet\:focus\:-rotate-178:focus,
  .tablet\:group:hover .group-hover\:-rotate-178,
  .tablet\:group:focus-within .group-focus-within\:-rotate-178 {
    transform: rotate(-178deg);
  }
  .tablet\:-rotate-179,
  .tablet\:hover\:-rotate-179:hover,
  .tablet\:focus\:-rotate-179:focus,
  .tablet\:group:hover .group-hover\:-rotate-179,
  .tablet\:group:focus-within .group-focus-within\:-rotate-179 {
    transform: rotate(-179deg);
  }
  .tablet\:-rotate-180,
  .tablet\:hover\:-rotate-180:hover,
  .tablet\:focus\:-rotate-180:focus,
  .tablet\:group:hover .group-hover\:-rotate-180,
  .tablet\:group:focus-within .group-focus-within\:-rotate-180 {
    transform: rotate(-180deg);
  }
  .tablet\:-rotate-181,
  .tablet\:hover\:-rotate-181:hover,
  .tablet\:focus\:-rotate-181:focus,
  .tablet\:group:hover .group-hover\:-rotate-181,
  .tablet\:group:focus-within .group-focus-within\:-rotate-181 {
    transform: rotate(-181deg);
  }
  .tablet\:-rotate-182,
  .tablet\:hover\:-rotate-182:hover,
  .tablet\:focus\:-rotate-182:focus,
  .tablet\:group:hover .group-hover\:-rotate-182,
  .tablet\:group:focus-within .group-focus-within\:-rotate-182 {
    transform: rotate(-182deg);
  }
  .tablet\:-rotate-183,
  .tablet\:hover\:-rotate-183:hover,
  .tablet\:focus\:-rotate-183:focus,
  .tablet\:group:hover .group-hover\:-rotate-183,
  .tablet\:group:focus-within .group-focus-within\:-rotate-183 {
    transform: rotate(-183deg);
  }
  .tablet\:-rotate-184,
  .tablet\:hover\:-rotate-184:hover,
  .tablet\:focus\:-rotate-184:focus,
  .tablet\:group:hover .group-hover\:-rotate-184,
  .tablet\:group:focus-within .group-focus-within\:-rotate-184 {
    transform: rotate(-184deg);
  }
  .tablet\:-rotate-185,
  .tablet\:hover\:-rotate-185:hover,
  .tablet\:focus\:-rotate-185:focus,
  .tablet\:group:hover .group-hover\:-rotate-185,
  .tablet\:group:focus-within .group-focus-within\:-rotate-185 {
    transform: rotate(-185deg);
  }
  .tablet\:-rotate-186,
  .tablet\:hover\:-rotate-186:hover,
  .tablet\:focus\:-rotate-186:focus,
  .tablet\:group:hover .group-hover\:-rotate-186,
  .tablet\:group:focus-within .group-focus-within\:-rotate-186 {
    transform: rotate(-186deg);
  }
  .tablet\:-rotate-187,
  .tablet\:hover\:-rotate-187:hover,
  .tablet\:focus\:-rotate-187:focus,
  .tablet\:group:hover .group-hover\:-rotate-187,
  .tablet\:group:focus-within .group-focus-within\:-rotate-187 {
    transform: rotate(-187deg);
  }
  .tablet\:-rotate-188,
  .tablet\:hover\:-rotate-188:hover,
  .tablet\:focus\:-rotate-188:focus,
  .tablet\:group:hover .group-hover\:-rotate-188,
  .tablet\:group:focus-within .group-focus-within\:-rotate-188 {
    transform: rotate(-188deg);
  }
  .tablet\:-rotate-189,
  .tablet\:hover\:-rotate-189:hover,
  .tablet\:focus\:-rotate-189:focus,
  .tablet\:group:hover .group-hover\:-rotate-189,
  .tablet\:group:focus-within .group-focus-within\:-rotate-189 {
    transform: rotate(-189deg);
  }
  .tablet\:-rotate-190,
  .tablet\:hover\:-rotate-190:hover,
  .tablet\:focus\:-rotate-190:focus,
  .tablet\:group:hover .group-hover\:-rotate-190,
  .tablet\:group:focus-within .group-focus-within\:-rotate-190 {
    transform: rotate(-190deg);
  }
  .tablet\:-rotate-191,
  .tablet\:hover\:-rotate-191:hover,
  .tablet\:focus\:-rotate-191:focus,
  .tablet\:group:hover .group-hover\:-rotate-191,
  .tablet\:group:focus-within .group-focus-within\:-rotate-191 {
    transform: rotate(-191deg);
  }
  .tablet\:-rotate-192,
  .tablet\:hover\:-rotate-192:hover,
  .tablet\:focus\:-rotate-192:focus,
  .tablet\:group:hover .group-hover\:-rotate-192,
  .tablet\:group:focus-within .group-focus-within\:-rotate-192 {
    transform: rotate(-192deg);
  }
  .tablet\:-rotate-193,
  .tablet\:hover\:-rotate-193:hover,
  .tablet\:focus\:-rotate-193:focus,
  .tablet\:group:hover .group-hover\:-rotate-193,
  .tablet\:group:focus-within .group-focus-within\:-rotate-193 {
    transform: rotate(-193deg);
  }
  .tablet\:-rotate-194,
  .tablet\:hover\:-rotate-194:hover,
  .tablet\:focus\:-rotate-194:focus,
  .tablet\:group:hover .group-hover\:-rotate-194,
  .tablet\:group:focus-within .group-focus-within\:-rotate-194 {
    transform: rotate(-194deg);
  }
  .tablet\:-rotate-195,
  .tablet\:hover\:-rotate-195:hover,
  .tablet\:focus\:-rotate-195:focus,
  .tablet\:group:hover .group-hover\:-rotate-195,
  .tablet\:group:focus-within .group-focus-within\:-rotate-195 {
    transform: rotate(-195deg);
  }
  .tablet\:-rotate-196,
  .tablet\:hover\:-rotate-196:hover,
  .tablet\:focus\:-rotate-196:focus,
  .tablet\:group:hover .group-hover\:-rotate-196,
  .tablet\:group:focus-within .group-focus-within\:-rotate-196 {
    transform: rotate(-196deg);
  }
  .tablet\:-rotate-197,
  .tablet\:hover\:-rotate-197:hover,
  .tablet\:focus\:-rotate-197:focus,
  .tablet\:group:hover .group-hover\:-rotate-197,
  .tablet\:group:focus-within .group-focus-within\:-rotate-197 {
    transform: rotate(-197deg);
  }
  .tablet\:-rotate-198,
  .tablet\:hover\:-rotate-198:hover,
  .tablet\:focus\:-rotate-198:focus,
  .tablet\:group:hover .group-hover\:-rotate-198,
  .tablet\:group:focus-within .group-focus-within\:-rotate-198 {
    transform: rotate(-198deg);
  }
  .tablet\:-rotate-199,
  .tablet\:hover\:-rotate-199:hover,
  .tablet\:focus\:-rotate-199:focus,
  .tablet\:group:hover .group-hover\:-rotate-199,
  .tablet\:group:focus-within .group-focus-within\:-rotate-199 {
    transform: rotate(-199deg);
  }
  .tablet\:-rotate-200,
  .tablet\:hover\:-rotate-200:hover,
  .tablet\:focus\:-rotate-200:focus,
  .tablet\:group:hover .group-hover\:-rotate-200,
  .tablet\:group:focus-within .group-focus-within\:-rotate-200 {
    transform: rotate(-200deg);
  }
  .tablet\:-rotate-201,
  .tablet\:hover\:-rotate-201:hover,
  .tablet\:focus\:-rotate-201:focus,
  .tablet\:group:hover .group-hover\:-rotate-201,
  .tablet\:group:focus-within .group-focus-within\:-rotate-201 {
    transform: rotate(-201deg);
  }
  .tablet\:-rotate-202,
  .tablet\:hover\:-rotate-202:hover,
  .tablet\:focus\:-rotate-202:focus,
  .tablet\:group:hover .group-hover\:-rotate-202,
  .tablet\:group:focus-within .group-focus-within\:-rotate-202 {
    transform: rotate(-202deg);
  }
  .tablet\:-rotate-203,
  .tablet\:hover\:-rotate-203:hover,
  .tablet\:focus\:-rotate-203:focus,
  .tablet\:group:hover .group-hover\:-rotate-203,
  .tablet\:group:focus-within .group-focus-within\:-rotate-203 {
    transform: rotate(-203deg);
  }
  .tablet\:-rotate-204,
  .tablet\:hover\:-rotate-204:hover,
  .tablet\:focus\:-rotate-204:focus,
  .tablet\:group:hover .group-hover\:-rotate-204,
  .tablet\:group:focus-within .group-focus-within\:-rotate-204 {
    transform: rotate(-204deg);
  }
  .tablet\:-rotate-205,
  .tablet\:hover\:-rotate-205:hover,
  .tablet\:focus\:-rotate-205:focus,
  .tablet\:group:hover .group-hover\:-rotate-205,
  .tablet\:group:focus-within .group-focus-within\:-rotate-205 {
    transform: rotate(-205deg);
  }
  .tablet\:-rotate-206,
  .tablet\:hover\:-rotate-206:hover,
  .tablet\:focus\:-rotate-206:focus,
  .tablet\:group:hover .group-hover\:-rotate-206,
  .tablet\:group:focus-within .group-focus-within\:-rotate-206 {
    transform: rotate(-206deg);
  }
  .tablet\:-rotate-207,
  .tablet\:hover\:-rotate-207:hover,
  .tablet\:focus\:-rotate-207:focus,
  .tablet\:group:hover .group-hover\:-rotate-207,
  .tablet\:group:focus-within .group-focus-within\:-rotate-207 {
    transform: rotate(-207deg);
  }
  .tablet\:-rotate-208,
  .tablet\:hover\:-rotate-208:hover,
  .tablet\:focus\:-rotate-208:focus,
  .tablet\:group:hover .group-hover\:-rotate-208,
  .tablet\:group:focus-within .group-focus-within\:-rotate-208 {
    transform: rotate(-208deg);
  }
  .tablet\:-rotate-209,
  .tablet\:hover\:-rotate-209:hover,
  .tablet\:focus\:-rotate-209:focus,
  .tablet\:group:hover .group-hover\:-rotate-209,
  .tablet\:group:focus-within .group-focus-within\:-rotate-209 {
    transform: rotate(-209deg);
  }
  .tablet\:-rotate-210,
  .tablet\:hover\:-rotate-210:hover,
  .tablet\:focus\:-rotate-210:focus,
  .tablet\:group:hover .group-hover\:-rotate-210,
  .tablet\:group:focus-within .group-focus-within\:-rotate-210 {
    transform: rotate(-210deg);
  }
  .tablet\:-rotate-211,
  .tablet\:hover\:-rotate-211:hover,
  .tablet\:focus\:-rotate-211:focus,
  .tablet\:group:hover .group-hover\:-rotate-211,
  .tablet\:group:focus-within .group-focus-within\:-rotate-211 {
    transform: rotate(-211deg);
  }
  .tablet\:-rotate-212,
  .tablet\:hover\:-rotate-212:hover,
  .tablet\:focus\:-rotate-212:focus,
  .tablet\:group:hover .group-hover\:-rotate-212,
  .tablet\:group:focus-within .group-focus-within\:-rotate-212 {
    transform: rotate(-212deg);
  }
  .tablet\:-rotate-213,
  .tablet\:hover\:-rotate-213:hover,
  .tablet\:focus\:-rotate-213:focus,
  .tablet\:group:hover .group-hover\:-rotate-213,
  .tablet\:group:focus-within .group-focus-within\:-rotate-213 {
    transform: rotate(-213deg);
  }
  .tablet\:-rotate-214,
  .tablet\:hover\:-rotate-214:hover,
  .tablet\:focus\:-rotate-214:focus,
  .tablet\:group:hover .group-hover\:-rotate-214,
  .tablet\:group:focus-within .group-focus-within\:-rotate-214 {
    transform: rotate(-214deg);
  }
  .tablet\:-rotate-215,
  .tablet\:hover\:-rotate-215:hover,
  .tablet\:focus\:-rotate-215:focus,
  .tablet\:group:hover .group-hover\:-rotate-215,
  .tablet\:group:focus-within .group-focus-within\:-rotate-215 {
    transform: rotate(-215deg);
  }
  .tablet\:-rotate-216,
  .tablet\:hover\:-rotate-216:hover,
  .tablet\:focus\:-rotate-216:focus,
  .tablet\:group:hover .group-hover\:-rotate-216,
  .tablet\:group:focus-within .group-focus-within\:-rotate-216 {
    transform: rotate(-216deg);
  }
  .tablet\:-rotate-217,
  .tablet\:hover\:-rotate-217:hover,
  .tablet\:focus\:-rotate-217:focus,
  .tablet\:group:hover .group-hover\:-rotate-217,
  .tablet\:group:focus-within .group-focus-within\:-rotate-217 {
    transform: rotate(-217deg);
  }
  .tablet\:-rotate-218,
  .tablet\:hover\:-rotate-218:hover,
  .tablet\:focus\:-rotate-218:focus,
  .tablet\:group:hover .group-hover\:-rotate-218,
  .tablet\:group:focus-within .group-focus-within\:-rotate-218 {
    transform: rotate(-218deg);
  }
  .tablet\:-rotate-219,
  .tablet\:hover\:-rotate-219:hover,
  .tablet\:focus\:-rotate-219:focus,
  .tablet\:group:hover .group-hover\:-rotate-219,
  .tablet\:group:focus-within .group-focus-within\:-rotate-219 {
    transform: rotate(-219deg);
  }
  .tablet\:-rotate-220,
  .tablet\:hover\:-rotate-220:hover,
  .tablet\:focus\:-rotate-220:focus,
  .tablet\:group:hover .group-hover\:-rotate-220,
  .tablet\:group:focus-within .group-focus-within\:-rotate-220 {
    transform: rotate(-220deg);
  }
  .tablet\:-rotate-221,
  .tablet\:hover\:-rotate-221:hover,
  .tablet\:focus\:-rotate-221:focus,
  .tablet\:group:hover .group-hover\:-rotate-221,
  .tablet\:group:focus-within .group-focus-within\:-rotate-221 {
    transform: rotate(-221deg);
  }
  .tablet\:-rotate-222,
  .tablet\:hover\:-rotate-222:hover,
  .tablet\:focus\:-rotate-222:focus,
  .tablet\:group:hover .group-hover\:-rotate-222,
  .tablet\:group:focus-within .group-focus-within\:-rotate-222 {
    transform: rotate(-222deg);
  }
  .tablet\:-rotate-223,
  .tablet\:hover\:-rotate-223:hover,
  .tablet\:focus\:-rotate-223:focus,
  .tablet\:group:hover .group-hover\:-rotate-223,
  .tablet\:group:focus-within .group-focus-within\:-rotate-223 {
    transform: rotate(-223deg);
  }
  .tablet\:-rotate-224,
  .tablet\:hover\:-rotate-224:hover,
  .tablet\:focus\:-rotate-224:focus,
  .tablet\:group:hover .group-hover\:-rotate-224,
  .tablet\:group:focus-within .group-focus-within\:-rotate-224 {
    transform: rotate(-224deg);
  }
  .tablet\:-rotate-225,
  .tablet\:hover\:-rotate-225:hover,
  .tablet\:focus\:-rotate-225:focus,
  .tablet\:group:hover .group-hover\:-rotate-225,
  .tablet\:group:focus-within .group-focus-within\:-rotate-225 {
    transform: rotate(-225deg);
  }
  .tablet\:-rotate-226,
  .tablet\:hover\:-rotate-226:hover,
  .tablet\:focus\:-rotate-226:focus,
  .tablet\:group:hover .group-hover\:-rotate-226,
  .tablet\:group:focus-within .group-focus-within\:-rotate-226 {
    transform: rotate(-226deg);
  }
  .tablet\:-rotate-227,
  .tablet\:hover\:-rotate-227:hover,
  .tablet\:focus\:-rotate-227:focus,
  .tablet\:group:hover .group-hover\:-rotate-227,
  .tablet\:group:focus-within .group-focus-within\:-rotate-227 {
    transform: rotate(-227deg);
  }
  .tablet\:-rotate-228,
  .tablet\:hover\:-rotate-228:hover,
  .tablet\:focus\:-rotate-228:focus,
  .tablet\:group:hover .group-hover\:-rotate-228,
  .tablet\:group:focus-within .group-focus-within\:-rotate-228 {
    transform: rotate(-228deg);
  }
  .tablet\:-rotate-229,
  .tablet\:hover\:-rotate-229:hover,
  .tablet\:focus\:-rotate-229:focus,
  .tablet\:group:hover .group-hover\:-rotate-229,
  .tablet\:group:focus-within .group-focus-within\:-rotate-229 {
    transform: rotate(-229deg);
  }
  .tablet\:-rotate-230,
  .tablet\:hover\:-rotate-230:hover,
  .tablet\:focus\:-rotate-230:focus,
  .tablet\:group:hover .group-hover\:-rotate-230,
  .tablet\:group:focus-within .group-focus-within\:-rotate-230 {
    transform: rotate(-230deg);
  }
  .tablet\:-rotate-231,
  .tablet\:hover\:-rotate-231:hover,
  .tablet\:focus\:-rotate-231:focus,
  .tablet\:group:hover .group-hover\:-rotate-231,
  .tablet\:group:focus-within .group-focus-within\:-rotate-231 {
    transform: rotate(-231deg);
  }
  .tablet\:-rotate-232,
  .tablet\:hover\:-rotate-232:hover,
  .tablet\:focus\:-rotate-232:focus,
  .tablet\:group:hover .group-hover\:-rotate-232,
  .tablet\:group:focus-within .group-focus-within\:-rotate-232 {
    transform: rotate(-232deg);
  }
  .tablet\:-rotate-233,
  .tablet\:hover\:-rotate-233:hover,
  .tablet\:focus\:-rotate-233:focus,
  .tablet\:group:hover .group-hover\:-rotate-233,
  .tablet\:group:focus-within .group-focus-within\:-rotate-233 {
    transform: rotate(-233deg);
  }
  .tablet\:-rotate-234,
  .tablet\:hover\:-rotate-234:hover,
  .tablet\:focus\:-rotate-234:focus,
  .tablet\:group:hover .group-hover\:-rotate-234,
  .tablet\:group:focus-within .group-focus-within\:-rotate-234 {
    transform: rotate(-234deg);
  }
  .tablet\:-rotate-235,
  .tablet\:hover\:-rotate-235:hover,
  .tablet\:focus\:-rotate-235:focus,
  .tablet\:group:hover .group-hover\:-rotate-235,
  .tablet\:group:focus-within .group-focus-within\:-rotate-235 {
    transform: rotate(-235deg);
  }
  .tablet\:-rotate-236,
  .tablet\:hover\:-rotate-236:hover,
  .tablet\:focus\:-rotate-236:focus,
  .tablet\:group:hover .group-hover\:-rotate-236,
  .tablet\:group:focus-within .group-focus-within\:-rotate-236 {
    transform: rotate(-236deg);
  }
  .tablet\:-rotate-237,
  .tablet\:hover\:-rotate-237:hover,
  .tablet\:focus\:-rotate-237:focus,
  .tablet\:group:hover .group-hover\:-rotate-237,
  .tablet\:group:focus-within .group-focus-within\:-rotate-237 {
    transform: rotate(-237deg);
  }
  .tablet\:-rotate-238,
  .tablet\:hover\:-rotate-238:hover,
  .tablet\:focus\:-rotate-238:focus,
  .tablet\:group:hover .group-hover\:-rotate-238,
  .tablet\:group:focus-within .group-focus-within\:-rotate-238 {
    transform: rotate(-238deg);
  }
  .tablet\:-rotate-239,
  .tablet\:hover\:-rotate-239:hover,
  .tablet\:focus\:-rotate-239:focus,
  .tablet\:group:hover .group-hover\:-rotate-239,
  .tablet\:group:focus-within .group-focus-within\:-rotate-239 {
    transform: rotate(-239deg);
  }
  .tablet\:-rotate-240,
  .tablet\:hover\:-rotate-240:hover,
  .tablet\:focus\:-rotate-240:focus,
  .tablet\:group:hover .group-hover\:-rotate-240,
  .tablet\:group:focus-within .group-focus-within\:-rotate-240 {
    transform: rotate(-240deg);
  }
  .tablet\:-rotate-241,
  .tablet\:hover\:-rotate-241:hover,
  .tablet\:focus\:-rotate-241:focus,
  .tablet\:group:hover .group-hover\:-rotate-241,
  .tablet\:group:focus-within .group-focus-within\:-rotate-241 {
    transform: rotate(-241deg);
  }
  .tablet\:-rotate-242,
  .tablet\:hover\:-rotate-242:hover,
  .tablet\:focus\:-rotate-242:focus,
  .tablet\:group:hover .group-hover\:-rotate-242,
  .tablet\:group:focus-within .group-focus-within\:-rotate-242 {
    transform: rotate(-242deg);
  }
  .tablet\:-rotate-243,
  .tablet\:hover\:-rotate-243:hover,
  .tablet\:focus\:-rotate-243:focus,
  .tablet\:group:hover .group-hover\:-rotate-243,
  .tablet\:group:focus-within .group-focus-within\:-rotate-243 {
    transform: rotate(-243deg);
  }
  .tablet\:-rotate-244,
  .tablet\:hover\:-rotate-244:hover,
  .tablet\:focus\:-rotate-244:focus,
  .tablet\:group:hover .group-hover\:-rotate-244,
  .tablet\:group:focus-within .group-focus-within\:-rotate-244 {
    transform: rotate(-244deg);
  }
  .tablet\:-rotate-245,
  .tablet\:hover\:-rotate-245:hover,
  .tablet\:focus\:-rotate-245:focus,
  .tablet\:group:hover .group-hover\:-rotate-245,
  .tablet\:group:focus-within .group-focus-within\:-rotate-245 {
    transform: rotate(-245deg);
  }
  .tablet\:-rotate-246,
  .tablet\:hover\:-rotate-246:hover,
  .tablet\:focus\:-rotate-246:focus,
  .tablet\:group:hover .group-hover\:-rotate-246,
  .tablet\:group:focus-within .group-focus-within\:-rotate-246 {
    transform: rotate(-246deg);
  }
  .tablet\:-rotate-247,
  .tablet\:hover\:-rotate-247:hover,
  .tablet\:focus\:-rotate-247:focus,
  .tablet\:group:hover .group-hover\:-rotate-247,
  .tablet\:group:focus-within .group-focus-within\:-rotate-247 {
    transform: rotate(-247deg);
  }
  .tablet\:-rotate-248,
  .tablet\:hover\:-rotate-248:hover,
  .tablet\:focus\:-rotate-248:focus,
  .tablet\:group:hover .group-hover\:-rotate-248,
  .tablet\:group:focus-within .group-focus-within\:-rotate-248 {
    transform: rotate(-248deg);
  }
  .tablet\:-rotate-249,
  .tablet\:hover\:-rotate-249:hover,
  .tablet\:focus\:-rotate-249:focus,
  .tablet\:group:hover .group-hover\:-rotate-249,
  .tablet\:group:focus-within .group-focus-within\:-rotate-249 {
    transform: rotate(-249deg);
  }
  .tablet\:-rotate-250,
  .tablet\:hover\:-rotate-250:hover,
  .tablet\:focus\:-rotate-250:focus,
  .tablet\:group:hover .group-hover\:-rotate-250,
  .tablet\:group:focus-within .group-focus-within\:-rotate-250 {
    transform: rotate(-250deg);
  }
  .tablet\:-rotate-251,
  .tablet\:hover\:-rotate-251:hover,
  .tablet\:focus\:-rotate-251:focus,
  .tablet\:group:hover .group-hover\:-rotate-251,
  .tablet\:group:focus-within .group-focus-within\:-rotate-251 {
    transform: rotate(-251deg);
  }
  .tablet\:-rotate-252,
  .tablet\:hover\:-rotate-252:hover,
  .tablet\:focus\:-rotate-252:focus,
  .tablet\:group:hover .group-hover\:-rotate-252,
  .tablet\:group:focus-within .group-focus-within\:-rotate-252 {
    transform: rotate(-252deg);
  }
  .tablet\:-rotate-253,
  .tablet\:hover\:-rotate-253:hover,
  .tablet\:focus\:-rotate-253:focus,
  .tablet\:group:hover .group-hover\:-rotate-253,
  .tablet\:group:focus-within .group-focus-within\:-rotate-253 {
    transform: rotate(-253deg);
  }
  .tablet\:-rotate-254,
  .tablet\:hover\:-rotate-254:hover,
  .tablet\:focus\:-rotate-254:focus,
  .tablet\:group:hover .group-hover\:-rotate-254,
  .tablet\:group:focus-within .group-focus-within\:-rotate-254 {
    transform: rotate(-254deg);
  }
  .tablet\:-rotate-255,
  .tablet\:hover\:-rotate-255:hover,
  .tablet\:focus\:-rotate-255:focus,
  .tablet\:group:hover .group-hover\:-rotate-255,
  .tablet\:group:focus-within .group-focus-within\:-rotate-255 {
    transform: rotate(-255deg);
  }
  .tablet\:-rotate-256,
  .tablet\:hover\:-rotate-256:hover,
  .tablet\:focus\:-rotate-256:focus,
  .tablet\:group:hover .group-hover\:-rotate-256,
  .tablet\:group:focus-within .group-focus-within\:-rotate-256 {
    transform: rotate(-256deg);
  }
  .tablet\:-rotate-257,
  .tablet\:hover\:-rotate-257:hover,
  .tablet\:focus\:-rotate-257:focus,
  .tablet\:group:hover .group-hover\:-rotate-257,
  .tablet\:group:focus-within .group-focus-within\:-rotate-257 {
    transform: rotate(-257deg);
  }
  .tablet\:-rotate-258,
  .tablet\:hover\:-rotate-258:hover,
  .tablet\:focus\:-rotate-258:focus,
  .tablet\:group:hover .group-hover\:-rotate-258,
  .tablet\:group:focus-within .group-focus-within\:-rotate-258 {
    transform: rotate(-258deg);
  }
  .tablet\:-rotate-259,
  .tablet\:hover\:-rotate-259:hover,
  .tablet\:focus\:-rotate-259:focus,
  .tablet\:group:hover .group-hover\:-rotate-259,
  .tablet\:group:focus-within .group-focus-within\:-rotate-259 {
    transform: rotate(-259deg);
  }
  .tablet\:-rotate-260,
  .tablet\:hover\:-rotate-260:hover,
  .tablet\:focus\:-rotate-260:focus,
  .tablet\:group:hover .group-hover\:-rotate-260,
  .tablet\:group:focus-within .group-focus-within\:-rotate-260 {
    transform: rotate(-260deg);
  }
  .tablet\:-rotate-261,
  .tablet\:hover\:-rotate-261:hover,
  .tablet\:focus\:-rotate-261:focus,
  .tablet\:group:hover .group-hover\:-rotate-261,
  .tablet\:group:focus-within .group-focus-within\:-rotate-261 {
    transform: rotate(-261deg);
  }
  .tablet\:-rotate-262,
  .tablet\:hover\:-rotate-262:hover,
  .tablet\:focus\:-rotate-262:focus,
  .tablet\:group:hover .group-hover\:-rotate-262,
  .tablet\:group:focus-within .group-focus-within\:-rotate-262 {
    transform: rotate(-262deg);
  }
  .tablet\:-rotate-263,
  .tablet\:hover\:-rotate-263:hover,
  .tablet\:focus\:-rotate-263:focus,
  .tablet\:group:hover .group-hover\:-rotate-263,
  .tablet\:group:focus-within .group-focus-within\:-rotate-263 {
    transform: rotate(-263deg);
  }
  .tablet\:-rotate-264,
  .tablet\:hover\:-rotate-264:hover,
  .tablet\:focus\:-rotate-264:focus,
  .tablet\:group:hover .group-hover\:-rotate-264,
  .tablet\:group:focus-within .group-focus-within\:-rotate-264 {
    transform: rotate(-264deg);
  }
  .tablet\:-rotate-265,
  .tablet\:hover\:-rotate-265:hover,
  .tablet\:focus\:-rotate-265:focus,
  .tablet\:group:hover .group-hover\:-rotate-265,
  .tablet\:group:focus-within .group-focus-within\:-rotate-265 {
    transform: rotate(-265deg);
  }
  .tablet\:-rotate-266,
  .tablet\:hover\:-rotate-266:hover,
  .tablet\:focus\:-rotate-266:focus,
  .tablet\:group:hover .group-hover\:-rotate-266,
  .tablet\:group:focus-within .group-focus-within\:-rotate-266 {
    transform: rotate(-266deg);
  }
  .tablet\:-rotate-267,
  .tablet\:hover\:-rotate-267:hover,
  .tablet\:focus\:-rotate-267:focus,
  .tablet\:group:hover .group-hover\:-rotate-267,
  .tablet\:group:focus-within .group-focus-within\:-rotate-267 {
    transform: rotate(-267deg);
  }
  .tablet\:-rotate-268,
  .tablet\:hover\:-rotate-268:hover,
  .tablet\:focus\:-rotate-268:focus,
  .tablet\:group:hover .group-hover\:-rotate-268,
  .tablet\:group:focus-within .group-focus-within\:-rotate-268 {
    transform: rotate(-268deg);
  }
  .tablet\:-rotate-269,
  .tablet\:hover\:-rotate-269:hover,
  .tablet\:focus\:-rotate-269:focus,
  .tablet\:group:hover .group-hover\:-rotate-269,
  .tablet\:group:focus-within .group-focus-within\:-rotate-269 {
    transform: rotate(-269deg);
  }
  .tablet\:-rotate-270,
  .tablet\:hover\:-rotate-270:hover,
  .tablet\:focus\:-rotate-270:focus,
  .tablet\:group:hover .group-hover\:-rotate-270,
  .tablet\:group:focus-within .group-focus-within\:-rotate-270 {
    transform: rotate(-270deg);
  }
  .tablet\:-rotate-271,
  .tablet\:hover\:-rotate-271:hover,
  .tablet\:focus\:-rotate-271:focus,
  .tablet\:group:hover .group-hover\:-rotate-271,
  .tablet\:group:focus-within .group-focus-within\:-rotate-271 {
    transform: rotate(-271deg);
  }
  .tablet\:-rotate-272,
  .tablet\:hover\:-rotate-272:hover,
  .tablet\:focus\:-rotate-272:focus,
  .tablet\:group:hover .group-hover\:-rotate-272,
  .tablet\:group:focus-within .group-focus-within\:-rotate-272 {
    transform: rotate(-272deg);
  }
  .tablet\:-rotate-273,
  .tablet\:hover\:-rotate-273:hover,
  .tablet\:focus\:-rotate-273:focus,
  .tablet\:group:hover .group-hover\:-rotate-273,
  .tablet\:group:focus-within .group-focus-within\:-rotate-273 {
    transform: rotate(-273deg);
  }
  .tablet\:-rotate-274,
  .tablet\:hover\:-rotate-274:hover,
  .tablet\:focus\:-rotate-274:focus,
  .tablet\:group:hover .group-hover\:-rotate-274,
  .tablet\:group:focus-within .group-focus-within\:-rotate-274 {
    transform: rotate(-274deg);
  }
  .tablet\:-rotate-275,
  .tablet\:hover\:-rotate-275:hover,
  .tablet\:focus\:-rotate-275:focus,
  .tablet\:group:hover .group-hover\:-rotate-275,
  .tablet\:group:focus-within .group-focus-within\:-rotate-275 {
    transform: rotate(-275deg);
  }
  .tablet\:-rotate-276,
  .tablet\:hover\:-rotate-276:hover,
  .tablet\:focus\:-rotate-276:focus,
  .tablet\:group:hover .group-hover\:-rotate-276,
  .tablet\:group:focus-within .group-focus-within\:-rotate-276 {
    transform: rotate(-276deg);
  }
  .tablet\:-rotate-277,
  .tablet\:hover\:-rotate-277:hover,
  .tablet\:focus\:-rotate-277:focus,
  .tablet\:group:hover .group-hover\:-rotate-277,
  .tablet\:group:focus-within .group-focus-within\:-rotate-277 {
    transform: rotate(-277deg);
  }
  .tablet\:-rotate-278,
  .tablet\:hover\:-rotate-278:hover,
  .tablet\:focus\:-rotate-278:focus,
  .tablet\:group:hover .group-hover\:-rotate-278,
  .tablet\:group:focus-within .group-focus-within\:-rotate-278 {
    transform: rotate(-278deg);
  }
  .tablet\:-rotate-279,
  .tablet\:hover\:-rotate-279:hover,
  .tablet\:focus\:-rotate-279:focus,
  .tablet\:group:hover .group-hover\:-rotate-279,
  .tablet\:group:focus-within .group-focus-within\:-rotate-279 {
    transform: rotate(-279deg);
  }
  .tablet\:-rotate-280,
  .tablet\:hover\:-rotate-280:hover,
  .tablet\:focus\:-rotate-280:focus,
  .tablet\:group:hover .group-hover\:-rotate-280,
  .tablet\:group:focus-within .group-focus-within\:-rotate-280 {
    transform: rotate(-280deg);
  }
  .tablet\:-rotate-281,
  .tablet\:hover\:-rotate-281:hover,
  .tablet\:focus\:-rotate-281:focus,
  .tablet\:group:hover .group-hover\:-rotate-281,
  .tablet\:group:focus-within .group-focus-within\:-rotate-281 {
    transform: rotate(-281deg);
  }
  .tablet\:-rotate-282,
  .tablet\:hover\:-rotate-282:hover,
  .tablet\:focus\:-rotate-282:focus,
  .tablet\:group:hover .group-hover\:-rotate-282,
  .tablet\:group:focus-within .group-focus-within\:-rotate-282 {
    transform: rotate(-282deg);
  }
  .tablet\:-rotate-283,
  .tablet\:hover\:-rotate-283:hover,
  .tablet\:focus\:-rotate-283:focus,
  .tablet\:group:hover .group-hover\:-rotate-283,
  .tablet\:group:focus-within .group-focus-within\:-rotate-283 {
    transform: rotate(-283deg);
  }
  .tablet\:-rotate-284,
  .tablet\:hover\:-rotate-284:hover,
  .tablet\:focus\:-rotate-284:focus,
  .tablet\:group:hover .group-hover\:-rotate-284,
  .tablet\:group:focus-within .group-focus-within\:-rotate-284 {
    transform: rotate(-284deg);
  }
  .tablet\:-rotate-285,
  .tablet\:hover\:-rotate-285:hover,
  .tablet\:focus\:-rotate-285:focus,
  .tablet\:group:hover .group-hover\:-rotate-285,
  .tablet\:group:focus-within .group-focus-within\:-rotate-285 {
    transform: rotate(-285deg);
  }
  .tablet\:-rotate-286,
  .tablet\:hover\:-rotate-286:hover,
  .tablet\:focus\:-rotate-286:focus,
  .tablet\:group:hover .group-hover\:-rotate-286,
  .tablet\:group:focus-within .group-focus-within\:-rotate-286 {
    transform: rotate(-286deg);
  }
  .tablet\:-rotate-287,
  .tablet\:hover\:-rotate-287:hover,
  .tablet\:focus\:-rotate-287:focus,
  .tablet\:group:hover .group-hover\:-rotate-287,
  .tablet\:group:focus-within .group-focus-within\:-rotate-287 {
    transform: rotate(-287deg);
  }
  .tablet\:-rotate-288,
  .tablet\:hover\:-rotate-288:hover,
  .tablet\:focus\:-rotate-288:focus,
  .tablet\:group:hover .group-hover\:-rotate-288,
  .tablet\:group:focus-within .group-focus-within\:-rotate-288 {
    transform: rotate(-288deg);
  }
  .tablet\:-rotate-289,
  .tablet\:hover\:-rotate-289:hover,
  .tablet\:focus\:-rotate-289:focus,
  .tablet\:group:hover .group-hover\:-rotate-289,
  .tablet\:group:focus-within .group-focus-within\:-rotate-289 {
    transform: rotate(-289deg);
  }
  .tablet\:-rotate-290,
  .tablet\:hover\:-rotate-290:hover,
  .tablet\:focus\:-rotate-290:focus,
  .tablet\:group:hover .group-hover\:-rotate-290,
  .tablet\:group:focus-within .group-focus-within\:-rotate-290 {
    transform: rotate(-290deg);
  }
  .tablet\:-rotate-291,
  .tablet\:hover\:-rotate-291:hover,
  .tablet\:focus\:-rotate-291:focus,
  .tablet\:group:hover .group-hover\:-rotate-291,
  .tablet\:group:focus-within .group-focus-within\:-rotate-291 {
    transform: rotate(-291deg);
  }
  .tablet\:-rotate-292,
  .tablet\:hover\:-rotate-292:hover,
  .tablet\:focus\:-rotate-292:focus,
  .tablet\:group:hover .group-hover\:-rotate-292,
  .tablet\:group:focus-within .group-focus-within\:-rotate-292 {
    transform: rotate(-292deg);
  }
  .tablet\:-rotate-293,
  .tablet\:hover\:-rotate-293:hover,
  .tablet\:focus\:-rotate-293:focus,
  .tablet\:group:hover .group-hover\:-rotate-293,
  .tablet\:group:focus-within .group-focus-within\:-rotate-293 {
    transform: rotate(-293deg);
  }
  .tablet\:-rotate-294,
  .tablet\:hover\:-rotate-294:hover,
  .tablet\:focus\:-rotate-294:focus,
  .tablet\:group:hover .group-hover\:-rotate-294,
  .tablet\:group:focus-within .group-focus-within\:-rotate-294 {
    transform: rotate(-294deg);
  }
  .tablet\:-rotate-295,
  .tablet\:hover\:-rotate-295:hover,
  .tablet\:focus\:-rotate-295:focus,
  .tablet\:group:hover .group-hover\:-rotate-295,
  .tablet\:group:focus-within .group-focus-within\:-rotate-295 {
    transform: rotate(-295deg);
  }
  .tablet\:-rotate-296,
  .tablet\:hover\:-rotate-296:hover,
  .tablet\:focus\:-rotate-296:focus,
  .tablet\:group:hover .group-hover\:-rotate-296,
  .tablet\:group:focus-within .group-focus-within\:-rotate-296 {
    transform: rotate(-296deg);
  }
  .tablet\:-rotate-297,
  .tablet\:hover\:-rotate-297:hover,
  .tablet\:focus\:-rotate-297:focus,
  .tablet\:group:hover .group-hover\:-rotate-297,
  .tablet\:group:focus-within .group-focus-within\:-rotate-297 {
    transform: rotate(-297deg);
  }
  .tablet\:-rotate-298,
  .tablet\:hover\:-rotate-298:hover,
  .tablet\:focus\:-rotate-298:focus,
  .tablet\:group:hover .group-hover\:-rotate-298,
  .tablet\:group:focus-within .group-focus-within\:-rotate-298 {
    transform: rotate(-298deg);
  }
  .tablet\:-rotate-299,
  .tablet\:hover\:-rotate-299:hover,
  .tablet\:focus\:-rotate-299:focus,
  .tablet\:group:hover .group-hover\:-rotate-299,
  .tablet\:group:focus-within .group-focus-within\:-rotate-299 {
    transform: rotate(-299deg);
  }
  .tablet\:-rotate-300,
  .tablet\:hover\:-rotate-300:hover,
  .tablet\:focus\:-rotate-300:focus,
  .tablet\:group:hover .group-hover\:-rotate-300,
  .tablet\:group:focus-within .group-focus-within\:-rotate-300 {
    transform: rotate(-300deg);
  }
  .tablet\:-rotate-301,
  .tablet\:hover\:-rotate-301:hover,
  .tablet\:focus\:-rotate-301:focus,
  .tablet\:group:hover .group-hover\:-rotate-301,
  .tablet\:group:focus-within .group-focus-within\:-rotate-301 {
    transform: rotate(-301deg);
  }
  .tablet\:-rotate-302,
  .tablet\:hover\:-rotate-302:hover,
  .tablet\:focus\:-rotate-302:focus,
  .tablet\:group:hover .group-hover\:-rotate-302,
  .tablet\:group:focus-within .group-focus-within\:-rotate-302 {
    transform: rotate(-302deg);
  }
  .tablet\:-rotate-303,
  .tablet\:hover\:-rotate-303:hover,
  .tablet\:focus\:-rotate-303:focus,
  .tablet\:group:hover .group-hover\:-rotate-303,
  .tablet\:group:focus-within .group-focus-within\:-rotate-303 {
    transform: rotate(-303deg);
  }
  .tablet\:-rotate-304,
  .tablet\:hover\:-rotate-304:hover,
  .tablet\:focus\:-rotate-304:focus,
  .tablet\:group:hover .group-hover\:-rotate-304,
  .tablet\:group:focus-within .group-focus-within\:-rotate-304 {
    transform: rotate(-304deg);
  }
  .tablet\:-rotate-305,
  .tablet\:hover\:-rotate-305:hover,
  .tablet\:focus\:-rotate-305:focus,
  .tablet\:group:hover .group-hover\:-rotate-305,
  .tablet\:group:focus-within .group-focus-within\:-rotate-305 {
    transform: rotate(-305deg);
  }
  .tablet\:-rotate-306,
  .tablet\:hover\:-rotate-306:hover,
  .tablet\:focus\:-rotate-306:focus,
  .tablet\:group:hover .group-hover\:-rotate-306,
  .tablet\:group:focus-within .group-focus-within\:-rotate-306 {
    transform: rotate(-306deg);
  }
  .tablet\:-rotate-307,
  .tablet\:hover\:-rotate-307:hover,
  .tablet\:focus\:-rotate-307:focus,
  .tablet\:group:hover .group-hover\:-rotate-307,
  .tablet\:group:focus-within .group-focus-within\:-rotate-307 {
    transform: rotate(-307deg);
  }
  .tablet\:-rotate-308,
  .tablet\:hover\:-rotate-308:hover,
  .tablet\:focus\:-rotate-308:focus,
  .tablet\:group:hover .group-hover\:-rotate-308,
  .tablet\:group:focus-within .group-focus-within\:-rotate-308 {
    transform: rotate(-308deg);
  }
  .tablet\:-rotate-309,
  .tablet\:hover\:-rotate-309:hover,
  .tablet\:focus\:-rotate-309:focus,
  .tablet\:group:hover .group-hover\:-rotate-309,
  .tablet\:group:focus-within .group-focus-within\:-rotate-309 {
    transform: rotate(-309deg);
  }
  .tablet\:-rotate-310,
  .tablet\:hover\:-rotate-310:hover,
  .tablet\:focus\:-rotate-310:focus,
  .tablet\:group:hover .group-hover\:-rotate-310,
  .tablet\:group:focus-within .group-focus-within\:-rotate-310 {
    transform: rotate(-310deg);
  }
  .tablet\:-rotate-311,
  .tablet\:hover\:-rotate-311:hover,
  .tablet\:focus\:-rotate-311:focus,
  .tablet\:group:hover .group-hover\:-rotate-311,
  .tablet\:group:focus-within .group-focus-within\:-rotate-311 {
    transform: rotate(-311deg);
  }
  .tablet\:-rotate-312,
  .tablet\:hover\:-rotate-312:hover,
  .tablet\:focus\:-rotate-312:focus,
  .tablet\:group:hover .group-hover\:-rotate-312,
  .tablet\:group:focus-within .group-focus-within\:-rotate-312 {
    transform: rotate(-312deg);
  }
  .tablet\:-rotate-313,
  .tablet\:hover\:-rotate-313:hover,
  .tablet\:focus\:-rotate-313:focus,
  .tablet\:group:hover .group-hover\:-rotate-313,
  .tablet\:group:focus-within .group-focus-within\:-rotate-313 {
    transform: rotate(-313deg);
  }
  .tablet\:-rotate-314,
  .tablet\:hover\:-rotate-314:hover,
  .tablet\:focus\:-rotate-314:focus,
  .tablet\:group:hover .group-hover\:-rotate-314,
  .tablet\:group:focus-within .group-focus-within\:-rotate-314 {
    transform: rotate(-314deg);
  }
  .tablet\:-rotate-315,
  .tablet\:hover\:-rotate-315:hover,
  .tablet\:focus\:-rotate-315:focus,
  .tablet\:group:hover .group-hover\:-rotate-315,
  .tablet\:group:focus-within .group-focus-within\:-rotate-315 {
    transform: rotate(-315deg);
  }
  .tablet\:-rotate-316,
  .tablet\:hover\:-rotate-316:hover,
  .tablet\:focus\:-rotate-316:focus,
  .tablet\:group:hover .group-hover\:-rotate-316,
  .tablet\:group:focus-within .group-focus-within\:-rotate-316 {
    transform: rotate(-316deg);
  }
  .tablet\:-rotate-317,
  .tablet\:hover\:-rotate-317:hover,
  .tablet\:focus\:-rotate-317:focus,
  .tablet\:group:hover .group-hover\:-rotate-317,
  .tablet\:group:focus-within .group-focus-within\:-rotate-317 {
    transform: rotate(-317deg);
  }
  .tablet\:-rotate-318,
  .tablet\:hover\:-rotate-318:hover,
  .tablet\:focus\:-rotate-318:focus,
  .tablet\:group:hover .group-hover\:-rotate-318,
  .tablet\:group:focus-within .group-focus-within\:-rotate-318 {
    transform: rotate(-318deg);
  }
  .tablet\:-rotate-319,
  .tablet\:hover\:-rotate-319:hover,
  .tablet\:focus\:-rotate-319:focus,
  .tablet\:group:hover .group-hover\:-rotate-319,
  .tablet\:group:focus-within .group-focus-within\:-rotate-319 {
    transform: rotate(-319deg);
  }
  .tablet\:-rotate-320,
  .tablet\:hover\:-rotate-320:hover,
  .tablet\:focus\:-rotate-320:focus,
  .tablet\:group:hover .group-hover\:-rotate-320,
  .tablet\:group:focus-within .group-focus-within\:-rotate-320 {
    transform: rotate(-320deg);
  }
  .tablet\:-rotate-321,
  .tablet\:hover\:-rotate-321:hover,
  .tablet\:focus\:-rotate-321:focus,
  .tablet\:group:hover .group-hover\:-rotate-321,
  .tablet\:group:focus-within .group-focus-within\:-rotate-321 {
    transform: rotate(-321deg);
  }
  .tablet\:-rotate-322,
  .tablet\:hover\:-rotate-322:hover,
  .tablet\:focus\:-rotate-322:focus,
  .tablet\:group:hover .group-hover\:-rotate-322,
  .tablet\:group:focus-within .group-focus-within\:-rotate-322 {
    transform: rotate(-322deg);
  }
  .tablet\:-rotate-323,
  .tablet\:hover\:-rotate-323:hover,
  .tablet\:focus\:-rotate-323:focus,
  .tablet\:group:hover .group-hover\:-rotate-323,
  .tablet\:group:focus-within .group-focus-within\:-rotate-323 {
    transform: rotate(-323deg);
  }
  .tablet\:-rotate-324,
  .tablet\:hover\:-rotate-324:hover,
  .tablet\:focus\:-rotate-324:focus,
  .tablet\:group:hover .group-hover\:-rotate-324,
  .tablet\:group:focus-within .group-focus-within\:-rotate-324 {
    transform: rotate(-324deg);
  }
  .tablet\:-rotate-325,
  .tablet\:hover\:-rotate-325:hover,
  .tablet\:focus\:-rotate-325:focus,
  .tablet\:group:hover .group-hover\:-rotate-325,
  .tablet\:group:focus-within .group-focus-within\:-rotate-325 {
    transform: rotate(-325deg);
  }
  .tablet\:-rotate-326,
  .tablet\:hover\:-rotate-326:hover,
  .tablet\:focus\:-rotate-326:focus,
  .tablet\:group:hover .group-hover\:-rotate-326,
  .tablet\:group:focus-within .group-focus-within\:-rotate-326 {
    transform: rotate(-326deg);
  }
  .tablet\:-rotate-327,
  .tablet\:hover\:-rotate-327:hover,
  .tablet\:focus\:-rotate-327:focus,
  .tablet\:group:hover .group-hover\:-rotate-327,
  .tablet\:group:focus-within .group-focus-within\:-rotate-327 {
    transform: rotate(-327deg);
  }
  .tablet\:-rotate-328,
  .tablet\:hover\:-rotate-328:hover,
  .tablet\:focus\:-rotate-328:focus,
  .tablet\:group:hover .group-hover\:-rotate-328,
  .tablet\:group:focus-within .group-focus-within\:-rotate-328 {
    transform: rotate(-328deg);
  }
  .tablet\:-rotate-329,
  .tablet\:hover\:-rotate-329:hover,
  .tablet\:focus\:-rotate-329:focus,
  .tablet\:group:hover .group-hover\:-rotate-329,
  .tablet\:group:focus-within .group-focus-within\:-rotate-329 {
    transform: rotate(-329deg);
  }
  .tablet\:-rotate-330,
  .tablet\:hover\:-rotate-330:hover,
  .tablet\:focus\:-rotate-330:focus,
  .tablet\:group:hover .group-hover\:-rotate-330,
  .tablet\:group:focus-within .group-focus-within\:-rotate-330 {
    transform: rotate(-330deg);
  }
  .tablet\:-rotate-331,
  .tablet\:hover\:-rotate-331:hover,
  .tablet\:focus\:-rotate-331:focus,
  .tablet\:group:hover .group-hover\:-rotate-331,
  .tablet\:group:focus-within .group-focus-within\:-rotate-331 {
    transform: rotate(-331deg);
  }
  .tablet\:-rotate-332,
  .tablet\:hover\:-rotate-332:hover,
  .tablet\:focus\:-rotate-332:focus,
  .tablet\:group:hover .group-hover\:-rotate-332,
  .tablet\:group:focus-within .group-focus-within\:-rotate-332 {
    transform: rotate(-332deg);
  }
  .tablet\:-rotate-333,
  .tablet\:hover\:-rotate-333:hover,
  .tablet\:focus\:-rotate-333:focus,
  .tablet\:group:hover .group-hover\:-rotate-333,
  .tablet\:group:focus-within .group-focus-within\:-rotate-333 {
    transform: rotate(-333deg);
  }
  .tablet\:-rotate-334,
  .tablet\:hover\:-rotate-334:hover,
  .tablet\:focus\:-rotate-334:focus,
  .tablet\:group:hover .group-hover\:-rotate-334,
  .tablet\:group:focus-within .group-focus-within\:-rotate-334 {
    transform: rotate(-334deg);
  }
  .tablet\:-rotate-335,
  .tablet\:hover\:-rotate-335:hover,
  .tablet\:focus\:-rotate-335:focus,
  .tablet\:group:hover .group-hover\:-rotate-335,
  .tablet\:group:focus-within .group-focus-within\:-rotate-335 {
    transform: rotate(-335deg);
  }
  .tablet\:-rotate-336,
  .tablet\:hover\:-rotate-336:hover,
  .tablet\:focus\:-rotate-336:focus,
  .tablet\:group:hover .group-hover\:-rotate-336,
  .tablet\:group:focus-within .group-focus-within\:-rotate-336 {
    transform: rotate(-336deg);
  }
  .tablet\:-rotate-337,
  .tablet\:hover\:-rotate-337:hover,
  .tablet\:focus\:-rotate-337:focus,
  .tablet\:group:hover .group-hover\:-rotate-337,
  .tablet\:group:focus-within .group-focus-within\:-rotate-337 {
    transform: rotate(-337deg);
  }
  .tablet\:-rotate-338,
  .tablet\:hover\:-rotate-338:hover,
  .tablet\:focus\:-rotate-338:focus,
  .tablet\:group:hover .group-hover\:-rotate-338,
  .tablet\:group:focus-within .group-focus-within\:-rotate-338 {
    transform: rotate(-338deg);
  }
  .tablet\:-rotate-339,
  .tablet\:hover\:-rotate-339:hover,
  .tablet\:focus\:-rotate-339:focus,
  .tablet\:group:hover .group-hover\:-rotate-339,
  .tablet\:group:focus-within .group-focus-within\:-rotate-339 {
    transform: rotate(-339deg);
  }
  .tablet\:-rotate-340,
  .tablet\:hover\:-rotate-340:hover,
  .tablet\:focus\:-rotate-340:focus,
  .tablet\:group:hover .group-hover\:-rotate-340,
  .tablet\:group:focus-within .group-focus-within\:-rotate-340 {
    transform: rotate(-340deg);
  }
  .tablet\:-rotate-341,
  .tablet\:hover\:-rotate-341:hover,
  .tablet\:focus\:-rotate-341:focus,
  .tablet\:group:hover .group-hover\:-rotate-341,
  .tablet\:group:focus-within .group-focus-within\:-rotate-341 {
    transform: rotate(-341deg);
  }
  .tablet\:-rotate-342,
  .tablet\:hover\:-rotate-342:hover,
  .tablet\:focus\:-rotate-342:focus,
  .tablet\:group:hover .group-hover\:-rotate-342,
  .tablet\:group:focus-within .group-focus-within\:-rotate-342 {
    transform: rotate(-342deg);
  }
  .tablet\:-rotate-343,
  .tablet\:hover\:-rotate-343:hover,
  .tablet\:focus\:-rotate-343:focus,
  .tablet\:group:hover .group-hover\:-rotate-343,
  .tablet\:group:focus-within .group-focus-within\:-rotate-343 {
    transform: rotate(-343deg);
  }
  .tablet\:-rotate-344,
  .tablet\:hover\:-rotate-344:hover,
  .tablet\:focus\:-rotate-344:focus,
  .tablet\:group:hover .group-hover\:-rotate-344,
  .tablet\:group:focus-within .group-focus-within\:-rotate-344 {
    transform: rotate(-344deg);
  }
  .tablet\:-rotate-345,
  .tablet\:hover\:-rotate-345:hover,
  .tablet\:focus\:-rotate-345:focus,
  .tablet\:group:hover .group-hover\:-rotate-345,
  .tablet\:group:focus-within .group-focus-within\:-rotate-345 {
    transform: rotate(-345deg);
  }
  .tablet\:-rotate-346,
  .tablet\:hover\:-rotate-346:hover,
  .tablet\:focus\:-rotate-346:focus,
  .tablet\:group:hover .group-hover\:-rotate-346,
  .tablet\:group:focus-within .group-focus-within\:-rotate-346 {
    transform: rotate(-346deg);
  }
  .tablet\:-rotate-347,
  .tablet\:hover\:-rotate-347:hover,
  .tablet\:focus\:-rotate-347:focus,
  .tablet\:group:hover .group-hover\:-rotate-347,
  .tablet\:group:focus-within .group-focus-within\:-rotate-347 {
    transform: rotate(-347deg);
  }
  .tablet\:-rotate-348,
  .tablet\:hover\:-rotate-348:hover,
  .tablet\:focus\:-rotate-348:focus,
  .tablet\:group:hover .group-hover\:-rotate-348,
  .tablet\:group:focus-within .group-focus-within\:-rotate-348 {
    transform: rotate(-348deg);
  }
  .tablet\:-rotate-349,
  .tablet\:hover\:-rotate-349:hover,
  .tablet\:focus\:-rotate-349:focus,
  .tablet\:group:hover .group-hover\:-rotate-349,
  .tablet\:group:focus-within .group-focus-within\:-rotate-349 {
    transform: rotate(-349deg);
  }
  .tablet\:-rotate-350,
  .tablet\:hover\:-rotate-350:hover,
  .tablet\:focus\:-rotate-350:focus,
  .tablet\:group:hover .group-hover\:-rotate-350,
  .tablet\:group:focus-within .group-focus-within\:-rotate-350 {
    transform: rotate(-350deg);
  }
  .tablet\:-rotate-351,
  .tablet\:hover\:-rotate-351:hover,
  .tablet\:focus\:-rotate-351:focus,
  .tablet\:group:hover .group-hover\:-rotate-351,
  .tablet\:group:focus-within .group-focus-within\:-rotate-351 {
    transform: rotate(-351deg);
  }
  .tablet\:-rotate-352,
  .tablet\:hover\:-rotate-352:hover,
  .tablet\:focus\:-rotate-352:focus,
  .tablet\:group:hover .group-hover\:-rotate-352,
  .tablet\:group:focus-within .group-focus-within\:-rotate-352 {
    transform: rotate(-352deg);
  }
  .tablet\:-rotate-353,
  .tablet\:hover\:-rotate-353:hover,
  .tablet\:focus\:-rotate-353:focus,
  .tablet\:group:hover .group-hover\:-rotate-353,
  .tablet\:group:focus-within .group-focus-within\:-rotate-353 {
    transform: rotate(-353deg);
  }
  .tablet\:-rotate-354,
  .tablet\:hover\:-rotate-354:hover,
  .tablet\:focus\:-rotate-354:focus,
  .tablet\:group:hover .group-hover\:-rotate-354,
  .tablet\:group:focus-within .group-focus-within\:-rotate-354 {
    transform: rotate(-354deg);
  }
  .tablet\:-rotate-355,
  .tablet\:hover\:-rotate-355:hover,
  .tablet\:focus\:-rotate-355:focus,
  .tablet\:group:hover .group-hover\:-rotate-355,
  .tablet\:group:focus-within .group-focus-within\:-rotate-355 {
    transform: rotate(-355deg);
  }
  .tablet\:-rotate-356,
  .tablet\:hover\:-rotate-356:hover,
  .tablet\:focus\:-rotate-356:focus,
  .tablet\:group:hover .group-hover\:-rotate-356,
  .tablet\:group:focus-within .group-focus-within\:-rotate-356 {
    transform: rotate(-356deg);
  }
  .tablet\:-rotate-357,
  .tablet\:hover\:-rotate-357:hover,
  .tablet\:focus\:-rotate-357:focus,
  .tablet\:group:hover .group-hover\:-rotate-357,
  .tablet\:group:focus-within .group-focus-within\:-rotate-357 {
    transform: rotate(-357deg);
  }
  .tablet\:-rotate-358,
  .tablet\:hover\:-rotate-358:hover,
  .tablet\:focus\:-rotate-358:focus,
  .tablet\:group:hover .group-hover\:-rotate-358,
  .tablet\:group:focus-within .group-focus-within\:-rotate-358 {
    transform: rotate(-358deg);
  }
  .tablet\:-rotate-359,
  .tablet\:hover\:-rotate-359:hover,
  .tablet\:focus\:-rotate-359:focus,
  .tablet\:group:hover .group-hover\:-rotate-359,
  .tablet\:group:focus-within .group-focus-within\:-rotate-359 {
    transform: rotate(-359deg);
  }
  .tablet\:-rotate-360,
  .tablet\:hover\:-rotate-360:hover,
  .tablet\:focus\:-rotate-360:focus,
  .tablet\:group:hover .group-hover\:-rotate-360,
  .tablet\:group:focus-within .group-focus-within\:-rotate-360 {
    transform: rotate(-360deg);
  }
  .tablet\:rotate-0,
  .tablet\:hover\:rotate-0:hover,
  .tablet\:focus\:rotate-0:focus,
  .tablet\:group:hover .group-hover\:rotate-0,
  .tablet\:group:focus-within .group-focus-within\:rotate-0 {
    transform: rotate(0deg);
  }
  .tablet\:rotate-1,
  .tablet\:hover\:rotate-1:hover,
  .tablet\:focus\:rotate-1:focus,
  .tablet\:group:hover .group-hover\:rotate-1,
  .tablet\:group:focus-within .group-focus-within\:rotate-1 {
    transform: rotate(1deg);
  }
  .tablet\:rotate-2,
  .tablet\:hover\:rotate-2:hover,
  .tablet\:focus\:rotate-2:focus,
  .tablet\:group:hover .group-hover\:rotate-2,
  .tablet\:group:focus-within .group-focus-within\:rotate-2 {
    transform: rotate(2deg);
  }
  .tablet\:rotate-3,
  .tablet\:hover\:rotate-3:hover,
  .tablet\:focus\:rotate-3:focus,
  .tablet\:group:hover .group-hover\:rotate-3,
  .tablet\:group:focus-within .group-focus-within\:rotate-3 {
    transform: rotate(3deg);
  }
  .tablet\:rotate-4,
  .tablet\:hover\:rotate-4:hover,
  .tablet\:focus\:rotate-4:focus,
  .tablet\:group:hover .group-hover\:rotate-4,
  .tablet\:group:focus-within .group-focus-within\:rotate-4 {
    transform: rotate(4deg);
  }
  .tablet\:rotate-5,
  .tablet\:hover\:rotate-5:hover,
  .tablet\:focus\:rotate-5:focus,
  .tablet\:group:hover .group-hover\:rotate-5,
  .tablet\:group:focus-within .group-focus-within\:rotate-5 {
    transform: rotate(5deg);
  }
  .tablet\:rotate-6,
  .tablet\:hover\:rotate-6:hover,
  .tablet\:focus\:rotate-6:focus,
  .tablet\:group:hover .group-hover\:rotate-6,
  .tablet\:group:focus-within .group-focus-within\:rotate-6 {
    transform: rotate(6deg);
  }
  .tablet\:rotate-7,
  .tablet\:hover\:rotate-7:hover,
  .tablet\:focus\:rotate-7:focus,
  .tablet\:group:hover .group-hover\:rotate-7,
  .tablet\:group:focus-within .group-focus-within\:rotate-7 {
    transform: rotate(7deg);
  }
  .tablet\:rotate-8,
  .tablet\:hover\:rotate-8:hover,
  .tablet\:focus\:rotate-8:focus,
  .tablet\:group:hover .group-hover\:rotate-8,
  .tablet\:group:focus-within .group-focus-within\:rotate-8 {
    transform: rotate(8deg);
  }
  .tablet\:rotate-9,
  .tablet\:hover\:rotate-9:hover,
  .tablet\:focus\:rotate-9:focus,
  .tablet\:group:hover .group-hover\:rotate-9,
  .tablet\:group:focus-within .group-focus-within\:rotate-9 {
    transform: rotate(9deg);
  }
  .tablet\:rotate-10,
  .tablet\:hover\:rotate-10:hover,
  .tablet\:focus\:rotate-10:focus,
  .tablet\:group:hover .group-hover\:rotate-10,
  .tablet\:group:focus-within .group-focus-within\:rotate-10 {
    transform: rotate(10deg);
  }
  .tablet\:rotate-11,
  .tablet\:hover\:rotate-11:hover,
  .tablet\:focus\:rotate-11:focus,
  .tablet\:group:hover .group-hover\:rotate-11,
  .tablet\:group:focus-within .group-focus-within\:rotate-11 {
    transform: rotate(11deg);
  }
  .tablet\:rotate-12,
  .tablet\:hover\:rotate-12:hover,
  .tablet\:focus\:rotate-12:focus,
  .tablet\:group:hover .group-hover\:rotate-12,
  .tablet\:group:focus-within .group-focus-within\:rotate-12 {
    transform: rotate(12deg);
  }
  .tablet\:rotate-13,
  .tablet\:hover\:rotate-13:hover,
  .tablet\:focus\:rotate-13:focus,
  .tablet\:group:hover .group-hover\:rotate-13,
  .tablet\:group:focus-within .group-focus-within\:rotate-13 {
    transform: rotate(13deg);
  }
  .tablet\:rotate-14,
  .tablet\:hover\:rotate-14:hover,
  .tablet\:focus\:rotate-14:focus,
  .tablet\:group:hover .group-hover\:rotate-14,
  .tablet\:group:focus-within .group-focus-within\:rotate-14 {
    transform: rotate(14deg);
  }
  .tablet\:rotate-15,
  .tablet\:hover\:rotate-15:hover,
  .tablet\:focus\:rotate-15:focus,
  .tablet\:group:hover .group-hover\:rotate-15,
  .tablet\:group:focus-within .group-focus-within\:rotate-15 {
    transform: rotate(15deg);
  }
  .tablet\:rotate-16,
  .tablet\:hover\:rotate-16:hover,
  .tablet\:focus\:rotate-16:focus,
  .tablet\:group:hover .group-hover\:rotate-16,
  .tablet\:group:focus-within .group-focus-within\:rotate-16 {
    transform: rotate(16deg);
  }
  .tablet\:rotate-17,
  .tablet\:hover\:rotate-17:hover,
  .tablet\:focus\:rotate-17:focus,
  .tablet\:group:hover .group-hover\:rotate-17,
  .tablet\:group:focus-within .group-focus-within\:rotate-17 {
    transform: rotate(17deg);
  }
  .tablet\:rotate-18,
  .tablet\:hover\:rotate-18:hover,
  .tablet\:focus\:rotate-18:focus,
  .tablet\:group:hover .group-hover\:rotate-18,
  .tablet\:group:focus-within .group-focus-within\:rotate-18 {
    transform: rotate(18deg);
  }
  .tablet\:rotate-19,
  .tablet\:hover\:rotate-19:hover,
  .tablet\:focus\:rotate-19:focus,
  .tablet\:group:hover .group-hover\:rotate-19,
  .tablet\:group:focus-within .group-focus-within\:rotate-19 {
    transform: rotate(19deg);
  }
  .tablet\:rotate-20,
  .tablet\:hover\:rotate-20:hover,
  .tablet\:focus\:rotate-20:focus,
  .tablet\:group:hover .group-hover\:rotate-20,
  .tablet\:group:focus-within .group-focus-within\:rotate-20 {
    transform: rotate(20deg);
  }
  .tablet\:rotate-21,
  .tablet\:hover\:rotate-21:hover,
  .tablet\:focus\:rotate-21:focus,
  .tablet\:group:hover .group-hover\:rotate-21,
  .tablet\:group:focus-within .group-focus-within\:rotate-21 {
    transform: rotate(21deg);
  }
  .tablet\:rotate-22,
  .tablet\:hover\:rotate-22:hover,
  .tablet\:focus\:rotate-22:focus,
  .tablet\:group:hover .group-hover\:rotate-22,
  .tablet\:group:focus-within .group-focus-within\:rotate-22 {
    transform: rotate(22deg);
  }
  .tablet\:rotate-23,
  .tablet\:hover\:rotate-23:hover,
  .tablet\:focus\:rotate-23:focus,
  .tablet\:group:hover .group-hover\:rotate-23,
  .tablet\:group:focus-within .group-focus-within\:rotate-23 {
    transform: rotate(23deg);
  }
  .tablet\:rotate-24,
  .tablet\:hover\:rotate-24:hover,
  .tablet\:focus\:rotate-24:focus,
  .tablet\:group:hover .group-hover\:rotate-24,
  .tablet\:group:focus-within .group-focus-within\:rotate-24 {
    transform: rotate(24deg);
  }
  .tablet\:rotate-25,
  .tablet\:hover\:rotate-25:hover,
  .tablet\:focus\:rotate-25:focus,
  .tablet\:group:hover .group-hover\:rotate-25,
  .tablet\:group:focus-within .group-focus-within\:rotate-25 {
    transform: rotate(25deg);
  }
  .tablet\:rotate-26,
  .tablet\:hover\:rotate-26:hover,
  .tablet\:focus\:rotate-26:focus,
  .tablet\:group:hover .group-hover\:rotate-26,
  .tablet\:group:focus-within .group-focus-within\:rotate-26 {
    transform: rotate(26deg);
  }
  .tablet\:rotate-27,
  .tablet\:hover\:rotate-27:hover,
  .tablet\:focus\:rotate-27:focus,
  .tablet\:group:hover .group-hover\:rotate-27,
  .tablet\:group:focus-within .group-focus-within\:rotate-27 {
    transform: rotate(27deg);
  }
  .tablet\:rotate-28,
  .tablet\:hover\:rotate-28:hover,
  .tablet\:focus\:rotate-28:focus,
  .tablet\:group:hover .group-hover\:rotate-28,
  .tablet\:group:focus-within .group-focus-within\:rotate-28 {
    transform: rotate(28deg);
  }
  .tablet\:rotate-29,
  .tablet\:hover\:rotate-29:hover,
  .tablet\:focus\:rotate-29:focus,
  .tablet\:group:hover .group-hover\:rotate-29,
  .tablet\:group:focus-within .group-focus-within\:rotate-29 {
    transform: rotate(29deg);
  }
  .tablet\:rotate-30,
  .tablet\:hover\:rotate-30:hover,
  .tablet\:focus\:rotate-30:focus,
  .tablet\:group:hover .group-hover\:rotate-30,
  .tablet\:group:focus-within .group-focus-within\:rotate-30 {
    transform: rotate(30deg);
  }
  .tablet\:rotate-31,
  .tablet\:hover\:rotate-31:hover,
  .tablet\:focus\:rotate-31:focus,
  .tablet\:group:hover .group-hover\:rotate-31,
  .tablet\:group:focus-within .group-focus-within\:rotate-31 {
    transform: rotate(31deg);
  }
  .tablet\:rotate-32,
  .tablet\:hover\:rotate-32:hover,
  .tablet\:focus\:rotate-32:focus,
  .tablet\:group:hover .group-hover\:rotate-32,
  .tablet\:group:focus-within .group-focus-within\:rotate-32 {
    transform: rotate(32deg);
  }
  .tablet\:rotate-33,
  .tablet\:hover\:rotate-33:hover,
  .tablet\:focus\:rotate-33:focus,
  .tablet\:group:hover .group-hover\:rotate-33,
  .tablet\:group:focus-within .group-focus-within\:rotate-33 {
    transform: rotate(33deg);
  }
  .tablet\:rotate-34,
  .tablet\:hover\:rotate-34:hover,
  .tablet\:focus\:rotate-34:focus,
  .tablet\:group:hover .group-hover\:rotate-34,
  .tablet\:group:focus-within .group-focus-within\:rotate-34 {
    transform: rotate(34deg);
  }
  .tablet\:rotate-35,
  .tablet\:hover\:rotate-35:hover,
  .tablet\:focus\:rotate-35:focus,
  .tablet\:group:hover .group-hover\:rotate-35,
  .tablet\:group:focus-within .group-focus-within\:rotate-35 {
    transform: rotate(35deg);
  }
  .tablet\:rotate-36,
  .tablet\:hover\:rotate-36:hover,
  .tablet\:focus\:rotate-36:focus,
  .tablet\:group:hover .group-hover\:rotate-36,
  .tablet\:group:focus-within .group-focus-within\:rotate-36 {
    transform: rotate(36deg);
  }
  .tablet\:rotate-37,
  .tablet\:hover\:rotate-37:hover,
  .tablet\:focus\:rotate-37:focus,
  .tablet\:group:hover .group-hover\:rotate-37,
  .tablet\:group:focus-within .group-focus-within\:rotate-37 {
    transform: rotate(37deg);
  }
  .tablet\:rotate-38,
  .tablet\:hover\:rotate-38:hover,
  .tablet\:focus\:rotate-38:focus,
  .tablet\:group:hover .group-hover\:rotate-38,
  .tablet\:group:focus-within .group-focus-within\:rotate-38 {
    transform: rotate(38deg);
  }
  .tablet\:rotate-39,
  .tablet\:hover\:rotate-39:hover,
  .tablet\:focus\:rotate-39:focus,
  .tablet\:group:hover .group-hover\:rotate-39,
  .tablet\:group:focus-within .group-focus-within\:rotate-39 {
    transform: rotate(39deg);
  }
  .tablet\:rotate-40,
  .tablet\:hover\:rotate-40:hover,
  .tablet\:focus\:rotate-40:focus,
  .tablet\:group:hover .group-hover\:rotate-40,
  .tablet\:group:focus-within .group-focus-within\:rotate-40 {
    transform: rotate(40deg);
  }
  .tablet\:rotate-41,
  .tablet\:hover\:rotate-41:hover,
  .tablet\:focus\:rotate-41:focus,
  .tablet\:group:hover .group-hover\:rotate-41,
  .tablet\:group:focus-within .group-focus-within\:rotate-41 {
    transform: rotate(41deg);
  }
  .tablet\:rotate-42,
  .tablet\:hover\:rotate-42:hover,
  .tablet\:focus\:rotate-42:focus,
  .tablet\:group:hover .group-hover\:rotate-42,
  .tablet\:group:focus-within .group-focus-within\:rotate-42 {
    transform: rotate(42deg);
  }
  .tablet\:rotate-43,
  .tablet\:hover\:rotate-43:hover,
  .tablet\:focus\:rotate-43:focus,
  .tablet\:group:hover .group-hover\:rotate-43,
  .tablet\:group:focus-within .group-focus-within\:rotate-43 {
    transform: rotate(43deg);
  }
  .tablet\:rotate-44,
  .tablet\:hover\:rotate-44:hover,
  .tablet\:focus\:rotate-44:focus,
  .tablet\:group:hover .group-hover\:rotate-44,
  .tablet\:group:focus-within .group-focus-within\:rotate-44 {
    transform: rotate(44deg);
  }
  .tablet\:rotate-45,
  .tablet\:hover\:rotate-45:hover,
  .tablet\:focus\:rotate-45:focus,
  .tablet\:group:hover .group-hover\:rotate-45,
  .tablet\:group:focus-within .group-focus-within\:rotate-45 {
    transform: rotate(45deg);
  }
  .tablet\:rotate-46,
  .tablet\:hover\:rotate-46:hover,
  .tablet\:focus\:rotate-46:focus,
  .tablet\:group:hover .group-hover\:rotate-46,
  .tablet\:group:focus-within .group-focus-within\:rotate-46 {
    transform: rotate(46deg);
  }
  .tablet\:rotate-47,
  .tablet\:hover\:rotate-47:hover,
  .tablet\:focus\:rotate-47:focus,
  .tablet\:group:hover .group-hover\:rotate-47,
  .tablet\:group:focus-within .group-focus-within\:rotate-47 {
    transform: rotate(47deg);
  }
  .tablet\:rotate-48,
  .tablet\:hover\:rotate-48:hover,
  .tablet\:focus\:rotate-48:focus,
  .tablet\:group:hover .group-hover\:rotate-48,
  .tablet\:group:focus-within .group-focus-within\:rotate-48 {
    transform: rotate(48deg);
  }
  .tablet\:rotate-49,
  .tablet\:hover\:rotate-49:hover,
  .tablet\:focus\:rotate-49:focus,
  .tablet\:group:hover .group-hover\:rotate-49,
  .tablet\:group:focus-within .group-focus-within\:rotate-49 {
    transform: rotate(49deg);
  }
  .tablet\:rotate-50,
  .tablet\:hover\:rotate-50:hover,
  .tablet\:focus\:rotate-50:focus,
  .tablet\:group:hover .group-hover\:rotate-50,
  .tablet\:group:focus-within .group-focus-within\:rotate-50 {
    transform: rotate(50deg);
  }
  .tablet\:rotate-51,
  .tablet\:hover\:rotate-51:hover,
  .tablet\:focus\:rotate-51:focus,
  .tablet\:group:hover .group-hover\:rotate-51,
  .tablet\:group:focus-within .group-focus-within\:rotate-51 {
    transform: rotate(51deg);
  }
  .tablet\:rotate-52,
  .tablet\:hover\:rotate-52:hover,
  .tablet\:focus\:rotate-52:focus,
  .tablet\:group:hover .group-hover\:rotate-52,
  .tablet\:group:focus-within .group-focus-within\:rotate-52 {
    transform: rotate(52deg);
  }
  .tablet\:rotate-53,
  .tablet\:hover\:rotate-53:hover,
  .tablet\:focus\:rotate-53:focus,
  .tablet\:group:hover .group-hover\:rotate-53,
  .tablet\:group:focus-within .group-focus-within\:rotate-53 {
    transform: rotate(53deg);
  }
  .tablet\:rotate-54,
  .tablet\:hover\:rotate-54:hover,
  .tablet\:focus\:rotate-54:focus,
  .tablet\:group:hover .group-hover\:rotate-54,
  .tablet\:group:focus-within .group-focus-within\:rotate-54 {
    transform: rotate(54deg);
  }
  .tablet\:rotate-55,
  .tablet\:hover\:rotate-55:hover,
  .tablet\:focus\:rotate-55:focus,
  .tablet\:group:hover .group-hover\:rotate-55,
  .tablet\:group:focus-within .group-focus-within\:rotate-55 {
    transform: rotate(55deg);
  }
  .tablet\:rotate-56,
  .tablet\:hover\:rotate-56:hover,
  .tablet\:focus\:rotate-56:focus,
  .tablet\:group:hover .group-hover\:rotate-56,
  .tablet\:group:focus-within .group-focus-within\:rotate-56 {
    transform: rotate(56deg);
  }
  .tablet\:rotate-57,
  .tablet\:hover\:rotate-57:hover,
  .tablet\:focus\:rotate-57:focus,
  .tablet\:group:hover .group-hover\:rotate-57,
  .tablet\:group:focus-within .group-focus-within\:rotate-57 {
    transform: rotate(57deg);
  }
  .tablet\:rotate-58,
  .tablet\:hover\:rotate-58:hover,
  .tablet\:focus\:rotate-58:focus,
  .tablet\:group:hover .group-hover\:rotate-58,
  .tablet\:group:focus-within .group-focus-within\:rotate-58 {
    transform: rotate(58deg);
  }
  .tablet\:rotate-59,
  .tablet\:hover\:rotate-59:hover,
  .tablet\:focus\:rotate-59:focus,
  .tablet\:group:hover .group-hover\:rotate-59,
  .tablet\:group:focus-within .group-focus-within\:rotate-59 {
    transform: rotate(59deg);
  }
  .tablet\:rotate-60,
  .tablet\:hover\:rotate-60:hover,
  .tablet\:focus\:rotate-60:focus,
  .tablet\:group:hover .group-hover\:rotate-60,
  .tablet\:group:focus-within .group-focus-within\:rotate-60 {
    transform: rotate(60deg);
  }
  .tablet\:rotate-61,
  .tablet\:hover\:rotate-61:hover,
  .tablet\:focus\:rotate-61:focus,
  .tablet\:group:hover .group-hover\:rotate-61,
  .tablet\:group:focus-within .group-focus-within\:rotate-61 {
    transform: rotate(61deg);
  }
  .tablet\:rotate-62,
  .tablet\:hover\:rotate-62:hover,
  .tablet\:focus\:rotate-62:focus,
  .tablet\:group:hover .group-hover\:rotate-62,
  .tablet\:group:focus-within .group-focus-within\:rotate-62 {
    transform: rotate(62deg);
  }
  .tablet\:rotate-63,
  .tablet\:hover\:rotate-63:hover,
  .tablet\:focus\:rotate-63:focus,
  .tablet\:group:hover .group-hover\:rotate-63,
  .tablet\:group:focus-within .group-focus-within\:rotate-63 {
    transform: rotate(63deg);
  }
  .tablet\:rotate-64,
  .tablet\:hover\:rotate-64:hover,
  .tablet\:focus\:rotate-64:focus,
  .tablet\:group:hover .group-hover\:rotate-64,
  .tablet\:group:focus-within .group-focus-within\:rotate-64 {
    transform: rotate(64deg);
  }
  .tablet\:rotate-65,
  .tablet\:hover\:rotate-65:hover,
  .tablet\:focus\:rotate-65:focus,
  .tablet\:group:hover .group-hover\:rotate-65,
  .tablet\:group:focus-within .group-focus-within\:rotate-65 {
    transform: rotate(65deg);
  }
  .tablet\:rotate-66,
  .tablet\:hover\:rotate-66:hover,
  .tablet\:focus\:rotate-66:focus,
  .tablet\:group:hover .group-hover\:rotate-66,
  .tablet\:group:focus-within .group-focus-within\:rotate-66 {
    transform: rotate(66deg);
  }
  .tablet\:rotate-67,
  .tablet\:hover\:rotate-67:hover,
  .tablet\:focus\:rotate-67:focus,
  .tablet\:group:hover .group-hover\:rotate-67,
  .tablet\:group:focus-within .group-focus-within\:rotate-67 {
    transform: rotate(67deg);
  }
  .tablet\:rotate-68,
  .tablet\:hover\:rotate-68:hover,
  .tablet\:focus\:rotate-68:focus,
  .tablet\:group:hover .group-hover\:rotate-68,
  .tablet\:group:focus-within .group-focus-within\:rotate-68 {
    transform: rotate(68deg);
  }
  .tablet\:rotate-69,
  .tablet\:hover\:rotate-69:hover,
  .tablet\:focus\:rotate-69:focus,
  .tablet\:group:hover .group-hover\:rotate-69,
  .tablet\:group:focus-within .group-focus-within\:rotate-69 {
    transform: rotate(69deg);
  }
  .tablet\:rotate-70,
  .tablet\:hover\:rotate-70:hover,
  .tablet\:focus\:rotate-70:focus,
  .tablet\:group:hover .group-hover\:rotate-70,
  .tablet\:group:focus-within .group-focus-within\:rotate-70 {
    transform: rotate(70deg);
  }
  .tablet\:rotate-71,
  .tablet\:hover\:rotate-71:hover,
  .tablet\:focus\:rotate-71:focus,
  .tablet\:group:hover .group-hover\:rotate-71,
  .tablet\:group:focus-within .group-focus-within\:rotate-71 {
    transform: rotate(71deg);
  }
  .tablet\:rotate-72,
  .tablet\:hover\:rotate-72:hover,
  .tablet\:focus\:rotate-72:focus,
  .tablet\:group:hover .group-hover\:rotate-72,
  .tablet\:group:focus-within .group-focus-within\:rotate-72 {
    transform: rotate(72deg);
  }
  .tablet\:rotate-73,
  .tablet\:hover\:rotate-73:hover,
  .tablet\:focus\:rotate-73:focus,
  .tablet\:group:hover .group-hover\:rotate-73,
  .tablet\:group:focus-within .group-focus-within\:rotate-73 {
    transform: rotate(73deg);
  }
  .tablet\:rotate-74,
  .tablet\:hover\:rotate-74:hover,
  .tablet\:focus\:rotate-74:focus,
  .tablet\:group:hover .group-hover\:rotate-74,
  .tablet\:group:focus-within .group-focus-within\:rotate-74 {
    transform: rotate(74deg);
  }
  .tablet\:rotate-75,
  .tablet\:hover\:rotate-75:hover,
  .tablet\:focus\:rotate-75:focus,
  .tablet\:group:hover .group-hover\:rotate-75,
  .tablet\:group:focus-within .group-focus-within\:rotate-75 {
    transform: rotate(75deg);
  }
  .tablet\:rotate-76,
  .tablet\:hover\:rotate-76:hover,
  .tablet\:focus\:rotate-76:focus,
  .tablet\:group:hover .group-hover\:rotate-76,
  .tablet\:group:focus-within .group-focus-within\:rotate-76 {
    transform: rotate(76deg);
  }
  .tablet\:rotate-77,
  .tablet\:hover\:rotate-77:hover,
  .tablet\:focus\:rotate-77:focus,
  .tablet\:group:hover .group-hover\:rotate-77,
  .tablet\:group:focus-within .group-focus-within\:rotate-77 {
    transform: rotate(77deg);
  }
  .tablet\:rotate-78,
  .tablet\:hover\:rotate-78:hover,
  .tablet\:focus\:rotate-78:focus,
  .tablet\:group:hover .group-hover\:rotate-78,
  .tablet\:group:focus-within .group-focus-within\:rotate-78 {
    transform: rotate(78deg);
  }
  .tablet\:rotate-79,
  .tablet\:hover\:rotate-79:hover,
  .tablet\:focus\:rotate-79:focus,
  .tablet\:group:hover .group-hover\:rotate-79,
  .tablet\:group:focus-within .group-focus-within\:rotate-79 {
    transform: rotate(79deg);
  }
  .tablet\:rotate-80,
  .tablet\:hover\:rotate-80:hover,
  .tablet\:focus\:rotate-80:focus,
  .tablet\:group:hover .group-hover\:rotate-80,
  .tablet\:group:focus-within .group-focus-within\:rotate-80 {
    transform: rotate(80deg);
  }
  .tablet\:rotate-81,
  .tablet\:hover\:rotate-81:hover,
  .tablet\:focus\:rotate-81:focus,
  .tablet\:group:hover .group-hover\:rotate-81,
  .tablet\:group:focus-within .group-focus-within\:rotate-81 {
    transform: rotate(81deg);
  }
  .tablet\:rotate-82,
  .tablet\:hover\:rotate-82:hover,
  .tablet\:focus\:rotate-82:focus,
  .tablet\:group:hover .group-hover\:rotate-82,
  .tablet\:group:focus-within .group-focus-within\:rotate-82 {
    transform: rotate(82deg);
  }
  .tablet\:rotate-83,
  .tablet\:hover\:rotate-83:hover,
  .tablet\:focus\:rotate-83:focus,
  .tablet\:group:hover .group-hover\:rotate-83,
  .tablet\:group:focus-within .group-focus-within\:rotate-83 {
    transform: rotate(83deg);
  }
  .tablet\:rotate-84,
  .tablet\:hover\:rotate-84:hover,
  .tablet\:focus\:rotate-84:focus,
  .tablet\:group:hover .group-hover\:rotate-84,
  .tablet\:group:focus-within .group-focus-within\:rotate-84 {
    transform: rotate(84deg);
  }
  .tablet\:rotate-85,
  .tablet\:hover\:rotate-85:hover,
  .tablet\:focus\:rotate-85:focus,
  .tablet\:group:hover .group-hover\:rotate-85,
  .tablet\:group:focus-within .group-focus-within\:rotate-85 {
    transform: rotate(85deg);
  }
  .tablet\:rotate-86,
  .tablet\:hover\:rotate-86:hover,
  .tablet\:focus\:rotate-86:focus,
  .tablet\:group:hover .group-hover\:rotate-86,
  .tablet\:group:focus-within .group-focus-within\:rotate-86 {
    transform: rotate(86deg);
  }
  .tablet\:rotate-87,
  .tablet\:hover\:rotate-87:hover,
  .tablet\:focus\:rotate-87:focus,
  .tablet\:group:hover .group-hover\:rotate-87,
  .tablet\:group:focus-within .group-focus-within\:rotate-87 {
    transform: rotate(87deg);
  }
  .tablet\:rotate-88,
  .tablet\:hover\:rotate-88:hover,
  .tablet\:focus\:rotate-88:focus,
  .tablet\:group:hover .group-hover\:rotate-88,
  .tablet\:group:focus-within .group-focus-within\:rotate-88 {
    transform: rotate(88deg);
  }
  .tablet\:rotate-89,
  .tablet\:hover\:rotate-89:hover,
  .tablet\:focus\:rotate-89:focus,
  .tablet\:group:hover .group-hover\:rotate-89,
  .tablet\:group:focus-within .group-focus-within\:rotate-89 {
    transform: rotate(89deg);
  }
  .tablet\:rotate-90,
  .tablet\:hover\:rotate-90:hover,
  .tablet\:focus\:rotate-90:focus,
  .tablet\:group:hover .group-hover\:rotate-90,
  .tablet\:group:focus-within .group-focus-within\:rotate-90 {
    transform: rotate(90deg);
  }
  .tablet\:rotate-91,
  .tablet\:hover\:rotate-91:hover,
  .tablet\:focus\:rotate-91:focus,
  .tablet\:group:hover .group-hover\:rotate-91,
  .tablet\:group:focus-within .group-focus-within\:rotate-91 {
    transform: rotate(91deg);
  }
  .tablet\:rotate-92,
  .tablet\:hover\:rotate-92:hover,
  .tablet\:focus\:rotate-92:focus,
  .tablet\:group:hover .group-hover\:rotate-92,
  .tablet\:group:focus-within .group-focus-within\:rotate-92 {
    transform: rotate(92deg);
  }
  .tablet\:rotate-93,
  .tablet\:hover\:rotate-93:hover,
  .tablet\:focus\:rotate-93:focus,
  .tablet\:group:hover .group-hover\:rotate-93,
  .tablet\:group:focus-within .group-focus-within\:rotate-93 {
    transform: rotate(93deg);
  }
  .tablet\:rotate-94,
  .tablet\:hover\:rotate-94:hover,
  .tablet\:focus\:rotate-94:focus,
  .tablet\:group:hover .group-hover\:rotate-94,
  .tablet\:group:focus-within .group-focus-within\:rotate-94 {
    transform: rotate(94deg);
  }
  .tablet\:rotate-95,
  .tablet\:hover\:rotate-95:hover,
  .tablet\:focus\:rotate-95:focus,
  .tablet\:group:hover .group-hover\:rotate-95,
  .tablet\:group:focus-within .group-focus-within\:rotate-95 {
    transform: rotate(95deg);
  }
  .tablet\:rotate-96,
  .tablet\:hover\:rotate-96:hover,
  .tablet\:focus\:rotate-96:focus,
  .tablet\:group:hover .group-hover\:rotate-96,
  .tablet\:group:focus-within .group-focus-within\:rotate-96 {
    transform: rotate(96deg);
  }
  .tablet\:rotate-97,
  .tablet\:hover\:rotate-97:hover,
  .tablet\:focus\:rotate-97:focus,
  .tablet\:group:hover .group-hover\:rotate-97,
  .tablet\:group:focus-within .group-focus-within\:rotate-97 {
    transform: rotate(97deg);
  }
  .tablet\:rotate-98,
  .tablet\:hover\:rotate-98:hover,
  .tablet\:focus\:rotate-98:focus,
  .tablet\:group:hover .group-hover\:rotate-98,
  .tablet\:group:focus-within .group-focus-within\:rotate-98 {
    transform: rotate(98deg);
  }
  .tablet\:rotate-99,
  .tablet\:hover\:rotate-99:hover,
  .tablet\:focus\:rotate-99:focus,
  .tablet\:group:hover .group-hover\:rotate-99,
  .tablet\:group:focus-within .group-focus-within\:rotate-99 {
    transform: rotate(99deg);
  }
  .tablet\:rotate-100,
  .tablet\:hover\:rotate-100:hover,
  .tablet\:focus\:rotate-100:focus,
  .tablet\:group:hover .group-hover\:rotate-100,
  .tablet\:group:focus-within .group-focus-within\:rotate-100 {
    transform: rotate(100deg);
  }
  .tablet\:rotate-101,
  .tablet\:hover\:rotate-101:hover,
  .tablet\:focus\:rotate-101:focus,
  .tablet\:group:hover .group-hover\:rotate-101,
  .tablet\:group:focus-within .group-focus-within\:rotate-101 {
    transform: rotate(101deg);
  }
  .tablet\:rotate-102,
  .tablet\:hover\:rotate-102:hover,
  .tablet\:focus\:rotate-102:focus,
  .tablet\:group:hover .group-hover\:rotate-102,
  .tablet\:group:focus-within .group-focus-within\:rotate-102 {
    transform: rotate(102deg);
  }
  .tablet\:rotate-103,
  .tablet\:hover\:rotate-103:hover,
  .tablet\:focus\:rotate-103:focus,
  .tablet\:group:hover .group-hover\:rotate-103,
  .tablet\:group:focus-within .group-focus-within\:rotate-103 {
    transform: rotate(103deg);
  }
  .tablet\:rotate-104,
  .tablet\:hover\:rotate-104:hover,
  .tablet\:focus\:rotate-104:focus,
  .tablet\:group:hover .group-hover\:rotate-104,
  .tablet\:group:focus-within .group-focus-within\:rotate-104 {
    transform: rotate(104deg);
  }
  .tablet\:rotate-105,
  .tablet\:hover\:rotate-105:hover,
  .tablet\:focus\:rotate-105:focus,
  .tablet\:group:hover .group-hover\:rotate-105,
  .tablet\:group:focus-within .group-focus-within\:rotate-105 {
    transform: rotate(105deg);
  }
  .tablet\:rotate-106,
  .tablet\:hover\:rotate-106:hover,
  .tablet\:focus\:rotate-106:focus,
  .tablet\:group:hover .group-hover\:rotate-106,
  .tablet\:group:focus-within .group-focus-within\:rotate-106 {
    transform: rotate(106deg);
  }
  .tablet\:rotate-107,
  .tablet\:hover\:rotate-107:hover,
  .tablet\:focus\:rotate-107:focus,
  .tablet\:group:hover .group-hover\:rotate-107,
  .tablet\:group:focus-within .group-focus-within\:rotate-107 {
    transform: rotate(107deg);
  }
  .tablet\:rotate-108,
  .tablet\:hover\:rotate-108:hover,
  .tablet\:focus\:rotate-108:focus,
  .tablet\:group:hover .group-hover\:rotate-108,
  .tablet\:group:focus-within .group-focus-within\:rotate-108 {
    transform: rotate(108deg);
  }
  .tablet\:rotate-109,
  .tablet\:hover\:rotate-109:hover,
  .tablet\:focus\:rotate-109:focus,
  .tablet\:group:hover .group-hover\:rotate-109,
  .tablet\:group:focus-within .group-focus-within\:rotate-109 {
    transform: rotate(109deg);
  }
  .tablet\:rotate-110,
  .tablet\:hover\:rotate-110:hover,
  .tablet\:focus\:rotate-110:focus,
  .tablet\:group:hover .group-hover\:rotate-110,
  .tablet\:group:focus-within .group-focus-within\:rotate-110 {
    transform: rotate(110deg);
  }
  .tablet\:rotate-111,
  .tablet\:hover\:rotate-111:hover,
  .tablet\:focus\:rotate-111:focus,
  .tablet\:group:hover .group-hover\:rotate-111,
  .tablet\:group:focus-within .group-focus-within\:rotate-111 {
    transform: rotate(111deg);
  }
  .tablet\:rotate-112,
  .tablet\:hover\:rotate-112:hover,
  .tablet\:focus\:rotate-112:focus,
  .tablet\:group:hover .group-hover\:rotate-112,
  .tablet\:group:focus-within .group-focus-within\:rotate-112 {
    transform: rotate(112deg);
  }
  .tablet\:rotate-113,
  .tablet\:hover\:rotate-113:hover,
  .tablet\:focus\:rotate-113:focus,
  .tablet\:group:hover .group-hover\:rotate-113,
  .tablet\:group:focus-within .group-focus-within\:rotate-113 {
    transform: rotate(113deg);
  }
  .tablet\:rotate-114,
  .tablet\:hover\:rotate-114:hover,
  .tablet\:focus\:rotate-114:focus,
  .tablet\:group:hover .group-hover\:rotate-114,
  .tablet\:group:focus-within .group-focus-within\:rotate-114 {
    transform: rotate(114deg);
  }
  .tablet\:rotate-115,
  .tablet\:hover\:rotate-115:hover,
  .tablet\:focus\:rotate-115:focus,
  .tablet\:group:hover .group-hover\:rotate-115,
  .tablet\:group:focus-within .group-focus-within\:rotate-115 {
    transform: rotate(115deg);
  }
  .tablet\:rotate-116,
  .tablet\:hover\:rotate-116:hover,
  .tablet\:focus\:rotate-116:focus,
  .tablet\:group:hover .group-hover\:rotate-116,
  .tablet\:group:focus-within .group-focus-within\:rotate-116 {
    transform: rotate(116deg);
  }
  .tablet\:rotate-117,
  .tablet\:hover\:rotate-117:hover,
  .tablet\:focus\:rotate-117:focus,
  .tablet\:group:hover .group-hover\:rotate-117,
  .tablet\:group:focus-within .group-focus-within\:rotate-117 {
    transform: rotate(117deg);
  }
  .tablet\:rotate-118,
  .tablet\:hover\:rotate-118:hover,
  .tablet\:focus\:rotate-118:focus,
  .tablet\:group:hover .group-hover\:rotate-118,
  .tablet\:group:focus-within .group-focus-within\:rotate-118 {
    transform: rotate(118deg);
  }
  .tablet\:rotate-119,
  .tablet\:hover\:rotate-119:hover,
  .tablet\:focus\:rotate-119:focus,
  .tablet\:group:hover .group-hover\:rotate-119,
  .tablet\:group:focus-within .group-focus-within\:rotate-119 {
    transform: rotate(119deg);
  }
  .tablet\:rotate-120,
  .tablet\:hover\:rotate-120:hover,
  .tablet\:focus\:rotate-120:focus,
  .tablet\:group:hover .group-hover\:rotate-120,
  .tablet\:group:focus-within .group-focus-within\:rotate-120 {
    transform: rotate(120deg);
  }
  .tablet\:rotate-121,
  .tablet\:hover\:rotate-121:hover,
  .tablet\:focus\:rotate-121:focus,
  .tablet\:group:hover .group-hover\:rotate-121,
  .tablet\:group:focus-within .group-focus-within\:rotate-121 {
    transform: rotate(121deg);
  }
  .tablet\:rotate-122,
  .tablet\:hover\:rotate-122:hover,
  .tablet\:focus\:rotate-122:focus,
  .tablet\:group:hover .group-hover\:rotate-122,
  .tablet\:group:focus-within .group-focus-within\:rotate-122 {
    transform: rotate(122deg);
  }
  .tablet\:rotate-123,
  .tablet\:hover\:rotate-123:hover,
  .tablet\:focus\:rotate-123:focus,
  .tablet\:group:hover .group-hover\:rotate-123,
  .tablet\:group:focus-within .group-focus-within\:rotate-123 {
    transform: rotate(123deg);
  }
  .tablet\:rotate-124,
  .tablet\:hover\:rotate-124:hover,
  .tablet\:focus\:rotate-124:focus,
  .tablet\:group:hover .group-hover\:rotate-124,
  .tablet\:group:focus-within .group-focus-within\:rotate-124 {
    transform: rotate(124deg);
  }
  .tablet\:rotate-125,
  .tablet\:hover\:rotate-125:hover,
  .tablet\:focus\:rotate-125:focus,
  .tablet\:group:hover .group-hover\:rotate-125,
  .tablet\:group:focus-within .group-focus-within\:rotate-125 {
    transform: rotate(125deg);
  }
  .tablet\:rotate-126,
  .tablet\:hover\:rotate-126:hover,
  .tablet\:focus\:rotate-126:focus,
  .tablet\:group:hover .group-hover\:rotate-126,
  .tablet\:group:focus-within .group-focus-within\:rotate-126 {
    transform: rotate(126deg);
  }
  .tablet\:rotate-127,
  .tablet\:hover\:rotate-127:hover,
  .tablet\:focus\:rotate-127:focus,
  .tablet\:group:hover .group-hover\:rotate-127,
  .tablet\:group:focus-within .group-focus-within\:rotate-127 {
    transform: rotate(127deg);
  }
  .tablet\:rotate-128,
  .tablet\:hover\:rotate-128:hover,
  .tablet\:focus\:rotate-128:focus,
  .tablet\:group:hover .group-hover\:rotate-128,
  .tablet\:group:focus-within .group-focus-within\:rotate-128 {
    transform: rotate(128deg);
  }
  .tablet\:rotate-129,
  .tablet\:hover\:rotate-129:hover,
  .tablet\:focus\:rotate-129:focus,
  .tablet\:group:hover .group-hover\:rotate-129,
  .tablet\:group:focus-within .group-focus-within\:rotate-129 {
    transform: rotate(129deg);
  }
  .tablet\:rotate-130,
  .tablet\:hover\:rotate-130:hover,
  .tablet\:focus\:rotate-130:focus,
  .tablet\:group:hover .group-hover\:rotate-130,
  .tablet\:group:focus-within .group-focus-within\:rotate-130 {
    transform: rotate(130deg);
  }
  .tablet\:rotate-131,
  .tablet\:hover\:rotate-131:hover,
  .tablet\:focus\:rotate-131:focus,
  .tablet\:group:hover .group-hover\:rotate-131,
  .tablet\:group:focus-within .group-focus-within\:rotate-131 {
    transform: rotate(131deg);
  }
  .tablet\:rotate-132,
  .tablet\:hover\:rotate-132:hover,
  .tablet\:focus\:rotate-132:focus,
  .tablet\:group:hover .group-hover\:rotate-132,
  .tablet\:group:focus-within .group-focus-within\:rotate-132 {
    transform: rotate(132deg);
  }
  .tablet\:rotate-133,
  .tablet\:hover\:rotate-133:hover,
  .tablet\:focus\:rotate-133:focus,
  .tablet\:group:hover .group-hover\:rotate-133,
  .tablet\:group:focus-within .group-focus-within\:rotate-133 {
    transform: rotate(133deg);
  }
  .tablet\:rotate-134,
  .tablet\:hover\:rotate-134:hover,
  .tablet\:focus\:rotate-134:focus,
  .tablet\:group:hover .group-hover\:rotate-134,
  .tablet\:group:focus-within .group-focus-within\:rotate-134 {
    transform: rotate(134deg);
  }
  .tablet\:rotate-135,
  .tablet\:hover\:rotate-135:hover,
  .tablet\:focus\:rotate-135:focus,
  .tablet\:group:hover .group-hover\:rotate-135,
  .tablet\:group:focus-within .group-focus-within\:rotate-135 {
    transform: rotate(135deg);
  }
  .tablet\:rotate-136,
  .tablet\:hover\:rotate-136:hover,
  .tablet\:focus\:rotate-136:focus,
  .tablet\:group:hover .group-hover\:rotate-136,
  .tablet\:group:focus-within .group-focus-within\:rotate-136 {
    transform: rotate(136deg);
  }
  .tablet\:rotate-137,
  .tablet\:hover\:rotate-137:hover,
  .tablet\:focus\:rotate-137:focus,
  .tablet\:group:hover .group-hover\:rotate-137,
  .tablet\:group:focus-within .group-focus-within\:rotate-137 {
    transform: rotate(137deg);
  }
  .tablet\:rotate-138,
  .tablet\:hover\:rotate-138:hover,
  .tablet\:focus\:rotate-138:focus,
  .tablet\:group:hover .group-hover\:rotate-138,
  .tablet\:group:focus-within .group-focus-within\:rotate-138 {
    transform: rotate(138deg);
  }
  .tablet\:rotate-139,
  .tablet\:hover\:rotate-139:hover,
  .tablet\:focus\:rotate-139:focus,
  .tablet\:group:hover .group-hover\:rotate-139,
  .tablet\:group:focus-within .group-focus-within\:rotate-139 {
    transform: rotate(139deg);
  }
  .tablet\:rotate-140,
  .tablet\:hover\:rotate-140:hover,
  .tablet\:focus\:rotate-140:focus,
  .tablet\:group:hover .group-hover\:rotate-140,
  .tablet\:group:focus-within .group-focus-within\:rotate-140 {
    transform: rotate(140deg);
  }
  .tablet\:rotate-141,
  .tablet\:hover\:rotate-141:hover,
  .tablet\:focus\:rotate-141:focus,
  .tablet\:group:hover .group-hover\:rotate-141,
  .tablet\:group:focus-within .group-focus-within\:rotate-141 {
    transform: rotate(141deg);
  }
  .tablet\:rotate-142,
  .tablet\:hover\:rotate-142:hover,
  .tablet\:focus\:rotate-142:focus,
  .tablet\:group:hover .group-hover\:rotate-142,
  .tablet\:group:focus-within .group-focus-within\:rotate-142 {
    transform: rotate(142deg);
  }
  .tablet\:rotate-143,
  .tablet\:hover\:rotate-143:hover,
  .tablet\:focus\:rotate-143:focus,
  .tablet\:group:hover .group-hover\:rotate-143,
  .tablet\:group:focus-within .group-focus-within\:rotate-143 {
    transform: rotate(143deg);
  }
  .tablet\:rotate-144,
  .tablet\:hover\:rotate-144:hover,
  .tablet\:focus\:rotate-144:focus,
  .tablet\:group:hover .group-hover\:rotate-144,
  .tablet\:group:focus-within .group-focus-within\:rotate-144 {
    transform: rotate(144deg);
  }
  .tablet\:rotate-145,
  .tablet\:hover\:rotate-145:hover,
  .tablet\:focus\:rotate-145:focus,
  .tablet\:group:hover .group-hover\:rotate-145,
  .tablet\:group:focus-within .group-focus-within\:rotate-145 {
    transform: rotate(145deg);
  }
  .tablet\:rotate-146,
  .tablet\:hover\:rotate-146:hover,
  .tablet\:focus\:rotate-146:focus,
  .tablet\:group:hover .group-hover\:rotate-146,
  .tablet\:group:focus-within .group-focus-within\:rotate-146 {
    transform: rotate(146deg);
  }
  .tablet\:rotate-147,
  .tablet\:hover\:rotate-147:hover,
  .tablet\:focus\:rotate-147:focus,
  .tablet\:group:hover .group-hover\:rotate-147,
  .tablet\:group:focus-within .group-focus-within\:rotate-147 {
    transform: rotate(147deg);
  }
  .tablet\:rotate-148,
  .tablet\:hover\:rotate-148:hover,
  .tablet\:focus\:rotate-148:focus,
  .tablet\:group:hover .group-hover\:rotate-148,
  .tablet\:group:focus-within .group-focus-within\:rotate-148 {
    transform: rotate(148deg);
  }
  .tablet\:rotate-149,
  .tablet\:hover\:rotate-149:hover,
  .tablet\:focus\:rotate-149:focus,
  .tablet\:group:hover .group-hover\:rotate-149,
  .tablet\:group:focus-within .group-focus-within\:rotate-149 {
    transform: rotate(149deg);
  }
  .tablet\:rotate-150,
  .tablet\:hover\:rotate-150:hover,
  .tablet\:focus\:rotate-150:focus,
  .tablet\:group:hover .group-hover\:rotate-150,
  .tablet\:group:focus-within .group-focus-within\:rotate-150 {
    transform: rotate(150deg);
  }
  .tablet\:rotate-151,
  .tablet\:hover\:rotate-151:hover,
  .tablet\:focus\:rotate-151:focus,
  .tablet\:group:hover .group-hover\:rotate-151,
  .tablet\:group:focus-within .group-focus-within\:rotate-151 {
    transform: rotate(151deg);
  }
  .tablet\:rotate-152,
  .tablet\:hover\:rotate-152:hover,
  .tablet\:focus\:rotate-152:focus,
  .tablet\:group:hover .group-hover\:rotate-152,
  .tablet\:group:focus-within .group-focus-within\:rotate-152 {
    transform: rotate(152deg);
  }
  .tablet\:rotate-153,
  .tablet\:hover\:rotate-153:hover,
  .tablet\:focus\:rotate-153:focus,
  .tablet\:group:hover .group-hover\:rotate-153,
  .tablet\:group:focus-within .group-focus-within\:rotate-153 {
    transform: rotate(153deg);
  }
  .tablet\:rotate-154,
  .tablet\:hover\:rotate-154:hover,
  .tablet\:focus\:rotate-154:focus,
  .tablet\:group:hover .group-hover\:rotate-154,
  .tablet\:group:focus-within .group-focus-within\:rotate-154 {
    transform: rotate(154deg);
  }
  .tablet\:rotate-155,
  .tablet\:hover\:rotate-155:hover,
  .tablet\:focus\:rotate-155:focus,
  .tablet\:group:hover .group-hover\:rotate-155,
  .tablet\:group:focus-within .group-focus-within\:rotate-155 {
    transform: rotate(155deg);
  }
  .tablet\:rotate-156,
  .tablet\:hover\:rotate-156:hover,
  .tablet\:focus\:rotate-156:focus,
  .tablet\:group:hover .group-hover\:rotate-156,
  .tablet\:group:focus-within .group-focus-within\:rotate-156 {
    transform: rotate(156deg);
  }
  .tablet\:rotate-157,
  .tablet\:hover\:rotate-157:hover,
  .tablet\:focus\:rotate-157:focus,
  .tablet\:group:hover .group-hover\:rotate-157,
  .tablet\:group:focus-within .group-focus-within\:rotate-157 {
    transform: rotate(157deg);
  }
  .tablet\:rotate-158,
  .tablet\:hover\:rotate-158:hover,
  .tablet\:focus\:rotate-158:focus,
  .tablet\:group:hover .group-hover\:rotate-158,
  .tablet\:group:focus-within .group-focus-within\:rotate-158 {
    transform: rotate(158deg);
  }
  .tablet\:rotate-159,
  .tablet\:hover\:rotate-159:hover,
  .tablet\:focus\:rotate-159:focus,
  .tablet\:group:hover .group-hover\:rotate-159,
  .tablet\:group:focus-within .group-focus-within\:rotate-159 {
    transform: rotate(159deg);
  }
  .tablet\:rotate-160,
  .tablet\:hover\:rotate-160:hover,
  .tablet\:focus\:rotate-160:focus,
  .tablet\:group:hover .group-hover\:rotate-160,
  .tablet\:group:focus-within .group-focus-within\:rotate-160 {
    transform: rotate(160deg);
  }
  .tablet\:rotate-161,
  .tablet\:hover\:rotate-161:hover,
  .tablet\:focus\:rotate-161:focus,
  .tablet\:group:hover .group-hover\:rotate-161,
  .tablet\:group:focus-within .group-focus-within\:rotate-161 {
    transform: rotate(161deg);
  }
  .tablet\:rotate-162,
  .tablet\:hover\:rotate-162:hover,
  .tablet\:focus\:rotate-162:focus,
  .tablet\:group:hover .group-hover\:rotate-162,
  .tablet\:group:focus-within .group-focus-within\:rotate-162 {
    transform: rotate(162deg);
  }
  .tablet\:rotate-163,
  .tablet\:hover\:rotate-163:hover,
  .tablet\:focus\:rotate-163:focus,
  .tablet\:group:hover .group-hover\:rotate-163,
  .tablet\:group:focus-within .group-focus-within\:rotate-163 {
    transform: rotate(163deg);
  }
  .tablet\:rotate-164,
  .tablet\:hover\:rotate-164:hover,
  .tablet\:focus\:rotate-164:focus,
  .tablet\:group:hover .group-hover\:rotate-164,
  .tablet\:group:focus-within .group-focus-within\:rotate-164 {
    transform: rotate(164deg);
  }
  .tablet\:rotate-165,
  .tablet\:hover\:rotate-165:hover,
  .tablet\:focus\:rotate-165:focus,
  .tablet\:group:hover .group-hover\:rotate-165,
  .tablet\:group:focus-within .group-focus-within\:rotate-165 {
    transform: rotate(165deg);
  }
  .tablet\:rotate-166,
  .tablet\:hover\:rotate-166:hover,
  .tablet\:focus\:rotate-166:focus,
  .tablet\:group:hover .group-hover\:rotate-166,
  .tablet\:group:focus-within .group-focus-within\:rotate-166 {
    transform: rotate(166deg);
  }
  .tablet\:rotate-167,
  .tablet\:hover\:rotate-167:hover,
  .tablet\:focus\:rotate-167:focus,
  .tablet\:group:hover .group-hover\:rotate-167,
  .tablet\:group:focus-within .group-focus-within\:rotate-167 {
    transform: rotate(167deg);
  }
  .tablet\:rotate-168,
  .tablet\:hover\:rotate-168:hover,
  .tablet\:focus\:rotate-168:focus,
  .tablet\:group:hover .group-hover\:rotate-168,
  .tablet\:group:focus-within .group-focus-within\:rotate-168 {
    transform: rotate(168deg);
  }
  .tablet\:rotate-169,
  .tablet\:hover\:rotate-169:hover,
  .tablet\:focus\:rotate-169:focus,
  .tablet\:group:hover .group-hover\:rotate-169,
  .tablet\:group:focus-within .group-focus-within\:rotate-169 {
    transform: rotate(169deg);
  }
  .tablet\:rotate-170,
  .tablet\:hover\:rotate-170:hover,
  .tablet\:focus\:rotate-170:focus,
  .tablet\:group:hover .group-hover\:rotate-170,
  .tablet\:group:focus-within .group-focus-within\:rotate-170 {
    transform: rotate(170deg);
  }
  .tablet\:rotate-171,
  .tablet\:hover\:rotate-171:hover,
  .tablet\:focus\:rotate-171:focus,
  .tablet\:group:hover .group-hover\:rotate-171,
  .tablet\:group:focus-within .group-focus-within\:rotate-171 {
    transform: rotate(171deg);
  }
  .tablet\:rotate-172,
  .tablet\:hover\:rotate-172:hover,
  .tablet\:focus\:rotate-172:focus,
  .tablet\:group:hover .group-hover\:rotate-172,
  .tablet\:group:focus-within .group-focus-within\:rotate-172 {
    transform: rotate(172deg);
  }
  .tablet\:rotate-173,
  .tablet\:hover\:rotate-173:hover,
  .tablet\:focus\:rotate-173:focus,
  .tablet\:group:hover .group-hover\:rotate-173,
  .tablet\:group:focus-within .group-focus-within\:rotate-173 {
    transform: rotate(173deg);
  }
  .tablet\:rotate-174,
  .tablet\:hover\:rotate-174:hover,
  .tablet\:focus\:rotate-174:focus,
  .tablet\:group:hover .group-hover\:rotate-174,
  .tablet\:group:focus-within .group-focus-within\:rotate-174 {
    transform: rotate(174deg);
  }
  .tablet\:rotate-175,
  .tablet\:hover\:rotate-175:hover,
  .tablet\:focus\:rotate-175:focus,
  .tablet\:group:hover .group-hover\:rotate-175,
  .tablet\:group:focus-within .group-focus-within\:rotate-175 {
    transform: rotate(175deg);
  }
  .tablet\:rotate-176,
  .tablet\:hover\:rotate-176:hover,
  .tablet\:focus\:rotate-176:focus,
  .tablet\:group:hover .group-hover\:rotate-176,
  .tablet\:group:focus-within .group-focus-within\:rotate-176 {
    transform: rotate(176deg);
  }
  .tablet\:rotate-177,
  .tablet\:hover\:rotate-177:hover,
  .tablet\:focus\:rotate-177:focus,
  .tablet\:group:hover .group-hover\:rotate-177,
  .tablet\:group:focus-within .group-focus-within\:rotate-177 {
    transform: rotate(177deg);
  }
  .tablet\:rotate-178,
  .tablet\:hover\:rotate-178:hover,
  .tablet\:focus\:rotate-178:focus,
  .tablet\:group:hover .group-hover\:rotate-178,
  .tablet\:group:focus-within .group-focus-within\:rotate-178 {
    transform: rotate(178deg);
  }
  .tablet\:rotate-179,
  .tablet\:hover\:rotate-179:hover,
  .tablet\:focus\:rotate-179:focus,
  .tablet\:group:hover .group-hover\:rotate-179,
  .tablet\:group:focus-within .group-focus-within\:rotate-179 {
    transform: rotate(179deg);
  }
  .tablet\:rotate-180,
  .tablet\:hover\:rotate-180:hover,
  .tablet\:focus\:rotate-180:focus,
  .tablet\:group:hover .group-hover\:rotate-180,
  .tablet\:group:focus-within .group-focus-within\:rotate-180 {
    transform: rotate(180deg);
  }
  .tablet\:rotate-181,
  .tablet\:hover\:rotate-181:hover,
  .tablet\:focus\:rotate-181:focus,
  .tablet\:group:hover .group-hover\:rotate-181,
  .tablet\:group:focus-within .group-focus-within\:rotate-181 {
    transform: rotate(181deg);
  }
  .tablet\:rotate-182,
  .tablet\:hover\:rotate-182:hover,
  .tablet\:focus\:rotate-182:focus,
  .tablet\:group:hover .group-hover\:rotate-182,
  .tablet\:group:focus-within .group-focus-within\:rotate-182 {
    transform: rotate(182deg);
  }
  .tablet\:rotate-183,
  .tablet\:hover\:rotate-183:hover,
  .tablet\:focus\:rotate-183:focus,
  .tablet\:group:hover .group-hover\:rotate-183,
  .tablet\:group:focus-within .group-focus-within\:rotate-183 {
    transform: rotate(183deg);
  }
  .tablet\:rotate-184,
  .tablet\:hover\:rotate-184:hover,
  .tablet\:focus\:rotate-184:focus,
  .tablet\:group:hover .group-hover\:rotate-184,
  .tablet\:group:focus-within .group-focus-within\:rotate-184 {
    transform: rotate(184deg);
  }
  .tablet\:rotate-185,
  .tablet\:hover\:rotate-185:hover,
  .tablet\:focus\:rotate-185:focus,
  .tablet\:group:hover .group-hover\:rotate-185,
  .tablet\:group:focus-within .group-focus-within\:rotate-185 {
    transform: rotate(185deg);
  }
  .tablet\:rotate-186,
  .tablet\:hover\:rotate-186:hover,
  .tablet\:focus\:rotate-186:focus,
  .tablet\:group:hover .group-hover\:rotate-186,
  .tablet\:group:focus-within .group-focus-within\:rotate-186 {
    transform: rotate(186deg);
  }
  .tablet\:rotate-187,
  .tablet\:hover\:rotate-187:hover,
  .tablet\:focus\:rotate-187:focus,
  .tablet\:group:hover .group-hover\:rotate-187,
  .tablet\:group:focus-within .group-focus-within\:rotate-187 {
    transform: rotate(187deg);
  }
  .tablet\:rotate-188,
  .tablet\:hover\:rotate-188:hover,
  .tablet\:focus\:rotate-188:focus,
  .tablet\:group:hover .group-hover\:rotate-188,
  .tablet\:group:focus-within .group-focus-within\:rotate-188 {
    transform: rotate(188deg);
  }
  .tablet\:rotate-189,
  .tablet\:hover\:rotate-189:hover,
  .tablet\:focus\:rotate-189:focus,
  .tablet\:group:hover .group-hover\:rotate-189,
  .tablet\:group:focus-within .group-focus-within\:rotate-189 {
    transform: rotate(189deg);
  }
  .tablet\:rotate-190,
  .tablet\:hover\:rotate-190:hover,
  .tablet\:focus\:rotate-190:focus,
  .tablet\:group:hover .group-hover\:rotate-190,
  .tablet\:group:focus-within .group-focus-within\:rotate-190 {
    transform: rotate(190deg);
  }
  .tablet\:rotate-191,
  .tablet\:hover\:rotate-191:hover,
  .tablet\:focus\:rotate-191:focus,
  .tablet\:group:hover .group-hover\:rotate-191,
  .tablet\:group:focus-within .group-focus-within\:rotate-191 {
    transform: rotate(191deg);
  }
  .tablet\:rotate-192,
  .tablet\:hover\:rotate-192:hover,
  .tablet\:focus\:rotate-192:focus,
  .tablet\:group:hover .group-hover\:rotate-192,
  .tablet\:group:focus-within .group-focus-within\:rotate-192 {
    transform: rotate(192deg);
  }
  .tablet\:rotate-193,
  .tablet\:hover\:rotate-193:hover,
  .tablet\:focus\:rotate-193:focus,
  .tablet\:group:hover .group-hover\:rotate-193,
  .tablet\:group:focus-within .group-focus-within\:rotate-193 {
    transform: rotate(193deg);
  }
  .tablet\:rotate-194,
  .tablet\:hover\:rotate-194:hover,
  .tablet\:focus\:rotate-194:focus,
  .tablet\:group:hover .group-hover\:rotate-194,
  .tablet\:group:focus-within .group-focus-within\:rotate-194 {
    transform: rotate(194deg);
  }
  .tablet\:rotate-195,
  .tablet\:hover\:rotate-195:hover,
  .tablet\:focus\:rotate-195:focus,
  .tablet\:group:hover .group-hover\:rotate-195,
  .tablet\:group:focus-within .group-focus-within\:rotate-195 {
    transform: rotate(195deg);
  }
  .tablet\:rotate-196,
  .tablet\:hover\:rotate-196:hover,
  .tablet\:focus\:rotate-196:focus,
  .tablet\:group:hover .group-hover\:rotate-196,
  .tablet\:group:focus-within .group-focus-within\:rotate-196 {
    transform: rotate(196deg);
  }
  .tablet\:rotate-197,
  .tablet\:hover\:rotate-197:hover,
  .tablet\:focus\:rotate-197:focus,
  .tablet\:group:hover .group-hover\:rotate-197,
  .tablet\:group:focus-within .group-focus-within\:rotate-197 {
    transform: rotate(197deg);
  }
  .tablet\:rotate-198,
  .tablet\:hover\:rotate-198:hover,
  .tablet\:focus\:rotate-198:focus,
  .tablet\:group:hover .group-hover\:rotate-198,
  .tablet\:group:focus-within .group-focus-within\:rotate-198 {
    transform: rotate(198deg);
  }
  .tablet\:rotate-199,
  .tablet\:hover\:rotate-199:hover,
  .tablet\:focus\:rotate-199:focus,
  .tablet\:group:hover .group-hover\:rotate-199,
  .tablet\:group:focus-within .group-focus-within\:rotate-199 {
    transform: rotate(199deg);
  }
  .tablet\:rotate-200,
  .tablet\:hover\:rotate-200:hover,
  .tablet\:focus\:rotate-200:focus,
  .tablet\:group:hover .group-hover\:rotate-200,
  .tablet\:group:focus-within .group-focus-within\:rotate-200 {
    transform: rotate(200deg);
  }
  .tablet\:rotate-201,
  .tablet\:hover\:rotate-201:hover,
  .tablet\:focus\:rotate-201:focus,
  .tablet\:group:hover .group-hover\:rotate-201,
  .tablet\:group:focus-within .group-focus-within\:rotate-201 {
    transform: rotate(201deg);
  }
  .tablet\:rotate-202,
  .tablet\:hover\:rotate-202:hover,
  .tablet\:focus\:rotate-202:focus,
  .tablet\:group:hover .group-hover\:rotate-202,
  .tablet\:group:focus-within .group-focus-within\:rotate-202 {
    transform: rotate(202deg);
  }
  .tablet\:rotate-203,
  .tablet\:hover\:rotate-203:hover,
  .tablet\:focus\:rotate-203:focus,
  .tablet\:group:hover .group-hover\:rotate-203,
  .tablet\:group:focus-within .group-focus-within\:rotate-203 {
    transform: rotate(203deg);
  }
  .tablet\:rotate-204,
  .tablet\:hover\:rotate-204:hover,
  .tablet\:focus\:rotate-204:focus,
  .tablet\:group:hover .group-hover\:rotate-204,
  .tablet\:group:focus-within .group-focus-within\:rotate-204 {
    transform: rotate(204deg);
  }
  .tablet\:rotate-205,
  .tablet\:hover\:rotate-205:hover,
  .tablet\:focus\:rotate-205:focus,
  .tablet\:group:hover .group-hover\:rotate-205,
  .tablet\:group:focus-within .group-focus-within\:rotate-205 {
    transform: rotate(205deg);
  }
  .tablet\:rotate-206,
  .tablet\:hover\:rotate-206:hover,
  .tablet\:focus\:rotate-206:focus,
  .tablet\:group:hover .group-hover\:rotate-206,
  .tablet\:group:focus-within .group-focus-within\:rotate-206 {
    transform: rotate(206deg);
  }
  .tablet\:rotate-207,
  .tablet\:hover\:rotate-207:hover,
  .tablet\:focus\:rotate-207:focus,
  .tablet\:group:hover .group-hover\:rotate-207,
  .tablet\:group:focus-within .group-focus-within\:rotate-207 {
    transform: rotate(207deg);
  }
  .tablet\:rotate-208,
  .tablet\:hover\:rotate-208:hover,
  .tablet\:focus\:rotate-208:focus,
  .tablet\:group:hover .group-hover\:rotate-208,
  .tablet\:group:focus-within .group-focus-within\:rotate-208 {
    transform: rotate(208deg);
  }
  .tablet\:rotate-209,
  .tablet\:hover\:rotate-209:hover,
  .tablet\:focus\:rotate-209:focus,
  .tablet\:group:hover .group-hover\:rotate-209,
  .tablet\:group:focus-within .group-focus-within\:rotate-209 {
    transform: rotate(209deg);
  }
  .tablet\:rotate-210,
  .tablet\:hover\:rotate-210:hover,
  .tablet\:focus\:rotate-210:focus,
  .tablet\:group:hover .group-hover\:rotate-210,
  .tablet\:group:focus-within .group-focus-within\:rotate-210 {
    transform: rotate(210deg);
  }
  .tablet\:rotate-211,
  .tablet\:hover\:rotate-211:hover,
  .tablet\:focus\:rotate-211:focus,
  .tablet\:group:hover .group-hover\:rotate-211,
  .tablet\:group:focus-within .group-focus-within\:rotate-211 {
    transform: rotate(211deg);
  }
  .tablet\:rotate-212,
  .tablet\:hover\:rotate-212:hover,
  .tablet\:focus\:rotate-212:focus,
  .tablet\:group:hover .group-hover\:rotate-212,
  .tablet\:group:focus-within .group-focus-within\:rotate-212 {
    transform: rotate(212deg);
  }
  .tablet\:rotate-213,
  .tablet\:hover\:rotate-213:hover,
  .tablet\:focus\:rotate-213:focus,
  .tablet\:group:hover .group-hover\:rotate-213,
  .tablet\:group:focus-within .group-focus-within\:rotate-213 {
    transform: rotate(213deg);
  }
  .tablet\:rotate-214,
  .tablet\:hover\:rotate-214:hover,
  .tablet\:focus\:rotate-214:focus,
  .tablet\:group:hover .group-hover\:rotate-214,
  .tablet\:group:focus-within .group-focus-within\:rotate-214 {
    transform: rotate(214deg);
  }
  .tablet\:rotate-215,
  .tablet\:hover\:rotate-215:hover,
  .tablet\:focus\:rotate-215:focus,
  .tablet\:group:hover .group-hover\:rotate-215,
  .tablet\:group:focus-within .group-focus-within\:rotate-215 {
    transform: rotate(215deg);
  }
  .tablet\:rotate-216,
  .tablet\:hover\:rotate-216:hover,
  .tablet\:focus\:rotate-216:focus,
  .tablet\:group:hover .group-hover\:rotate-216,
  .tablet\:group:focus-within .group-focus-within\:rotate-216 {
    transform: rotate(216deg);
  }
  .tablet\:rotate-217,
  .tablet\:hover\:rotate-217:hover,
  .tablet\:focus\:rotate-217:focus,
  .tablet\:group:hover .group-hover\:rotate-217,
  .tablet\:group:focus-within .group-focus-within\:rotate-217 {
    transform: rotate(217deg);
  }
  .tablet\:rotate-218,
  .tablet\:hover\:rotate-218:hover,
  .tablet\:focus\:rotate-218:focus,
  .tablet\:group:hover .group-hover\:rotate-218,
  .tablet\:group:focus-within .group-focus-within\:rotate-218 {
    transform: rotate(218deg);
  }
  .tablet\:rotate-219,
  .tablet\:hover\:rotate-219:hover,
  .tablet\:focus\:rotate-219:focus,
  .tablet\:group:hover .group-hover\:rotate-219,
  .tablet\:group:focus-within .group-focus-within\:rotate-219 {
    transform: rotate(219deg);
  }
  .tablet\:rotate-220,
  .tablet\:hover\:rotate-220:hover,
  .tablet\:focus\:rotate-220:focus,
  .tablet\:group:hover .group-hover\:rotate-220,
  .tablet\:group:focus-within .group-focus-within\:rotate-220 {
    transform: rotate(220deg);
  }
  .tablet\:rotate-221,
  .tablet\:hover\:rotate-221:hover,
  .tablet\:focus\:rotate-221:focus,
  .tablet\:group:hover .group-hover\:rotate-221,
  .tablet\:group:focus-within .group-focus-within\:rotate-221 {
    transform: rotate(221deg);
  }
  .tablet\:rotate-222,
  .tablet\:hover\:rotate-222:hover,
  .tablet\:focus\:rotate-222:focus,
  .tablet\:group:hover .group-hover\:rotate-222,
  .tablet\:group:focus-within .group-focus-within\:rotate-222 {
    transform: rotate(222deg);
  }
  .tablet\:rotate-223,
  .tablet\:hover\:rotate-223:hover,
  .tablet\:focus\:rotate-223:focus,
  .tablet\:group:hover .group-hover\:rotate-223,
  .tablet\:group:focus-within .group-focus-within\:rotate-223 {
    transform: rotate(223deg);
  }
  .tablet\:rotate-224,
  .tablet\:hover\:rotate-224:hover,
  .tablet\:focus\:rotate-224:focus,
  .tablet\:group:hover .group-hover\:rotate-224,
  .tablet\:group:focus-within .group-focus-within\:rotate-224 {
    transform: rotate(224deg);
  }
  .tablet\:rotate-225,
  .tablet\:hover\:rotate-225:hover,
  .tablet\:focus\:rotate-225:focus,
  .tablet\:group:hover .group-hover\:rotate-225,
  .tablet\:group:focus-within .group-focus-within\:rotate-225 {
    transform: rotate(225deg);
  }
  .tablet\:rotate-226,
  .tablet\:hover\:rotate-226:hover,
  .tablet\:focus\:rotate-226:focus,
  .tablet\:group:hover .group-hover\:rotate-226,
  .tablet\:group:focus-within .group-focus-within\:rotate-226 {
    transform: rotate(226deg);
  }
  .tablet\:rotate-227,
  .tablet\:hover\:rotate-227:hover,
  .tablet\:focus\:rotate-227:focus,
  .tablet\:group:hover .group-hover\:rotate-227,
  .tablet\:group:focus-within .group-focus-within\:rotate-227 {
    transform: rotate(227deg);
  }
  .tablet\:rotate-228,
  .tablet\:hover\:rotate-228:hover,
  .tablet\:focus\:rotate-228:focus,
  .tablet\:group:hover .group-hover\:rotate-228,
  .tablet\:group:focus-within .group-focus-within\:rotate-228 {
    transform: rotate(228deg);
  }
  .tablet\:rotate-229,
  .tablet\:hover\:rotate-229:hover,
  .tablet\:focus\:rotate-229:focus,
  .tablet\:group:hover .group-hover\:rotate-229,
  .tablet\:group:focus-within .group-focus-within\:rotate-229 {
    transform: rotate(229deg);
  }
  .tablet\:rotate-230,
  .tablet\:hover\:rotate-230:hover,
  .tablet\:focus\:rotate-230:focus,
  .tablet\:group:hover .group-hover\:rotate-230,
  .tablet\:group:focus-within .group-focus-within\:rotate-230 {
    transform: rotate(230deg);
  }
  .tablet\:rotate-231,
  .tablet\:hover\:rotate-231:hover,
  .tablet\:focus\:rotate-231:focus,
  .tablet\:group:hover .group-hover\:rotate-231,
  .tablet\:group:focus-within .group-focus-within\:rotate-231 {
    transform: rotate(231deg);
  }
  .tablet\:rotate-232,
  .tablet\:hover\:rotate-232:hover,
  .tablet\:focus\:rotate-232:focus,
  .tablet\:group:hover .group-hover\:rotate-232,
  .tablet\:group:focus-within .group-focus-within\:rotate-232 {
    transform: rotate(232deg);
  }
  .tablet\:rotate-233,
  .tablet\:hover\:rotate-233:hover,
  .tablet\:focus\:rotate-233:focus,
  .tablet\:group:hover .group-hover\:rotate-233,
  .tablet\:group:focus-within .group-focus-within\:rotate-233 {
    transform: rotate(233deg);
  }
  .tablet\:rotate-234,
  .tablet\:hover\:rotate-234:hover,
  .tablet\:focus\:rotate-234:focus,
  .tablet\:group:hover .group-hover\:rotate-234,
  .tablet\:group:focus-within .group-focus-within\:rotate-234 {
    transform: rotate(234deg);
  }
  .tablet\:rotate-235,
  .tablet\:hover\:rotate-235:hover,
  .tablet\:focus\:rotate-235:focus,
  .tablet\:group:hover .group-hover\:rotate-235,
  .tablet\:group:focus-within .group-focus-within\:rotate-235 {
    transform: rotate(235deg);
  }
  .tablet\:rotate-236,
  .tablet\:hover\:rotate-236:hover,
  .tablet\:focus\:rotate-236:focus,
  .tablet\:group:hover .group-hover\:rotate-236,
  .tablet\:group:focus-within .group-focus-within\:rotate-236 {
    transform: rotate(236deg);
  }
  .tablet\:rotate-237,
  .tablet\:hover\:rotate-237:hover,
  .tablet\:focus\:rotate-237:focus,
  .tablet\:group:hover .group-hover\:rotate-237,
  .tablet\:group:focus-within .group-focus-within\:rotate-237 {
    transform: rotate(237deg);
  }
  .tablet\:rotate-238,
  .tablet\:hover\:rotate-238:hover,
  .tablet\:focus\:rotate-238:focus,
  .tablet\:group:hover .group-hover\:rotate-238,
  .tablet\:group:focus-within .group-focus-within\:rotate-238 {
    transform: rotate(238deg);
  }
  .tablet\:rotate-239,
  .tablet\:hover\:rotate-239:hover,
  .tablet\:focus\:rotate-239:focus,
  .tablet\:group:hover .group-hover\:rotate-239,
  .tablet\:group:focus-within .group-focus-within\:rotate-239 {
    transform: rotate(239deg);
  }
  .tablet\:rotate-240,
  .tablet\:hover\:rotate-240:hover,
  .tablet\:focus\:rotate-240:focus,
  .tablet\:group:hover .group-hover\:rotate-240,
  .tablet\:group:focus-within .group-focus-within\:rotate-240 {
    transform: rotate(240deg);
  }
  .tablet\:rotate-241,
  .tablet\:hover\:rotate-241:hover,
  .tablet\:focus\:rotate-241:focus,
  .tablet\:group:hover .group-hover\:rotate-241,
  .tablet\:group:focus-within .group-focus-within\:rotate-241 {
    transform: rotate(241deg);
  }
  .tablet\:rotate-242,
  .tablet\:hover\:rotate-242:hover,
  .tablet\:focus\:rotate-242:focus,
  .tablet\:group:hover .group-hover\:rotate-242,
  .tablet\:group:focus-within .group-focus-within\:rotate-242 {
    transform: rotate(242deg);
  }
  .tablet\:rotate-243,
  .tablet\:hover\:rotate-243:hover,
  .tablet\:focus\:rotate-243:focus,
  .tablet\:group:hover .group-hover\:rotate-243,
  .tablet\:group:focus-within .group-focus-within\:rotate-243 {
    transform: rotate(243deg);
  }
  .tablet\:rotate-244,
  .tablet\:hover\:rotate-244:hover,
  .tablet\:focus\:rotate-244:focus,
  .tablet\:group:hover .group-hover\:rotate-244,
  .tablet\:group:focus-within .group-focus-within\:rotate-244 {
    transform: rotate(244deg);
  }
  .tablet\:rotate-245,
  .tablet\:hover\:rotate-245:hover,
  .tablet\:focus\:rotate-245:focus,
  .tablet\:group:hover .group-hover\:rotate-245,
  .tablet\:group:focus-within .group-focus-within\:rotate-245 {
    transform: rotate(245deg);
  }
  .tablet\:rotate-246,
  .tablet\:hover\:rotate-246:hover,
  .tablet\:focus\:rotate-246:focus,
  .tablet\:group:hover .group-hover\:rotate-246,
  .tablet\:group:focus-within .group-focus-within\:rotate-246 {
    transform: rotate(246deg);
  }
  .tablet\:rotate-247,
  .tablet\:hover\:rotate-247:hover,
  .tablet\:focus\:rotate-247:focus,
  .tablet\:group:hover .group-hover\:rotate-247,
  .tablet\:group:focus-within .group-focus-within\:rotate-247 {
    transform: rotate(247deg);
  }
  .tablet\:rotate-248,
  .tablet\:hover\:rotate-248:hover,
  .tablet\:focus\:rotate-248:focus,
  .tablet\:group:hover .group-hover\:rotate-248,
  .tablet\:group:focus-within .group-focus-within\:rotate-248 {
    transform: rotate(248deg);
  }
  .tablet\:rotate-249,
  .tablet\:hover\:rotate-249:hover,
  .tablet\:focus\:rotate-249:focus,
  .tablet\:group:hover .group-hover\:rotate-249,
  .tablet\:group:focus-within .group-focus-within\:rotate-249 {
    transform: rotate(249deg);
  }
  .tablet\:rotate-250,
  .tablet\:hover\:rotate-250:hover,
  .tablet\:focus\:rotate-250:focus,
  .tablet\:group:hover .group-hover\:rotate-250,
  .tablet\:group:focus-within .group-focus-within\:rotate-250 {
    transform: rotate(250deg);
  }
  .tablet\:rotate-251,
  .tablet\:hover\:rotate-251:hover,
  .tablet\:focus\:rotate-251:focus,
  .tablet\:group:hover .group-hover\:rotate-251,
  .tablet\:group:focus-within .group-focus-within\:rotate-251 {
    transform: rotate(251deg);
  }
  .tablet\:rotate-252,
  .tablet\:hover\:rotate-252:hover,
  .tablet\:focus\:rotate-252:focus,
  .tablet\:group:hover .group-hover\:rotate-252,
  .tablet\:group:focus-within .group-focus-within\:rotate-252 {
    transform: rotate(252deg);
  }
  .tablet\:rotate-253,
  .tablet\:hover\:rotate-253:hover,
  .tablet\:focus\:rotate-253:focus,
  .tablet\:group:hover .group-hover\:rotate-253,
  .tablet\:group:focus-within .group-focus-within\:rotate-253 {
    transform: rotate(253deg);
  }
  .tablet\:rotate-254,
  .tablet\:hover\:rotate-254:hover,
  .tablet\:focus\:rotate-254:focus,
  .tablet\:group:hover .group-hover\:rotate-254,
  .tablet\:group:focus-within .group-focus-within\:rotate-254 {
    transform: rotate(254deg);
  }
  .tablet\:rotate-255,
  .tablet\:hover\:rotate-255:hover,
  .tablet\:focus\:rotate-255:focus,
  .tablet\:group:hover .group-hover\:rotate-255,
  .tablet\:group:focus-within .group-focus-within\:rotate-255 {
    transform: rotate(255deg);
  }
  .tablet\:rotate-256,
  .tablet\:hover\:rotate-256:hover,
  .tablet\:focus\:rotate-256:focus,
  .tablet\:group:hover .group-hover\:rotate-256,
  .tablet\:group:focus-within .group-focus-within\:rotate-256 {
    transform: rotate(256deg);
  }
  .tablet\:rotate-257,
  .tablet\:hover\:rotate-257:hover,
  .tablet\:focus\:rotate-257:focus,
  .tablet\:group:hover .group-hover\:rotate-257,
  .tablet\:group:focus-within .group-focus-within\:rotate-257 {
    transform: rotate(257deg);
  }
  .tablet\:rotate-258,
  .tablet\:hover\:rotate-258:hover,
  .tablet\:focus\:rotate-258:focus,
  .tablet\:group:hover .group-hover\:rotate-258,
  .tablet\:group:focus-within .group-focus-within\:rotate-258 {
    transform: rotate(258deg);
  }
  .tablet\:rotate-259,
  .tablet\:hover\:rotate-259:hover,
  .tablet\:focus\:rotate-259:focus,
  .tablet\:group:hover .group-hover\:rotate-259,
  .tablet\:group:focus-within .group-focus-within\:rotate-259 {
    transform: rotate(259deg);
  }
  .tablet\:rotate-260,
  .tablet\:hover\:rotate-260:hover,
  .tablet\:focus\:rotate-260:focus,
  .tablet\:group:hover .group-hover\:rotate-260,
  .tablet\:group:focus-within .group-focus-within\:rotate-260 {
    transform: rotate(260deg);
  }
  .tablet\:rotate-261,
  .tablet\:hover\:rotate-261:hover,
  .tablet\:focus\:rotate-261:focus,
  .tablet\:group:hover .group-hover\:rotate-261,
  .tablet\:group:focus-within .group-focus-within\:rotate-261 {
    transform: rotate(261deg);
  }
  .tablet\:rotate-262,
  .tablet\:hover\:rotate-262:hover,
  .tablet\:focus\:rotate-262:focus,
  .tablet\:group:hover .group-hover\:rotate-262,
  .tablet\:group:focus-within .group-focus-within\:rotate-262 {
    transform: rotate(262deg);
  }
  .tablet\:rotate-263,
  .tablet\:hover\:rotate-263:hover,
  .tablet\:focus\:rotate-263:focus,
  .tablet\:group:hover .group-hover\:rotate-263,
  .tablet\:group:focus-within .group-focus-within\:rotate-263 {
    transform: rotate(263deg);
  }
  .tablet\:rotate-264,
  .tablet\:hover\:rotate-264:hover,
  .tablet\:focus\:rotate-264:focus,
  .tablet\:group:hover .group-hover\:rotate-264,
  .tablet\:group:focus-within .group-focus-within\:rotate-264 {
    transform: rotate(264deg);
  }
  .tablet\:rotate-265,
  .tablet\:hover\:rotate-265:hover,
  .tablet\:focus\:rotate-265:focus,
  .tablet\:group:hover .group-hover\:rotate-265,
  .tablet\:group:focus-within .group-focus-within\:rotate-265 {
    transform: rotate(265deg);
  }
  .tablet\:rotate-266,
  .tablet\:hover\:rotate-266:hover,
  .tablet\:focus\:rotate-266:focus,
  .tablet\:group:hover .group-hover\:rotate-266,
  .tablet\:group:focus-within .group-focus-within\:rotate-266 {
    transform: rotate(266deg);
  }
  .tablet\:rotate-267,
  .tablet\:hover\:rotate-267:hover,
  .tablet\:focus\:rotate-267:focus,
  .tablet\:group:hover .group-hover\:rotate-267,
  .tablet\:group:focus-within .group-focus-within\:rotate-267 {
    transform: rotate(267deg);
  }
  .tablet\:rotate-268,
  .tablet\:hover\:rotate-268:hover,
  .tablet\:focus\:rotate-268:focus,
  .tablet\:group:hover .group-hover\:rotate-268,
  .tablet\:group:focus-within .group-focus-within\:rotate-268 {
    transform: rotate(268deg);
  }
  .tablet\:rotate-269,
  .tablet\:hover\:rotate-269:hover,
  .tablet\:focus\:rotate-269:focus,
  .tablet\:group:hover .group-hover\:rotate-269,
  .tablet\:group:focus-within .group-focus-within\:rotate-269 {
    transform: rotate(269deg);
  }
  .tablet\:rotate-270,
  .tablet\:hover\:rotate-270:hover,
  .tablet\:focus\:rotate-270:focus,
  .tablet\:group:hover .group-hover\:rotate-270,
  .tablet\:group:focus-within .group-focus-within\:rotate-270 {
    transform: rotate(270deg);
  }
  .tablet\:rotate-271,
  .tablet\:hover\:rotate-271:hover,
  .tablet\:focus\:rotate-271:focus,
  .tablet\:group:hover .group-hover\:rotate-271,
  .tablet\:group:focus-within .group-focus-within\:rotate-271 {
    transform: rotate(271deg);
  }
  .tablet\:rotate-272,
  .tablet\:hover\:rotate-272:hover,
  .tablet\:focus\:rotate-272:focus,
  .tablet\:group:hover .group-hover\:rotate-272,
  .tablet\:group:focus-within .group-focus-within\:rotate-272 {
    transform: rotate(272deg);
  }
  .tablet\:rotate-273,
  .tablet\:hover\:rotate-273:hover,
  .tablet\:focus\:rotate-273:focus,
  .tablet\:group:hover .group-hover\:rotate-273,
  .tablet\:group:focus-within .group-focus-within\:rotate-273 {
    transform: rotate(273deg);
  }
  .tablet\:rotate-274,
  .tablet\:hover\:rotate-274:hover,
  .tablet\:focus\:rotate-274:focus,
  .tablet\:group:hover .group-hover\:rotate-274,
  .tablet\:group:focus-within .group-focus-within\:rotate-274 {
    transform: rotate(274deg);
  }
  .tablet\:rotate-275,
  .tablet\:hover\:rotate-275:hover,
  .tablet\:focus\:rotate-275:focus,
  .tablet\:group:hover .group-hover\:rotate-275,
  .tablet\:group:focus-within .group-focus-within\:rotate-275 {
    transform: rotate(275deg);
  }
  .tablet\:rotate-276,
  .tablet\:hover\:rotate-276:hover,
  .tablet\:focus\:rotate-276:focus,
  .tablet\:group:hover .group-hover\:rotate-276,
  .tablet\:group:focus-within .group-focus-within\:rotate-276 {
    transform: rotate(276deg);
  }
  .tablet\:rotate-277,
  .tablet\:hover\:rotate-277:hover,
  .tablet\:focus\:rotate-277:focus,
  .tablet\:group:hover .group-hover\:rotate-277,
  .tablet\:group:focus-within .group-focus-within\:rotate-277 {
    transform: rotate(277deg);
  }
  .tablet\:rotate-278,
  .tablet\:hover\:rotate-278:hover,
  .tablet\:focus\:rotate-278:focus,
  .tablet\:group:hover .group-hover\:rotate-278,
  .tablet\:group:focus-within .group-focus-within\:rotate-278 {
    transform: rotate(278deg);
  }
  .tablet\:rotate-279,
  .tablet\:hover\:rotate-279:hover,
  .tablet\:focus\:rotate-279:focus,
  .tablet\:group:hover .group-hover\:rotate-279,
  .tablet\:group:focus-within .group-focus-within\:rotate-279 {
    transform: rotate(279deg);
  }
  .tablet\:rotate-280,
  .tablet\:hover\:rotate-280:hover,
  .tablet\:focus\:rotate-280:focus,
  .tablet\:group:hover .group-hover\:rotate-280,
  .tablet\:group:focus-within .group-focus-within\:rotate-280 {
    transform: rotate(280deg);
  }
  .tablet\:rotate-281,
  .tablet\:hover\:rotate-281:hover,
  .tablet\:focus\:rotate-281:focus,
  .tablet\:group:hover .group-hover\:rotate-281,
  .tablet\:group:focus-within .group-focus-within\:rotate-281 {
    transform: rotate(281deg);
  }
  .tablet\:rotate-282,
  .tablet\:hover\:rotate-282:hover,
  .tablet\:focus\:rotate-282:focus,
  .tablet\:group:hover .group-hover\:rotate-282,
  .tablet\:group:focus-within .group-focus-within\:rotate-282 {
    transform: rotate(282deg);
  }
  .tablet\:rotate-283,
  .tablet\:hover\:rotate-283:hover,
  .tablet\:focus\:rotate-283:focus,
  .tablet\:group:hover .group-hover\:rotate-283,
  .tablet\:group:focus-within .group-focus-within\:rotate-283 {
    transform: rotate(283deg);
  }
  .tablet\:rotate-284,
  .tablet\:hover\:rotate-284:hover,
  .tablet\:focus\:rotate-284:focus,
  .tablet\:group:hover .group-hover\:rotate-284,
  .tablet\:group:focus-within .group-focus-within\:rotate-284 {
    transform: rotate(284deg);
  }
  .tablet\:rotate-285,
  .tablet\:hover\:rotate-285:hover,
  .tablet\:focus\:rotate-285:focus,
  .tablet\:group:hover .group-hover\:rotate-285,
  .tablet\:group:focus-within .group-focus-within\:rotate-285 {
    transform: rotate(285deg);
  }
  .tablet\:rotate-286,
  .tablet\:hover\:rotate-286:hover,
  .tablet\:focus\:rotate-286:focus,
  .tablet\:group:hover .group-hover\:rotate-286,
  .tablet\:group:focus-within .group-focus-within\:rotate-286 {
    transform: rotate(286deg);
  }
  .tablet\:rotate-287,
  .tablet\:hover\:rotate-287:hover,
  .tablet\:focus\:rotate-287:focus,
  .tablet\:group:hover .group-hover\:rotate-287,
  .tablet\:group:focus-within .group-focus-within\:rotate-287 {
    transform: rotate(287deg);
  }
  .tablet\:rotate-288,
  .tablet\:hover\:rotate-288:hover,
  .tablet\:focus\:rotate-288:focus,
  .tablet\:group:hover .group-hover\:rotate-288,
  .tablet\:group:focus-within .group-focus-within\:rotate-288 {
    transform: rotate(288deg);
  }
  .tablet\:rotate-289,
  .tablet\:hover\:rotate-289:hover,
  .tablet\:focus\:rotate-289:focus,
  .tablet\:group:hover .group-hover\:rotate-289,
  .tablet\:group:focus-within .group-focus-within\:rotate-289 {
    transform: rotate(289deg);
  }
  .tablet\:rotate-290,
  .tablet\:hover\:rotate-290:hover,
  .tablet\:focus\:rotate-290:focus,
  .tablet\:group:hover .group-hover\:rotate-290,
  .tablet\:group:focus-within .group-focus-within\:rotate-290 {
    transform: rotate(290deg);
  }
  .tablet\:rotate-291,
  .tablet\:hover\:rotate-291:hover,
  .tablet\:focus\:rotate-291:focus,
  .tablet\:group:hover .group-hover\:rotate-291,
  .tablet\:group:focus-within .group-focus-within\:rotate-291 {
    transform: rotate(291deg);
  }
  .tablet\:rotate-292,
  .tablet\:hover\:rotate-292:hover,
  .tablet\:focus\:rotate-292:focus,
  .tablet\:group:hover .group-hover\:rotate-292,
  .tablet\:group:focus-within .group-focus-within\:rotate-292 {
    transform: rotate(292deg);
  }
  .tablet\:rotate-293,
  .tablet\:hover\:rotate-293:hover,
  .tablet\:focus\:rotate-293:focus,
  .tablet\:group:hover .group-hover\:rotate-293,
  .tablet\:group:focus-within .group-focus-within\:rotate-293 {
    transform: rotate(293deg);
  }
  .tablet\:rotate-294,
  .tablet\:hover\:rotate-294:hover,
  .tablet\:focus\:rotate-294:focus,
  .tablet\:group:hover .group-hover\:rotate-294,
  .tablet\:group:focus-within .group-focus-within\:rotate-294 {
    transform: rotate(294deg);
  }
  .tablet\:rotate-295,
  .tablet\:hover\:rotate-295:hover,
  .tablet\:focus\:rotate-295:focus,
  .tablet\:group:hover .group-hover\:rotate-295,
  .tablet\:group:focus-within .group-focus-within\:rotate-295 {
    transform: rotate(295deg);
  }
  .tablet\:rotate-296,
  .tablet\:hover\:rotate-296:hover,
  .tablet\:focus\:rotate-296:focus,
  .tablet\:group:hover .group-hover\:rotate-296,
  .tablet\:group:focus-within .group-focus-within\:rotate-296 {
    transform: rotate(296deg);
  }
  .tablet\:rotate-297,
  .tablet\:hover\:rotate-297:hover,
  .tablet\:focus\:rotate-297:focus,
  .tablet\:group:hover .group-hover\:rotate-297,
  .tablet\:group:focus-within .group-focus-within\:rotate-297 {
    transform: rotate(297deg);
  }
  .tablet\:rotate-298,
  .tablet\:hover\:rotate-298:hover,
  .tablet\:focus\:rotate-298:focus,
  .tablet\:group:hover .group-hover\:rotate-298,
  .tablet\:group:focus-within .group-focus-within\:rotate-298 {
    transform: rotate(298deg);
  }
  .tablet\:rotate-299,
  .tablet\:hover\:rotate-299:hover,
  .tablet\:focus\:rotate-299:focus,
  .tablet\:group:hover .group-hover\:rotate-299,
  .tablet\:group:focus-within .group-focus-within\:rotate-299 {
    transform: rotate(299deg);
  }
  .tablet\:rotate-300,
  .tablet\:hover\:rotate-300:hover,
  .tablet\:focus\:rotate-300:focus,
  .tablet\:group:hover .group-hover\:rotate-300,
  .tablet\:group:focus-within .group-focus-within\:rotate-300 {
    transform: rotate(300deg);
  }
  .tablet\:rotate-301,
  .tablet\:hover\:rotate-301:hover,
  .tablet\:focus\:rotate-301:focus,
  .tablet\:group:hover .group-hover\:rotate-301,
  .tablet\:group:focus-within .group-focus-within\:rotate-301 {
    transform: rotate(301deg);
  }
  .tablet\:rotate-302,
  .tablet\:hover\:rotate-302:hover,
  .tablet\:focus\:rotate-302:focus,
  .tablet\:group:hover .group-hover\:rotate-302,
  .tablet\:group:focus-within .group-focus-within\:rotate-302 {
    transform: rotate(302deg);
  }
  .tablet\:rotate-303,
  .tablet\:hover\:rotate-303:hover,
  .tablet\:focus\:rotate-303:focus,
  .tablet\:group:hover .group-hover\:rotate-303,
  .tablet\:group:focus-within .group-focus-within\:rotate-303 {
    transform: rotate(303deg);
  }
  .tablet\:rotate-304,
  .tablet\:hover\:rotate-304:hover,
  .tablet\:focus\:rotate-304:focus,
  .tablet\:group:hover .group-hover\:rotate-304,
  .tablet\:group:focus-within .group-focus-within\:rotate-304 {
    transform: rotate(304deg);
  }
  .tablet\:rotate-305,
  .tablet\:hover\:rotate-305:hover,
  .tablet\:focus\:rotate-305:focus,
  .tablet\:group:hover .group-hover\:rotate-305,
  .tablet\:group:focus-within .group-focus-within\:rotate-305 {
    transform: rotate(305deg);
  }
  .tablet\:rotate-306,
  .tablet\:hover\:rotate-306:hover,
  .tablet\:focus\:rotate-306:focus,
  .tablet\:group:hover .group-hover\:rotate-306,
  .tablet\:group:focus-within .group-focus-within\:rotate-306 {
    transform: rotate(306deg);
  }
  .tablet\:rotate-307,
  .tablet\:hover\:rotate-307:hover,
  .tablet\:focus\:rotate-307:focus,
  .tablet\:group:hover .group-hover\:rotate-307,
  .tablet\:group:focus-within .group-focus-within\:rotate-307 {
    transform: rotate(307deg);
  }
  .tablet\:rotate-308,
  .tablet\:hover\:rotate-308:hover,
  .tablet\:focus\:rotate-308:focus,
  .tablet\:group:hover .group-hover\:rotate-308,
  .tablet\:group:focus-within .group-focus-within\:rotate-308 {
    transform: rotate(308deg);
  }
  .tablet\:rotate-309,
  .tablet\:hover\:rotate-309:hover,
  .tablet\:focus\:rotate-309:focus,
  .tablet\:group:hover .group-hover\:rotate-309,
  .tablet\:group:focus-within .group-focus-within\:rotate-309 {
    transform: rotate(309deg);
  }
  .tablet\:rotate-310,
  .tablet\:hover\:rotate-310:hover,
  .tablet\:focus\:rotate-310:focus,
  .tablet\:group:hover .group-hover\:rotate-310,
  .tablet\:group:focus-within .group-focus-within\:rotate-310 {
    transform: rotate(310deg);
  }
  .tablet\:rotate-311,
  .tablet\:hover\:rotate-311:hover,
  .tablet\:focus\:rotate-311:focus,
  .tablet\:group:hover .group-hover\:rotate-311,
  .tablet\:group:focus-within .group-focus-within\:rotate-311 {
    transform: rotate(311deg);
  }
  .tablet\:rotate-312,
  .tablet\:hover\:rotate-312:hover,
  .tablet\:focus\:rotate-312:focus,
  .tablet\:group:hover .group-hover\:rotate-312,
  .tablet\:group:focus-within .group-focus-within\:rotate-312 {
    transform: rotate(312deg);
  }
  .tablet\:rotate-313,
  .tablet\:hover\:rotate-313:hover,
  .tablet\:focus\:rotate-313:focus,
  .tablet\:group:hover .group-hover\:rotate-313,
  .tablet\:group:focus-within .group-focus-within\:rotate-313 {
    transform: rotate(313deg);
  }
  .tablet\:rotate-314,
  .tablet\:hover\:rotate-314:hover,
  .tablet\:focus\:rotate-314:focus,
  .tablet\:group:hover .group-hover\:rotate-314,
  .tablet\:group:focus-within .group-focus-within\:rotate-314 {
    transform: rotate(314deg);
  }
  .tablet\:rotate-315,
  .tablet\:hover\:rotate-315:hover,
  .tablet\:focus\:rotate-315:focus,
  .tablet\:group:hover .group-hover\:rotate-315,
  .tablet\:group:focus-within .group-focus-within\:rotate-315 {
    transform: rotate(315deg);
  }
  .tablet\:rotate-316,
  .tablet\:hover\:rotate-316:hover,
  .tablet\:focus\:rotate-316:focus,
  .tablet\:group:hover .group-hover\:rotate-316,
  .tablet\:group:focus-within .group-focus-within\:rotate-316 {
    transform: rotate(316deg);
  }
  .tablet\:rotate-317,
  .tablet\:hover\:rotate-317:hover,
  .tablet\:focus\:rotate-317:focus,
  .tablet\:group:hover .group-hover\:rotate-317,
  .tablet\:group:focus-within .group-focus-within\:rotate-317 {
    transform: rotate(317deg);
  }
  .tablet\:rotate-318,
  .tablet\:hover\:rotate-318:hover,
  .tablet\:focus\:rotate-318:focus,
  .tablet\:group:hover .group-hover\:rotate-318,
  .tablet\:group:focus-within .group-focus-within\:rotate-318 {
    transform: rotate(318deg);
  }
  .tablet\:rotate-319,
  .tablet\:hover\:rotate-319:hover,
  .tablet\:focus\:rotate-319:focus,
  .tablet\:group:hover .group-hover\:rotate-319,
  .tablet\:group:focus-within .group-focus-within\:rotate-319 {
    transform: rotate(319deg);
  }
  .tablet\:rotate-320,
  .tablet\:hover\:rotate-320:hover,
  .tablet\:focus\:rotate-320:focus,
  .tablet\:group:hover .group-hover\:rotate-320,
  .tablet\:group:focus-within .group-focus-within\:rotate-320 {
    transform: rotate(320deg);
  }
  .tablet\:rotate-321,
  .tablet\:hover\:rotate-321:hover,
  .tablet\:focus\:rotate-321:focus,
  .tablet\:group:hover .group-hover\:rotate-321,
  .tablet\:group:focus-within .group-focus-within\:rotate-321 {
    transform: rotate(321deg);
  }
  .tablet\:rotate-322,
  .tablet\:hover\:rotate-322:hover,
  .tablet\:focus\:rotate-322:focus,
  .tablet\:group:hover .group-hover\:rotate-322,
  .tablet\:group:focus-within .group-focus-within\:rotate-322 {
    transform: rotate(322deg);
  }
  .tablet\:rotate-323,
  .tablet\:hover\:rotate-323:hover,
  .tablet\:focus\:rotate-323:focus,
  .tablet\:group:hover .group-hover\:rotate-323,
  .tablet\:group:focus-within .group-focus-within\:rotate-323 {
    transform: rotate(323deg);
  }
  .tablet\:rotate-324,
  .tablet\:hover\:rotate-324:hover,
  .tablet\:focus\:rotate-324:focus,
  .tablet\:group:hover .group-hover\:rotate-324,
  .tablet\:group:focus-within .group-focus-within\:rotate-324 {
    transform: rotate(324deg);
  }
  .tablet\:rotate-325,
  .tablet\:hover\:rotate-325:hover,
  .tablet\:focus\:rotate-325:focus,
  .tablet\:group:hover .group-hover\:rotate-325,
  .tablet\:group:focus-within .group-focus-within\:rotate-325 {
    transform: rotate(325deg);
  }
  .tablet\:rotate-326,
  .tablet\:hover\:rotate-326:hover,
  .tablet\:focus\:rotate-326:focus,
  .tablet\:group:hover .group-hover\:rotate-326,
  .tablet\:group:focus-within .group-focus-within\:rotate-326 {
    transform: rotate(326deg);
  }
  .tablet\:rotate-327,
  .tablet\:hover\:rotate-327:hover,
  .tablet\:focus\:rotate-327:focus,
  .tablet\:group:hover .group-hover\:rotate-327,
  .tablet\:group:focus-within .group-focus-within\:rotate-327 {
    transform: rotate(327deg);
  }
  .tablet\:rotate-328,
  .tablet\:hover\:rotate-328:hover,
  .tablet\:focus\:rotate-328:focus,
  .tablet\:group:hover .group-hover\:rotate-328,
  .tablet\:group:focus-within .group-focus-within\:rotate-328 {
    transform: rotate(328deg);
  }
  .tablet\:rotate-329,
  .tablet\:hover\:rotate-329:hover,
  .tablet\:focus\:rotate-329:focus,
  .tablet\:group:hover .group-hover\:rotate-329,
  .tablet\:group:focus-within .group-focus-within\:rotate-329 {
    transform: rotate(329deg);
  }
  .tablet\:rotate-330,
  .tablet\:hover\:rotate-330:hover,
  .tablet\:focus\:rotate-330:focus,
  .tablet\:group:hover .group-hover\:rotate-330,
  .tablet\:group:focus-within .group-focus-within\:rotate-330 {
    transform: rotate(330deg);
  }
  .tablet\:rotate-331,
  .tablet\:hover\:rotate-331:hover,
  .tablet\:focus\:rotate-331:focus,
  .tablet\:group:hover .group-hover\:rotate-331,
  .tablet\:group:focus-within .group-focus-within\:rotate-331 {
    transform: rotate(331deg);
  }
  .tablet\:rotate-332,
  .tablet\:hover\:rotate-332:hover,
  .tablet\:focus\:rotate-332:focus,
  .tablet\:group:hover .group-hover\:rotate-332,
  .tablet\:group:focus-within .group-focus-within\:rotate-332 {
    transform: rotate(332deg);
  }
  .tablet\:rotate-333,
  .tablet\:hover\:rotate-333:hover,
  .tablet\:focus\:rotate-333:focus,
  .tablet\:group:hover .group-hover\:rotate-333,
  .tablet\:group:focus-within .group-focus-within\:rotate-333 {
    transform: rotate(333deg);
  }
  .tablet\:rotate-334,
  .tablet\:hover\:rotate-334:hover,
  .tablet\:focus\:rotate-334:focus,
  .tablet\:group:hover .group-hover\:rotate-334,
  .tablet\:group:focus-within .group-focus-within\:rotate-334 {
    transform: rotate(334deg);
  }
  .tablet\:rotate-335,
  .tablet\:hover\:rotate-335:hover,
  .tablet\:focus\:rotate-335:focus,
  .tablet\:group:hover .group-hover\:rotate-335,
  .tablet\:group:focus-within .group-focus-within\:rotate-335 {
    transform: rotate(335deg);
  }
  .tablet\:rotate-336,
  .tablet\:hover\:rotate-336:hover,
  .tablet\:focus\:rotate-336:focus,
  .tablet\:group:hover .group-hover\:rotate-336,
  .tablet\:group:focus-within .group-focus-within\:rotate-336 {
    transform: rotate(336deg);
  }
  .tablet\:rotate-337,
  .tablet\:hover\:rotate-337:hover,
  .tablet\:focus\:rotate-337:focus,
  .tablet\:group:hover .group-hover\:rotate-337,
  .tablet\:group:focus-within .group-focus-within\:rotate-337 {
    transform: rotate(337deg);
  }
  .tablet\:rotate-338,
  .tablet\:hover\:rotate-338:hover,
  .tablet\:focus\:rotate-338:focus,
  .tablet\:group:hover .group-hover\:rotate-338,
  .tablet\:group:focus-within .group-focus-within\:rotate-338 {
    transform: rotate(338deg);
  }
  .tablet\:rotate-339,
  .tablet\:hover\:rotate-339:hover,
  .tablet\:focus\:rotate-339:focus,
  .tablet\:group:hover .group-hover\:rotate-339,
  .tablet\:group:focus-within .group-focus-within\:rotate-339 {
    transform: rotate(339deg);
  }
  .tablet\:rotate-340,
  .tablet\:hover\:rotate-340:hover,
  .tablet\:focus\:rotate-340:focus,
  .tablet\:group:hover .group-hover\:rotate-340,
  .tablet\:group:focus-within .group-focus-within\:rotate-340 {
    transform: rotate(340deg);
  }
  .tablet\:rotate-341,
  .tablet\:hover\:rotate-341:hover,
  .tablet\:focus\:rotate-341:focus,
  .tablet\:group:hover .group-hover\:rotate-341,
  .tablet\:group:focus-within .group-focus-within\:rotate-341 {
    transform: rotate(341deg);
  }
  .tablet\:rotate-342,
  .tablet\:hover\:rotate-342:hover,
  .tablet\:focus\:rotate-342:focus,
  .tablet\:group:hover .group-hover\:rotate-342,
  .tablet\:group:focus-within .group-focus-within\:rotate-342 {
    transform: rotate(342deg);
  }
  .tablet\:rotate-343,
  .tablet\:hover\:rotate-343:hover,
  .tablet\:focus\:rotate-343:focus,
  .tablet\:group:hover .group-hover\:rotate-343,
  .tablet\:group:focus-within .group-focus-within\:rotate-343 {
    transform: rotate(343deg);
  }
  .tablet\:rotate-344,
  .tablet\:hover\:rotate-344:hover,
  .tablet\:focus\:rotate-344:focus,
  .tablet\:group:hover .group-hover\:rotate-344,
  .tablet\:group:focus-within .group-focus-within\:rotate-344 {
    transform: rotate(344deg);
  }
  .tablet\:rotate-345,
  .tablet\:hover\:rotate-345:hover,
  .tablet\:focus\:rotate-345:focus,
  .tablet\:group:hover .group-hover\:rotate-345,
  .tablet\:group:focus-within .group-focus-within\:rotate-345 {
    transform: rotate(345deg);
  }
  .tablet\:rotate-346,
  .tablet\:hover\:rotate-346:hover,
  .tablet\:focus\:rotate-346:focus,
  .tablet\:group:hover .group-hover\:rotate-346,
  .tablet\:group:focus-within .group-focus-within\:rotate-346 {
    transform: rotate(346deg);
  }
  .tablet\:rotate-347,
  .tablet\:hover\:rotate-347:hover,
  .tablet\:focus\:rotate-347:focus,
  .tablet\:group:hover .group-hover\:rotate-347,
  .tablet\:group:focus-within .group-focus-within\:rotate-347 {
    transform: rotate(347deg);
  }
  .tablet\:rotate-348,
  .tablet\:hover\:rotate-348:hover,
  .tablet\:focus\:rotate-348:focus,
  .tablet\:group:hover .group-hover\:rotate-348,
  .tablet\:group:focus-within .group-focus-within\:rotate-348 {
    transform: rotate(348deg);
  }
  .tablet\:rotate-349,
  .tablet\:hover\:rotate-349:hover,
  .tablet\:focus\:rotate-349:focus,
  .tablet\:group:hover .group-hover\:rotate-349,
  .tablet\:group:focus-within .group-focus-within\:rotate-349 {
    transform: rotate(349deg);
  }
  .tablet\:rotate-350,
  .tablet\:hover\:rotate-350:hover,
  .tablet\:focus\:rotate-350:focus,
  .tablet\:group:hover .group-hover\:rotate-350,
  .tablet\:group:focus-within .group-focus-within\:rotate-350 {
    transform: rotate(350deg);
  }
  .tablet\:rotate-351,
  .tablet\:hover\:rotate-351:hover,
  .tablet\:focus\:rotate-351:focus,
  .tablet\:group:hover .group-hover\:rotate-351,
  .tablet\:group:focus-within .group-focus-within\:rotate-351 {
    transform: rotate(351deg);
  }
  .tablet\:rotate-352,
  .tablet\:hover\:rotate-352:hover,
  .tablet\:focus\:rotate-352:focus,
  .tablet\:group:hover .group-hover\:rotate-352,
  .tablet\:group:focus-within .group-focus-within\:rotate-352 {
    transform: rotate(352deg);
  }
  .tablet\:rotate-353,
  .tablet\:hover\:rotate-353:hover,
  .tablet\:focus\:rotate-353:focus,
  .tablet\:group:hover .group-hover\:rotate-353,
  .tablet\:group:focus-within .group-focus-within\:rotate-353 {
    transform: rotate(353deg);
  }
  .tablet\:rotate-354,
  .tablet\:hover\:rotate-354:hover,
  .tablet\:focus\:rotate-354:focus,
  .tablet\:group:hover .group-hover\:rotate-354,
  .tablet\:group:focus-within .group-focus-within\:rotate-354 {
    transform: rotate(354deg);
  }
  .tablet\:rotate-355,
  .tablet\:hover\:rotate-355:hover,
  .tablet\:focus\:rotate-355:focus,
  .tablet\:group:hover .group-hover\:rotate-355,
  .tablet\:group:focus-within .group-focus-within\:rotate-355 {
    transform: rotate(355deg);
  }
  .tablet\:rotate-356,
  .tablet\:hover\:rotate-356:hover,
  .tablet\:focus\:rotate-356:focus,
  .tablet\:group:hover .group-hover\:rotate-356,
  .tablet\:group:focus-within .group-focus-within\:rotate-356 {
    transform: rotate(356deg);
  }
  .tablet\:rotate-357,
  .tablet\:hover\:rotate-357:hover,
  .tablet\:focus\:rotate-357:focus,
  .tablet\:group:hover .group-hover\:rotate-357,
  .tablet\:group:focus-within .group-focus-within\:rotate-357 {
    transform: rotate(357deg);
  }
  .tablet\:rotate-358,
  .tablet\:hover\:rotate-358:hover,
  .tablet\:focus\:rotate-358:focus,
  .tablet\:group:hover .group-hover\:rotate-358,
  .tablet\:group:focus-within .group-focus-within\:rotate-358 {
    transform: rotate(358deg);
  }
  .tablet\:rotate-359,
  .tablet\:hover\:rotate-359:hover,
  .tablet\:focus\:rotate-359:focus,
  .tablet\:group:hover .group-hover\:rotate-359,
  .tablet\:group:focus-within .group-focus-within\:rotate-359 {
    transform: rotate(359deg);
  }
  .tablet\:rotate-360,
  .tablet\:hover\:rotate-360:hover,
  .tablet\:focus\:rotate-360:focus,
  .tablet\:group:hover .group-hover\:rotate-360,
  .tablet\:group:focus-within .group-focus-within\:rotate-360 {
    transform: rotate(360deg);
  }
  .tablet\:scale-0,
  .tablet\:hover\:scale-0:hover,
  .tablet\:focus\:scale-0:focus,
  .tablet\:group:hover .group-hover\:scale-0,
  .tablet\:group:focus-within .group-focus-within\:scale-0 {
    transform: scale(0);
  }
  .tablet\:scale-1,
  .tablet\:hover\:scale-1:hover,
  .tablet\:focus\:scale-1:focus,
  .tablet\:group:hover .group-hover\:scale-1,
  .tablet\:group:focus-within .group-focus-within\:scale-1 {
    transform: scale(0.1);
  }
  .tablet\:scale-2,
  .tablet\:hover\:scale-2:hover,
  .tablet\:focus\:scale-2:focus,
  .tablet\:group:hover .group-hover\:scale-2,
  .tablet\:group:focus-within .group-focus-within\:scale-2 {
    transform: scale(0.2);
  }
  .tablet\:scale-3,
  .tablet\:hover\:scale-3:hover,
  .tablet\:focus\:scale-3:focus,
  .tablet\:group:hover .group-hover\:scale-3,
  .tablet\:group:focus-within .group-focus-within\:scale-3 {
    transform: scale(0.3);
  }
  .tablet\:scale-4,
  .tablet\:hover\:scale-4:hover,
  .tablet\:focus\:scale-4:focus,
  .tablet\:group:hover .group-hover\:scale-4,
  .tablet\:group:focus-within .group-focus-within\:scale-4 {
    transform: scale(0.4);
  }
  .tablet\:scale-5,
  .tablet\:hover\:scale-5:hover,
  .tablet\:focus\:scale-5:focus,
  .tablet\:group:hover .group-hover\:scale-5,
  .tablet\:group:focus-within .group-focus-within\:scale-5 {
    transform: scale(0.5);
  }
  .tablet\:scale-6,
  .tablet\:hover\:scale-6:hover,
  .tablet\:focus\:scale-6:focus,
  .tablet\:group:hover .group-hover\:scale-6,
  .tablet\:group:focus-within .group-focus-within\:scale-6 {
    transform: scale(0.6);
  }
  .tablet\:scale-7,
  .tablet\:hover\:scale-7:hover,
  .tablet\:focus\:scale-7:focus,
  .tablet\:group:hover .group-hover\:scale-7,
  .tablet\:group:focus-within .group-focus-within\:scale-7 {
    transform: scale(0.7);
  }
  .tablet\:scale-8,
  .tablet\:hover\:scale-8:hover,
  .tablet\:focus\:scale-8:focus,
  .tablet\:group:hover .group-hover\:scale-8,
  .tablet\:group:focus-within .group-focus-within\:scale-8 {
    transform: scale(0.8);
  }
  .tablet\:scale-9,
  .tablet\:hover\:scale-9:hover,
  .tablet\:focus\:scale-9:focus,
  .tablet\:group:hover .group-hover\:scale-9,
  .tablet\:group:focus-within .group-focus-within\:scale-9 {
    transform: scale(0.9);
  }
  .tablet\:scale-10,
  .tablet\:hover\:scale-10:hover,
  .tablet\:focus\:scale-10:focus,
  .tablet\:group:hover .group-hover\:scale-10,
  .tablet\:group:focus-within .group-focus-within\:scale-10 {
    transform: scale(1);
  }
  .tablet\:scale-11,
  .tablet\:hover\:scale-11:hover,
  .tablet\:focus\:scale-11:focus,
  .tablet\:group:hover .group-hover\:scale-11,
  .tablet\:group:focus-within .group-focus-within\:scale-11 {
    transform: scale(1.1);
  }
  .tablet\:scale-12,
  .tablet\:hover\:scale-12:hover,
  .tablet\:focus\:scale-12:focus,
  .tablet\:group:hover .group-hover\:scale-12,
  .tablet\:group:focus-within .group-focus-within\:scale-12 {
    transform: scale(1.2);
  }
  .tablet\:scale-13,
  .tablet\:hover\:scale-13:hover,
  .tablet\:focus\:scale-13:focus,
  .tablet\:group:hover .group-hover\:scale-13,
  .tablet\:group:focus-within .group-focus-within\:scale-13 {
    transform: scale(1.3);
  }
  .tablet\:scale-14,
  .tablet\:hover\:scale-14:hover,
  .tablet\:focus\:scale-14:focus,
  .tablet\:group:hover .group-hover\:scale-14,
  .tablet\:group:focus-within .group-focus-within\:scale-14 {
    transform: scale(1.4);
  }
  .tablet\:scale-15,
  .tablet\:hover\:scale-15:hover,
  .tablet\:focus\:scale-15:focus,
  .tablet\:group:hover .group-hover\:scale-15,
  .tablet\:group:focus-within .group-focus-within\:scale-15 {
    transform: scale(1.5);
  }
  .tablet\:scale-16,
  .tablet\:hover\:scale-16:hover,
  .tablet\:focus\:scale-16:focus,
  .tablet\:group:hover .group-hover\:scale-16,
  .tablet\:group:focus-within .group-focus-within\:scale-16 {
    transform: scale(1.6);
  }
  .tablet\:scale-17,
  .tablet\:hover\:scale-17:hover,
  .tablet\:focus\:scale-17:focus,
  .tablet\:group:hover .group-hover\:scale-17,
  .tablet\:group:focus-within .group-focus-within\:scale-17 {
    transform: scale(1.7);
  }
  .tablet\:scale-18,
  .tablet\:hover\:scale-18:hover,
  .tablet\:focus\:scale-18:focus,
  .tablet\:group:hover .group-hover\:scale-18,
  .tablet\:group:focus-within .group-focus-within\:scale-18 {
    transform: scale(1.8);
  }
  .tablet\:scale-19,
  .tablet\:hover\:scale-19:hover,
  .tablet\:focus\:scale-19:focus,
  .tablet\:group:hover .group-hover\:scale-19,
  .tablet\:group:focus-within .group-focus-within\:scale-19 {
    transform: scale(1.9);
  }
  .tablet\:scale-20,
  .tablet\:hover\:scale-20:hover,
  .tablet\:focus\:scale-20:focus,
  .tablet\:group:hover .group-hover\:scale-20,
  .tablet\:group:focus-within .group-focus-within\:scale-20 {
    transform: scale(2);
  }
  .tablet\:scale-21,
  .tablet\:hover\:scale-21:hover,
  .tablet\:focus\:scale-21:focus,
  .tablet\:group:hover .group-hover\:scale-21,
  .tablet\:group:focus-within .group-focus-within\:scale-21 {
    transform: scale(2.1);
  }
  .tablet\:scale-22,
  .tablet\:hover\:scale-22:hover,
  .tablet\:focus\:scale-22:focus,
  .tablet\:group:hover .group-hover\:scale-22,
  .tablet\:group:focus-within .group-focus-within\:scale-22 {
    transform: scale(2.2);
  }
  .tablet\:scale-23,
  .tablet\:hover\:scale-23:hover,
  .tablet\:focus\:scale-23:focus,
  .tablet\:group:hover .group-hover\:scale-23,
  .tablet\:group:focus-within .group-focus-within\:scale-23 {
    transform: scale(2.3);
  }
  .tablet\:scale-24,
  .tablet\:hover\:scale-24:hover,
  .tablet\:focus\:scale-24:focus,
  .tablet\:group:hover .group-hover\:scale-24,
  .tablet\:group:focus-within .group-focus-within\:scale-24 {
    transform: scale(2.4);
  }
  .tablet\:scale-25,
  .tablet\:hover\:scale-25:hover,
  .tablet\:focus\:scale-25:focus,
  .tablet\:group:hover .group-hover\:scale-25,
  .tablet\:group:focus-within .group-focus-within\:scale-25 {
    transform: scale(2.5);
  }
  .tablet\:scale-26,
  .tablet\:hover\:scale-26:hover,
  .tablet\:focus\:scale-26:focus,
  .tablet\:group:hover .group-hover\:scale-26,
  .tablet\:group:focus-within .group-focus-within\:scale-26 {
    transform: scale(2.6);
  }
  .tablet\:scale-27,
  .tablet\:hover\:scale-27:hover,
  .tablet\:focus\:scale-27:focus,
  .tablet\:group:hover .group-hover\:scale-27,
  .tablet\:group:focus-within .group-focus-within\:scale-27 {
    transform: scale(2.7);
  }
  .tablet\:scale-28,
  .tablet\:hover\:scale-28:hover,
  .tablet\:focus\:scale-28:focus,
  .tablet\:group:hover .group-hover\:scale-28,
  .tablet\:group:focus-within .group-focus-within\:scale-28 {
    transform: scale(2.8);
  }
  .tablet\:scale-29,
  .tablet\:hover\:scale-29:hover,
  .tablet\:focus\:scale-29:focus,
  .tablet\:group:hover .group-hover\:scale-29,
  .tablet\:group:focus-within .group-focus-within\:scale-29 {
    transform: scale(2.9);
  }
  .tablet\:scale-30,
  .tablet\:hover\:scale-30:hover,
  .tablet\:focus\:scale-30:focus,
  .tablet\:group:hover .group-hover\:scale-30,
  .tablet\:group:focus-within .group-focus-within\:scale-30 {
    transform: scale(3);
  }
}
@media (max-width: 768px) {
  .mobile\:translate-none,
  .mobile\:hover\:translate-none:hover,
  .mobile\:focus\:translate-none:focus,
  .mobile\:group:hover .group-hover\:translate-none,
  .mobile\:group:focus-within .group-focus-within\:translate-none {
    transform: translate(var(--padding-none), var(--padding-none));
  }
  .mobile\:translate-x-none,
  .mobile\:hover\:translate-x-none:hover,
  .mobile\:focus\:translate-x-none:focus,
  .mobile\:group:hover .group-hover\:translate-x-none,
  .mobile\:group:focus-within .group-focus-within\:translate-x-none {
    transform: translateX(var(--padding-none));
  }
  .mobile\:translate-y-none,
  .mobile\:hover\:translate-y-none:hover,
  .mobile\:focus\:translate-y-none:focus,
  .mobile\:group:hover .group-hover\:translate-y-none,
  .mobile\:group:focus-within .group-focus-within\:translate-y-none {
    transform: translateY(var(--padding-none));
  }
  .mobile\:-translate-none,
  .mobile\:hover\:-translate-none:hover,
  .mobile\:focus\:-translate-none:focus,
  .mobile\:group:hover .group-hover\:-translate-none,
  .mobile\:group:focus-within .group-focus-within\:-translate-none {
    transform: translate(calc(-1 * var(--padding-none)), calc(-1 * var(--padding-none)));
  }
  .mobile\:-translate-x-none,
  .mobile\:hover\:-translate-x-none:hover,
  .mobile\:focus\:-translate-x-none:focus,
  .mobile\:group:hover .group-hover\:-translate-x-none,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-none {
    transform: translateX(calc(-1 * var(--padding-none)));
  }
  .mobile\:-translate-y-none,
  .mobile\:hover\:-translate-y-none:hover,
  .mobile\:focus\:-translate-y-none:focus,
  .mobile\:group:hover .group-hover\:-translate-y-none,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-none {
    transform: translateY(calc(-1 * var(--padding-none)));
  }
  .mobile\:translate-hairline,
  .mobile\:hover\:translate-hairline:hover,
  .mobile\:focus\:translate-hairline:focus,
  .mobile\:group:hover .group-hover\:translate-hairline,
  .mobile\:group:focus-within .group-focus-within\:translate-hairline {
    transform: translate(var(--padding-hairline), var(--padding-hairline));
  }
  .mobile\:translate-x-hairline,
  .mobile\:hover\:translate-x-hairline:hover,
  .mobile\:focus\:translate-x-hairline:focus,
  .mobile\:group:hover .group-hover\:translate-x-hairline,
  .mobile\:group:focus-within .group-focus-within\:translate-x-hairline {
    transform: translateX(var(--padding-hairline));
  }
  .mobile\:translate-y-hairline,
  .mobile\:hover\:translate-y-hairline:hover,
  .mobile\:focus\:translate-y-hairline:focus,
  .mobile\:group:hover .group-hover\:translate-y-hairline,
  .mobile\:group:focus-within .group-focus-within\:translate-y-hairline {
    transform: translateY(var(--padding-hairline));
  }
  .mobile\:-translate-hairline,
  .mobile\:hover\:-translate-hairline:hover,
  .mobile\:focus\:-translate-hairline:focus,
  .mobile\:group:hover .group-hover\:-translate-hairline,
  .mobile\:group:focus-within .group-focus-within\:-translate-hairline {
    transform: translate(calc(-1 * var(--padding-hairline)), calc(-1 * var(--padding-hairline)));
  }
  .mobile\:-translate-x-hairline,
  .mobile\:hover\:-translate-x-hairline:hover,
  .mobile\:focus\:-translate-x-hairline:focus,
  .mobile\:group:hover .group-hover\:-translate-x-hairline,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-hairline {
    transform: translateX(calc(-1 * var(--padding-hairline)));
  }
  .mobile\:-translate-y-hairline,
  .mobile\:hover\:-translate-y-hairline:hover,
  .mobile\:focus\:-translate-y-hairline:focus,
  .mobile\:group:hover .group-hover\:-translate-y-hairline,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-hairline {
    transform: translateY(calc(-1 * var(--padding-hairline)));
  }
  .mobile\:translate-thin,
  .mobile\:hover\:translate-thin:hover,
  .mobile\:focus\:translate-thin:focus,
  .mobile\:group:hover .group-hover\:translate-thin,
  .mobile\:group:focus-within .group-focus-within\:translate-thin {
    transform: translate(var(--padding-thin), var(--padding-thin));
  }
  .mobile\:translate-x-thin,
  .mobile\:hover\:translate-x-thin:hover,
  .mobile\:focus\:translate-x-thin:focus,
  .mobile\:group:hover .group-hover\:translate-x-thin,
  .mobile\:group:focus-within .group-focus-within\:translate-x-thin {
    transform: translateX(var(--padding-thin));
  }
  .mobile\:translate-y-thin,
  .mobile\:hover\:translate-y-thin:hover,
  .mobile\:focus\:translate-y-thin:focus,
  .mobile\:group:hover .group-hover\:translate-y-thin,
  .mobile\:group:focus-within .group-focus-within\:translate-y-thin {
    transform: translateY(var(--padding-thin));
  }
  .mobile\:-translate-thin,
  .mobile\:hover\:-translate-thin:hover,
  .mobile\:focus\:-translate-thin:focus,
  .mobile\:group:hover .group-hover\:-translate-thin,
  .mobile\:group:focus-within .group-focus-within\:-translate-thin {
    transform: translate(calc(-1 * var(--padding-thin)), calc(-1 * var(--padding-thin)));
  }
  .mobile\:-translate-x-thin,
  .mobile\:hover\:-translate-x-thin:hover,
  .mobile\:focus\:-translate-x-thin:focus,
  .mobile\:group:hover .group-hover\:-translate-x-thin,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-thin {
    transform: translateX(calc(-1 * var(--padding-thin)));
  }
  .mobile\:-translate-y-thin,
  .mobile\:hover\:-translate-y-thin:hover,
  .mobile\:focus\:-translate-y-thin:focus,
  .mobile\:group:hover .group-hover\:-translate-y-thin,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-thin {
    transform: translateY(calc(-1 * var(--padding-thin)));
  }
  .mobile\:translate-slim,
  .mobile\:hover\:translate-slim:hover,
  .mobile\:focus\:translate-slim:focus,
  .mobile\:group:hover .group-hover\:translate-slim,
  .mobile\:group:focus-within .group-focus-within\:translate-slim {
    transform: translate(var(--padding-slim), var(--padding-slim));
  }
  .mobile\:translate-x-slim,
  .mobile\:hover\:translate-x-slim:hover,
  .mobile\:focus\:translate-x-slim:focus,
  .mobile\:group:hover .group-hover\:translate-x-slim,
  .mobile\:group:focus-within .group-focus-within\:translate-x-slim {
    transform: translateX(var(--padding-slim));
  }
  .mobile\:translate-y-slim,
  .mobile\:hover\:translate-y-slim:hover,
  .mobile\:focus\:translate-y-slim:focus,
  .mobile\:group:hover .group-hover\:translate-y-slim,
  .mobile\:group:focus-within .group-focus-within\:translate-y-slim {
    transform: translateY(var(--padding-slim));
  }
  .mobile\:-translate-slim,
  .mobile\:hover\:-translate-slim:hover,
  .mobile\:focus\:-translate-slim:focus,
  .mobile\:group:hover .group-hover\:-translate-slim,
  .mobile\:group:focus-within .group-focus-within\:-translate-slim {
    transform: translate(calc(-1 * var(--padding-slim)), calc(-1 * var(--padding-slim)));
  }
  .mobile\:-translate-x-slim,
  .mobile\:hover\:-translate-x-slim:hover,
  .mobile\:focus\:-translate-x-slim:focus,
  .mobile\:group:hover .group-hover\:-translate-x-slim,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-slim {
    transform: translateX(calc(-1 * var(--padding-slim)));
  }
  .mobile\:-translate-y-slim,
  .mobile\:hover\:-translate-y-slim:hover,
  .mobile\:focus\:-translate-y-slim:focus,
  .mobile\:group:hover .group-hover\:-translate-y-slim,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-slim {
    transform: translateY(calc(-1 * var(--padding-slim)));
  }
  .mobile\:translate-extra-small,
  .mobile\:hover\:translate-extra-small:hover,
  .mobile\:focus\:translate-extra-small:focus,
  .mobile\:group:hover .group-hover\:translate-extra-small,
  .mobile\:group:focus-within .group-focus-within\:translate-extra-small {
    transform: translate(var(--padding-extra-small), var(--padding-extra-small));
  }
  .mobile\:translate-x-extra-small,
  .mobile\:hover\:translate-x-extra-small:hover,
  .mobile\:focus\:translate-x-extra-small:focus,
  .mobile\:group:hover .group-hover\:translate-x-extra-small,
  .mobile\:group:focus-within .group-focus-within\:translate-x-extra-small {
    transform: translateX(var(--padding-extra-small));
  }
  .mobile\:translate-y-extra-small,
  .mobile\:hover\:translate-y-extra-small:hover,
  .mobile\:focus\:translate-y-extra-small:focus,
  .mobile\:group:hover .group-hover\:translate-y-extra-small,
  .mobile\:group:focus-within .group-focus-within\:translate-y-extra-small {
    transform: translateY(var(--padding-extra-small));
  }
  .mobile\:-translate-extra-small,
  .mobile\:hover\:-translate-extra-small:hover,
  .mobile\:focus\:-translate-extra-small:focus,
  .mobile\:group:hover .group-hover\:-translate-extra-small,
  .mobile\:group:focus-within .group-focus-within\:-translate-extra-small {
    transform: translate(calc(-1 * var(--padding-extra-small)), calc(-1 * var(--padding-extra-small)));
  }
  .mobile\:-translate-x-extra-small,
  .mobile\:hover\:-translate-x-extra-small:hover,
  .mobile\:focus\:-translate-x-extra-small:focus,
  .mobile\:group:hover .group-hover\:-translate-x-extra-small,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-extra-small {
    transform: translateX(calc(-1 * var(--padding-extra-small)));
  }
  .mobile\:-translate-y-extra-small,
  .mobile\:hover\:-translate-y-extra-small:hover,
  .mobile\:focus\:-translate-y-extra-small:focus,
  .mobile\:group:hover .group-hover\:-translate-y-extra-small,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-extra-small {
    transform: translateY(calc(-1 * var(--padding-extra-small)));
  }
  .mobile\:translate-small,
  .mobile\:hover\:translate-small:hover,
  .mobile\:focus\:translate-small:focus,
  .mobile\:group:hover .group-hover\:translate-small,
  .mobile\:group:focus-within .group-focus-within\:translate-small {
    transform: translate(var(--padding-small), var(--padding-small));
  }
  .mobile\:translate-x-small,
  .mobile\:hover\:translate-x-small:hover,
  .mobile\:focus\:translate-x-small:focus,
  .mobile\:group:hover .group-hover\:translate-x-small,
  .mobile\:group:focus-within .group-focus-within\:translate-x-small {
    transform: translateX(var(--padding-small));
  }
  .mobile\:translate-y-small,
  .mobile\:hover\:translate-y-small:hover,
  .mobile\:focus\:translate-y-small:focus,
  .mobile\:group:hover .group-hover\:translate-y-small,
  .mobile\:group:focus-within .group-focus-within\:translate-y-small {
    transform: translateY(var(--padding-small));
  }
  .mobile\:-translate-small,
  .mobile\:hover\:-translate-small:hover,
  .mobile\:focus\:-translate-small:focus,
  .mobile\:group:hover .group-hover\:-translate-small,
  .mobile\:group:focus-within .group-focus-within\:-translate-small {
    transform: translate(calc(-1 * var(--padding-small)), calc(-1 * var(--padding-small)));
  }
  .mobile\:-translate-x-small,
  .mobile\:hover\:-translate-x-small:hover,
  .mobile\:focus\:-translate-x-small:focus,
  .mobile\:group:hover .group-hover\:-translate-x-small,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-small {
    transform: translateX(calc(-1 * var(--padding-small)));
  }
  .mobile\:-translate-y-small,
  .mobile\:hover\:-translate-y-small:hover,
  .mobile\:focus\:-translate-y-small:focus,
  .mobile\:group:hover .group-hover\:-translate-y-small,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-small {
    transform: translateY(calc(-1 * var(--padding-small)));
  }
  .mobile\:translate-medium,
  .mobile\:hover\:translate-medium:hover,
  .mobile\:focus\:translate-medium:focus,
  .mobile\:group:hover .group-hover\:translate-medium,
  .mobile\:group:focus-within .group-focus-within\:translate-medium {
    transform: translate(var(--padding-medium), var(--padding-medium));
  }
  .mobile\:translate-x-medium,
  .mobile\:hover\:translate-x-medium:hover,
  .mobile\:focus\:translate-x-medium:focus,
  .mobile\:group:hover .group-hover\:translate-x-medium,
  .mobile\:group:focus-within .group-focus-within\:translate-x-medium {
    transform: translateX(var(--padding-medium));
  }
  .mobile\:translate-y-medium,
  .mobile\:hover\:translate-y-medium:hover,
  .mobile\:focus\:translate-y-medium:focus,
  .mobile\:group:hover .group-hover\:translate-y-medium,
  .mobile\:group:focus-within .group-focus-within\:translate-y-medium {
    transform: translateY(var(--padding-medium));
  }
  .mobile\:-translate-medium,
  .mobile\:hover\:-translate-medium:hover,
  .mobile\:focus\:-translate-medium:focus,
  .mobile\:group:hover .group-hover\:-translate-medium,
  .mobile\:group:focus-within .group-focus-within\:-translate-medium {
    transform: translate(calc(-1 * var(--padding-medium)), calc(-1 * var(--padding-medium)));
  }
  .mobile\:-translate-x-medium,
  .mobile\:hover\:-translate-x-medium:hover,
  .mobile\:focus\:-translate-x-medium:focus,
  .mobile\:group:hover .group-hover\:-translate-x-medium,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-medium {
    transform: translateX(calc(-1 * var(--padding-medium)));
  }
  .mobile\:-translate-y-medium,
  .mobile\:hover\:-translate-y-medium:hover,
  .mobile\:focus\:-translate-y-medium:focus,
  .mobile\:group:hover .group-hover\:-translate-y-medium,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-medium {
    transform: translateY(calc(-1 * var(--padding-medium)));
  }
  .mobile\:translate-large,
  .mobile\:hover\:translate-large:hover,
  .mobile\:focus\:translate-large:focus,
  .mobile\:group:hover .group-hover\:translate-large,
  .mobile\:group:focus-within .group-focus-within\:translate-large {
    transform: translate(var(--padding-large), var(--padding-large));
  }
  .mobile\:translate-x-large,
  .mobile\:hover\:translate-x-large:hover,
  .mobile\:focus\:translate-x-large:focus,
  .mobile\:group:hover .group-hover\:translate-x-large,
  .mobile\:group:focus-within .group-focus-within\:translate-x-large {
    transform: translateX(var(--padding-large));
  }
  .mobile\:translate-y-large,
  .mobile\:hover\:translate-y-large:hover,
  .mobile\:focus\:translate-y-large:focus,
  .mobile\:group:hover .group-hover\:translate-y-large,
  .mobile\:group:focus-within .group-focus-within\:translate-y-large {
    transform: translateY(var(--padding-large));
  }
  .mobile\:-translate-large,
  .mobile\:hover\:-translate-large:hover,
  .mobile\:focus\:-translate-large:focus,
  .mobile\:group:hover .group-hover\:-translate-large,
  .mobile\:group:focus-within .group-focus-within\:-translate-large {
    transform: translate(calc(-1 * var(--padding-large)), calc(-1 * var(--padding-large)));
  }
  .mobile\:-translate-x-large,
  .mobile\:hover\:-translate-x-large:hover,
  .mobile\:focus\:-translate-x-large:focus,
  .mobile\:group:hover .group-hover\:-translate-x-large,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-large {
    transform: translateX(calc(-1 * var(--padding-large)));
  }
  .mobile\:-translate-y-large,
  .mobile\:hover\:-translate-y-large:hover,
  .mobile\:focus\:-translate-y-large:focus,
  .mobile\:group:hover .group-hover\:-translate-y-large,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-large {
    transform: translateY(calc(-1 * var(--padding-large)));
  }
  .mobile\:translate-extra-large,
  .mobile\:hover\:translate-extra-large:hover,
  .mobile\:focus\:translate-extra-large:focus,
  .mobile\:group:hover .group-hover\:translate-extra-large,
  .mobile\:group:focus-within .group-focus-within\:translate-extra-large {
    transform: translate(var(--padding-extra-large), var(--padding-extra-large));
  }
  .mobile\:translate-x-extra-large,
  .mobile\:hover\:translate-x-extra-large:hover,
  .mobile\:focus\:translate-x-extra-large:focus,
  .mobile\:group:hover .group-hover\:translate-x-extra-large,
  .mobile\:group:focus-within .group-focus-within\:translate-x-extra-large {
    transform: translateX(var(--padding-extra-large));
  }
  .mobile\:translate-y-extra-large,
  .mobile\:hover\:translate-y-extra-large:hover,
  .mobile\:focus\:translate-y-extra-large:focus,
  .mobile\:group:hover .group-hover\:translate-y-extra-large,
  .mobile\:group:focus-within .group-focus-within\:translate-y-extra-large {
    transform: translateY(var(--padding-extra-large));
  }
  .mobile\:-translate-extra-large,
  .mobile\:hover\:-translate-extra-large:hover,
  .mobile\:focus\:-translate-extra-large:focus,
  .mobile\:group:hover .group-hover\:-translate-extra-large,
  .mobile\:group:focus-within .group-focus-within\:-translate-extra-large {
    transform: translate(calc(-1 * var(--padding-extra-large)), calc(-1 * var(--padding-extra-large)));
  }
  .mobile\:-translate-x-extra-large,
  .mobile\:hover\:-translate-x-extra-large:hover,
  .mobile\:focus\:-translate-x-extra-large:focus,
  .mobile\:group:hover .group-hover\:-translate-x-extra-large,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-extra-large {
    transform: translateX(calc(-1 * var(--padding-extra-large)));
  }
  .mobile\:-translate-y-extra-large,
  .mobile\:hover\:-translate-y-extra-large:hover,
  .mobile\:focus\:-translate-y-extra-large:focus,
  .mobile\:group:hover .group-hover\:-translate-y-extra-large,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-extra-large {
    transform: translateY(calc(-1 * var(--padding-extra-large)));
  }
  .mobile\:translate-huge,
  .mobile\:hover\:translate-huge:hover,
  .mobile\:focus\:translate-huge:focus,
  .mobile\:group:hover .group-hover\:translate-huge,
  .mobile\:group:focus-within .group-focus-within\:translate-huge {
    transform: translate(var(--padding-huge), var(--padding-huge));
  }
  .mobile\:translate-x-huge,
  .mobile\:hover\:translate-x-huge:hover,
  .mobile\:focus\:translate-x-huge:focus,
  .mobile\:group:hover .group-hover\:translate-x-huge,
  .mobile\:group:focus-within .group-focus-within\:translate-x-huge {
    transform: translateX(var(--padding-huge));
  }
  .mobile\:translate-y-huge,
  .mobile\:hover\:translate-y-huge:hover,
  .mobile\:focus\:translate-y-huge:focus,
  .mobile\:group:hover .group-hover\:translate-y-huge,
  .mobile\:group:focus-within .group-focus-within\:translate-y-huge {
    transform: translateY(var(--padding-huge));
  }
  .mobile\:-translate-huge,
  .mobile\:hover\:-translate-huge:hover,
  .mobile\:focus\:-translate-huge:focus,
  .mobile\:group:hover .group-hover\:-translate-huge,
  .mobile\:group:focus-within .group-focus-within\:-translate-huge {
    transform: translate(calc(-1 * var(--padding-huge)), calc(-1 * var(--padding-huge)));
  }
  .mobile\:-translate-x-huge,
  .mobile\:hover\:-translate-x-huge:hover,
  .mobile\:focus\:-translate-x-huge:focus,
  .mobile\:group:hover .group-hover\:-translate-x-huge,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-huge {
    transform: translateX(calc(-1 * var(--padding-huge)));
  }
  .mobile\:-translate-y-huge,
  .mobile\:hover\:-translate-y-huge:hover,
  .mobile\:focus\:-translate-y-huge:focus,
  .mobile\:group:hover .group-hover\:-translate-y-huge,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-huge {
    transform: translateY(calc(-1 * var(--padding-huge)));
  }
  .mobile\:translate-full,
  .mobile\:hover\:translate-full:hover,
  .mobile\:focus\:translate-full:focus,
  .mobile\:group:hover .group-hover\:translate-full,
  .mobile\:group:focus-within .group-focus-within\:translate-full {
    transform: translate(var(--padding-full), var(--padding-full));
  }
  .mobile\:translate-x-full,
  .mobile\:hover\:translate-x-full:hover,
  .mobile\:focus\:translate-x-full:focus,
  .mobile\:group:hover .group-hover\:translate-x-full,
  .mobile\:group:focus-within .group-focus-within\:translate-x-full {
    transform: translateX(var(--padding-full));
  }
  .mobile\:translate-y-full,
  .mobile\:hover\:translate-y-full:hover,
  .mobile\:focus\:translate-y-full:focus,
  .mobile\:group:hover .group-hover\:translate-y-full,
  .mobile\:group:focus-within .group-focus-within\:translate-y-full {
    transform: translateY(var(--padding-full));
  }
  .mobile\:-translate-full,
  .mobile\:hover\:-translate-full:hover,
  .mobile\:focus\:-translate-full:focus,
  .mobile\:group:hover .group-hover\:-translate-full,
  .mobile\:group:focus-within .group-focus-within\:-translate-full {
    transform: translate(calc(-1 * var(--padding-full)), calc(-1 * var(--padding-full)));
  }
  .mobile\:-translate-x-full,
  .mobile\:hover\:-translate-x-full:hover,
  .mobile\:focus\:-translate-x-full:focus,
  .mobile\:group:hover .group-hover\:-translate-x-full,
  .mobile\:group:focus-within .group-focus-within\:-translate-x-full {
    transform: translateX(calc(-1 * var(--padding-full)));
  }
  .mobile\:-translate-y-full,
  .mobile\:hover\:-translate-y-full:hover,
  .mobile\:focus\:-translate-y-full:focus,
  .mobile\:group:hover .group-hover\:-translate-y-full,
  .mobile\:group:focus-within .group-focus-within\:-translate-y-full {
    transform: translateY(calc(-1 * var(--padding-full)));
  }
  .flip-h {
    transform: scaleX(-1);
  }
  .flip-v {
    transform: scaleY(-1);
  }
  .mobile\:-rotate-0,
  .mobile\:hover\:-rotate-0:hover,
  .mobile\:focus\:-rotate-0:focus,
  .mobile\:group:hover .group-hover\:-rotate-0,
  .mobile\:group:focus-within .group-focus-within\:-rotate-0 {
    transform: rotate(-0deg);
  }
  .mobile\:-rotate-1,
  .mobile\:hover\:-rotate-1:hover,
  .mobile\:focus\:-rotate-1:focus,
  .mobile\:group:hover .group-hover\:-rotate-1,
  .mobile\:group:focus-within .group-focus-within\:-rotate-1 {
    transform: rotate(-1deg);
  }
  .mobile\:-rotate-2,
  .mobile\:hover\:-rotate-2:hover,
  .mobile\:focus\:-rotate-2:focus,
  .mobile\:group:hover .group-hover\:-rotate-2,
  .mobile\:group:focus-within .group-focus-within\:-rotate-2 {
    transform: rotate(-2deg);
  }
  .mobile\:-rotate-3,
  .mobile\:hover\:-rotate-3:hover,
  .mobile\:focus\:-rotate-3:focus,
  .mobile\:group:hover .group-hover\:-rotate-3,
  .mobile\:group:focus-within .group-focus-within\:-rotate-3 {
    transform: rotate(-3deg);
  }
  .mobile\:-rotate-4,
  .mobile\:hover\:-rotate-4:hover,
  .mobile\:focus\:-rotate-4:focus,
  .mobile\:group:hover .group-hover\:-rotate-4,
  .mobile\:group:focus-within .group-focus-within\:-rotate-4 {
    transform: rotate(-4deg);
  }
  .mobile\:-rotate-5,
  .mobile\:hover\:-rotate-5:hover,
  .mobile\:focus\:-rotate-5:focus,
  .mobile\:group:hover .group-hover\:-rotate-5,
  .mobile\:group:focus-within .group-focus-within\:-rotate-5 {
    transform: rotate(-5deg);
  }
  .mobile\:-rotate-6,
  .mobile\:hover\:-rotate-6:hover,
  .mobile\:focus\:-rotate-6:focus,
  .mobile\:group:hover .group-hover\:-rotate-6,
  .mobile\:group:focus-within .group-focus-within\:-rotate-6 {
    transform: rotate(-6deg);
  }
  .mobile\:-rotate-7,
  .mobile\:hover\:-rotate-7:hover,
  .mobile\:focus\:-rotate-7:focus,
  .mobile\:group:hover .group-hover\:-rotate-7,
  .mobile\:group:focus-within .group-focus-within\:-rotate-7 {
    transform: rotate(-7deg);
  }
  .mobile\:-rotate-8,
  .mobile\:hover\:-rotate-8:hover,
  .mobile\:focus\:-rotate-8:focus,
  .mobile\:group:hover .group-hover\:-rotate-8,
  .mobile\:group:focus-within .group-focus-within\:-rotate-8 {
    transform: rotate(-8deg);
  }
  .mobile\:-rotate-9,
  .mobile\:hover\:-rotate-9:hover,
  .mobile\:focus\:-rotate-9:focus,
  .mobile\:group:hover .group-hover\:-rotate-9,
  .mobile\:group:focus-within .group-focus-within\:-rotate-9 {
    transform: rotate(-9deg);
  }
  .mobile\:-rotate-10,
  .mobile\:hover\:-rotate-10:hover,
  .mobile\:focus\:-rotate-10:focus,
  .mobile\:group:hover .group-hover\:-rotate-10,
  .mobile\:group:focus-within .group-focus-within\:-rotate-10 {
    transform: rotate(-10deg);
  }
  .mobile\:-rotate-11,
  .mobile\:hover\:-rotate-11:hover,
  .mobile\:focus\:-rotate-11:focus,
  .mobile\:group:hover .group-hover\:-rotate-11,
  .mobile\:group:focus-within .group-focus-within\:-rotate-11 {
    transform: rotate(-11deg);
  }
  .mobile\:-rotate-12,
  .mobile\:hover\:-rotate-12:hover,
  .mobile\:focus\:-rotate-12:focus,
  .mobile\:group:hover .group-hover\:-rotate-12,
  .mobile\:group:focus-within .group-focus-within\:-rotate-12 {
    transform: rotate(-12deg);
  }
  .mobile\:-rotate-13,
  .mobile\:hover\:-rotate-13:hover,
  .mobile\:focus\:-rotate-13:focus,
  .mobile\:group:hover .group-hover\:-rotate-13,
  .mobile\:group:focus-within .group-focus-within\:-rotate-13 {
    transform: rotate(-13deg);
  }
  .mobile\:-rotate-14,
  .mobile\:hover\:-rotate-14:hover,
  .mobile\:focus\:-rotate-14:focus,
  .mobile\:group:hover .group-hover\:-rotate-14,
  .mobile\:group:focus-within .group-focus-within\:-rotate-14 {
    transform: rotate(-14deg);
  }
  .mobile\:-rotate-15,
  .mobile\:hover\:-rotate-15:hover,
  .mobile\:focus\:-rotate-15:focus,
  .mobile\:group:hover .group-hover\:-rotate-15,
  .mobile\:group:focus-within .group-focus-within\:-rotate-15 {
    transform: rotate(-15deg);
  }
  .mobile\:-rotate-16,
  .mobile\:hover\:-rotate-16:hover,
  .mobile\:focus\:-rotate-16:focus,
  .mobile\:group:hover .group-hover\:-rotate-16,
  .mobile\:group:focus-within .group-focus-within\:-rotate-16 {
    transform: rotate(-16deg);
  }
  .mobile\:-rotate-17,
  .mobile\:hover\:-rotate-17:hover,
  .mobile\:focus\:-rotate-17:focus,
  .mobile\:group:hover .group-hover\:-rotate-17,
  .mobile\:group:focus-within .group-focus-within\:-rotate-17 {
    transform: rotate(-17deg);
  }
  .mobile\:-rotate-18,
  .mobile\:hover\:-rotate-18:hover,
  .mobile\:focus\:-rotate-18:focus,
  .mobile\:group:hover .group-hover\:-rotate-18,
  .mobile\:group:focus-within .group-focus-within\:-rotate-18 {
    transform: rotate(-18deg);
  }
  .mobile\:-rotate-19,
  .mobile\:hover\:-rotate-19:hover,
  .mobile\:focus\:-rotate-19:focus,
  .mobile\:group:hover .group-hover\:-rotate-19,
  .mobile\:group:focus-within .group-focus-within\:-rotate-19 {
    transform: rotate(-19deg);
  }
  .mobile\:-rotate-20,
  .mobile\:hover\:-rotate-20:hover,
  .mobile\:focus\:-rotate-20:focus,
  .mobile\:group:hover .group-hover\:-rotate-20,
  .mobile\:group:focus-within .group-focus-within\:-rotate-20 {
    transform: rotate(-20deg);
  }
  .mobile\:-rotate-21,
  .mobile\:hover\:-rotate-21:hover,
  .mobile\:focus\:-rotate-21:focus,
  .mobile\:group:hover .group-hover\:-rotate-21,
  .mobile\:group:focus-within .group-focus-within\:-rotate-21 {
    transform: rotate(-21deg);
  }
  .mobile\:-rotate-22,
  .mobile\:hover\:-rotate-22:hover,
  .mobile\:focus\:-rotate-22:focus,
  .mobile\:group:hover .group-hover\:-rotate-22,
  .mobile\:group:focus-within .group-focus-within\:-rotate-22 {
    transform: rotate(-22deg);
  }
  .mobile\:-rotate-23,
  .mobile\:hover\:-rotate-23:hover,
  .mobile\:focus\:-rotate-23:focus,
  .mobile\:group:hover .group-hover\:-rotate-23,
  .mobile\:group:focus-within .group-focus-within\:-rotate-23 {
    transform: rotate(-23deg);
  }
  .mobile\:-rotate-24,
  .mobile\:hover\:-rotate-24:hover,
  .mobile\:focus\:-rotate-24:focus,
  .mobile\:group:hover .group-hover\:-rotate-24,
  .mobile\:group:focus-within .group-focus-within\:-rotate-24 {
    transform: rotate(-24deg);
  }
  .mobile\:-rotate-25,
  .mobile\:hover\:-rotate-25:hover,
  .mobile\:focus\:-rotate-25:focus,
  .mobile\:group:hover .group-hover\:-rotate-25,
  .mobile\:group:focus-within .group-focus-within\:-rotate-25 {
    transform: rotate(-25deg);
  }
  .mobile\:-rotate-26,
  .mobile\:hover\:-rotate-26:hover,
  .mobile\:focus\:-rotate-26:focus,
  .mobile\:group:hover .group-hover\:-rotate-26,
  .mobile\:group:focus-within .group-focus-within\:-rotate-26 {
    transform: rotate(-26deg);
  }
  .mobile\:-rotate-27,
  .mobile\:hover\:-rotate-27:hover,
  .mobile\:focus\:-rotate-27:focus,
  .mobile\:group:hover .group-hover\:-rotate-27,
  .mobile\:group:focus-within .group-focus-within\:-rotate-27 {
    transform: rotate(-27deg);
  }
  .mobile\:-rotate-28,
  .mobile\:hover\:-rotate-28:hover,
  .mobile\:focus\:-rotate-28:focus,
  .mobile\:group:hover .group-hover\:-rotate-28,
  .mobile\:group:focus-within .group-focus-within\:-rotate-28 {
    transform: rotate(-28deg);
  }
  .mobile\:-rotate-29,
  .mobile\:hover\:-rotate-29:hover,
  .mobile\:focus\:-rotate-29:focus,
  .mobile\:group:hover .group-hover\:-rotate-29,
  .mobile\:group:focus-within .group-focus-within\:-rotate-29 {
    transform: rotate(-29deg);
  }
  .mobile\:-rotate-30,
  .mobile\:hover\:-rotate-30:hover,
  .mobile\:focus\:-rotate-30:focus,
  .mobile\:group:hover .group-hover\:-rotate-30,
  .mobile\:group:focus-within .group-focus-within\:-rotate-30 {
    transform: rotate(-30deg);
  }
  .mobile\:-rotate-31,
  .mobile\:hover\:-rotate-31:hover,
  .mobile\:focus\:-rotate-31:focus,
  .mobile\:group:hover .group-hover\:-rotate-31,
  .mobile\:group:focus-within .group-focus-within\:-rotate-31 {
    transform: rotate(-31deg);
  }
  .mobile\:-rotate-32,
  .mobile\:hover\:-rotate-32:hover,
  .mobile\:focus\:-rotate-32:focus,
  .mobile\:group:hover .group-hover\:-rotate-32,
  .mobile\:group:focus-within .group-focus-within\:-rotate-32 {
    transform: rotate(-32deg);
  }
  .mobile\:-rotate-33,
  .mobile\:hover\:-rotate-33:hover,
  .mobile\:focus\:-rotate-33:focus,
  .mobile\:group:hover .group-hover\:-rotate-33,
  .mobile\:group:focus-within .group-focus-within\:-rotate-33 {
    transform: rotate(-33deg);
  }
  .mobile\:-rotate-34,
  .mobile\:hover\:-rotate-34:hover,
  .mobile\:focus\:-rotate-34:focus,
  .mobile\:group:hover .group-hover\:-rotate-34,
  .mobile\:group:focus-within .group-focus-within\:-rotate-34 {
    transform: rotate(-34deg);
  }
  .mobile\:-rotate-35,
  .mobile\:hover\:-rotate-35:hover,
  .mobile\:focus\:-rotate-35:focus,
  .mobile\:group:hover .group-hover\:-rotate-35,
  .mobile\:group:focus-within .group-focus-within\:-rotate-35 {
    transform: rotate(-35deg);
  }
  .mobile\:-rotate-36,
  .mobile\:hover\:-rotate-36:hover,
  .mobile\:focus\:-rotate-36:focus,
  .mobile\:group:hover .group-hover\:-rotate-36,
  .mobile\:group:focus-within .group-focus-within\:-rotate-36 {
    transform: rotate(-36deg);
  }
  .mobile\:-rotate-37,
  .mobile\:hover\:-rotate-37:hover,
  .mobile\:focus\:-rotate-37:focus,
  .mobile\:group:hover .group-hover\:-rotate-37,
  .mobile\:group:focus-within .group-focus-within\:-rotate-37 {
    transform: rotate(-37deg);
  }
  .mobile\:-rotate-38,
  .mobile\:hover\:-rotate-38:hover,
  .mobile\:focus\:-rotate-38:focus,
  .mobile\:group:hover .group-hover\:-rotate-38,
  .mobile\:group:focus-within .group-focus-within\:-rotate-38 {
    transform: rotate(-38deg);
  }
  .mobile\:-rotate-39,
  .mobile\:hover\:-rotate-39:hover,
  .mobile\:focus\:-rotate-39:focus,
  .mobile\:group:hover .group-hover\:-rotate-39,
  .mobile\:group:focus-within .group-focus-within\:-rotate-39 {
    transform: rotate(-39deg);
  }
  .mobile\:-rotate-40,
  .mobile\:hover\:-rotate-40:hover,
  .mobile\:focus\:-rotate-40:focus,
  .mobile\:group:hover .group-hover\:-rotate-40,
  .mobile\:group:focus-within .group-focus-within\:-rotate-40 {
    transform: rotate(-40deg);
  }
  .mobile\:-rotate-41,
  .mobile\:hover\:-rotate-41:hover,
  .mobile\:focus\:-rotate-41:focus,
  .mobile\:group:hover .group-hover\:-rotate-41,
  .mobile\:group:focus-within .group-focus-within\:-rotate-41 {
    transform: rotate(-41deg);
  }
  .mobile\:-rotate-42,
  .mobile\:hover\:-rotate-42:hover,
  .mobile\:focus\:-rotate-42:focus,
  .mobile\:group:hover .group-hover\:-rotate-42,
  .mobile\:group:focus-within .group-focus-within\:-rotate-42 {
    transform: rotate(-42deg);
  }
  .mobile\:-rotate-43,
  .mobile\:hover\:-rotate-43:hover,
  .mobile\:focus\:-rotate-43:focus,
  .mobile\:group:hover .group-hover\:-rotate-43,
  .mobile\:group:focus-within .group-focus-within\:-rotate-43 {
    transform: rotate(-43deg);
  }
  .mobile\:-rotate-44,
  .mobile\:hover\:-rotate-44:hover,
  .mobile\:focus\:-rotate-44:focus,
  .mobile\:group:hover .group-hover\:-rotate-44,
  .mobile\:group:focus-within .group-focus-within\:-rotate-44 {
    transform: rotate(-44deg);
  }
  .mobile\:-rotate-45,
  .mobile\:hover\:-rotate-45:hover,
  .mobile\:focus\:-rotate-45:focus,
  .mobile\:group:hover .group-hover\:-rotate-45,
  .mobile\:group:focus-within .group-focus-within\:-rotate-45 {
    transform: rotate(-45deg);
  }
  .mobile\:-rotate-46,
  .mobile\:hover\:-rotate-46:hover,
  .mobile\:focus\:-rotate-46:focus,
  .mobile\:group:hover .group-hover\:-rotate-46,
  .mobile\:group:focus-within .group-focus-within\:-rotate-46 {
    transform: rotate(-46deg);
  }
  .mobile\:-rotate-47,
  .mobile\:hover\:-rotate-47:hover,
  .mobile\:focus\:-rotate-47:focus,
  .mobile\:group:hover .group-hover\:-rotate-47,
  .mobile\:group:focus-within .group-focus-within\:-rotate-47 {
    transform: rotate(-47deg);
  }
  .mobile\:-rotate-48,
  .mobile\:hover\:-rotate-48:hover,
  .mobile\:focus\:-rotate-48:focus,
  .mobile\:group:hover .group-hover\:-rotate-48,
  .mobile\:group:focus-within .group-focus-within\:-rotate-48 {
    transform: rotate(-48deg);
  }
  .mobile\:-rotate-49,
  .mobile\:hover\:-rotate-49:hover,
  .mobile\:focus\:-rotate-49:focus,
  .mobile\:group:hover .group-hover\:-rotate-49,
  .mobile\:group:focus-within .group-focus-within\:-rotate-49 {
    transform: rotate(-49deg);
  }
  .mobile\:-rotate-50,
  .mobile\:hover\:-rotate-50:hover,
  .mobile\:focus\:-rotate-50:focus,
  .mobile\:group:hover .group-hover\:-rotate-50,
  .mobile\:group:focus-within .group-focus-within\:-rotate-50 {
    transform: rotate(-50deg);
  }
  .mobile\:-rotate-51,
  .mobile\:hover\:-rotate-51:hover,
  .mobile\:focus\:-rotate-51:focus,
  .mobile\:group:hover .group-hover\:-rotate-51,
  .mobile\:group:focus-within .group-focus-within\:-rotate-51 {
    transform: rotate(-51deg);
  }
  .mobile\:-rotate-52,
  .mobile\:hover\:-rotate-52:hover,
  .mobile\:focus\:-rotate-52:focus,
  .mobile\:group:hover .group-hover\:-rotate-52,
  .mobile\:group:focus-within .group-focus-within\:-rotate-52 {
    transform: rotate(-52deg);
  }
  .mobile\:-rotate-53,
  .mobile\:hover\:-rotate-53:hover,
  .mobile\:focus\:-rotate-53:focus,
  .mobile\:group:hover .group-hover\:-rotate-53,
  .mobile\:group:focus-within .group-focus-within\:-rotate-53 {
    transform: rotate(-53deg);
  }
  .mobile\:-rotate-54,
  .mobile\:hover\:-rotate-54:hover,
  .mobile\:focus\:-rotate-54:focus,
  .mobile\:group:hover .group-hover\:-rotate-54,
  .mobile\:group:focus-within .group-focus-within\:-rotate-54 {
    transform: rotate(-54deg);
  }
  .mobile\:-rotate-55,
  .mobile\:hover\:-rotate-55:hover,
  .mobile\:focus\:-rotate-55:focus,
  .mobile\:group:hover .group-hover\:-rotate-55,
  .mobile\:group:focus-within .group-focus-within\:-rotate-55 {
    transform: rotate(-55deg);
  }
  .mobile\:-rotate-56,
  .mobile\:hover\:-rotate-56:hover,
  .mobile\:focus\:-rotate-56:focus,
  .mobile\:group:hover .group-hover\:-rotate-56,
  .mobile\:group:focus-within .group-focus-within\:-rotate-56 {
    transform: rotate(-56deg);
  }
  .mobile\:-rotate-57,
  .mobile\:hover\:-rotate-57:hover,
  .mobile\:focus\:-rotate-57:focus,
  .mobile\:group:hover .group-hover\:-rotate-57,
  .mobile\:group:focus-within .group-focus-within\:-rotate-57 {
    transform: rotate(-57deg);
  }
  .mobile\:-rotate-58,
  .mobile\:hover\:-rotate-58:hover,
  .mobile\:focus\:-rotate-58:focus,
  .mobile\:group:hover .group-hover\:-rotate-58,
  .mobile\:group:focus-within .group-focus-within\:-rotate-58 {
    transform: rotate(-58deg);
  }
  .mobile\:-rotate-59,
  .mobile\:hover\:-rotate-59:hover,
  .mobile\:focus\:-rotate-59:focus,
  .mobile\:group:hover .group-hover\:-rotate-59,
  .mobile\:group:focus-within .group-focus-within\:-rotate-59 {
    transform: rotate(-59deg);
  }
  .mobile\:-rotate-60,
  .mobile\:hover\:-rotate-60:hover,
  .mobile\:focus\:-rotate-60:focus,
  .mobile\:group:hover .group-hover\:-rotate-60,
  .mobile\:group:focus-within .group-focus-within\:-rotate-60 {
    transform: rotate(-60deg);
  }
  .mobile\:-rotate-61,
  .mobile\:hover\:-rotate-61:hover,
  .mobile\:focus\:-rotate-61:focus,
  .mobile\:group:hover .group-hover\:-rotate-61,
  .mobile\:group:focus-within .group-focus-within\:-rotate-61 {
    transform: rotate(-61deg);
  }
  .mobile\:-rotate-62,
  .mobile\:hover\:-rotate-62:hover,
  .mobile\:focus\:-rotate-62:focus,
  .mobile\:group:hover .group-hover\:-rotate-62,
  .mobile\:group:focus-within .group-focus-within\:-rotate-62 {
    transform: rotate(-62deg);
  }
  .mobile\:-rotate-63,
  .mobile\:hover\:-rotate-63:hover,
  .mobile\:focus\:-rotate-63:focus,
  .mobile\:group:hover .group-hover\:-rotate-63,
  .mobile\:group:focus-within .group-focus-within\:-rotate-63 {
    transform: rotate(-63deg);
  }
  .mobile\:-rotate-64,
  .mobile\:hover\:-rotate-64:hover,
  .mobile\:focus\:-rotate-64:focus,
  .mobile\:group:hover .group-hover\:-rotate-64,
  .mobile\:group:focus-within .group-focus-within\:-rotate-64 {
    transform: rotate(-64deg);
  }
  .mobile\:-rotate-65,
  .mobile\:hover\:-rotate-65:hover,
  .mobile\:focus\:-rotate-65:focus,
  .mobile\:group:hover .group-hover\:-rotate-65,
  .mobile\:group:focus-within .group-focus-within\:-rotate-65 {
    transform: rotate(-65deg);
  }
  .mobile\:-rotate-66,
  .mobile\:hover\:-rotate-66:hover,
  .mobile\:focus\:-rotate-66:focus,
  .mobile\:group:hover .group-hover\:-rotate-66,
  .mobile\:group:focus-within .group-focus-within\:-rotate-66 {
    transform: rotate(-66deg);
  }
  .mobile\:-rotate-67,
  .mobile\:hover\:-rotate-67:hover,
  .mobile\:focus\:-rotate-67:focus,
  .mobile\:group:hover .group-hover\:-rotate-67,
  .mobile\:group:focus-within .group-focus-within\:-rotate-67 {
    transform: rotate(-67deg);
  }
  .mobile\:-rotate-68,
  .mobile\:hover\:-rotate-68:hover,
  .mobile\:focus\:-rotate-68:focus,
  .mobile\:group:hover .group-hover\:-rotate-68,
  .mobile\:group:focus-within .group-focus-within\:-rotate-68 {
    transform: rotate(-68deg);
  }
  .mobile\:-rotate-69,
  .mobile\:hover\:-rotate-69:hover,
  .mobile\:focus\:-rotate-69:focus,
  .mobile\:group:hover .group-hover\:-rotate-69,
  .mobile\:group:focus-within .group-focus-within\:-rotate-69 {
    transform: rotate(-69deg);
  }
  .mobile\:-rotate-70,
  .mobile\:hover\:-rotate-70:hover,
  .mobile\:focus\:-rotate-70:focus,
  .mobile\:group:hover .group-hover\:-rotate-70,
  .mobile\:group:focus-within .group-focus-within\:-rotate-70 {
    transform: rotate(-70deg);
  }
  .mobile\:-rotate-71,
  .mobile\:hover\:-rotate-71:hover,
  .mobile\:focus\:-rotate-71:focus,
  .mobile\:group:hover .group-hover\:-rotate-71,
  .mobile\:group:focus-within .group-focus-within\:-rotate-71 {
    transform: rotate(-71deg);
  }
  .mobile\:-rotate-72,
  .mobile\:hover\:-rotate-72:hover,
  .mobile\:focus\:-rotate-72:focus,
  .mobile\:group:hover .group-hover\:-rotate-72,
  .mobile\:group:focus-within .group-focus-within\:-rotate-72 {
    transform: rotate(-72deg);
  }
  .mobile\:-rotate-73,
  .mobile\:hover\:-rotate-73:hover,
  .mobile\:focus\:-rotate-73:focus,
  .mobile\:group:hover .group-hover\:-rotate-73,
  .mobile\:group:focus-within .group-focus-within\:-rotate-73 {
    transform: rotate(-73deg);
  }
  .mobile\:-rotate-74,
  .mobile\:hover\:-rotate-74:hover,
  .mobile\:focus\:-rotate-74:focus,
  .mobile\:group:hover .group-hover\:-rotate-74,
  .mobile\:group:focus-within .group-focus-within\:-rotate-74 {
    transform: rotate(-74deg);
  }
  .mobile\:-rotate-75,
  .mobile\:hover\:-rotate-75:hover,
  .mobile\:focus\:-rotate-75:focus,
  .mobile\:group:hover .group-hover\:-rotate-75,
  .mobile\:group:focus-within .group-focus-within\:-rotate-75 {
    transform: rotate(-75deg);
  }
  .mobile\:-rotate-76,
  .mobile\:hover\:-rotate-76:hover,
  .mobile\:focus\:-rotate-76:focus,
  .mobile\:group:hover .group-hover\:-rotate-76,
  .mobile\:group:focus-within .group-focus-within\:-rotate-76 {
    transform: rotate(-76deg);
  }
  .mobile\:-rotate-77,
  .mobile\:hover\:-rotate-77:hover,
  .mobile\:focus\:-rotate-77:focus,
  .mobile\:group:hover .group-hover\:-rotate-77,
  .mobile\:group:focus-within .group-focus-within\:-rotate-77 {
    transform: rotate(-77deg);
  }
  .mobile\:-rotate-78,
  .mobile\:hover\:-rotate-78:hover,
  .mobile\:focus\:-rotate-78:focus,
  .mobile\:group:hover .group-hover\:-rotate-78,
  .mobile\:group:focus-within .group-focus-within\:-rotate-78 {
    transform: rotate(-78deg);
  }
  .mobile\:-rotate-79,
  .mobile\:hover\:-rotate-79:hover,
  .mobile\:focus\:-rotate-79:focus,
  .mobile\:group:hover .group-hover\:-rotate-79,
  .mobile\:group:focus-within .group-focus-within\:-rotate-79 {
    transform: rotate(-79deg);
  }
  .mobile\:-rotate-80,
  .mobile\:hover\:-rotate-80:hover,
  .mobile\:focus\:-rotate-80:focus,
  .mobile\:group:hover .group-hover\:-rotate-80,
  .mobile\:group:focus-within .group-focus-within\:-rotate-80 {
    transform: rotate(-80deg);
  }
  .mobile\:-rotate-81,
  .mobile\:hover\:-rotate-81:hover,
  .mobile\:focus\:-rotate-81:focus,
  .mobile\:group:hover .group-hover\:-rotate-81,
  .mobile\:group:focus-within .group-focus-within\:-rotate-81 {
    transform: rotate(-81deg);
  }
  .mobile\:-rotate-82,
  .mobile\:hover\:-rotate-82:hover,
  .mobile\:focus\:-rotate-82:focus,
  .mobile\:group:hover .group-hover\:-rotate-82,
  .mobile\:group:focus-within .group-focus-within\:-rotate-82 {
    transform: rotate(-82deg);
  }
  .mobile\:-rotate-83,
  .mobile\:hover\:-rotate-83:hover,
  .mobile\:focus\:-rotate-83:focus,
  .mobile\:group:hover .group-hover\:-rotate-83,
  .mobile\:group:focus-within .group-focus-within\:-rotate-83 {
    transform: rotate(-83deg);
  }
  .mobile\:-rotate-84,
  .mobile\:hover\:-rotate-84:hover,
  .mobile\:focus\:-rotate-84:focus,
  .mobile\:group:hover .group-hover\:-rotate-84,
  .mobile\:group:focus-within .group-focus-within\:-rotate-84 {
    transform: rotate(-84deg);
  }
  .mobile\:-rotate-85,
  .mobile\:hover\:-rotate-85:hover,
  .mobile\:focus\:-rotate-85:focus,
  .mobile\:group:hover .group-hover\:-rotate-85,
  .mobile\:group:focus-within .group-focus-within\:-rotate-85 {
    transform: rotate(-85deg);
  }
  .mobile\:-rotate-86,
  .mobile\:hover\:-rotate-86:hover,
  .mobile\:focus\:-rotate-86:focus,
  .mobile\:group:hover .group-hover\:-rotate-86,
  .mobile\:group:focus-within .group-focus-within\:-rotate-86 {
    transform: rotate(-86deg);
  }
  .mobile\:-rotate-87,
  .mobile\:hover\:-rotate-87:hover,
  .mobile\:focus\:-rotate-87:focus,
  .mobile\:group:hover .group-hover\:-rotate-87,
  .mobile\:group:focus-within .group-focus-within\:-rotate-87 {
    transform: rotate(-87deg);
  }
  .mobile\:-rotate-88,
  .mobile\:hover\:-rotate-88:hover,
  .mobile\:focus\:-rotate-88:focus,
  .mobile\:group:hover .group-hover\:-rotate-88,
  .mobile\:group:focus-within .group-focus-within\:-rotate-88 {
    transform: rotate(-88deg);
  }
  .mobile\:-rotate-89,
  .mobile\:hover\:-rotate-89:hover,
  .mobile\:focus\:-rotate-89:focus,
  .mobile\:group:hover .group-hover\:-rotate-89,
  .mobile\:group:focus-within .group-focus-within\:-rotate-89 {
    transform: rotate(-89deg);
  }
  .mobile\:-rotate-90,
  .mobile\:hover\:-rotate-90:hover,
  .mobile\:focus\:-rotate-90:focus,
  .mobile\:group:hover .group-hover\:-rotate-90,
  .mobile\:group:focus-within .group-focus-within\:-rotate-90 {
    transform: rotate(-90deg);
  }
  .mobile\:-rotate-91,
  .mobile\:hover\:-rotate-91:hover,
  .mobile\:focus\:-rotate-91:focus,
  .mobile\:group:hover .group-hover\:-rotate-91,
  .mobile\:group:focus-within .group-focus-within\:-rotate-91 {
    transform: rotate(-91deg);
  }
  .mobile\:-rotate-92,
  .mobile\:hover\:-rotate-92:hover,
  .mobile\:focus\:-rotate-92:focus,
  .mobile\:group:hover .group-hover\:-rotate-92,
  .mobile\:group:focus-within .group-focus-within\:-rotate-92 {
    transform: rotate(-92deg);
  }
  .mobile\:-rotate-93,
  .mobile\:hover\:-rotate-93:hover,
  .mobile\:focus\:-rotate-93:focus,
  .mobile\:group:hover .group-hover\:-rotate-93,
  .mobile\:group:focus-within .group-focus-within\:-rotate-93 {
    transform: rotate(-93deg);
  }
  .mobile\:-rotate-94,
  .mobile\:hover\:-rotate-94:hover,
  .mobile\:focus\:-rotate-94:focus,
  .mobile\:group:hover .group-hover\:-rotate-94,
  .mobile\:group:focus-within .group-focus-within\:-rotate-94 {
    transform: rotate(-94deg);
  }
  .mobile\:-rotate-95,
  .mobile\:hover\:-rotate-95:hover,
  .mobile\:focus\:-rotate-95:focus,
  .mobile\:group:hover .group-hover\:-rotate-95,
  .mobile\:group:focus-within .group-focus-within\:-rotate-95 {
    transform: rotate(-95deg);
  }
  .mobile\:-rotate-96,
  .mobile\:hover\:-rotate-96:hover,
  .mobile\:focus\:-rotate-96:focus,
  .mobile\:group:hover .group-hover\:-rotate-96,
  .mobile\:group:focus-within .group-focus-within\:-rotate-96 {
    transform: rotate(-96deg);
  }
  .mobile\:-rotate-97,
  .mobile\:hover\:-rotate-97:hover,
  .mobile\:focus\:-rotate-97:focus,
  .mobile\:group:hover .group-hover\:-rotate-97,
  .mobile\:group:focus-within .group-focus-within\:-rotate-97 {
    transform: rotate(-97deg);
  }
  .mobile\:-rotate-98,
  .mobile\:hover\:-rotate-98:hover,
  .mobile\:focus\:-rotate-98:focus,
  .mobile\:group:hover .group-hover\:-rotate-98,
  .mobile\:group:focus-within .group-focus-within\:-rotate-98 {
    transform: rotate(-98deg);
  }
  .mobile\:-rotate-99,
  .mobile\:hover\:-rotate-99:hover,
  .mobile\:focus\:-rotate-99:focus,
  .mobile\:group:hover .group-hover\:-rotate-99,
  .mobile\:group:focus-within .group-focus-within\:-rotate-99 {
    transform: rotate(-99deg);
  }
  .mobile\:-rotate-100,
  .mobile\:hover\:-rotate-100:hover,
  .mobile\:focus\:-rotate-100:focus,
  .mobile\:group:hover .group-hover\:-rotate-100,
  .mobile\:group:focus-within .group-focus-within\:-rotate-100 {
    transform: rotate(-100deg);
  }
  .mobile\:-rotate-101,
  .mobile\:hover\:-rotate-101:hover,
  .mobile\:focus\:-rotate-101:focus,
  .mobile\:group:hover .group-hover\:-rotate-101,
  .mobile\:group:focus-within .group-focus-within\:-rotate-101 {
    transform: rotate(-101deg);
  }
  .mobile\:-rotate-102,
  .mobile\:hover\:-rotate-102:hover,
  .mobile\:focus\:-rotate-102:focus,
  .mobile\:group:hover .group-hover\:-rotate-102,
  .mobile\:group:focus-within .group-focus-within\:-rotate-102 {
    transform: rotate(-102deg);
  }
  .mobile\:-rotate-103,
  .mobile\:hover\:-rotate-103:hover,
  .mobile\:focus\:-rotate-103:focus,
  .mobile\:group:hover .group-hover\:-rotate-103,
  .mobile\:group:focus-within .group-focus-within\:-rotate-103 {
    transform: rotate(-103deg);
  }
  .mobile\:-rotate-104,
  .mobile\:hover\:-rotate-104:hover,
  .mobile\:focus\:-rotate-104:focus,
  .mobile\:group:hover .group-hover\:-rotate-104,
  .mobile\:group:focus-within .group-focus-within\:-rotate-104 {
    transform: rotate(-104deg);
  }
  .mobile\:-rotate-105,
  .mobile\:hover\:-rotate-105:hover,
  .mobile\:focus\:-rotate-105:focus,
  .mobile\:group:hover .group-hover\:-rotate-105,
  .mobile\:group:focus-within .group-focus-within\:-rotate-105 {
    transform: rotate(-105deg);
  }
  .mobile\:-rotate-106,
  .mobile\:hover\:-rotate-106:hover,
  .mobile\:focus\:-rotate-106:focus,
  .mobile\:group:hover .group-hover\:-rotate-106,
  .mobile\:group:focus-within .group-focus-within\:-rotate-106 {
    transform: rotate(-106deg);
  }
  .mobile\:-rotate-107,
  .mobile\:hover\:-rotate-107:hover,
  .mobile\:focus\:-rotate-107:focus,
  .mobile\:group:hover .group-hover\:-rotate-107,
  .mobile\:group:focus-within .group-focus-within\:-rotate-107 {
    transform: rotate(-107deg);
  }
  .mobile\:-rotate-108,
  .mobile\:hover\:-rotate-108:hover,
  .mobile\:focus\:-rotate-108:focus,
  .mobile\:group:hover .group-hover\:-rotate-108,
  .mobile\:group:focus-within .group-focus-within\:-rotate-108 {
    transform: rotate(-108deg);
  }
  .mobile\:-rotate-109,
  .mobile\:hover\:-rotate-109:hover,
  .mobile\:focus\:-rotate-109:focus,
  .mobile\:group:hover .group-hover\:-rotate-109,
  .mobile\:group:focus-within .group-focus-within\:-rotate-109 {
    transform: rotate(-109deg);
  }
  .mobile\:-rotate-110,
  .mobile\:hover\:-rotate-110:hover,
  .mobile\:focus\:-rotate-110:focus,
  .mobile\:group:hover .group-hover\:-rotate-110,
  .mobile\:group:focus-within .group-focus-within\:-rotate-110 {
    transform: rotate(-110deg);
  }
  .mobile\:-rotate-111,
  .mobile\:hover\:-rotate-111:hover,
  .mobile\:focus\:-rotate-111:focus,
  .mobile\:group:hover .group-hover\:-rotate-111,
  .mobile\:group:focus-within .group-focus-within\:-rotate-111 {
    transform: rotate(-111deg);
  }
  .mobile\:-rotate-112,
  .mobile\:hover\:-rotate-112:hover,
  .mobile\:focus\:-rotate-112:focus,
  .mobile\:group:hover .group-hover\:-rotate-112,
  .mobile\:group:focus-within .group-focus-within\:-rotate-112 {
    transform: rotate(-112deg);
  }
  .mobile\:-rotate-113,
  .mobile\:hover\:-rotate-113:hover,
  .mobile\:focus\:-rotate-113:focus,
  .mobile\:group:hover .group-hover\:-rotate-113,
  .mobile\:group:focus-within .group-focus-within\:-rotate-113 {
    transform: rotate(-113deg);
  }
  .mobile\:-rotate-114,
  .mobile\:hover\:-rotate-114:hover,
  .mobile\:focus\:-rotate-114:focus,
  .mobile\:group:hover .group-hover\:-rotate-114,
  .mobile\:group:focus-within .group-focus-within\:-rotate-114 {
    transform: rotate(-114deg);
  }
  .mobile\:-rotate-115,
  .mobile\:hover\:-rotate-115:hover,
  .mobile\:focus\:-rotate-115:focus,
  .mobile\:group:hover .group-hover\:-rotate-115,
  .mobile\:group:focus-within .group-focus-within\:-rotate-115 {
    transform: rotate(-115deg);
  }
  .mobile\:-rotate-116,
  .mobile\:hover\:-rotate-116:hover,
  .mobile\:focus\:-rotate-116:focus,
  .mobile\:group:hover .group-hover\:-rotate-116,
  .mobile\:group:focus-within .group-focus-within\:-rotate-116 {
    transform: rotate(-116deg);
  }
  .mobile\:-rotate-117,
  .mobile\:hover\:-rotate-117:hover,
  .mobile\:focus\:-rotate-117:focus,
  .mobile\:group:hover .group-hover\:-rotate-117,
  .mobile\:group:focus-within .group-focus-within\:-rotate-117 {
    transform: rotate(-117deg);
  }
  .mobile\:-rotate-118,
  .mobile\:hover\:-rotate-118:hover,
  .mobile\:focus\:-rotate-118:focus,
  .mobile\:group:hover .group-hover\:-rotate-118,
  .mobile\:group:focus-within .group-focus-within\:-rotate-118 {
    transform: rotate(-118deg);
  }
  .mobile\:-rotate-119,
  .mobile\:hover\:-rotate-119:hover,
  .mobile\:focus\:-rotate-119:focus,
  .mobile\:group:hover .group-hover\:-rotate-119,
  .mobile\:group:focus-within .group-focus-within\:-rotate-119 {
    transform: rotate(-119deg);
  }
  .mobile\:-rotate-120,
  .mobile\:hover\:-rotate-120:hover,
  .mobile\:focus\:-rotate-120:focus,
  .mobile\:group:hover .group-hover\:-rotate-120,
  .mobile\:group:focus-within .group-focus-within\:-rotate-120 {
    transform: rotate(-120deg);
  }
  .mobile\:-rotate-121,
  .mobile\:hover\:-rotate-121:hover,
  .mobile\:focus\:-rotate-121:focus,
  .mobile\:group:hover .group-hover\:-rotate-121,
  .mobile\:group:focus-within .group-focus-within\:-rotate-121 {
    transform: rotate(-121deg);
  }
  .mobile\:-rotate-122,
  .mobile\:hover\:-rotate-122:hover,
  .mobile\:focus\:-rotate-122:focus,
  .mobile\:group:hover .group-hover\:-rotate-122,
  .mobile\:group:focus-within .group-focus-within\:-rotate-122 {
    transform: rotate(-122deg);
  }
  .mobile\:-rotate-123,
  .mobile\:hover\:-rotate-123:hover,
  .mobile\:focus\:-rotate-123:focus,
  .mobile\:group:hover .group-hover\:-rotate-123,
  .mobile\:group:focus-within .group-focus-within\:-rotate-123 {
    transform: rotate(-123deg);
  }
  .mobile\:-rotate-124,
  .mobile\:hover\:-rotate-124:hover,
  .mobile\:focus\:-rotate-124:focus,
  .mobile\:group:hover .group-hover\:-rotate-124,
  .mobile\:group:focus-within .group-focus-within\:-rotate-124 {
    transform: rotate(-124deg);
  }
  .mobile\:-rotate-125,
  .mobile\:hover\:-rotate-125:hover,
  .mobile\:focus\:-rotate-125:focus,
  .mobile\:group:hover .group-hover\:-rotate-125,
  .mobile\:group:focus-within .group-focus-within\:-rotate-125 {
    transform: rotate(-125deg);
  }
  .mobile\:-rotate-126,
  .mobile\:hover\:-rotate-126:hover,
  .mobile\:focus\:-rotate-126:focus,
  .mobile\:group:hover .group-hover\:-rotate-126,
  .mobile\:group:focus-within .group-focus-within\:-rotate-126 {
    transform: rotate(-126deg);
  }
  .mobile\:-rotate-127,
  .mobile\:hover\:-rotate-127:hover,
  .mobile\:focus\:-rotate-127:focus,
  .mobile\:group:hover .group-hover\:-rotate-127,
  .mobile\:group:focus-within .group-focus-within\:-rotate-127 {
    transform: rotate(-127deg);
  }
  .mobile\:-rotate-128,
  .mobile\:hover\:-rotate-128:hover,
  .mobile\:focus\:-rotate-128:focus,
  .mobile\:group:hover .group-hover\:-rotate-128,
  .mobile\:group:focus-within .group-focus-within\:-rotate-128 {
    transform: rotate(-128deg);
  }
  .mobile\:-rotate-129,
  .mobile\:hover\:-rotate-129:hover,
  .mobile\:focus\:-rotate-129:focus,
  .mobile\:group:hover .group-hover\:-rotate-129,
  .mobile\:group:focus-within .group-focus-within\:-rotate-129 {
    transform: rotate(-129deg);
  }
  .mobile\:-rotate-130,
  .mobile\:hover\:-rotate-130:hover,
  .mobile\:focus\:-rotate-130:focus,
  .mobile\:group:hover .group-hover\:-rotate-130,
  .mobile\:group:focus-within .group-focus-within\:-rotate-130 {
    transform: rotate(-130deg);
  }
  .mobile\:-rotate-131,
  .mobile\:hover\:-rotate-131:hover,
  .mobile\:focus\:-rotate-131:focus,
  .mobile\:group:hover .group-hover\:-rotate-131,
  .mobile\:group:focus-within .group-focus-within\:-rotate-131 {
    transform: rotate(-131deg);
  }
  .mobile\:-rotate-132,
  .mobile\:hover\:-rotate-132:hover,
  .mobile\:focus\:-rotate-132:focus,
  .mobile\:group:hover .group-hover\:-rotate-132,
  .mobile\:group:focus-within .group-focus-within\:-rotate-132 {
    transform: rotate(-132deg);
  }
  .mobile\:-rotate-133,
  .mobile\:hover\:-rotate-133:hover,
  .mobile\:focus\:-rotate-133:focus,
  .mobile\:group:hover .group-hover\:-rotate-133,
  .mobile\:group:focus-within .group-focus-within\:-rotate-133 {
    transform: rotate(-133deg);
  }
  .mobile\:-rotate-134,
  .mobile\:hover\:-rotate-134:hover,
  .mobile\:focus\:-rotate-134:focus,
  .mobile\:group:hover .group-hover\:-rotate-134,
  .mobile\:group:focus-within .group-focus-within\:-rotate-134 {
    transform: rotate(-134deg);
  }
  .mobile\:-rotate-135,
  .mobile\:hover\:-rotate-135:hover,
  .mobile\:focus\:-rotate-135:focus,
  .mobile\:group:hover .group-hover\:-rotate-135,
  .mobile\:group:focus-within .group-focus-within\:-rotate-135 {
    transform: rotate(-135deg);
  }
  .mobile\:-rotate-136,
  .mobile\:hover\:-rotate-136:hover,
  .mobile\:focus\:-rotate-136:focus,
  .mobile\:group:hover .group-hover\:-rotate-136,
  .mobile\:group:focus-within .group-focus-within\:-rotate-136 {
    transform: rotate(-136deg);
  }
  .mobile\:-rotate-137,
  .mobile\:hover\:-rotate-137:hover,
  .mobile\:focus\:-rotate-137:focus,
  .mobile\:group:hover .group-hover\:-rotate-137,
  .mobile\:group:focus-within .group-focus-within\:-rotate-137 {
    transform: rotate(-137deg);
  }
  .mobile\:-rotate-138,
  .mobile\:hover\:-rotate-138:hover,
  .mobile\:focus\:-rotate-138:focus,
  .mobile\:group:hover .group-hover\:-rotate-138,
  .mobile\:group:focus-within .group-focus-within\:-rotate-138 {
    transform: rotate(-138deg);
  }
  .mobile\:-rotate-139,
  .mobile\:hover\:-rotate-139:hover,
  .mobile\:focus\:-rotate-139:focus,
  .mobile\:group:hover .group-hover\:-rotate-139,
  .mobile\:group:focus-within .group-focus-within\:-rotate-139 {
    transform: rotate(-139deg);
  }
  .mobile\:-rotate-140,
  .mobile\:hover\:-rotate-140:hover,
  .mobile\:focus\:-rotate-140:focus,
  .mobile\:group:hover .group-hover\:-rotate-140,
  .mobile\:group:focus-within .group-focus-within\:-rotate-140 {
    transform: rotate(-140deg);
  }
  .mobile\:-rotate-141,
  .mobile\:hover\:-rotate-141:hover,
  .mobile\:focus\:-rotate-141:focus,
  .mobile\:group:hover .group-hover\:-rotate-141,
  .mobile\:group:focus-within .group-focus-within\:-rotate-141 {
    transform: rotate(-141deg);
  }
  .mobile\:-rotate-142,
  .mobile\:hover\:-rotate-142:hover,
  .mobile\:focus\:-rotate-142:focus,
  .mobile\:group:hover .group-hover\:-rotate-142,
  .mobile\:group:focus-within .group-focus-within\:-rotate-142 {
    transform: rotate(-142deg);
  }
  .mobile\:-rotate-143,
  .mobile\:hover\:-rotate-143:hover,
  .mobile\:focus\:-rotate-143:focus,
  .mobile\:group:hover .group-hover\:-rotate-143,
  .mobile\:group:focus-within .group-focus-within\:-rotate-143 {
    transform: rotate(-143deg);
  }
  .mobile\:-rotate-144,
  .mobile\:hover\:-rotate-144:hover,
  .mobile\:focus\:-rotate-144:focus,
  .mobile\:group:hover .group-hover\:-rotate-144,
  .mobile\:group:focus-within .group-focus-within\:-rotate-144 {
    transform: rotate(-144deg);
  }
  .mobile\:-rotate-145,
  .mobile\:hover\:-rotate-145:hover,
  .mobile\:focus\:-rotate-145:focus,
  .mobile\:group:hover .group-hover\:-rotate-145,
  .mobile\:group:focus-within .group-focus-within\:-rotate-145 {
    transform: rotate(-145deg);
  }
  .mobile\:-rotate-146,
  .mobile\:hover\:-rotate-146:hover,
  .mobile\:focus\:-rotate-146:focus,
  .mobile\:group:hover .group-hover\:-rotate-146,
  .mobile\:group:focus-within .group-focus-within\:-rotate-146 {
    transform: rotate(-146deg);
  }
  .mobile\:-rotate-147,
  .mobile\:hover\:-rotate-147:hover,
  .mobile\:focus\:-rotate-147:focus,
  .mobile\:group:hover .group-hover\:-rotate-147,
  .mobile\:group:focus-within .group-focus-within\:-rotate-147 {
    transform: rotate(-147deg);
  }
  .mobile\:-rotate-148,
  .mobile\:hover\:-rotate-148:hover,
  .mobile\:focus\:-rotate-148:focus,
  .mobile\:group:hover .group-hover\:-rotate-148,
  .mobile\:group:focus-within .group-focus-within\:-rotate-148 {
    transform: rotate(-148deg);
  }
  .mobile\:-rotate-149,
  .mobile\:hover\:-rotate-149:hover,
  .mobile\:focus\:-rotate-149:focus,
  .mobile\:group:hover .group-hover\:-rotate-149,
  .mobile\:group:focus-within .group-focus-within\:-rotate-149 {
    transform: rotate(-149deg);
  }
  .mobile\:-rotate-150,
  .mobile\:hover\:-rotate-150:hover,
  .mobile\:focus\:-rotate-150:focus,
  .mobile\:group:hover .group-hover\:-rotate-150,
  .mobile\:group:focus-within .group-focus-within\:-rotate-150 {
    transform: rotate(-150deg);
  }
  .mobile\:-rotate-151,
  .mobile\:hover\:-rotate-151:hover,
  .mobile\:focus\:-rotate-151:focus,
  .mobile\:group:hover .group-hover\:-rotate-151,
  .mobile\:group:focus-within .group-focus-within\:-rotate-151 {
    transform: rotate(-151deg);
  }
  .mobile\:-rotate-152,
  .mobile\:hover\:-rotate-152:hover,
  .mobile\:focus\:-rotate-152:focus,
  .mobile\:group:hover .group-hover\:-rotate-152,
  .mobile\:group:focus-within .group-focus-within\:-rotate-152 {
    transform: rotate(-152deg);
  }
  .mobile\:-rotate-153,
  .mobile\:hover\:-rotate-153:hover,
  .mobile\:focus\:-rotate-153:focus,
  .mobile\:group:hover .group-hover\:-rotate-153,
  .mobile\:group:focus-within .group-focus-within\:-rotate-153 {
    transform: rotate(-153deg);
  }
  .mobile\:-rotate-154,
  .mobile\:hover\:-rotate-154:hover,
  .mobile\:focus\:-rotate-154:focus,
  .mobile\:group:hover .group-hover\:-rotate-154,
  .mobile\:group:focus-within .group-focus-within\:-rotate-154 {
    transform: rotate(-154deg);
  }
  .mobile\:-rotate-155,
  .mobile\:hover\:-rotate-155:hover,
  .mobile\:focus\:-rotate-155:focus,
  .mobile\:group:hover .group-hover\:-rotate-155,
  .mobile\:group:focus-within .group-focus-within\:-rotate-155 {
    transform: rotate(-155deg);
  }
  .mobile\:-rotate-156,
  .mobile\:hover\:-rotate-156:hover,
  .mobile\:focus\:-rotate-156:focus,
  .mobile\:group:hover .group-hover\:-rotate-156,
  .mobile\:group:focus-within .group-focus-within\:-rotate-156 {
    transform: rotate(-156deg);
  }
  .mobile\:-rotate-157,
  .mobile\:hover\:-rotate-157:hover,
  .mobile\:focus\:-rotate-157:focus,
  .mobile\:group:hover .group-hover\:-rotate-157,
  .mobile\:group:focus-within .group-focus-within\:-rotate-157 {
    transform: rotate(-157deg);
  }
  .mobile\:-rotate-158,
  .mobile\:hover\:-rotate-158:hover,
  .mobile\:focus\:-rotate-158:focus,
  .mobile\:group:hover .group-hover\:-rotate-158,
  .mobile\:group:focus-within .group-focus-within\:-rotate-158 {
    transform: rotate(-158deg);
  }
  .mobile\:-rotate-159,
  .mobile\:hover\:-rotate-159:hover,
  .mobile\:focus\:-rotate-159:focus,
  .mobile\:group:hover .group-hover\:-rotate-159,
  .mobile\:group:focus-within .group-focus-within\:-rotate-159 {
    transform: rotate(-159deg);
  }
  .mobile\:-rotate-160,
  .mobile\:hover\:-rotate-160:hover,
  .mobile\:focus\:-rotate-160:focus,
  .mobile\:group:hover .group-hover\:-rotate-160,
  .mobile\:group:focus-within .group-focus-within\:-rotate-160 {
    transform: rotate(-160deg);
  }
  .mobile\:-rotate-161,
  .mobile\:hover\:-rotate-161:hover,
  .mobile\:focus\:-rotate-161:focus,
  .mobile\:group:hover .group-hover\:-rotate-161,
  .mobile\:group:focus-within .group-focus-within\:-rotate-161 {
    transform: rotate(-161deg);
  }
  .mobile\:-rotate-162,
  .mobile\:hover\:-rotate-162:hover,
  .mobile\:focus\:-rotate-162:focus,
  .mobile\:group:hover .group-hover\:-rotate-162,
  .mobile\:group:focus-within .group-focus-within\:-rotate-162 {
    transform: rotate(-162deg);
  }
  .mobile\:-rotate-163,
  .mobile\:hover\:-rotate-163:hover,
  .mobile\:focus\:-rotate-163:focus,
  .mobile\:group:hover .group-hover\:-rotate-163,
  .mobile\:group:focus-within .group-focus-within\:-rotate-163 {
    transform: rotate(-163deg);
  }
  .mobile\:-rotate-164,
  .mobile\:hover\:-rotate-164:hover,
  .mobile\:focus\:-rotate-164:focus,
  .mobile\:group:hover .group-hover\:-rotate-164,
  .mobile\:group:focus-within .group-focus-within\:-rotate-164 {
    transform: rotate(-164deg);
  }
  .mobile\:-rotate-165,
  .mobile\:hover\:-rotate-165:hover,
  .mobile\:focus\:-rotate-165:focus,
  .mobile\:group:hover .group-hover\:-rotate-165,
  .mobile\:group:focus-within .group-focus-within\:-rotate-165 {
    transform: rotate(-165deg);
  }
  .mobile\:-rotate-166,
  .mobile\:hover\:-rotate-166:hover,
  .mobile\:focus\:-rotate-166:focus,
  .mobile\:group:hover .group-hover\:-rotate-166,
  .mobile\:group:focus-within .group-focus-within\:-rotate-166 {
    transform: rotate(-166deg);
  }
  .mobile\:-rotate-167,
  .mobile\:hover\:-rotate-167:hover,
  .mobile\:focus\:-rotate-167:focus,
  .mobile\:group:hover .group-hover\:-rotate-167,
  .mobile\:group:focus-within .group-focus-within\:-rotate-167 {
    transform: rotate(-167deg);
  }
  .mobile\:-rotate-168,
  .mobile\:hover\:-rotate-168:hover,
  .mobile\:focus\:-rotate-168:focus,
  .mobile\:group:hover .group-hover\:-rotate-168,
  .mobile\:group:focus-within .group-focus-within\:-rotate-168 {
    transform: rotate(-168deg);
  }
  .mobile\:-rotate-169,
  .mobile\:hover\:-rotate-169:hover,
  .mobile\:focus\:-rotate-169:focus,
  .mobile\:group:hover .group-hover\:-rotate-169,
  .mobile\:group:focus-within .group-focus-within\:-rotate-169 {
    transform: rotate(-169deg);
  }
  .mobile\:-rotate-170,
  .mobile\:hover\:-rotate-170:hover,
  .mobile\:focus\:-rotate-170:focus,
  .mobile\:group:hover .group-hover\:-rotate-170,
  .mobile\:group:focus-within .group-focus-within\:-rotate-170 {
    transform: rotate(-170deg);
  }
  .mobile\:-rotate-171,
  .mobile\:hover\:-rotate-171:hover,
  .mobile\:focus\:-rotate-171:focus,
  .mobile\:group:hover .group-hover\:-rotate-171,
  .mobile\:group:focus-within .group-focus-within\:-rotate-171 {
    transform: rotate(-171deg);
  }
  .mobile\:-rotate-172,
  .mobile\:hover\:-rotate-172:hover,
  .mobile\:focus\:-rotate-172:focus,
  .mobile\:group:hover .group-hover\:-rotate-172,
  .mobile\:group:focus-within .group-focus-within\:-rotate-172 {
    transform: rotate(-172deg);
  }
  .mobile\:-rotate-173,
  .mobile\:hover\:-rotate-173:hover,
  .mobile\:focus\:-rotate-173:focus,
  .mobile\:group:hover .group-hover\:-rotate-173,
  .mobile\:group:focus-within .group-focus-within\:-rotate-173 {
    transform: rotate(-173deg);
  }
  .mobile\:-rotate-174,
  .mobile\:hover\:-rotate-174:hover,
  .mobile\:focus\:-rotate-174:focus,
  .mobile\:group:hover .group-hover\:-rotate-174,
  .mobile\:group:focus-within .group-focus-within\:-rotate-174 {
    transform: rotate(-174deg);
  }
  .mobile\:-rotate-175,
  .mobile\:hover\:-rotate-175:hover,
  .mobile\:focus\:-rotate-175:focus,
  .mobile\:group:hover .group-hover\:-rotate-175,
  .mobile\:group:focus-within .group-focus-within\:-rotate-175 {
    transform: rotate(-175deg);
  }
  .mobile\:-rotate-176,
  .mobile\:hover\:-rotate-176:hover,
  .mobile\:focus\:-rotate-176:focus,
  .mobile\:group:hover .group-hover\:-rotate-176,
  .mobile\:group:focus-within .group-focus-within\:-rotate-176 {
    transform: rotate(-176deg);
  }
  .mobile\:-rotate-177,
  .mobile\:hover\:-rotate-177:hover,
  .mobile\:focus\:-rotate-177:focus,
  .mobile\:group:hover .group-hover\:-rotate-177,
  .mobile\:group:focus-within .group-focus-within\:-rotate-177 {
    transform: rotate(-177deg);
  }
  .mobile\:-rotate-178,
  .mobile\:hover\:-rotate-178:hover,
  .mobile\:focus\:-rotate-178:focus,
  .mobile\:group:hover .group-hover\:-rotate-178,
  .mobile\:group:focus-within .group-focus-within\:-rotate-178 {
    transform: rotate(-178deg);
  }
  .mobile\:-rotate-179,
  .mobile\:hover\:-rotate-179:hover,
  .mobile\:focus\:-rotate-179:focus,
  .mobile\:group:hover .group-hover\:-rotate-179,
  .mobile\:group:focus-within .group-focus-within\:-rotate-179 {
    transform: rotate(-179deg);
  }
  .mobile\:-rotate-180,
  .mobile\:hover\:-rotate-180:hover,
  .mobile\:focus\:-rotate-180:focus,
  .mobile\:group:hover .group-hover\:-rotate-180,
  .mobile\:group:focus-within .group-focus-within\:-rotate-180 {
    transform: rotate(-180deg);
  }
  .mobile\:-rotate-181,
  .mobile\:hover\:-rotate-181:hover,
  .mobile\:focus\:-rotate-181:focus,
  .mobile\:group:hover .group-hover\:-rotate-181,
  .mobile\:group:focus-within .group-focus-within\:-rotate-181 {
    transform: rotate(-181deg);
  }
  .mobile\:-rotate-182,
  .mobile\:hover\:-rotate-182:hover,
  .mobile\:focus\:-rotate-182:focus,
  .mobile\:group:hover .group-hover\:-rotate-182,
  .mobile\:group:focus-within .group-focus-within\:-rotate-182 {
    transform: rotate(-182deg);
  }
  .mobile\:-rotate-183,
  .mobile\:hover\:-rotate-183:hover,
  .mobile\:focus\:-rotate-183:focus,
  .mobile\:group:hover .group-hover\:-rotate-183,
  .mobile\:group:focus-within .group-focus-within\:-rotate-183 {
    transform: rotate(-183deg);
  }
  .mobile\:-rotate-184,
  .mobile\:hover\:-rotate-184:hover,
  .mobile\:focus\:-rotate-184:focus,
  .mobile\:group:hover .group-hover\:-rotate-184,
  .mobile\:group:focus-within .group-focus-within\:-rotate-184 {
    transform: rotate(-184deg);
  }
  .mobile\:-rotate-185,
  .mobile\:hover\:-rotate-185:hover,
  .mobile\:focus\:-rotate-185:focus,
  .mobile\:group:hover .group-hover\:-rotate-185,
  .mobile\:group:focus-within .group-focus-within\:-rotate-185 {
    transform: rotate(-185deg);
  }
  .mobile\:-rotate-186,
  .mobile\:hover\:-rotate-186:hover,
  .mobile\:focus\:-rotate-186:focus,
  .mobile\:group:hover .group-hover\:-rotate-186,
  .mobile\:group:focus-within .group-focus-within\:-rotate-186 {
    transform: rotate(-186deg);
  }
  .mobile\:-rotate-187,
  .mobile\:hover\:-rotate-187:hover,
  .mobile\:focus\:-rotate-187:focus,
  .mobile\:group:hover .group-hover\:-rotate-187,
  .mobile\:group:focus-within .group-focus-within\:-rotate-187 {
    transform: rotate(-187deg);
  }
  .mobile\:-rotate-188,
  .mobile\:hover\:-rotate-188:hover,
  .mobile\:focus\:-rotate-188:focus,
  .mobile\:group:hover .group-hover\:-rotate-188,
  .mobile\:group:focus-within .group-focus-within\:-rotate-188 {
    transform: rotate(-188deg);
  }
  .mobile\:-rotate-189,
  .mobile\:hover\:-rotate-189:hover,
  .mobile\:focus\:-rotate-189:focus,
  .mobile\:group:hover .group-hover\:-rotate-189,
  .mobile\:group:focus-within .group-focus-within\:-rotate-189 {
    transform: rotate(-189deg);
  }
  .mobile\:-rotate-190,
  .mobile\:hover\:-rotate-190:hover,
  .mobile\:focus\:-rotate-190:focus,
  .mobile\:group:hover .group-hover\:-rotate-190,
  .mobile\:group:focus-within .group-focus-within\:-rotate-190 {
    transform: rotate(-190deg);
  }
  .mobile\:-rotate-191,
  .mobile\:hover\:-rotate-191:hover,
  .mobile\:focus\:-rotate-191:focus,
  .mobile\:group:hover .group-hover\:-rotate-191,
  .mobile\:group:focus-within .group-focus-within\:-rotate-191 {
    transform: rotate(-191deg);
  }
  .mobile\:-rotate-192,
  .mobile\:hover\:-rotate-192:hover,
  .mobile\:focus\:-rotate-192:focus,
  .mobile\:group:hover .group-hover\:-rotate-192,
  .mobile\:group:focus-within .group-focus-within\:-rotate-192 {
    transform: rotate(-192deg);
  }
  .mobile\:-rotate-193,
  .mobile\:hover\:-rotate-193:hover,
  .mobile\:focus\:-rotate-193:focus,
  .mobile\:group:hover .group-hover\:-rotate-193,
  .mobile\:group:focus-within .group-focus-within\:-rotate-193 {
    transform: rotate(-193deg);
  }
  .mobile\:-rotate-194,
  .mobile\:hover\:-rotate-194:hover,
  .mobile\:focus\:-rotate-194:focus,
  .mobile\:group:hover .group-hover\:-rotate-194,
  .mobile\:group:focus-within .group-focus-within\:-rotate-194 {
    transform: rotate(-194deg);
  }
  .mobile\:-rotate-195,
  .mobile\:hover\:-rotate-195:hover,
  .mobile\:focus\:-rotate-195:focus,
  .mobile\:group:hover .group-hover\:-rotate-195,
  .mobile\:group:focus-within .group-focus-within\:-rotate-195 {
    transform: rotate(-195deg);
  }
  .mobile\:-rotate-196,
  .mobile\:hover\:-rotate-196:hover,
  .mobile\:focus\:-rotate-196:focus,
  .mobile\:group:hover .group-hover\:-rotate-196,
  .mobile\:group:focus-within .group-focus-within\:-rotate-196 {
    transform: rotate(-196deg);
  }
  .mobile\:-rotate-197,
  .mobile\:hover\:-rotate-197:hover,
  .mobile\:focus\:-rotate-197:focus,
  .mobile\:group:hover .group-hover\:-rotate-197,
  .mobile\:group:focus-within .group-focus-within\:-rotate-197 {
    transform: rotate(-197deg);
  }
  .mobile\:-rotate-198,
  .mobile\:hover\:-rotate-198:hover,
  .mobile\:focus\:-rotate-198:focus,
  .mobile\:group:hover .group-hover\:-rotate-198,
  .mobile\:group:focus-within .group-focus-within\:-rotate-198 {
    transform: rotate(-198deg);
  }
  .mobile\:-rotate-199,
  .mobile\:hover\:-rotate-199:hover,
  .mobile\:focus\:-rotate-199:focus,
  .mobile\:group:hover .group-hover\:-rotate-199,
  .mobile\:group:focus-within .group-focus-within\:-rotate-199 {
    transform: rotate(-199deg);
  }
  .mobile\:-rotate-200,
  .mobile\:hover\:-rotate-200:hover,
  .mobile\:focus\:-rotate-200:focus,
  .mobile\:group:hover .group-hover\:-rotate-200,
  .mobile\:group:focus-within .group-focus-within\:-rotate-200 {
    transform: rotate(-200deg);
  }
  .mobile\:-rotate-201,
  .mobile\:hover\:-rotate-201:hover,
  .mobile\:focus\:-rotate-201:focus,
  .mobile\:group:hover .group-hover\:-rotate-201,
  .mobile\:group:focus-within .group-focus-within\:-rotate-201 {
    transform: rotate(-201deg);
  }
  .mobile\:-rotate-202,
  .mobile\:hover\:-rotate-202:hover,
  .mobile\:focus\:-rotate-202:focus,
  .mobile\:group:hover .group-hover\:-rotate-202,
  .mobile\:group:focus-within .group-focus-within\:-rotate-202 {
    transform: rotate(-202deg);
  }
  .mobile\:-rotate-203,
  .mobile\:hover\:-rotate-203:hover,
  .mobile\:focus\:-rotate-203:focus,
  .mobile\:group:hover .group-hover\:-rotate-203,
  .mobile\:group:focus-within .group-focus-within\:-rotate-203 {
    transform: rotate(-203deg);
  }
  .mobile\:-rotate-204,
  .mobile\:hover\:-rotate-204:hover,
  .mobile\:focus\:-rotate-204:focus,
  .mobile\:group:hover .group-hover\:-rotate-204,
  .mobile\:group:focus-within .group-focus-within\:-rotate-204 {
    transform: rotate(-204deg);
  }
  .mobile\:-rotate-205,
  .mobile\:hover\:-rotate-205:hover,
  .mobile\:focus\:-rotate-205:focus,
  .mobile\:group:hover .group-hover\:-rotate-205,
  .mobile\:group:focus-within .group-focus-within\:-rotate-205 {
    transform: rotate(-205deg);
  }
  .mobile\:-rotate-206,
  .mobile\:hover\:-rotate-206:hover,
  .mobile\:focus\:-rotate-206:focus,
  .mobile\:group:hover .group-hover\:-rotate-206,
  .mobile\:group:focus-within .group-focus-within\:-rotate-206 {
    transform: rotate(-206deg);
  }
  .mobile\:-rotate-207,
  .mobile\:hover\:-rotate-207:hover,
  .mobile\:focus\:-rotate-207:focus,
  .mobile\:group:hover .group-hover\:-rotate-207,
  .mobile\:group:focus-within .group-focus-within\:-rotate-207 {
    transform: rotate(-207deg);
  }
  .mobile\:-rotate-208,
  .mobile\:hover\:-rotate-208:hover,
  .mobile\:focus\:-rotate-208:focus,
  .mobile\:group:hover .group-hover\:-rotate-208,
  .mobile\:group:focus-within .group-focus-within\:-rotate-208 {
    transform: rotate(-208deg);
  }
  .mobile\:-rotate-209,
  .mobile\:hover\:-rotate-209:hover,
  .mobile\:focus\:-rotate-209:focus,
  .mobile\:group:hover .group-hover\:-rotate-209,
  .mobile\:group:focus-within .group-focus-within\:-rotate-209 {
    transform: rotate(-209deg);
  }
  .mobile\:-rotate-210,
  .mobile\:hover\:-rotate-210:hover,
  .mobile\:focus\:-rotate-210:focus,
  .mobile\:group:hover .group-hover\:-rotate-210,
  .mobile\:group:focus-within .group-focus-within\:-rotate-210 {
    transform: rotate(-210deg);
  }
  .mobile\:-rotate-211,
  .mobile\:hover\:-rotate-211:hover,
  .mobile\:focus\:-rotate-211:focus,
  .mobile\:group:hover .group-hover\:-rotate-211,
  .mobile\:group:focus-within .group-focus-within\:-rotate-211 {
    transform: rotate(-211deg);
  }
  .mobile\:-rotate-212,
  .mobile\:hover\:-rotate-212:hover,
  .mobile\:focus\:-rotate-212:focus,
  .mobile\:group:hover .group-hover\:-rotate-212,
  .mobile\:group:focus-within .group-focus-within\:-rotate-212 {
    transform: rotate(-212deg);
  }
  .mobile\:-rotate-213,
  .mobile\:hover\:-rotate-213:hover,
  .mobile\:focus\:-rotate-213:focus,
  .mobile\:group:hover .group-hover\:-rotate-213,
  .mobile\:group:focus-within .group-focus-within\:-rotate-213 {
    transform: rotate(-213deg);
  }
  .mobile\:-rotate-214,
  .mobile\:hover\:-rotate-214:hover,
  .mobile\:focus\:-rotate-214:focus,
  .mobile\:group:hover .group-hover\:-rotate-214,
  .mobile\:group:focus-within .group-focus-within\:-rotate-214 {
    transform: rotate(-214deg);
  }
  .mobile\:-rotate-215,
  .mobile\:hover\:-rotate-215:hover,
  .mobile\:focus\:-rotate-215:focus,
  .mobile\:group:hover .group-hover\:-rotate-215,
  .mobile\:group:focus-within .group-focus-within\:-rotate-215 {
    transform: rotate(-215deg);
  }
  .mobile\:-rotate-216,
  .mobile\:hover\:-rotate-216:hover,
  .mobile\:focus\:-rotate-216:focus,
  .mobile\:group:hover .group-hover\:-rotate-216,
  .mobile\:group:focus-within .group-focus-within\:-rotate-216 {
    transform: rotate(-216deg);
  }
  .mobile\:-rotate-217,
  .mobile\:hover\:-rotate-217:hover,
  .mobile\:focus\:-rotate-217:focus,
  .mobile\:group:hover .group-hover\:-rotate-217,
  .mobile\:group:focus-within .group-focus-within\:-rotate-217 {
    transform: rotate(-217deg);
  }
  .mobile\:-rotate-218,
  .mobile\:hover\:-rotate-218:hover,
  .mobile\:focus\:-rotate-218:focus,
  .mobile\:group:hover .group-hover\:-rotate-218,
  .mobile\:group:focus-within .group-focus-within\:-rotate-218 {
    transform: rotate(-218deg);
  }
  .mobile\:-rotate-219,
  .mobile\:hover\:-rotate-219:hover,
  .mobile\:focus\:-rotate-219:focus,
  .mobile\:group:hover .group-hover\:-rotate-219,
  .mobile\:group:focus-within .group-focus-within\:-rotate-219 {
    transform: rotate(-219deg);
  }
  .mobile\:-rotate-220,
  .mobile\:hover\:-rotate-220:hover,
  .mobile\:focus\:-rotate-220:focus,
  .mobile\:group:hover .group-hover\:-rotate-220,
  .mobile\:group:focus-within .group-focus-within\:-rotate-220 {
    transform: rotate(-220deg);
  }
  .mobile\:-rotate-221,
  .mobile\:hover\:-rotate-221:hover,
  .mobile\:focus\:-rotate-221:focus,
  .mobile\:group:hover .group-hover\:-rotate-221,
  .mobile\:group:focus-within .group-focus-within\:-rotate-221 {
    transform: rotate(-221deg);
  }
  .mobile\:-rotate-222,
  .mobile\:hover\:-rotate-222:hover,
  .mobile\:focus\:-rotate-222:focus,
  .mobile\:group:hover .group-hover\:-rotate-222,
  .mobile\:group:focus-within .group-focus-within\:-rotate-222 {
    transform: rotate(-222deg);
  }
  .mobile\:-rotate-223,
  .mobile\:hover\:-rotate-223:hover,
  .mobile\:focus\:-rotate-223:focus,
  .mobile\:group:hover .group-hover\:-rotate-223,
  .mobile\:group:focus-within .group-focus-within\:-rotate-223 {
    transform: rotate(-223deg);
  }
  .mobile\:-rotate-224,
  .mobile\:hover\:-rotate-224:hover,
  .mobile\:focus\:-rotate-224:focus,
  .mobile\:group:hover .group-hover\:-rotate-224,
  .mobile\:group:focus-within .group-focus-within\:-rotate-224 {
    transform: rotate(-224deg);
  }
  .mobile\:-rotate-225,
  .mobile\:hover\:-rotate-225:hover,
  .mobile\:focus\:-rotate-225:focus,
  .mobile\:group:hover .group-hover\:-rotate-225,
  .mobile\:group:focus-within .group-focus-within\:-rotate-225 {
    transform: rotate(-225deg);
  }
  .mobile\:-rotate-226,
  .mobile\:hover\:-rotate-226:hover,
  .mobile\:focus\:-rotate-226:focus,
  .mobile\:group:hover .group-hover\:-rotate-226,
  .mobile\:group:focus-within .group-focus-within\:-rotate-226 {
    transform: rotate(-226deg);
  }
  .mobile\:-rotate-227,
  .mobile\:hover\:-rotate-227:hover,
  .mobile\:focus\:-rotate-227:focus,
  .mobile\:group:hover .group-hover\:-rotate-227,
  .mobile\:group:focus-within .group-focus-within\:-rotate-227 {
    transform: rotate(-227deg);
  }
  .mobile\:-rotate-228,
  .mobile\:hover\:-rotate-228:hover,
  .mobile\:focus\:-rotate-228:focus,
  .mobile\:group:hover .group-hover\:-rotate-228,
  .mobile\:group:focus-within .group-focus-within\:-rotate-228 {
    transform: rotate(-228deg);
  }
  .mobile\:-rotate-229,
  .mobile\:hover\:-rotate-229:hover,
  .mobile\:focus\:-rotate-229:focus,
  .mobile\:group:hover .group-hover\:-rotate-229,
  .mobile\:group:focus-within .group-focus-within\:-rotate-229 {
    transform: rotate(-229deg);
  }
  .mobile\:-rotate-230,
  .mobile\:hover\:-rotate-230:hover,
  .mobile\:focus\:-rotate-230:focus,
  .mobile\:group:hover .group-hover\:-rotate-230,
  .mobile\:group:focus-within .group-focus-within\:-rotate-230 {
    transform: rotate(-230deg);
  }
  .mobile\:-rotate-231,
  .mobile\:hover\:-rotate-231:hover,
  .mobile\:focus\:-rotate-231:focus,
  .mobile\:group:hover .group-hover\:-rotate-231,
  .mobile\:group:focus-within .group-focus-within\:-rotate-231 {
    transform: rotate(-231deg);
  }
  .mobile\:-rotate-232,
  .mobile\:hover\:-rotate-232:hover,
  .mobile\:focus\:-rotate-232:focus,
  .mobile\:group:hover .group-hover\:-rotate-232,
  .mobile\:group:focus-within .group-focus-within\:-rotate-232 {
    transform: rotate(-232deg);
  }
  .mobile\:-rotate-233,
  .mobile\:hover\:-rotate-233:hover,
  .mobile\:focus\:-rotate-233:focus,
  .mobile\:group:hover .group-hover\:-rotate-233,
  .mobile\:group:focus-within .group-focus-within\:-rotate-233 {
    transform: rotate(-233deg);
  }
  .mobile\:-rotate-234,
  .mobile\:hover\:-rotate-234:hover,
  .mobile\:focus\:-rotate-234:focus,
  .mobile\:group:hover .group-hover\:-rotate-234,
  .mobile\:group:focus-within .group-focus-within\:-rotate-234 {
    transform: rotate(-234deg);
  }
  .mobile\:-rotate-235,
  .mobile\:hover\:-rotate-235:hover,
  .mobile\:focus\:-rotate-235:focus,
  .mobile\:group:hover .group-hover\:-rotate-235,
  .mobile\:group:focus-within .group-focus-within\:-rotate-235 {
    transform: rotate(-235deg);
  }
  .mobile\:-rotate-236,
  .mobile\:hover\:-rotate-236:hover,
  .mobile\:focus\:-rotate-236:focus,
  .mobile\:group:hover .group-hover\:-rotate-236,
  .mobile\:group:focus-within .group-focus-within\:-rotate-236 {
    transform: rotate(-236deg);
  }
  .mobile\:-rotate-237,
  .mobile\:hover\:-rotate-237:hover,
  .mobile\:focus\:-rotate-237:focus,
  .mobile\:group:hover .group-hover\:-rotate-237,
  .mobile\:group:focus-within .group-focus-within\:-rotate-237 {
    transform: rotate(-237deg);
  }
  .mobile\:-rotate-238,
  .mobile\:hover\:-rotate-238:hover,
  .mobile\:focus\:-rotate-238:focus,
  .mobile\:group:hover .group-hover\:-rotate-238,
  .mobile\:group:focus-within .group-focus-within\:-rotate-238 {
    transform: rotate(-238deg);
  }
  .mobile\:-rotate-239,
  .mobile\:hover\:-rotate-239:hover,
  .mobile\:focus\:-rotate-239:focus,
  .mobile\:group:hover .group-hover\:-rotate-239,
  .mobile\:group:focus-within .group-focus-within\:-rotate-239 {
    transform: rotate(-239deg);
  }
  .mobile\:-rotate-240,
  .mobile\:hover\:-rotate-240:hover,
  .mobile\:focus\:-rotate-240:focus,
  .mobile\:group:hover .group-hover\:-rotate-240,
  .mobile\:group:focus-within .group-focus-within\:-rotate-240 {
    transform: rotate(-240deg);
  }
  .mobile\:-rotate-241,
  .mobile\:hover\:-rotate-241:hover,
  .mobile\:focus\:-rotate-241:focus,
  .mobile\:group:hover .group-hover\:-rotate-241,
  .mobile\:group:focus-within .group-focus-within\:-rotate-241 {
    transform: rotate(-241deg);
  }
  .mobile\:-rotate-242,
  .mobile\:hover\:-rotate-242:hover,
  .mobile\:focus\:-rotate-242:focus,
  .mobile\:group:hover .group-hover\:-rotate-242,
  .mobile\:group:focus-within .group-focus-within\:-rotate-242 {
    transform: rotate(-242deg);
  }
  .mobile\:-rotate-243,
  .mobile\:hover\:-rotate-243:hover,
  .mobile\:focus\:-rotate-243:focus,
  .mobile\:group:hover .group-hover\:-rotate-243,
  .mobile\:group:focus-within .group-focus-within\:-rotate-243 {
    transform: rotate(-243deg);
  }
  .mobile\:-rotate-244,
  .mobile\:hover\:-rotate-244:hover,
  .mobile\:focus\:-rotate-244:focus,
  .mobile\:group:hover .group-hover\:-rotate-244,
  .mobile\:group:focus-within .group-focus-within\:-rotate-244 {
    transform: rotate(-244deg);
  }
  .mobile\:-rotate-245,
  .mobile\:hover\:-rotate-245:hover,
  .mobile\:focus\:-rotate-245:focus,
  .mobile\:group:hover .group-hover\:-rotate-245,
  .mobile\:group:focus-within .group-focus-within\:-rotate-245 {
    transform: rotate(-245deg);
  }
  .mobile\:-rotate-246,
  .mobile\:hover\:-rotate-246:hover,
  .mobile\:focus\:-rotate-246:focus,
  .mobile\:group:hover .group-hover\:-rotate-246,
  .mobile\:group:focus-within .group-focus-within\:-rotate-246 {
    transform: rotate(-246deg);
  }
  .mobile\:-rotate-247,
  .mobile\:hover\:-rotate-247:hover,
  .mobile\:focus\:-rotate-247:focus,
  .mobile\:group:hover .group-hover\:-rotate-247,
  .mobile\:group:focus-within .group-focus-within\:-rotate-247 {
    transform: rotate(-247deg);
  }
  .mobile\:-rotate-248,
  .mobile\:hover\:-rotate-248:hover,
  .mobile\:focus\:-rotate-248:focus,
  .mobile\:group:hover .group-hover\:-rotate-248,
  .mobile\:group:focus-within .group-focus-within\:-rotate-248 {
    transform: rotate(-248deg);
  }
  .mobile\:-rotate-249,
  .mobile\:hover\:-rotate-249:hover,
  .mobile\:focus\:-rotate-249:focus,
  .mobile\:group:hover .group-hover\:-rotate-249,
  .mobile\:group:focus-within .group-focus-within\:-rotate-249 {
    transform: rotate(-249deg);
  }
  .mobile\:-rotate-250,
  .mobile\:hover\:-rotate-250:hover,
  .mobile\:focus\:-rotate-250:focus,
  .mobile\:group:hover .group-hover\:-rotate-250,
  .mobile\:group:focus-within .group-focus-within\:-rotate-250 {
    transform: rotate(-250deg);
  }
  .mobile\:-rotate-251,
  .mobile\:hover\:-rotate-251:hover,
  .mobile\:focus\:-rotate-251:focus,
  .mobile\:group:hover .group-hover\:-rotate-251,
  .mobile\:group:focus-within .group-focus-within\:-rotate-251 {
    transform: rotate(-251deg);
  }
  .mobile\:-rotate-252,
  .mobile\:hover\:-rotate-252:hover,
  .mobile\:focus\:-rotate-252:focus,
  .mobile\:group:hover .group-hover\:-rotate-252,
  .mobile\:group:focus-within .group-focus-within\:-rotate-252 {
    transform: rotate(-252deg);
  }
  .mobile\:-rotate-253,
  .mobile\:hover\:-rotate-253:hover,
  .mobile\:focus\:-rotate-253:focus,
  .mobile\:group:hover .group-hover\:-rotate-253,
  .mobile\:group:focus-within .group-focus-within\:-rotate-253 {
    transform: rotate(-253deg);
  }
  .mobile\:-rotate-254,
  .mobile\:hover\:-rotate-254:hover,
  .mobile\:focus\:-rotate-254:focus,
  .mobile\:group:hover .group-hover\:-rotate-254,
  .mobile\:group:focus-within .group-focus-within\:-rotate-254 {
    transform: rotate(-254deg);
  }
  .mobile\:-rotate-255,
  .mobile\:hover\:-rotate-255:hover,
  .mobile\:focus\:-rotate-255:focus,
  .mobile\:group:hover .group-hover\:-rotate-255,
  .mobile\:group:focus-within .group-focus-within\:-rotate-255 {
    transform: rotate(-255deg);
  }
  .mobile\:-rotate-256,
  .mobile\:hover\:-rotate-256:hover,
  .mobile\:focus\:-rotate-256:focus,
  .mobile\:group:hover .group-hover\:-rotate-256,
  .mobile\:group:focus-within .group-focus-within\:-rotate-256 {
    transform: rotate(-256deg);
  }
  .mobile\:-rotate-257,
  .mobile\:hover\:-rotate-257:hover,
  .mobile\:focus\:-rotate-257:focus,
  .mobile\:group:hover .group-hover\:-rotate-257,
  .mobile\:group:focus-within .group-focus-within\:-rotate-257 {
    transform: rotate(-257deg);
  }
  .mobile\:-rotate-258,
  .mobile\:hover\:-rotate-258:hover,
  .mobile\:focus\:-rotate-258:focus,
  .mobile\:group:hover .group-hover\:-rotate-258,
  .mobile\:group:focus-within .group-focus-within\:-rotate-258 {
    transform: rotate(-258deg);
  }
  .mobile\:-rotate-259,
  .mobile\:hover\:-rotate-259:hover,
  .mobile\:focus\:-rotate-259:focus,
  .mobile\:group:hover .group-hover\:-rotate-259,
  .mobile\:group:focus-within .group-focus-within\:-rotate-259 {
    transform: rotate(-259deg);
  }
  .mobile\:-rotate-260,
  .mobile\:hover\:-rotate-260:hover,
  .mobile\:focus\:-rotate-260:focus,
  .mobile\:group:hover .group-hover\:-rotate-260,
  .mobile\:group:focus-within .group-focus-within\:-rotate-260 {
    transform: rotate(-260deg);
  }
  .mobile\:-rotate-261,
  .mobile\:hover\:-rotate-261:hover,
  .mobile\:focus\:-rotate-261:focus,
  .mobile\:group:hover .group-hover\:-rotate-261,
  .mobile\:group:focus-within .group-focus-within\:-rotate-261 {
    transform: rotate(-261deg);
  }
  .mobile\:-rotate-262,
  .mobile\:hover\:-rotate-262:hover,
  .mobile\:focus\:-rotate-262:focus,
  .mobile\:group:hover .group-hover\:-rotate-262,
  .mobile\:group:focus-within .group-focus-within\:-rotate-262 {
    transform: rotate(-262deg);
  }
  .mobile\:-rotate-263,
  .mobile\:hover\:-rotate-263:hover,
  .mobile\:focus\:-rotate-263:focus,
  .mobile\:group:hover .group-hover\:-rotate-263,
  .mobile\:group:focus-within .group-focus-within\:-rotate-263 {
    transform: rotate(-263deg);
  }
  .mobile\:-rotate-264,
  .mobile\:hover\:-rotate-264:hover,
  .mobile\:focus\:-rotate-264:focus,
  .mobile\:group:hover .group-hover\:-rotate-264,
  .mobile\:group:focus-within .group-focus-within\:-rotate-264 {
    transform: rotate(-264deg);
  }
  .mobile\:-rotate-265,
  .mobile\:hover\:-rotate-265:hover,
  .mobile\:focus\:-rotate-265:focus,
  .mobile\:group:hover .group-hover\:-rotate-265,
  .mobile\:group:focus-within .group-focus-within\:-rotate-265 {
    transform: rotate(-265deg);
  }
  .mobile\:-rotate-266,
  .mobile\:hover\:-rotate-266:hover,
  .mobile\:focus\:-rotate-266:focus,
  .mobile\:group:hover .group-hover\:-rotate-266,
  .mobile\:group:focus-within .group-focus-within\:-rotate-266 {
    transform: rotate(-266deg);
  }
  .mobile\:-rotate-267,
  .mobile\:hover\:-rotate-267:hover,
  .mobile\:focus\:-rotate-267:focus,
  .mobile\:group:hover .group-hover\:-rotate-267,
  .mobile\:group:focus-within .group-focus-within\:-rotate-267 {
    transform: rotate(-267deg);
  }
  .mobile\:-rotate-268,
  .mobile\:hover\:-rotate-268:hover,
  .mobile\:focus\:-rotate-268:focus,
  .mobile\:group:hover .group-hover\:-rotate-268,
  .mobile\:group:focus-within .group-focus-within\:-rotate-268 {
    transform: rotate(-268deg);
  }
  .mobile\:-rotate-269,
  .mobile\:hover\:-rotate-269:hover,
  .mobile\:focus\:-rotate-269:focus,
  .mobile\:group:hover .group-hover\:-rotate-269,
  .mobile\:group:focus-within .group-focus-within\:-rotate-269 {
    transform: rotate(-269deg);
  }
  .mobile\:-rotate-270,
  .mobile\:hover\:-rotate-270:hover,
  .mobile\:focus\:-rotate-270:focus,
  .mobile\:group:hover .group-hover\:-rotate-270,
  .mobile\:group:focus-within .group-focus-within\:-rotate-270 {
    transform: rotate(-270deg);
  }
  .mobile\:-rotate-271,
  .mobile\:hover\:-rotate-271:hover,
  .mobile\:focus\:-rotate-271:focus,
  .mobile\:group:hover .group-hover\:-rotate-271,
  .mobile\:group:focus-within .group-focus-within\:-rotate-271 {
    transform: rotate(-271deg);
  }
  .mobile\:-rotate-272,
  .mobile\:hover\:-rotate-272:hover,
  .mobile\:focus\:-rotate-272:focus,
  .mobile\:group:hover .group-hover\:-rotate-272,
  .mobile\:group:focus-within .group-focus-within\:-rotate-272 {
    transform: rotate(-272deg);
  }
  .mobile\:-rotate-273,
  .mobile\:hover\:-rotate-273:hover,
  .mobile\:focus\:-rotate-273:focus,
  .mobile\:group:hover .group-hover\:-rotate-273,
  .mobile\:group:focus-within .group-focus-within\:-rotate-273 {
    transform: rotate(-273deg);
  }
  .mobile\:-rotate-274,
  .mobile\:hover\:-rotate-274:hover,
  .mobile\:focus\:-rotate-274:focus,
  .mobile\:group:hover .group-hover\:-rotate-274,
  .mobile\:group:focus-within .group-focus-within\:-rotate-274 {
    transform: rotate(-274deg);
  }
  .mobile\:-rotate-275,
  .mobile\:hover\:-rotate-275:hover,
  .mobile\:focus\:-rotate-275:focus,
  .mobile\:group:hover .group-hover\:-rotate-275,
  .mobile\:group:focus-within .group-focus-within\:-rotate-275 {
    transform: rotate(-275deg);
  }
  .mobile\:-rotate-276,
  .mobile\:hover\:-rotate-276:hover,
  .mobile\:focus\:-rotate-276:focus,
  .mobile\:group:hover .group-hover\:-rotate-276,
  .mobile\:group:focus-within .group-focus-within\:-rotate-276 {
    transform: rotate(-276deg);
  }
  .mobile\:-rotate-277,
  .mobile\:hover\:-rotate-277:hover,
  .mobile\:focus\:-rotate-277:focus,
  .mobile\:group:hover .group-hover\:-rotate-277,
  .mobile\:group:focus-within .group-focus-within\:-rotate-277 {
    transform: rotate(-277deg);
  }
  .mobile\:-rotate-278,
  .mobile\:hover\:-rotate-278:hover,
  .mobile\:focus\:-rotate-278:focus,
  .mobile\:group:hover .group-hover\:-rotate-278,
  .mobile\:group:focus-within .group-focus-within\:-rotate-278 {
    transform: rotate(-278deg);
  }
  .mobile\:-rotate-279,
  .mobile\:hover\:-rotate-279:hover,
  .mobile\:focus\:-rotate-279:focus,
  .mobile\:group:hover .group-hover\:-rotate-279,
  .mobile\:group:focus-within .group-focus-within\:-rotate-279 {
    transform: rotate(-279deg);
  }
  .mobile\:-rotate-280,
  .mobile\:hover\:-rotate-280:hover,
  .mobile\:focus\:-rotate-280:focus,
  .mobile\:group:hover .group-hover\:-rotate-280,
  .mobile\:group:focus-within .group-focus-within\:-rotate-280 {
    transform: rotate(-280deg);
  }
  .mobile\:-rotate-281,
  .mobile\:hover\:-rotate-281:hover,
  .mobile\:focus\:-rotate-281:focus,
  .mobile\:group:hover .group-hover\:-rotate-281,
  .mobile\:group:focus-within .group-focus-within\:-rotate-281 {
    transform: rotate(-281deg);
  }
  .mobile\:-rotate-282,
  .mobile\:hover\:-rotate-282:hover,
  .mobile\:focus\:-rotate-282:focus,
  .mobile\:group:hover .group-hover\:-rotate-282,
  .mobile\:group:focus-within .group-focus-within\:-rotate-282 {
    transform: rotate(-282deg);
  }
  .mobile\:-rotate-283,
  .mobile\:hover\:-rotate-283:hover,
  .mobile\:focus\:-rotate-283:focus,
  .mobile\:group:hover .group-hover\:-rotate-283,
  .mobile\:group:focus-within .group-focus-within\:-rotate-283 {
    transform: rotate(-283deg);
  }
  .mobile\:-rotate-284,
  .mobile\:hover\:-rotate-284:hover,
  .mobile\:focus\:-rotate-284:focus,
  .mobile\:group:hover .group-hover\:-rotate-284,
  .mobile\:group:focus-within .group-focus-within\:-rotate-284 {
    transform: rotate(-284deg);
  }
  .mobile\:-rotate-285,
  .mobile\:hover\:-rotate-285:hover,
  .mobile\:focus\:-rotate-285:focus,
  .mobile\:group:hover .group-hover\:-rotate-285,
  .mobile\:group:focus-within .group-focus-within\:-rotate-285 {
    transform: rotate(-285deg);
  }
  .mobile\:-rotate-286,
  .mobile\:hover\:-rotate-286:hover,
  .mobile\:focus\:-rotate-286:focus,
  .mobile\:group:hover .group-hover\:-rotate-286,
  .mobile\:group:focus-within .group-focus-within\:-rotate-286 {
    transform: rotate(-286deg);
  }
  .mobile\:-rotate-287,
  .mobile\:hover\:-rotate-287:hover,
  .mobile\:focus\:-rotate-287:focus,
  .mobile\:group:hover .group-hover\:-rotate-287,
  .mobile\:group:focus-within .group-focus-within\:-rotate-287 {
    transform: rotate(-287deg);
  }
  .mobile\:-rotate-288,
  .mobile\:hover\:-rotate-288:hover,
  .mobile\:focus\:-rotate-288:focus,
  .mobile\:group:hover .group-hover\:-rotate-288,
  .mobile\:group:focus-within .group-focus-within\:-rotate-288 {
    transform: rotate(-288deg);
  }
  .mobile\:-rotate-289,
  .mobile\:hover\:-rotate-289:hover,
  .mobile\:focus\:-rotate-289:focus,
  .mobile\:group:hover .group-hover\:-rotate-289,
  .mobile\:group:focus-within .group-focus-within\:-rotate-289 {
    transform: rotate(-289deg);
  }
  .mobile\:-rotate-290,
  .mobile\:hover\:-rotate-290:hover,
  .mobile\:focus\:-rotate-290:focus,
  .mobile\:group:hover .group-hover\:-rotate-290,
  .mobile\:group:focus-within .group-focus-within\:-rotate-290 {
    transform: rotate(-290deg);
  }
  .mobile\:-rotate-291,
  .mobile\:hover\:-rotate-291:hover,
  .mobile\:focus\:-rotate-291:focus,
  .mobile\:group:hover .group-hover\:-rotate-291,
  .mobile\:group:focus-within .group-focus-within\:-rotate-291 {
    transform: rotate(-291deg);
  }
  .mobile\:-rotate-292,
  .mobile\:hover\:-rotate-292:hover,
  .mobile\:focus\:-rotate-292:focus,
  .mobile\:group:hover .group-hover\:-rotate-292,
  .mobile\:group:focus-within .group-focus-within\:-rotate-292 {
    transform: rotate(-292deg);
  }
  .mobile\:-rotate-293,
  .mobile\:hover\:-rotate-293:hover,
  .mobile\:focus\:-rotate-293:focus,
  .mobile\:group:hover .group-hover\:-rotate-293,
  .mobile\:group:focus-within .group-focus-within\:-rotate-293 {
    transform: rotate(-293deg);
  }
  .mobile\:-rotate-294,
  .mobile\:hover\:-rotate-294:hover,
  .mobile\:focus\:-rotate-294:focus,
  .mobile\:group:hover .group-hover\:-rotate-294,
  .mobile\:group:focus-within .group-focus-within\:-rotate-294 {
    transform: rotate(-294deg);
  }
  .mobile\:-rotate-295,
  .mobile\:hover\:-rotate-295:hover,
  .mobile\:focus\:-rotate-295:focus,
  .mobile\:group:hover .group-hover\:-rotate-295,
  .mobile\:group:focus-within .group-focus-within\:-rotate-295 {
    transform: rotate(-295deg);
  }
  .mobile\:-rotate-296,
  .mobile\:hover\:-rotate-296:hover,
  .mobile\:focus\:-rotate-296:focus,
  .mobile\:group:hover .group-hover\:-rotate-296,
  .mobile\:group:focus-within .group-focus-within\:-rotate-296 {
    transform: rotate(-296deg);
  }
  .mobile\:-rotate-297,
  .mobile\:hover\:-rotate-297:hover,
  .mobile\:focus\:-rotate-297:focus,
  .mobile\:group:hover .group-hover\:-rotate-297,
  .mobile\:group:focus-within .group-focus-within\:-rotate-297 {
    transform: rotate(-297deg);
  }
  .mobile\:-rotate-298,
  .mobile\:hover\:-rotate-298:hover,
  .mobile\:focus\:-rotate-298:focus,
  .mobile\:group:hover .group-hover\:-rotate-298,
  .mobile\:group:focus-within .group-focus-within\:-rotate-298 {
    transform: rotate(-298deg);
  }
  .mobile\:-rotate-299,
  .mobile\:hover\:-rotate-299:hover,
  .mobile\:focus\:-rotate-299:focus,
  .mobile\:group:hover .group-hover\:-rotate-299,
  .mobile\:group:focus-within .group-focus-within\:-rotate-299 {
    transform: rotate(-299deg);
  }
  .mobile\:-rotate-300,
  .mobile\:hover\:-rotate-300:hover,
  .mobile\:focus\:-rotate-300:focus,
  .mobile\:group:hover .group-hover\:-rotate-300,
  .mobile\:group:focus-within .group-focus-within\:-rotate-300 {
    transform: rotate(-300deg);
  }
  .mobile\:-rotate-301,
  .mobile\:hover\:-rotate-301:hover,
  .mobile\:focus\:-rotate-301:focus,
  .mobile\:group:hover .group-hover\:-rotate-301,
  .mobile\:group:focus-within .group-focus-within\:-rotate-301 {
    transform: rotate(-301deg);
  }
  .mobile\:-rotate-302,
  .mobile\:hover\:-rotate-302:hover,
  .mobile\:focus\:-rotate-302:focus,
  .mobile\:group:hover .group-hover\:-rotate-302,
  .mobile\:group:focus-within .group-focus-within\:-rotate-302 {
    transform: rotate(-302deg);
  }
  .mobile\:-rotate-303,
  .mobile\:hover\:-rotate-303:hover,
  .mobile\:focus\:-rotate-303:focus,
  .mobile\:group:hover .group-hover\:-rotate-303,
  .mobile\:group:focus-within .group-focus-within\:-rotate-303 {
    transform: rotate(-303deg);
  }
  .mobile\:-rotate-304,
  .mobile\:hover\:-rotate-304:hover,
  .mobile\:focus\:-rotate-304:focus,
  .mobile\:group:hover .group-hover\:-rotate-304,
  .mobile\:group:focus-within .group-focus-within\:-rotate-304 {
    transform: rotate(-304deg);
  }
  .mobile\:-rotate-305,
  .mobile\:hover\:-rotate-305:hover,
  .mobile\:focus\:-rotate-305:focus,
  .mobile\:group:hover .group-hover\:-rotate-305,
  .mobile\:group:focus-within .group-focus-within\:-rotate-305 {
    transform: rotate(-305deg);
  }
  .mobile\:-rotate-306,
  .mobile\:hover\:-rotate-306:hover,
  .mobile\:focus\:-rotate-306:focus,
  .mobile\:group:hover .group-hover\:-rotate-306,
  .mobile\:group:focus-within .group-focus-within\:-rotate-306 {
    transform: rotate(-306deg);
  }
  .mobile\:-rotate-307,
  .mobile\:hover\:-rotate-307:hover,
  .mobile\:focus\:-rotate-307:focus,
  .mobile\:group:hover .group-hover\:-rotate-307,
  .mobile\:group:focus-within .group-focus-within\:-rotate-307 {
    transform: rotate(-307deg);
  }
  .mobile\:-rotate-308,
  .mobile\:hover\:-rotate-308:hover,
  .mobile\:focus\:-rotate-308:focus,
  .mobile\:group:hover .group-hover\:-rotate-308,
  .mobile\:group:focus-within .group-focus-within\:-rotate-308 {
    transform: rotate(-308deg);
  }
  .mobile\:-rotate-309,
  .mobile\:hover\:-rotate-309:hover,
  .mobile\:focus\:-rotate-309:focus,
  .mobile\:group:hover .group-hover\:-rotate-309,
  .mobile\:group:focus-within .group-focus-within\:-rotate-309 {
    transform: rotate(-309deg);
  }
  .mobile\:-rotate-310,
  .mobile\:hover\:-rotate-310:hover,
  .mobile\:focus\:-rotate-310:focus,
  .mobile\:group:hover .group-hover\:-rotate-310,
  .mobile\:group:focus-within .group-focus-within\:-rotate-310 {
    transform: rotate(-310deg);
  }
  .mobile\:-rotate-311,
  .mobile\:hover\:-rotate-311:hover,
  .mobile\:focus\:-rotate-311:focus,
  .mobile\:group:hover .group-hover\:-rotate-311,
  .mobile\:group:focus-within .group-focus-within\:-rotate-311 {
    transform: rotate(-311deg);
  }
  .mobile\:-rotate-312,
  .mobile\:hover\:-rotate-312:hover,
  .mobile\:focus\:-rotate-312:focus,
  .mobile\:group:hover .group-hover\:-rotate-312,
  .mobile\:group:focus-within .group-focus-within\:-rotate-312 {
    transform: rotate(-312deg);
  }
  .mobile\:-rotate-313,
  .mobile\:hover\:-rotate-313:hover,
  .mobile\:focus\:-rotate-313:focus,
  .mobile\:group:hover .group-hover\:-rotate-313,
  .mobile\:group:focus-within .group-focus-within\:-rotate-313 {
    transform: rotate(-313deg);
  }
  .mobile\:-rotate-314,
  .mobile\:hover\:-rotate-314:hover,
  .mobile\:focus\:-rotate-314:focus,
  .mobile\:group:hover .group-hover\:-rotate-314,
  .mobile\:group:focus-within .group-focus-within\:-rotate-314 {
    transform: rotate(-314deg);
  }
  .mobile\:-rotate-315,
  .mobile\:hover\:-rotate-315:hover,
  .mobile\:focus\:-rotate-315:focus,
  .mobile\:group:hover .group-hover\:-rotate-315,
  .mobile\:group:focus-within .group-focus-within\:-rotate-315 {
    transform: rotate(-315deg);
  }
  .mobile\:-rotate-316,
  .mobile\:hover\:-rotate-316:hover,
  .mobile\:focus\:-rotate-316:focus,
  .mobile\:group:hover .group-hover\:-rotate-316,
  .mobile\:group:focus-within .group-focus-within\:-rotate-316 {
    transform: rotate(-316deg);
  }
  .mobile\:-rotate-317,
  .mobile\:hover\:-rotate-317:hover,
  .mobile\:focus\:-rotate-317:focus,
  .mobile\:group:hover .group-hover\:-rotate-317,
  .mobile\:group:focus-within .group-focus-within\:-rotate-317 {
    transform: rotate(-317deg);
  }
  .mobile\:-rotate-318,
  .mobile\:hover\:-rotate-318:hover,
  .mobile\:focus\:-rotate-318:focus,
  .mobile\:group:hover .group-hover\:-rotate-318,
  .mobile\:group:focus-within .group-focus-within\:-rotate-318 {
    transform: rotate(-318deg);
  }
  .mobile\:-rotate-319,
  .mobile\:hover\:-rotate-319:hover,
  .mobile\:focus\:-rotate-319:focus,
  .mobile\:group:hover .group-hover\:-rotate-319,
  .mobile\:group:focus-within .group-focus-within\:-rotate-319 {
    transform: rotate(-319deg);
  }
  .mobile\:-rotate-320,
  .mobile\:hover\:-rotate-320:hover,
  .mobile\:focus\:-rotate-320:focus,
  .mobile\:group:hover .group-hover\:-rotate-320,
  .mobile\:group:focus-within .group-focus-within\:-rotate-320 {
    transform: rotate(-320deg);
  }
  .mobile\:-rotate-321,
  .mobile\:hover\:-rotate-321:hover,
  .mobile\:focus\:-rotate-321:focus,
  .mobile\:group:hover .group-hover\:-rotate-321,
  .mobile\:group:focus-within .group-focus-within\:-rotate-321 {
    transform: rotate(-321deg);
  }
  .mobile\:-rotate-322,
  .mobile\:hover\:-rotate-322:hover,
  .mobile\:focus\:-rotate-322:focus,
  .mobile\:group:hover .group-hover\:-rotate-322,
  .mobile\:group:focus-within .group-focus-within\:-rotate-322 {
    transform: rotate(-322deg);
  }
  .mobile\:-rotate-323,
  .mobile\:hover\:-rotate-323:hover,
  .mobile\:focus\:-rotate-323:focus,
  .mobile\:group:hover .group-hover\:-rotate-323,
  .mobile\:group:focus-within .group-focus-within\:-rotate-323 {
    transform: rotate(-323deg);
  }
  .mobile\:-rotate-324,
  .mobile\:hover\:-rotate-324:hover,
  .mobile\:focus\:-rotate-324:focus,
  .mobile\:group:hover .group-hover\:-rotate-324,
  .mobile\:group:focus-within .group-focus-within\:-rotate-324 {
    transform: rotate(-324deg);
  }
  .mobile\:-rotate-325,
  .mobile\:hover\:-rotate-325:hover,
  .mobile\:focus\:-rotate-325:focus,
  .mobile\:group:hover .group-hover\:-rotate-325,
  .mobile\:group:focus-within .group-focus-within\:-rotate-325 {
    transform: rotate(-325deg);
  }
  .mobile\:-rotate-326,
  .mobile\:hover\:-rotate-326:hover,
  .mobile\:focus\:-rotate-326:focus,
  .mobile\:group:hover .group-hover\:-rotate-326,
  .mobile\:group:focus-within .group-focus-within\:-rotate-326 {
    transform: rotate(-326deg);
  }
  .mobile\:-rotate-327,
  .mobile\:hover\:-rotate-327:hover,
  .mobile\:focus\:-rotate-327:focus,
  .mobile\:group:hover .group-hover\:-rotate-327,
  .mobile\:group:focus-within .group-focus-within\:-rotate-327 {
    transform: rotate(-327deg);
  }
  .mobile\:-rotate-328,
  .mobile\:hover\:-rotate-328:hover,
  .mobile\:focus\:-rotate-328:focus,
  .mobile\:group:hover .group-hover\:-rotate-328,
  .mobile\:group:focus-within .group-focus-within\:-rotate-328 {
    transform: rotate(-328deg);
  }
  .mobile\:-rotate-329,
  .mobile\:hover\:-rotate-329:hover,
  .mobile\:focus\:-rotate-329:focus,
  .mobile\:group:hover .group-hover\:-rotate-329,
  .mobile\:group:focus-within .group-focus-within\:-rotate-329 {
    transform: rotate(-329deg);
  }
  .mobile\:-rotate-330,
  .mobile\:hover\:-rotate-330:hover,
  .mobile\:focus\:-rotate-330:focus,
  .mobile\:group:hover .group-hover\:-rotate-330,
  .mobile\:group:focus-within .group-focus-within\:-rotate-330 {
    transform: rotate(-330deg);
  }
  .mobile\:-rotate-331,
  .mobile\:hover\:-rotate-331:hover,
  .mobile\:focus\:-rotate-331:focus,
  .mobile\:group:hover .group-hover\:-rotate-331,
  .mobile\:group:focus-within .group-focus-within\:-rotate-331 {
    transform: rotate(-331deg);
  }
  .mobile\:-rotate-332,
  .mobile\:hover\:-rotate-332:hover,
  .mobile\:focus\:-rotate-332:focus,
  .mobile\:group:hover .group-hover\:-rotate-332,
  .mobile\:group:focus-within .group-focus-within\:-rotate-332 {
    transform: rotate(-332deg);
  }
  .mobile\:-rotate-333,
  .mobile\:hover\:-rotate-333:hover,
  .mobile\:focus\:-rotate-333:focus,
  .mobile\:group:hover .group-hover\:-rotate-333,
  .mobile\:group:focus-within .group-focus-within\:-rotate-333 {
    transform: rotate(-333deg);
  }
  .mobile\:-rotate-334,
  .mobile\:hover\:-rotate-334:hover,
  .mobile\:focus\:-rotate-334:focus,
  .mobile\:group:hover .group-hover\:-rotate-334,
  .mobile\:group:focus-within .group-focus-within\:-rotate-334 {
    transform: rotate(-334deg);
  }
  .mobile\:-rotate-335,
  .mobile\:hover\:-rotate-335:hover,
  .mobile\:focus\:-rotate-335:focus,
  .mobile\:group:hover .group-hover\:-rotate-335,
  .mobile\:group:focus-within .group-focus-within\:-rotate-335 {
    transform: rotate(-335deg);
  }
  .mobile\:-rotate-336,
  .mobile\:hover\:-rotate-336:hover,
  .mobile\:focus\:-rotate-336:focus,
  .mobile\:group:hover .group-hover\:-rotate-336,
  .mobile\:group:focus-within .group-focus-within\:-rotate-336 {
    transform: rotate(-336deg);
  }
  .mobile\:-rotate-337,
  .mobile\:hover\:-rotate-337:hover,
  .mobile\:focus\:-rotate-337:focus,
  .mobile\:group:hover .group-hover\:-rotate-337,
  .mobile\:group:focus-within .group-focus-within\:-rotate-337 {
    transform: rotate(-337deg);
  }
  .mobile\:-rotate-338,
  .mobile\:hover\:-rotate-338:hover,
  .mobile\:focus\:-rotate-338:focus,
  .mobile\:group:hover .group-hover\:-rotate-338,
  .mobile\:group:focus-within .group-focus-within\:-rotate-338 {
    transform: rotate(-338deg);
  }
  .mobile\:-rotate-339,
  .mobile\:hover\:-rotate-339:hover,
  .mobile\:focus\:-rotate-339:focus,
  .mobile\:group:hover .group-hover\:-rotate-339,
  .mobile\:group:focus-within .group-focus-within\:-rotate-339 {
    transform: rotate(-339deg);
  }
  .mobile\:-rotate-340,
  .mobile\:hover\:-rotate-340:hover,
  .mobile\:focus\:-rotate-340:focus,
  .mobile\:group:hover .group-hover\:-rotate-340,
  .mobile\:group:focus-within .group-focus-within\:-rotate-340 {
    transform: rotate(-340deg);
  }
  .mobile\:-rotate-341,
  .mobile\:hover\:-rotate-341:hover,
  .mobile\:focus\:-rotate-341:focus,
  .mobile\:group:hover .group-hover\:-rotate-341,
  .mobile\:group:focus-within .group-focus-within\:-rotate-341 {
    transform: rotate(-341deg);
  }
  .mobile\:-rotate-342,
  .mobile\:hover\:-rotate-342:hover,
  .mobile\:focus\:-rotate-342:focus,
  .mobile\:group:hover .group-hover\:-rotate-342,
  .mobile\:group:focus-within .group-focus-within\:-rotate-342 {
    transform: rotate(-342deg);
  }
  .mobile\:-rotate-343,
  .mobile\:hover\:-rotate-343:hover,
  .mobile\:focus\:-rotate-343:focus,
  .mobile\:group:hover .group-hover\:-rotate-343,
  .mobile\:group:focus-within .group-focus-within\:-rotate-343 {
    transform: rotate(-343deg);
  }
  .mobile\:-rotate-344,
  .mobile\:hover\:-rotate-344:hover,
  .mobile\:focus\:-rotate-344:focus,
  .mobile\:group:hover .group-hover\:-rotate-344,
  .mobile\:group:focus-within .group-focus-within\:-rotate-344 {
    transform: rotate(-344deg);
  }
  .mobile\:-rotate-345,
  .mobile\:hover\:-rotate-345:hover,
  .mobile\:focus\:-rotate-345:focus,
  .mobile\:group:hover .group-hover\:-rotate-345,
  .mobile\:group:focus-within .group-focus-within\:-rotate-345 {
    transform: rotate(-345deg);
  }
  .mobile\:-rotate-346,
  .mobile\:hover\:-rotate-346:hover,
  .mobile\:focus\:-rotate-346:focus,
  .mobile\:group:hover .group-hover\:-rotate-346,
  .mobile\:group:focus-within .group-focus-within\:-rotate-346 {
    transform: rotate(-346deg);
  }
  .mobile\:-rotate-347,
  .mobile\:hover\:-rotate-347:hover,
  .mobile\:focus\:-rotate-347:focus,
  .mobile\:group:hover .group-hover\:-rotate-347,
  .mobile\:group:focus-within .group-focus-within\:-rotate-347 {
    transform: rotate(-347deg);
  }
  .mobile\:-rotate-348,
  .mobile\:hover\:-rotate-348:hover,
  .mobile\:focus\:-rotate-348:focus,
  .mobile\:group:hover .group-hover\:-rotate-348,
  .mobile\:group:focus-within .group-focus-within\:-rotate-348 {
    transform: rotate(-348deg);
  }
  .mobile\:-rotate-349,
  .mobile\:hover\:-rotate-349:hover,
  .mobile\:focus\:-rotate-349:focus,
  .mobile\:group:hover .group-hover\:-rotate-349,
  .mobile\:group:focus-within .group-focus-within\:-rotate-349 {
    transform: rotate(-349deg);
  }
  .mobile\:-rotate-350,
  .mobile\:hover\:-rotate-350:hover,
  .mobile\:focus\:-rotate-350:focus,
  .mobile\:group:hover .group-hover\:-rotate-350,
  .mobile\:group:focus-within .group-focus-within\:-rotate-350 {
    transform: rotate(-350deg);
  }
  .mobile\:-rotate-351,
  .mobile\:hover\:-rotate-351:hover,
  .mobile\:focus\:-rotate-351:focus,
  .mobile\:group:hover .group-hover\:-rotate-351,
  .mobile\:group:focus-within .group-focus-within\:-rotate-351 {
    transform: rotate(-351deg);
  }
  .mobile\:-rotate-352,
  .mobile\:hover\:-rotate-352:hover,
  .mobile\:focus\:-rotate-352:focus,
  .mobile\:group:hover .group-hover\:-rotate-352,
  .mobile\:group:focus-within .group-focus-within\:-rotate-352 {
    transform: rotate(-352deg);
  }
  .mobile\:-rotate-353,
  .mobile\:hover\:-rotate-353:hover,
  .mobile\:focus\:-rotate-353:focus,
  .mobile\:group:hover .group-hover\:-rotate-353,
  .mobile\:group:focus-within .group-focus-within\:-rotate-353 {
    transform: rotate(-353deg);
  }
  .mobile\:-rotate-354,
  .mobile\:hover\:-rotate-354:hover,
  .mobile\:focus\:-rotate-354:focus,
  .mobile\:group:hover .group-hover\:-rotate-354,
  .mobile\:group:focus-within .group-focus-within\:-rotate-354 {
    transform: rotate(-354deg);
  }
  .mobile\:-rotate-355,
  .mobile\:hover\:-rotate-355:hover,
  .mobile\:focus\:-rotate-355:focus,
  .mobile\:group:hover .group-hover\:-rotate-355,
  .mobile\:group:focus-within .group-focus-within\:-rotate-355 {
    transform: rotate(-355deg);
  }
  .mobile\:-rotate-356,
  .mobile\:hover\:-rotate-356:hover,
  .mobile\:focus\:-rotate-356:focus,
  .mobile\:group:hover .group-hover\:-rotate-356,
  .mobile\:group:focus-within .group-focus-within\:-rotate-356 {
    transform: rotate(-356deg);
  }
  .mobile\:-rotate-357,
  .mobile\:hover\:-rotate-357:hover,
  .mobile\:focus\:-rotate-357:focus,
  .mobile\:group:hover .group-hover\:-rotate-357,
  .mobile\:group:focus-within .group-focus-within\:-rotate-357 {
    transform: rotate(-357deg);
  }
  .mobile\:-rotate-358,
  .mobile\:hover\:-rotate-358:hover,
  .mobile\:focus\:-rotate-358:focus,
  .mobile\:group:hover .group-hover\:-rotate-358,
  .mobile\:group:focus-within .group-focus-within\:-rotate-358 {
    transform: rotate(-358deg);
  }
  .mobile\:-rotate-359,
  .mobile\:hover\:-rotate-359:hover,
  .mobile\:focus\:-rotate-359:focus,
  .mobile\:group:hover .group-hover\:-rotate-359,
  .mobile\:group:focus-within .group-focus-within\:-rotate-359 {
    transform: rotate(-359deg);
  }
  .mobile\:-rotate-360,
  .mobile\:hover\:-rotate-360:hover,
  .mobile\:focus\:-rotate-360:focus,
  .mobile\:group:hover .group-hover\:-rotate-360,
  .mobile\:group:focus-within .group-focus-within\:-rotate-360 {
    transform: rotate(-360deg);
  }
  .mobile\:rotate-0,
  .mobile\:hover\:rotate-0:hover,
  .mobile\:focus\:rotate-0:focus,
  .mobile\:group:hover .group-hover\:rotate-0,
  .mobile\:group:focus-within .group-focus-within\:rotate-0 {
    transform: rotate(0deg);
  }
  .mobile\:rotate-1,
  .mobile\:hover\:rotate-1:hover,
  .mobile\:focus\:rotate-1:focus,
  .mobile\:group:hover .group-hover\:rotate-1,
  .mobile\:group:focus-within .group-focus-within\:rotate-1 {
    transform: rotate(1deg);
  }
  .mobile\:rotate-2,
  .mobile\:hover\:rotate-2:hover,
  .mobile\:focus\:rotate-2:focus,
  .mobile\:group:hover .group-hover\:rotate-2,
  .mobile\:group:focus-within .group-focus-within\:rotate-2 {
    transform: rotate(2deg);
  }
  .mobile\:rotate-3,
  .mobile\:hover\:rotate-3:hover,
  .mobile\:focus\:rotate-3:focus,
  .mobile\:group:hover .group-hover\:rotate-3,
  .mobile\:group:focus-within .group-focus-within\:rotate-3 {
    transform: rotate(3deg);
  }
  .mobile\:rotate-4,
  .mobile\:hover\:rotate-4:hover,
  .mobile\:focus\:rotate-4:focus,
  .mobile\:group:hover .group-hover\:rotate-4,
  .mobile\:group:focus-within .group-focus-within\:rotate-4 {
    transform: rotate(4deg);
  }
  .mobile\:rotate-5,
  .mobile\:hover\:rotate-5:hover,
  .mobile\:focus\:rotate-5:focus,
  .mobile\:group:hover .group-hover\:rotate-5,
  .mobile\:group:focus-within .group-focus-within\:rotate-5 {
    transform: rotate(5deg);
  }
  .mobile\:rotate-6,
  .mobile\:hover\:rotate-6:hover,
  .mobile\:focus\:rotate-6:focus,
  .mobile\:group:hover .group-hover\:rotate-6,
  .mobile\:group:focus-within .group-focus-within\:rotate-6 {
    transform: rotate(6deg);
  }
  .mobile\:rotate-7,
  .mobile\:hover\:rotate-7:hover,
  .mobile\:focus\:rotate-7:focus,
  .mobile\:group:hover .group-hover\:rotate-7,
  .mobile\:group:focus-within .group-focus-within\:rotate-7 {
    transform: rotate(7deg);
  }
  .mobile\:rotate-8,
  .mobile\:hover\:rotate-8:hover,
  .mobile\:focus\:rotate-8:focus,
  .mobile\:group:hover .group-hover\:rotate-8,
  .mobile\:group:focus-within .group-focus-within\:rotate-8 {
    transform: rotate(8deg);
  }
  .mobile\:rotate-9,
  .mobile\:hover\:rotate-9:hover,
  .mobile\:focus\:rotate-9:focus,
  .mobile\:group:hover .group-hover\:rotate-9,
  .mobile\:group:focus-within .group-focus-within\:rotate-9 {
    transform: rotate(9deg);
  }
  .mobile\:rotate-10,
  .mobile\:hover\:rotate-10:hover,
  .mobile\:focus\:rotate-10:focus,
  .mobile\:group:hover .group-hover\:rotate-10,
  .mobile\:group:focus-within .group-focus-within\:rotate-10 {
    transform: rotate(10deg);
  }
  .mobile\:rotate-11,
  .mobile\:hover\:rotate-11:hover,
  .mobile\:focus\:rotate-11:focus,
  .mobile\:group:hover .group-hover\:rotate-11,
  .mobile\:group:focus-within .group-focus-within\:rotate-11 {
    transform: rotate(11deg);
  }
  .mobile\:rotate-12,
  .mobile\:hover\:rotate-12:hover,
  .mobile\:focus\:rotate-12:focus,
  .mobile\:group:hover .group-hover\:rotate-12,
  .mobile\:group:focus-within .group-focus-within\:rotate-12 {
    transform: rotate(12deg);
  }
  .mobile\:rotate-13,
  .mobile\:hover\:rotate-13:hover,
  .mobile\:focus\:rotate-13:focus,
  .mobile\:group:hover .group-hover\:rotate-13,
  .mobile\:group:focus-within .group-focus-within\:rotate-13 {
    transform: rotate(13deg);
  }
  .mobile\:rotate-14,
  .mobile\:hover\:rotate-14:hover,
  .mobile\:focus\:rotate-14:focus,
  .mobile\:group:hover .group-hover\:rotate-14,
  .mobile\:group:focus-within .group-focus-within\:rotate-14 {
    transform: rotate(14deg);
  }
  .mobile\:rotate-15,
  .mobile\:hover\:rotate-15:hover,
  .mobile\:focus\:rotate-15:focus,
  .mobile\:group:hover .group-hover\:rotate-15,
  .mobile\:group:focus-within .group-focus-within\:rotate-15 {
    transform: rotate(15deg);
  }
  .mobile\:rotate-16,
  .mobile\:hover\:rotate-16:hover,
  .mobile\:focus\:rotate-16:focus,
  .mobile\:group:hover .group-hover\:rotate-16,
  .mobile\:group:focus-within .group-focus-within\:rotate-16 {
    transform: rotate(16deg);
  }
  .mobile\:rotate-17,
  .mobile\:hover\:rotate-17:hover,
  .mobile\:focus\:rotate-17:focus,
  .mobile\:group:hover .group-hover\:rotate-17,
  .mobile\:group:focus-within .group-focus-within\:rotate-17 {
    transform: rotate(17deg);
  }
  .mobile\:rotate-18,
  .mobile\:hover\:rotate-18:hover,
  .mobile\:focus\:rotate-18:focus,
  .mobile\:group:hover .group-hover\:rotate-18,
  .mobile\:group:focus-within .group-focus-within\:rotate-18 {
    transform: rotate(18deg);
  }
  .mobile\:rotate-19,
  .mobile\:hover\:rotate-19:hover,
  .mobile\:focus\:rotate-19:focus,
  .mobile\:group:hover .group-hover\:rotate-19,
  .mobile\:group:focus-within .group-focus-within\:rotate-19 {
    transform: rotate(19deg);
  }
  .mobile\:rotate-20,
  .mobile\:hover\:rotate-20:hover,
  .mobile\:focus\:rotate-20:focus,
  .mobile\:group:hover .group-hover\:rotate-20,
  .mobile\:group:focus-within .group-focus-within\:rotate-20 {
    transform: rotate(20deg);
  }
  .mobile\:rotate-21,
  .mobile\:hover\:rotate-21:hover,
  .mobile\:focus\:rotate-21:focus,
  .mobile\:group:hover .group-hover\:rotate-21,
  .mobile\:group:focus-within .group-focus-within\:rotate-21 {
    transform: rotate(21deg);
  }
  .mobile\:rotate-22,
  .mobile\:hover\:rotate-22:hover,
  .mobile\:focus\:rotate-22:focus,
  .mobile\:group:hover .group-hover\:rotate-22,
  .mobile\:group:focus-within .group-focus-within\:rotate-22 {
    transform: rotate(22deg);
  }
  .mobile\:rotate-23,
  .mobile\:hover\:rotate-23:hover,
  .mobile\:focus\:rotate-23:focus,
  .mobile\:group:hover .group-hover\:rotate-23,
  .mobile\:group:focus-within .group-focus-within\:rotate-23 {
    transform: rotate(23deg);
  }
  .mobile\:rotate-24,
  .mobile\:hover\:rotate-24:hover,
  .mobile\:focus\:rotate-24:focus,
  .mobile\:group:hover .group-hover\:rotate-24,
  .mobile\:group:focus-within .group-focus-within\:rotate-24 {
    transform: rotate(24deg);
  }
  .mobile\:rotate-25,
  .mobile\:hover\:rotate-25:hover,
  .mobile\:focus\:rotate-25:focus,
  .mobile\:group:hover .group-hover\:rotate-25,
  .mobile\:group:focus-within .group-focus-within\:rotate-25 {
    transform: rotate(25deg);
  }
  .mobile\:rotate-26,
  .mobile\:hover\:rotate-26:hover,
  .mobile\:focus\:rotate-26:focus,
  .mobile\:group:hover .group-hover\:rotate-26,
  .mobile\:group:focus-within .group-focus-within\:rotate-26 {
    transform: rotate(26deg);
  }
  .mobile\:rotate-27,
  .mobile\:hover\:rotate-27:hover,
  .mobile\:focus\:rotate-27:focus,
  .mobile\:group:hover .group-hover\:rotate-27,
  .mobile\:group:focus-within .group-focus-within\:rotate-27 {
    transform: rotate(27deg);
  }
  .mobile\:rotate-28,
  .mobile\:hover\:rotate-28:hover,
  .mobile\:focus\:rotate-28:focus,
  .mobile\:group:hover .group-hover\:rotate-28,
  .mobile\:group:focus-within .group-focus-within\:rotate-28 {
    transform: rotate(28deg);
  }
  .mobile\:rotate-29,
  .mobile\:hover\:rotate-29:hover,
  .mobile\:focus\:rotate-29:focus,
  .mobile\:group:hover .group-hover\:rotate-29,
  .mobile\:group:focus-within .group-focus-within\:rotate-29 {
    transform: rotate(29deg);
  }
  .mobile\:rotate-30,
  .mobile\:hover\:rotate-30:hover,
  .mobile\:focus\:rotate-30:focus,
  .mobile\:group:hover .group-hover\:rotate-30,
  .mobile\:group:focus-within .group-focus-within\:rotate-30 {
    transform: rotate(30deg);
  }
  .mobile\:rotate-31,
  .mobile\:hover\:rotate-31:hover,
  .mobile\:focus\:rotate-31:focus,
  .mobile\:group:hover .group-hover\:rotate-31,
  .mobile\:group:focus-within .group-focus-within\:rotate-31 {
    transform: rotate(31deg);
  }
  .mobile\:rotate-32,
  .mobile\:hover\:rotate-32:hover,
  .mobile\:focus\:rotate-32:focus,
  .mobile\:group:hover .group-hover\:rotate-32,
  .mobile\:group:focus-within .group-focus-within\:rotate-32 {
    transform: rotate(32deg);
  }
  .mobile\:rotate-33,
  .mobile\:hover\:rotate-33:hover,
  .mobile\:focus\:rotate-33:focus,
  .mobile\:group:hover .group-hover\:rotate-33,
  .mobile\:group:focus-within .group-focus-within\:rotate-33 {
    transform: rotate(33deg);
  }
  .mobile\:rotate-34,
  .mobile\:hover\:rotate-34:hover,
  .mobile\:focus\:rotate-34:focus,
  .mobile\:group:hover .group-hover\:rotate-34,
  .mobile\:group:focus-within .group-focus-within\:rotate-34 {
    transform: rotate(34deg);
  }
  .mobile\:rotate-35,
  .mobile\:hover\:rotate-35:hover,
  .mobile\:focus\:rotate-35:focus,
  .mobile\:group:hover .group-hover\:rotate-35,
  .mobile\:group:focus-within .group-focus-within\:rotate-35 {
    transform: rotate(35deg);
  }
  .mobile\:rotate-36,
  .mobile\:hover\:rotate-36:hover,
  .mobile\:focus\:rotate-36:focus,
  .mobile\:group:hover .group-hover\:rotate-36,
  .mobile\:group:focus-within .group-focus-within\:rotate-36 {
    transform: rotate(36deg);
  }
  .mobile\:rotate-37,
  .mobile\:hover\:rotate-37:hover,
  .mobile\:focus\:rotate-37:focus,
  .mobile\:group:hover .group-hover\:rotate-37,
  .mobile\:group:focus-within .group-focus-within\:rotate-37 {
    transform: rotate(37deg);
  }
  .mobile\:rotate-38,
  .mobile\:hover\:rotate-38:hover,
  .mobile\:focus\:rotate-38:focus,
  .mobile\:group:hover .group-hover\:rotate-38,
  .mobile\:group:focus-within .group-focus-within\:rotate-38 {
    transform: rotate(38deg);
  }
  .mobile\:rotate-39,
  .mobile\:hover\:rotate-39:hover,
  .mobile\:focus\:rotate-39:focus,
  .mobile\:group:hover .group-hover\:rotate-39,
  .mobile\:group:focus-within .group-focus-within\:rotate-39 {
    transform: rotate(39deg);
  }
  .mobile\:rotate-40,
  .mobile\:hover\:rotate-40:hover,
  .mobile\:focus\:rotate-40:focus,
  .mobile\:group:hover .group-hover\:rotate-40,
  .mobile\:group:focus-within .group-focus-within\:rotate-40 {
    transform: rotate(40deg);
  }
  .mobile\:rotate-41,
  .mobile\:hover\:rotate-41:hover,
  .mobile\:focus\:rotate-41:focus,
  .mobile\:group:hover .group-hover\:rotate-41,
  .mobile\:group:focus-within .group-focus-within\:rotate-41 {
    transform: rotate(41deg);
  }
  .mobile\:rotate-42,
  .mobile\:hover\:rotate-42:hover,
  .mobile\:focus\:rotate-42:focus,
  .mobile\:group:hover .group-hover\:rotate-42,
  .mobile\:group:focus-within .group-focus-within\:rotate-42 {
    transform: rotate(42deg);
  }
  .mobile\:rotate-43,
  .mobile\:hover\:rotate-43:hover,
  .mobile\:focus\:rotate-43:focus,
  .mobile\:group:hover .group-hover\:rotate-43,
  .mobile\:group:focus-within .group-focus-within\:rotate-43 {
    transform: rotate(43deg);
  }
  .mobile\:rotate-44,
  .mobile\:hover\:rotate-44:hover,
  .mobile\:focus\:rotate-44:focus,
  .mobile\:group:hover .group-hover\:rotate-44,
  .mobile\:group:focus-within .group-focus-within\:rotate-44 {
    transform: rotate(44deg);
  }
  .mobile\:rotate-45,
  .mobile\:hover\:rotate-45:hover,
  .mobile\:focus\:rotate-45:focus,
  .mobile\:group:hover .group-hover\:rotate-45,
  .mobile\:group:focus-within .group-focus-within\:rotate-45 {
    transform: rotate(45deg);
  }
  .mobile\:rotate-46,
  .mobile\:hover\:rotate-46:hover,
  .mobile\:focus\:rotate-46:focus,
  .mobile\:group:hover .group-hover\:rotate-46,
  .mobile\:group:focus-within .group-focus-within\:rotate-46 {
    transform: rotate(46deg);
  }
  .mobile\:rotate-47,
  .mobile\:hover\:rotate-47:hover,
  .mobile\:focus\:rotate-47:focus,
  .mobile\:group:hover .group-hover\:rotate-47,
  .mobile\:group:focus-within .group-focus-within\:rotate-47 {
    transform: rotate(47deg);
  }
  .mobile\:rotate-48,
  .mobile\:hover\:rotate-48:hover,
  .mobile\:focus\:rotate-48:focus,
  .mobile\:group:hover .group-hover\:rotate-48,
  .mobile\:group:focus-within .group-focus-within\:rotate-48 {
    transform: rotate(48deg);
  }
  .mobile\:rotate-49,
  .mobile\:hover\:rotate-49:hover,
  .mobile\:focus\:rotate-49:focus,
  .mobile\:group:hover .group-hover\:rotate-49,
  .mobile\:group:focus-within .group-focus-within\:rotate-49 {
    transform: rotate(49deg);
  }
  .mobile\:rotate-50,
  .mobile\:hover\:rotate-50:hover,
  .mobile\:focus\:rotate-50:focus,
  .mobile\:group:hover .group-hover\:rotate-50,
  .mobile\:group:focus-within .group-focus-within\:rotate-50 {
    transform: rotate(50deg);
  }
  .mobile\:rotate-51,
  .mobile\:hover\:rotate-51:hover,
  .mobile\:focus\:rotate-51:focus,
  .mobile\:group:hover .group-hover\:rotate-51,
  .mobile\:group:focus-within .group-focus-within\:rotate-51 {
    transform: rotate(51deg);
  }
  .mobile\:rotate-52,
  .mobile\:hover\:rotate-52:hover,
  .mobile\:focus\:rotate-52:focus,
  .mobile\:group:hover .group-hover\:rotate-52,
  .mobile\:group:focus-within .group-focus-within\:rotate-52 {
    transform: rotate(52deg);
  }
  .mobile\:rotate-53,
  .mobile\:hover\:rotate-53:hover,
  .mobile\:focus\:rotate-53:focus,
  .mobile\:group:hover .group-hover\:rotate-53,
  .mobile\:group:focus-within .group-focus-within\:rotate-53 {
    transform: rotate(53deg);
  }
  .mobile\:rotate-54,
  .mobile\:hover\:rotate-54:hover,
  .mobile\:focus\:rotate-54:focus,
  .mobile\:group:hover .group-hover\:rotate-54,
  .mobile\:group:focus-within .group-focus-within\:rotate-54 {
    transform: rotate(54deg);
  }
  .mobile\:rotate-55,
  .mobile\:hover\:rotate-55:hover,
  .mobile\:focus\:rotate-55:focus,
  .mobile\:group:hover .group-hover\:rotate-55,
  .mobile\:group:focus-within .group-focus-within\:rotate-55 {
    transform: rotate(55deg);
  }
  .mobile\:rotate-56,
  .mobile\:hover\:rotate-56:hover,
  .mobile\:focus\:rotate-56:focus,
  .mobile\:group:hover .group-hover\:rotate-56,
  .mobile\:group:focus-within .group-focus-within\:rotate-56 {
    transform: rotate(56deg);
  }
  .mobile\:rotate-57,
  .mobile\:hover\:rotate-57:hover,
  .mobile\:focus\:rotate-57:focus,
  .mobile\:group:hover .group-hover\:rotate-57,
  .mobile\:group:focus-within .group-focus-within\:rotate-57 {
    transform: rotate(57deg);
  }
  .mobile\:rotate-58,
  .mobile\:hover\:rotate-58:hover,
  .mobile\:focus\:rotate-58:focus,
  .mobile\:group:hover .group-hover\:rotate-58,
  .mobile\:group:focus-within .group-focus-within\:rotate-58 {
    transform: rotate(58deg);
  }
  .mobile\:rotate-59,
  .mobile\:hover\:rotate-59:hover,
  .mobile\:focus\:rotate-59:focus,
  .mobile\:group:hover .group-hover\:rotate-59,
  .mobile\:group:focus-within .group-focus-within\:rotate-59 {
    transform: rotate(59deg);
  }
  .mobile\:rotate-60,
  .mobile\:hover\:rotate-60:hover,
  .mobile\:focus\:rotate-60:focus,
  .mobile\:group:hover .group-hover\:rotate-60,
  .mobile\:group:focus-within .group-focus-within\:rotate-60 {
    transform: rotate(60deg);
  }
  .mobile\:rotate-61,
  .mobile\:hover\:rotate-61:hover,
  .mobile\:focus\:rotate-61:focus,
  .mobile\:group:hover .group-hover\:rotate-61,
  .mobile\:group:focus-within .group-focus-within\:rotate-61 {
    transform: rotate(61deg);
  }
  .mobile\:rotate-62,
  .mobile\:hover\:rotate-62:hover,
  .mobile\:focus\:rotate-62:focus,
  .mobile\:group:hover .group-hover\:rotate-62,
  .mobile\:group:focus-within .group-focus-within\:rotate-62 {
    transform: rotate(62deg);
  }
  .mobile\:rotate-63,
  .mobile\:hover\:rotate-63:hover,
  .mobile\:focus\:rotate-63:focus,
  .mobile\:group:hover .group-hover\:rotate-63,
  .mobile\:group:focus-within .group-focus-within\:rotate-63 {
    transform: rotate(63deg);
  }
  .mobile\:rotate-64,
  .mobile\:hover\:rotate-64:hover,
  .mobile\:focus\:rotate-64:focus,
  .mobile\:group:hover .group-hover\:rotate-64,
  .mobile\:group:focus-within .group-focus-within\:rotate-64 {
    transform: rotate(64deg);
  }
  .mobile\:rotate-65,
  .mobile\:hover\:rotate-65:hover,
  .mobile\:focus\:rotate-65:focus,
  .mobile\:group:hover .group-hover\:rotate-65,
  .mobile\:group:focus-within .group-focus-within\:rotate-65 {
    transform: rotate(65deg);
  }
  .mobile\:rotate-66,
  .mobile\:hover\:rotate-66:hover,
  .mobile\:focus\:rotate-66:focus,
  .mobile\:group:hover .group-hover\:rotate-66,
  .mobile\:group:focus-within .group-focus-within\:rotate-66 {
    transform: rotate(66deg);
  }
  .mobile\:rotate-67,
  .mobile\:hover\:rotate-67:hover,
  .mobile\:focus\:rotate-67:focus,
  .mobile\:group:hover .group-hover\:rotate-67,
  .mobile\:group:focus-within .group-focus-within\:rotate-67 {
    transform: rotate(67deg);
  }
  .mobile\:rotate-68,
  .mobile\:hover\:rotate-68:hover,
  .mobile\:focus\:rotate-68:focus,
  .mobile\:group:hover .group-hover\:rotate-68,
  .mobile\:group:focus-within .group-focus-within\:rotate-68 {
    transform: rotate(68deg);
  }
  .mobile\:rotate-69,
  .mobile\:hover\:rotate-69:hover,
  .mobile\:focus\:rotate-69:focus,
  .mobile\:group:hover .group-hover\:rotate-69,
  .mobile\:group:focus-within .group-focus-within\:rotate-69 {
    transform: rotate(69deg);
  }
  .mobile\:rotate-70,
  .mobile\:hover\:rotate-70:hover,
  .mobile\:focus\:rotate-70:focus,
  .mobile\:group:hover .group-hover\:rotate-70,
  .mobile\:group:focus-within .group-focus-within\:rotate-70 {
    transform: rotate(70deg);
  }
  .mobile\:rotate-71,
  .mobile\:hover\:rotate-71:hover,
  .mobile\:focus\:rotate-71:focus,
  .mobile\:group:hover .group-hover\:rotate-71,
  .mobile\:group:focus-within .group-focus-within\:rotate-71 {
    transform: rotate(71deg);
  }
  .mobile\:rotate-72,
  .mobile\:hover\:rotate-72:hover,
  .mobile\:focus\:rotate-72:focus,
  .mobile\:group:hover .group-hover\:rotate-72,
  .mobile\:group:focus-within .group-focus-within\:rotate-72 {
    transform: rotate(72deg);
  }
  .mobile\:rotate-73,
  .mobile\:hover\:rotate-73:hover,
  .mobile\:focus\:rotate-73:focus,
  .mobile\:group:hover .group-hover\:rotate-73,
  .mobile\:group:focus-within .group-focus-within\:rotate-73 {
    transform: rotate(73deg);
  }
  .mobile\:rotate-74,
  .mobile\:hover\:rotate-74:hover,
  .mobile\:focus\:rotate-74:focus,
  .mobile\:group:hover .group-hover\:rotate-74,
  .mobile\:group:focus-within .group-focus-within\:rotate-74 {
    transform: rotate(74deg);
  }
  .mobile\:rotate-75,
  .mobile\:hover\:rotate-75:hover,
  .mobile\:focus\:rotate-75:focus,
  .mobile\:group:hover .group-hover\:rotate-75,
  .mobile\:group:focus-within .group-focus-within\:rotate-75 {
    transform: rotate(75deg);
  }
  .mobile\:rotate-76,
  .mobile\:hover\:rotate-76:hover,
  .mobile\:focus\:rotate-76:focus,
  .mobile\:group:hover .group-hover\:rotate-76,
  .mobile\:group:focus-within .group-focus-within\:rotate-76 {
    transform: rotate(76deg);
  }
  .mobile\:rotate-77,
  .mobile\:hover\:rotate-77:hover,
  .mobile\:focus\:rotate-77:focus,
  .mobile\:group:hover .group-hover\:rotate-77,
  .mobile\:group:focus-within .group-focus-within\:rotate-77 {
    transform: rotate(77deg);
  }
  .mobile\:rotate-78,
  .mobile\:hover\:rotate-78:hover,
  .mobile\:focus\:rotate-78:focus,
  .mobile\:group:hover .group-hover\:rotate-78,
  .mobile\:group:focus-within .group-focus-within\:rotate-78 {
    transform: rotate(78deg);
  }
  .mobile\:rotate-79,
  .mobile\:hover\:rotate-79:hover,
  .mobile\:focus\:rotate-79:focus,
  .mobile\:group:hover .group-hover\:rotate-79,
  .mobile\:group:focus-within .group-focus-within\:rotate-79 {
    transform: rotate(79deg);
  }
  .mobile\:rotate-80,
  .mobile\:hover\:rotate-80:hover,
  .mobile\:focus\:rotate-80:focus,
  .mobile\:group:hover .group-hover\:rotate-80,
  .mobile\:group:focus-within .group-focus-within\:rotate-80 {
    transform: rotate(80deg);
  }
  .mobile\:rotate-81,
  .mobile\:hover\:rotate-81:hover,
  .mobile\:focus\:rotate-81:focus,
  .mobile\:group:hover .group-hover\:rotate-81,
  .mobile\:group:focus-within .group-focus-within\:rotate-81 {
    transform: rotate(81deg);
  }
  .mobile\:rotate-82,
  .mobile\:hover\:rotate-82:hover,
  .mobile\:focus\:rotate-82:focus,
  .mobile\:group:hover .group-hover\:rotate-82,
  .mobile\:group:focus-within .group-focus-within\:rotate-82 {
    transform: rotate(82deg);
  }
  .mobile\:rotate-83,
  .mobile\:hover\:rotate-83:hover,
  .mobile\:focus\:rotate-83:focus,
  .mobile\:group:hover .group-hover\:rotate-83,
  .mobile\:group:focus-within .group-focus-within\:rotate-83 {
    transform: rotate(83deg);
  }
  .mobile\:rotate-84,
  .mobile\:hover\:rotate-84:hover,
  .mobile\:focus\:rotate-84:focus,
  .mobile\:group:hover .group-hover\:rotate-84,
  .mobile\:group:focus-within .group-focus-within\:rotate-84 {
    transform: rotate(84deg);
  }
  .mobile\:rotate-85,
  .mobile\:hover\:rotate-85:hover,
  .mobile\:focus\:rotate-85:focus,
  .mobile\:group:hover .group-hover\:rotate-85,
  .mobile\:group:focus-within .group-focus-within\:rotate-85 {
    transform: rotate(85deg);
  }
  .mobile\:rotate-86,
  .mobile\:hover\:rotate-86:hover,
  .mobile\:focus\:rotate-86:focus,
  .mobile\:group:hover .group-hover\:rotate-86,
  .mobile\:group:focus-within .group-focus-within\:rotate-86 {
    transform: rotate(86deg);
  }
  .mobile\:rotate-87,
  .mobile\:hover\:rotate-87:hover,
  .mobile\:focus\:rotate-87:focus,
  .mobile\:group:hover .group-hover\:rotate-87,
  .mobile\:group:focus-within .group-focus-within\:rotate-87 {
    transform: rotate(87deg);
  }
  .mobile\:rotate-88,
  .mobile\:hover\:rotate-88:hover,
  .mobile\:focus\:rotate-88:focus,
  .mobile\:group:hover .group-hover\:rotate-88,
  .mobile\:group:focus-within .group-focus-within\:rotate-88 {
    transform: rotate(88deg);
  }
  .mobile\:rotate-89,
  .mobile\:hover\:rotate-89:hover,
  .mobile\:focus\:rotate-89:focus,
  .mobile\:group:hover .group-hover\:rotate-89,
  .mobile\:group:focus-within .group-focus-within\:rotate-89 {
    transform: rotate(89deg);
  }
  .mobile\:rotate-90,
  .mobile\:hover\:rotate-90:hover,
  .mobile\:focus\:rotate-90:focus,
  .mobile\:group:hover .group-hover\:rotate-90,
  .mobile\:group:focus-within .group-focus-within\:rotate-90 {
    transform: rotate(90deg);
  }
  .mobile\:rotate-91,
  .mobile\:hover\:rotate-91:hover,
  .mobile\:focus\:rotate-91:focus,
  .mobile\:group:hover .group-hover\:rotate-91,
  .mobile\:group:focus-within .group-focus-within\:rotate-91 {
    transform: rotate(91deg);
  }
  .mobile\:rotate-92,
  .mobile\:hover\:rotate-92:hover,
  .mobile\:focus\:rotate-92:focus,
  .mobile\:group:hover .group-hover\:rotate-92,
  .mobile\:group:focus-within .group-focus-within\:rotate-92 {
    transform: rotate(92deg);
  }
  .mobile\:rotate-93,
  .mobile\:hover\:rotate-93:hover,
  .mobile\:focus\:rotate-93:focus,
  .mobile\:group:hover .group-hover\:rotate-93,
  .mobile\:group:focus-within .group-focus-within\:rotate-93 {
    transform: rotate(93deg);
  }
  .mobile\:rotate-94,
  .mobile\:hover\:rotate-94:hover,
  .mobile\:focus\:rotate-94:focus,
  .mobile\:group:hover .group-hover\:rotate-94,
  .mobile\:group:focus-within .group-focus-within\:rotate-94 {
    transform: rotate(94deg);
  }
  .mobile\:rotate-95,
  .mobile\:hover\:rotate-95:hover,
  .mobile\:focus\:rotate-95:focus,
  .mobile\:group:hover .group-hover\:rotate-95,
  .mobile\:group:focus-within .group-focus-within\:rotate-95 {
    transform: rotate(95deg);
  }
  .mobile\:rotate-96,
  .mobile\:hover\:rotate-96:hover,
  .mobile\:focus\:rotate-96:focus,
  .mobile\:group:hover .group-hover\:rotate-96,
  .mobile\:group:focus-within .group-focus-within\:rotate-96 {
    transform: rotate(96deg);
  }
  .mobile\:rotate-97,
  .mobile\:hover\:rotate-97:hover,
  .mobile\:focus\:rotate-97:focus,
  .mobile\:group:hover .group-hover\:rotate-97,
  .mobile\:group:focus-within .group-focus-within\:rotate-97 {
    transform: rotate(97deg);
  }
  .mobile\:rotate-98,
  .mobile\:hover\:rotate-98:hover,
  .mobile\:focus\:rotate-98:focus,
  .mobile\:group:hover .group-hover\:rotate-98,
  .mobile\:group:focus-within .group-focus-within\:rotate-98 {
    transform: rotate(98deg);
  }
  .mobile\:rotate-99,
  .mobile\:hover\:rotate-99:hover,
  .mobile\:focus\:rotate-99:focus,
  .mobile\:group:hover .group-hover\:rotate-99,
  .mobile\:group:focus-within .group-focus-within\:rotate-99 {
    transform: rotate(99deg);
  }
  .mobile\:rotate-100,
  .mobile\:hover\:rotate-100:hover,
  .mobile\:focus\:rotate-100:focus,
  .mobile\:group:hover .group-hover\:rotate-100,
  .mobile\:group:focus-within .group-focus-within\:rotate-100 {
    transform: rotate(100deg);
  }
  .mobile\:rotate-101,
  .mobile\:hover\:rotate-101:hover,
  .mobile\:focus\:rotate-101:focus,
  .mobile\:group:hover .group-hover\:rotate-101,
  .mobile\:group:focus-within .group-focus-within\:rotate-101 {
    transform: rotate(101deg);
  }
  .mobile\:rotate-102,
  .mobile\:hover\:rotate-102:hover,
  .mobile\:focus\:rotate-102:focus,
  .mobile\:group:hover .group-hover\:rotate-102,
  .mobile\:group:focus-within .group-focus-within\:rotate-102 {
    transform: rotate(102deg);
  }
  .mobile\:rotate-103,
  .mobile\:hover\:rotate-103:hover,
  .mobile\:focus\:rotate-103:focus,
  .mobile\:group:hover .group-hover\:rotate-103,
  .mobile\:group:focus-within .group-focus-within\:rotate-103 {
    transform: rotate(103deg);
  }
  .mobile\:rotate-104,
  .mobile\:hover\:rotate-104:hover,
  .mobile\:focus\:rotate-104:focus,
  .mobile\:group:hover .group-hover\:rotate-104,
  .mobile\:group:focus-within .group-focus-within\:rotate-104 {
    transform: rotate(104deg);
  }
  .mobile\:rotate-105,
  .mobile\:hover\:rotate-105:hover,
  .mobile\:focus\:rotate-105:focus,
  .mobile\:group:hover .group-hover\:rotate-105,
  .mobile\:group:focus-within .group-focus-within\:rotate-105 {
    transform: rotate(105deg);
  }
  .mobile\:rotate-106,
  .mobile\:hover\:rotate-106:hover,
  .mobile\:focus\:rotate-106:focus,
  .mobile\:group:hover .group-hover\:rotate-106,
  .mobile\:group:focus-within .group-focus-within\:rotate-106 {
    transform: rotate(106deg);
  }
  .mobile\:rotate-107,
  .mobile\:hover\:rotate-107:hover,
  .mobile\:focus\:rotate-107:focus,
  .mobile\:group:hover .group-hover\:rotate-107,
  .mobile\:group:focus-within .group-focus-within\:rotate-107 {
    transform: rotate(107deg);
  }
  .mobile\:rotate-108,
  .mobile\:hover\:rotate-108:hover,
  .mobile\:focus\:rotate-108:focus,
  .mobile\:group:hover .group-hover\:rotate-108,
  .mobile\:group:focus-within .group-focus-within\:rotate-108 {
    transform: rotate(108deg);
  }
  .mobile\:rotate-109,
  .mobile\:hover\:rotate-109:hover,
  .mobile\:focus\:rotate-109:focus,
  .mobile\:group:hover .group-hover\:rotate-109,
  .mobile\:group:focus-within .group-focus-within\:rotate-109 {
    transform: rotate(109deg);
  }
  .mobile\:rotate-110,
  .mobile\:hover\:rotate-110:hover,
  .mobile\:focus\:rotate-110:focus,
  .mobile\:group:hover .group-hover\:rotate-110,
  .mobile\:group:focus-within .group-focus-within\:rotate-110 {
    transform: rotate(110deg);
  }
  .mobile\:rotate-111,
  .mobile\:hover\:rotate-111:hover,
  .mobile\:focus\:rotate-111:focus,
  .mobile\:group:hover .group-hover\:rotate-111,
  .mobile\:group:focus-within .group-focus-within\:rotate-111 {
    transform: rotate(111deg);
  }
  .mobile\:rotate-112,
  .mobile\:hover\:rotate-112:hover,
  .mobile\:focus\:rotate-112:focus,
  .mobile\:group:hover .group-hover\:rotate-112,
  .mobile\:group:focus-within .group-focus-within\:rotate-112 {
    transform: rotate(112deg);
  }
  .mobile\:rotate-113,
  .mobile\:hover\:rotate-113:hover,
  .mobile\:focus\:rotate-113:focus,
  .mobile\:group:hover .group-hover\:rotate-113,
  .mobile\:group:focus-within .group-focus-within\:rotate-113 {
    transform: rotate(113deg);
  }
  .mobile\:rotate-114,
  .mobile\:hover\:rotate-114:hover,
  .mobile\:focus\:rotate-114:focus,
  .mobile\:group:hover .group-hover\:rotate-114,
  .mobile\:group:focus-within .group-focus-within\:rotate-114 {
    transform: rotate(114deg);
  }
  .mobile\:rotate-115,
  .mobile\:hover\:rotate-115:hover,
  .mobile\:focus\:rotate-115:focus,
  .mobile\:group:hover .group-hover\:rotate-115,
  .mobile\:group:focus-within .group-focus-within\:rotate-115 {
    transform: rotate(115deg);
  }
  .mobile\:rotate-116,
  .mobile\:hover\:rotate-116:hover,
  .mobile\:focus\:rotate-116:focus,
  .mobile\:group:hover .group-hover\:rotate-116,
  .mobile\:group:focus-within .group-focus-within\:rotate-116 {
    transform: rotate(116deg);
  }
  .mobile\:rotate-117,
  .mobile\:hover\:rotate-117:hover,
  .mobile\:focus\:rotate-117:focus,
  .mobile\:group:hover .group-hover\:rotate-117,
  .mobile\:group:focus-within .group-focus-within\:rotate-117 {
    transform: rotate(117deg);
  }
  .mobile\:rotate-118,
  .mobile\:hover\:rotate-118:hover,
  .mobile\:focus\:rotate-118:focus,
  .mobile\:group:hover .group-hover\:rotate-118,
  .mobile\:group:focus-within .group-focus-within\:rotate-118 {
    transform: rotate(118deg);
  }
  .mobile\:rotate-119,
  .mobile\:hover\:rotate-119:hover,
  .mobile\:focus\:rotate-119:focus,
  .mobile\:group:hover .group-hover\:rotate-119,
  .mobile\:group:focus-within .group-focus-within\:rotate-119 {
    transform: rotate(119deg);
  }
  .mobile\:rotate-120,
  .mobile\:hover\:rotate-120:hover,
  .mobile\:focus\:rotate-120:focus,
  .mobile\:group:hover .group-hover\:rotate-120,
  .mobile\:group:focus-within .group-focus-within\:rotate-120 {
    transform: rotate(120deg);
  }
  .mobile\:rotate-121,
  .mobile\:hover\:rotate-121:hover,
  .mobile\:focus\:rotate-121:focus,
  .mobile\:group:hover .group-hover\:rotate-121,
  .mobile\:group:focus-within .group-focus-within\:rotate-121 {
    transform: rotate(121deg);
  }
  .mobile\:rotate-122,
  .mobile\:hover\:rotate-122:hover,
  .mobile\:focus\:rotate-122:focus,
  .mobile\:group:hover .group-hover\:rotate-122,
  .mobile\:group:focus-within .group-focus-within\:rotate-122 {
    transform: rotate(122deg);
  }
  .mobile\:rotate-123,
  .mobile\:hover\:rotate-123:hover,
  .mobile\:focus\:rotate-123:focus,
  .mobile\:group:hover .group-hover\:rotate-123,
  .mobile\:group:focus-within .group-focus-within\:rotate-123 {
    transform: rotate(123deg);
  }
  .mobile\:rotate-124,
  .mobile\:hover\:rotate-124:hover,
  .mobile\:focus\:rotate-124:focus,
  .mobile\:group:hover .group-hover\:rotate-124,
  .mobile\:group:focus-within .group-focus-within\:rotate-124 {
    transform: rotate(124deg);
  }
  .mobile\:rotate-125,
  .mobile\:hover\:rotate-125:hover,
  .mobile\:focus\:rotate-125:focus,
  .mobile\:group:hover .group-hover\:rotate-125,
  .mobile\:group:focus-within .group-focus-within\:rotate-125 {
    transform: rotate(125deg);
  }
  .mobile\:rotate-126,
  .mobile\:hover\:rotate-126:hover,
  .mobile\:focus\:rotate-126:focus,
  .mobile\:group:hover .group-hover\:rotate-126,
  .mobile\:group:focus-within .group-focus-within\:rotate-126 {
    transform: rotate(126deg);
  }
  .mobile\:rotate-127,
  .mobile\:hover\:rotate-127:hover,
  .mobile\:focus\:rotate-127:focus,
  .mobile\:group:hover .group-hover\:rotate-127,
  .mobile\:group:focus-within .group-focus-within\:rotate-127 {
    transform: rotate(127deg);
  }
  .mobile\:rotate-128,
  .mobile\:hover\:rotate-128:hover,
  .mobile\:focus\:rotate-128:focus,
  .mobile\:group:hover .group-hover\:rotate-128,
  .mobile\:group:focus-within .group-focus-within\:rotate-128 {
    transform: rotate(128deg);
  }
  .mobile\:rotate-129,
  .mobile\:hover\:rotate-129:hover,
  .mobile\:focus\:rotate-129:focus,
  .mobile\:group:hover .group-hover\:rotate-129,
  .mobile\:group:focus-within .group-focus-within\:rotate-129 {
    transform: rotate(129deg);
  }
  .mobile\:rotate-130,
  .mobile\:hover\:rotate-130:hover,
  .mobile\:focus\:rotate-130:focus,
  .mobile\:group:hover .group-hover\:rotate-130,
  .mobile\:group:focus-within .group-focus-within\:rotate-130 {
    transform: rotate(130deg);
  }
  .mobile\:rotate-131,
  .mobile\:hover\:rotate-131:hover,
  .mobile\:focus\:rotate-131:focus,
  .mobile\:group:hover .group-hover\:rotate-131,
  .mobile\:group:focus-within .group-focus-within\:rotate-131 {
    transform: rotate(131deg);
  }
  .mobile\:rotate-132,
  .mobile\:hover\:rotate-132:hover,
  .mobile\:focus\:rotate-132:focus,
  .mobile\:group:hover .group-hover\:rotate-132,
  .mobile\:group:focus-within .group-focus-within\:rotate-132 {
    transform: rotate(132deg);
  }
  .mobile\:rotate-133,
  .mobile\:hover\:rotate-133:hover,
  .mobile\:focus\:rotate-133:focus,
  .mobile\:group:hover .group-hover\:rotate-133,
  .mobile\:group:focus-within .group-focus-within\:rotate-133 {
    transform: rotate(133deg);
  }
  .mobile\:rotate-134,
  .mobile\:hover\:rotate-134:hover,
  .mobile\:focus\:rotate-134:focus,
  .mobile\:group:hover .group-hover\:rotate-134,
  .mobile\:group:focus-within .group-focus-within\:rotate-134 {
    transform: rotate(134deg);
  }
  .mobile\:rotate-135,
  .mobile\:hover\:rotate-135:hover,
  .mobile\:focus\:rotate-135:focus,
  .mobile\:group:hover .group-hover\:rotate-135,
  .mobile\:group:focus-within .group-focus-within\:rotate-135 {
    transform: rotate(135deg);
  }
  .mobile\:rotate-136,
  .mobile\:hover\:rotate-136:hover,
  .mobile\:focus\:rotate-136:focus,
  .mobile\:group:hover .group-hover\:rotate-136,
  .mobile\:group:focus-within .group-focus-within\:rotate-136 {
    transform: rotate(136deg);
  }
  .mobile\:rotate-137,
  .mobile\:hover\:rotate-137:hover,
  .mobile\:focus\:rotate-137:focus,
  .mobile\:group:hover .group-hover\:rotate-137,
  .mobile\:group:focus-within .group-focus-within\:rotate-137 {
    transform: rotate(137deg);
  }
  .mobile\:rotate-138,
  .mobile\:hover\:rotate-138:hover,
  .mobile\:focus\:rotate-138:focus,
  .mobile\:group:hover .group-hover\:rotate-138,
  .mobile\:group:focus-within .group-focus-within\:rotate-138 {
    transform: rotate(138deg);
  }
  .mobile\:rotate-139,
  .mobile\:hover\:rotate-139:hover,
  .mobile\:focus\:rotate-139:focus,
  .mobile\:group:hover .group-hover\:rotate-139,
  .mobile\:group:focus-within .group-focus-within\:rotate-139 {
    transform: rotate(139deg);
  }
  .mobile\:rotate-140,
  .mobile\:hover\:rotate-140:hover,
  .mobile\:focus\:rotate-140:focus,
  .mobile\:group:hover .group-hover\:rotate-140,
  .mobile\:group:focus-within .group-focus-within\:rotate-140 {
    transform: rotate(140deg);
  }
  .mobile\:rotate-141,
  .mobile\:hover\:rotate-141:hover,
  .mobile\:focus\:rotate-141:focus,
  .mobile\:group:hover .group-hover\:rotate-141,
  .mobile\:group:focus-within .group-focus-within\:rotate-141 {
    transform: rotate(141deg);
  }
  .mobile\:rotate-142,
  .mobile\:hover\:rotate-142:hover,
  .mobile\:focus\:rotate-142:focus,
  .mobile\:group:hover .group-hover\:rotate-142,
  .mobile\:group:focus-within .group-focus-within\:rotate-142 {
    transform: rotate(142deg);
  }
  .mobile\:rotate-143,
  .mobile\:hover\:rotate-143:hover,
  .mobile\:focus\:rotate-143:focus,
  .mobile\:group:hover .group-hover\:rotate-143,
  .mobile\:group:focus-within .group-focus-within\:rotate-143 {
    transform: rotate(143deg);
  }
  .mobile\:rotate-144,
  .mobile\:hover\:rotate-144:hover,
  .mobile\:focus\:rotate-144:focus,
  .mobile\:group:hover .group-hover\:rotate-144,
  .mobile\:group:focus-within .group-focus-within\:rotate-144 {
    transform: rotate(144deg);
  }
  .mobile\:rotate-145,
  .mobile\:hover\:rotate-145:hover,
  .mobile\:focus\:rotate-145:focus,
  .mobile\:group:hover .group-hover\:rotate-145,
  .mobile\:group:focus-within .group-focus-within\:rotate-145 {
    transform: rotate(145deg);
  }
  .mobile\:rotate-146,
  .mobile\:hover\:rotate-146:hover,
  .mobile\:focus\:rotate-146:focus,
  .mobile\:group:hover .group-hover\:rotate-146,
  .mobile\:group:focus-within .group-focus-within\:rotate-146 {
    transform: rotate(146deg);
  }
  .mobile\:rotate-147,
  .mobile\:hover\:rotate-147:hover,
  .mobile\:focus\:rotate-147:focus,
  .mobile\:group:hover .group-hover\:rotate-147,
  .mobile\:group:focus-within .group-focus-within\:rotate-147 {
    transform: rotate(147deg);
  }
  .mobile\:rotate-148,
  .mobile\:hover\:rotate-148:hover,
  .mobile\:focus\:rotate-148:focus,
  .mobile\:group:hover .group-hover\:rotate-148,
  .mobile\:group:focus-within .group-focus-within\:rotate-148 {
    transform: rotate(148deg);
  }
  .mobile\:rotate-149,
  .mobile\:hover\:rotate-149:hover,
  .mobile\:focus\:rotate-149:focus,
  .mobile\:group:hover .group-hover\:rotate-149,
  .mobile\:group:focus-within .group-focus-within\:rotate-149 {
    transform: rotate(149deg);
  }
  .mobile\:rotate-150,
  .mobile\:hover\:rotate-150:hover,
  .mobile\:focus\:rotate-150:focus,
  .mobile\:group:hover .group-hover\:rotate-150,
  .mobile\:group:focus-within .group-focus-within\:rotate-150 {
    transform: rotate(150deg);
  }
  .mobile\:rotate-151,
  .mobile\:hover\:rotate-151:hover,
  .mobile\:focus\:rotate-151:focus,
  .mobile\:group:hover .group-hover\:rotate-151,
  .mobile\:group:focus-within .group-focus-within\:rotate-151 {
    transform: rotate(151deg);
  }
  .mobile\:rotate-152,
  .mobile\:hover\:rotate-152:hover,
  .mobile\:focus\:rotate-152:focus,
  .mobile\:group:hover .group-hover\:rotate-152,
  .mobile\:group:focus-within .group-focus-within\:rotate-152 {
    transform: rotate(152deg);
  }
  .mobile\:rotate-153,
  .mobile\:hover\:rotate-153:hover,
  .mobile\:focus\:rotate-153:focus,
  .mobile\:group:hover .group-hover\:rotate-153,
  .mobile\:group:focus-within .group-focus-within\:rotate-153 {
    transform: rotate(153deg);
  }
  .mobile\:rotate-154,
  .mobile\:hover\:rotate-154:hover,
  .mobile\:focus\:rotate-154:focus,
  .mobile\:group:hover .group-hover\:rotate-154,
  .mobile\:group:focus-within .group-focus-within\:rotate-154 {
    transform: rotate(154deg);
  }
  .mobile\:rotate-155,
  .mobile\:hover\:rotate-155:hover,
  .mobile\:focus\:rotate-155:focus,
  .mobile\:group:hover .group-hover\:rotate-155,
  .mobile\:group:focus-within .group-focus-within\:rotate-155 {
    transform: rotate(155deg);
  }
  .mobile\:rotate-156,
  .mobile\:hover\:rotate-156:hover,
  .mobile\:focus\:rotate-156:focus,
  .mobile\:group:hover .group-hover\:rotate-156,
  .mobile\:group:focus-within .group-focus-within\:rotate-156 {
    transform: rotate(156deg);
  }
  .mobile\:rotate-157,
  .mobile\:hover\:rotate-157:hover,
  .mobile\:focus\:rotate-157:focus,
  .mobile\:group:hover .group-hover\:rotate-157,
  .mobile\:group:focus-within .group-focus-within\:rotate-157 {
    transform: rotate(157deg);
  }
  .mobile\:rotate-158,
  .mobile\:hover\:rotate-158:hover,
  .mobile\:focus\:rotate-158:focus,
  .mobile\:group:hover .group-hover\:rotate-158,
  .mobile\:group:focus-within .group-focus-within\:rotate-158 {
    transform: rotate(158deg);
  }
  .mobile\:rotate-159,
  .mobile\:hover\:rotate-159:hover,
  .mobile\:focus\:rotate-159:focus,
  .mobile\:group:hover .group-hover\:rotate-159,
  .mobile\:group:focus-within .group-focus-within\:rotate-159 {
    transform: rotate(159deg);
  }
  .mobile\:rotate-160,
  .mobile\:hover\:rotate-160:hover,
  .mobile\:focus\:rotate-160:focus,
  .mobile\:group:hover .group-hover\:rotate-160,
  .mobile\:group:focus-within .group-focus-within\:rotate-160 {
    transform: rotate(160deg);
  }
  .mobile\:rotate-161,
  .mobile\:hover\:rotate-161:hover,
  .mobile\:focus\:rotate-161:focus,
  .mobile\:group:hover .group-hover\:rotate-161,
  .mobile\:group:focus-within .group-focus-within\:rotate-161 {
    transform: rotate(161deg);
  }
  .mobile\:rotate-162,
  .mobile\:hover\:rotate-162:hover,
  .mobile\:focus\:rotate-162:focus,
  .mobile\:group:hover .group-hover\:rotate-162,
  .mobile\:group:focus-within .group-focus-within\:rotate-162 {
    transform: rotate(162deg);
  }
  .mobile\:rotate-163,
  .mobile\:hover\:rotate-163:hover,
  .mobile\:focus\:rotate-163:focus,
  .mobile\:group:hover .group-hover\:rotate-163,
  .mobile\:group:focus-within .group-focus-within\:rotate-163 {
    transform: rotate(163deg);
  }
  .mobile\:rotate-164,
  .mobile\:hover\:rotate-164:hover,
  .mobile\:focus\:rotate-164:focus,
  .mobile\:group:hover .group-hover\:rotate-164,
  .mobile\:group:focus-within .group-focus-within\:rotate-164 {
    transform: rotate(164deg);
  }
  .mobile\:rotate-165,
  .mobile\:hover\:rotate-165:hover,
  .mobile\:focus\:rotate-165:focus,
  .mobile\:group:hover .group-hover\:rotate-165,
  .mobile\:group:focus-within .group-focus-within\:rotate-165 {
    transform: rotate(165deg);
  }
  .mobile\:rotate-166,
  .mobile\:hover\:rotate-166:hover,
  .mobile\:focus\:rotate-166:focus,
  .mobile\:group:hover .group-hover\:rotate-166,
  .mobile\:group:focus-within .group-focus-within\:rotate-166 {
    transform: rotate(166deg);
  }
  .mobile\:rotate-167,
  .mobile\:hover\:rotate-167:hover,
  .mobile\:focus\:rotate-167:focus,
  .mobile\:group:hover .group-hover\:rotate-167,
  .mobile\:group:focus-within .group-focus-within\:rotate-167 {
    transform: rotate(167deg);
  }
  .mobile\:rotate-168,
  .mobile\:hover\:rotate-168:hover,
  .mobile\:focus\:rotate-168:focus,
  .mobile\:group:hover .group-hover\:rotate-168,
  .mobile\:group:focus-within .group-focus-within\:rotate-168 {
    transform: rotate(168deg);
  }
  .mobile\:rotate-169,
  .mobile\:hover\:rotate-169:hover,
  .mobile\:focus\:rotate-169:focus,
  .mobile\:group:hover .group-hover\:rotate-169,
  .mobile\:group:focus-within .group-focus-within\:rotate-169 {
    transform: rotate(169deg);
  }
  .mobile\:rotate-170,
  .mobile\:hover\:rotate-170:hover,
  .mobile\:focus\:rotate-170:focus,
  .mobile\:group:hover .group-hover\:rotate-170,
  .mobile\:group:focus-within .group-focus-within\:rotate-170 {
    transform: rotate(170deg);
  }
  .mobile\:rotate-171,
  .mobile\:hover\:rotate-171:hover,
  .mobile\:focus\:rotate-171:focus,
  .mobile\:group:hover .group-hover\:rotate-171,
  .mobile\:group:focus-within .group-focus-within\:rotate-171 {
    transform: rotate(171deg);
  }
  .mobile\:rotate-172,
  .mobile\:hover\:rotate-172:hover,
  .mobile\:focus\:rotate-172:focus,
  .mobile\:group:hover .group-hover\:rotate-172,
  .mobile\:group:focus-within .group-focus-within\:rotate-172 {
    transform: rotate(172deg);
  }
  .mobile\:rotate-173,
  .mobile\:hover\:rotate-173:hover,
  .mobile\:focus\:rotate-173:focus,
  .mobile\:group:hover .group-hover\:rotate-173,
  .mobile\:group:focus-within .group-focus-within\:rotate-173 {
    transform: rotate(173deg);
  }
  .mobile\:rotate-174,
  .mobile\:hover\:rotate-174:hover,
  .mobile\:focus\:rotate-174:focus,
  .mobile\:group:hover .group-hover\:rotate-174,
  .mobile\:group:focus-within .group-focus-within\:rotate-174 {
    transform: rotate(174deg);
  }
  .mobile\:rotate-175,
  .mobile\:hover\:rotate-175:hover,
  .mobile\:focus\:rotate-175:focus,
  .mobile\:group:hover .group-hover\:rotate-175,
  .mobile\:group:focus-within .group-focus-within\:rotate-175 {
    transform: rotate(175deg);
  }
  .mobile\:rotate-176,
  .mobile\:hover\:rotate-176:hover,
  .mobile\:focus\:rotate-176:focus,
  .mobile\:group:hover .group-hover\:rotate-176,
  .mobile\:group:focus-within .group-focus-within\:rotate-176 {
    transform: rotate(176deg);
  }
  .mobile\:rotate-177,
  .mobile\:hover\:rotate-177:hover,
  .mobile\:focus\:rotate-177:focus,
  .mobile\:group:hover .group-hover\:rotate-177,
  .mobile\:group:focus-within .group-focus-within\:rotate-177 {
    transform: rotate(177deg);
  }
  .mobile\:rotate-178,
  .mobile\:hover\:rotate-178:hover,
  .mobile\:focus\:rotate-178:focus,
  .mobile\:group:hover .group-hover\:rotate-178,
  .mobile\:group:focus-within .group-focus-within\:rotate-178 {
    transform: rotate(178deg);
  }
  .mobile\:rotate-179,
  .mobile\:hover\:rotate-179:hover,
  .mobile\:focus\:rotate-179:focus,
  .mobile\:group:hover .group-hover\:rotate-179,
  .mobile\:group:focus-within .group-focus-within\:rotate-179 {
    transform: rotate(179deg);
  }
  .mobile\:rotate-180,
  .mobile\:hover\:rotate-180:hover,
  .mobile\:focus\:rotate-180:focus,
  .mobile\:group:hover .group-hover\:rotate-180,
  .mobile\:group:focus-within .group-focus-within\:rotate-180 {
    transform: rotate(180deg);
  }
  .mobile\:rotate-181,
  .mobile\:hover\:rotate-181:hover,
  .mobile\:focus\:rotate-181:focus,
  .mobile\:group:hover .group-hover\:rotate-181,
  .mobile\:group:focus-within .group-focus-within\:rotate-181 {
    transform: rotate(181deg);
  }
  .mobile\:rotate-182,
  .mobile\:hover\:rotate-182:hover,
  .mobile\:focus\:rotate-182:focus,
  .mobile\:group:hover .group-hover\:rotate-182,
  .mobile\:group:focus-within .group-focus-within\:rotate-182 {
    transform: rotate(182deg);
  }
  .mobile\:rotate-183,
  .mobile\:hover\:rotate-183:hover,
  .mobile\:focus\:rotate-183:focus,
  .mobile\:group:hover .group-hover\:rotate-183,
  .mobile\:group:focus-within .group-focus-within\:rotate-183 {
    transform: rotate(183deg);
  }
  .mobile\:rotate-184,
  .mobile\:hover\:rotate-184:hover,
  .mobile\:focus\:rotate-184:focus,
  .mobile\:group:hover .group-hover\:rotate-184,
  .mobile\:group:focus-within .group-focus-within\:rotate-184 {
    transform: rotate(184deg);
  }
  .mobile\:rotate-185,
  .mobile\:hover\:rotate-185:hover,
  .mobile\:focus\:rotate-185:focus,
  .mobile\:group:hover .group-hover\:rotate-185,
  .mobile\:group:focus-within .group-focus-within\:rotate-185 {
    transform: rotate(185deg);
  }
  .mobile\:rotate-186,
  .mobile\:hover\:rotate-186:hover,
  .mobile\:focus\:rotate-186:focus,
  .mobile\:group:hover .group-hover\:rotate-186,
  .mobile\:group:focus-within .group-focus-within\:rotate-186 {
    transform: rotate(186deg);
  }
  .mobile\:rotate-187,
  .mobile\:hover\:rotate-187:hover,
  .mobile\:focus\:rotate-187:focus,
  .mobile\:group:hover .group-hover\:rotate-187,
  .mobile\:group:focus-within .group-focus-within\:rotate-187 {
    transform: rotate(187deg);
  }
  .mobile\:rotate-188,
  .mobile\:hover\:rotate-188:hover,
  .mobile\:focus\:rotate-188:focus,
  .mobile\:group:hover .group-hover\:rotate-188,
  .mobile\:group:focus-within .group-focus-within\:rotate-188 {
    transform: rotate(188deg);
  }
  .mobile\:rotate-189,
  .mobile\:hover\:rotate-189:hover,
  .mobile\:focus\:rotate-189:focus,
  .mobile\:group:hover .group-hover\:rotate-189,
  .mobile\:group:focus-within .group-focus-within\:rotate-189 {
    transform: rotate(189deg);
  }
  .mobile\:rotate-190,
  .mobile\:hover\:rotate-190:hover,
  .mobile\:focus\:rotate-190:focus,
  .mobile\:group:hover .group-hover\:rotate-190,
  .mobile\:group:focus-within .group-focus-within\:rotate-190 {
    transform: rotate(190deg);
  }
  .mobile\:rotate-191,
  .mobile\:hover\:rotate-191:hover,
  .mobile\:focus\:rotate-191:focus,
  .mobile\:group:hover .group-hover\:rotate-191,
  .mobile\:group:focus-within .group-focus-within\:rotate-191 {
    transform: rotate(191deg);
  }
  .mobile\:rotate-192,
  .mobile\:hover\:rotate-192:hover,
  .mobile\:focus\:rotate-192:focus,
  .mobile\:group:hover .group-hover\:rotate-192,
  .mobile\:group:focus-within .group-focus-within\:rotate-192 {
    transform: rotate(192deg);
  }
  .mobile\:rotate-193,
  .mobile\:hover\:rotate-193:hover,
  .mobile\:focus\:rotate-193:focus,
  .mobile\:group:hover .group-hover\:rotate-193,
  .mobile\:group:focus-within .group-focus-within\:rotate-193 {
    transform: rotate(193deg);
  }
  .mobile\:rotate-194,
  .mobile\:hover\:rotate-194:hover,
  .mobile\:focus\:rotate-194:focus,
  .mobile\:group:hover .group-hover\:rotate-194,
  .mobile\:group:focus-within .group-focus-within\:rotate-194 {
    transform: rotate(194deg);
  }
  .mobile\:rotate-195,
  .mobile\:hover\:rotate-195:hover,
  .mobile\:focus\:rotate-195:focus,
  .mobile\:group:hover .group-hover\:rotate-195,
  .mobile\:group:focus-within .group-focus-within\:rotate-195 {
    transform: rotate(195deg);
  }
  .mobile\:rotate-196,
  .mobile\:hover\:rotate-196:hover,
  .mobile\:focus\:rotate-196:focus,
  .mobile\:group:hover .group-hover\:rotate-196,
  .mobile\:group:focus-within .group-focus-within\:rotate-196 {
    transform: rotate(196deg);
  }
  .mobile\:rotate-197,
  .mobile\:hover\:rotate-197:hover,
  .mobile\:focus\:rotate-197:focus,
  .mobile\:group:hover .group-hover\:rotate-197,
  .mobile\:group:focus-within .group-focus-within\:rotate-197 {
    transform: rotate(197deg);
  }
  .mobile\:rotate-198,
  .mobile\:hover\:rotate-198:hover,
  .mobile\:focus\:rotate-198:focus,
  .mobile\:group:hover .group-hover\:rotate-198,
  .mobile\:group:focus-within .group-focus-within\:rotate-198 {
    transform: rotate(198deg);
  }
  .mobile\:rotate-199,
  .mobile\:hover\:rotate-199:hover,
  .mobile\:focus\:rotate-199:focus,
  .mobile\:group:hover .group-hover\:rotate-199,
  .mobile\:group:focus-within .group-focus-within\:rotate-199 {
    transform: rotate(199deg);
  }
  .mobile\:rotate-200,
  .mobile\:hover\:rotate-200:hover,
  .mobile\:focus\:rotate-200:focus,
  .mobile\:group:hover .group-hover\:rotate-200,
  .mobile\:group:focus-within .group-focus-within\:rotate-200 {
    transform: rotate(200deg);
  }
  .mobile\:rotate-201,
  .mobile\:hover\:rotate-201:hover,
  .mobile\:focus\:rotate-201:focus,
  .mobile\:group:hover .group-hover\:rotate-201,
  .mobile\:group:focus-within .group-focus-within\:rotate-201 {
    transform: rotate(201deg);
  }
  .mobile\:rotate-202,
  .mobile\:hover\:rotate-202:hover,
  .mobile\:focus\:rotate-202:focus,
  .mobile\:group:hover .group-hover\:rotate-202,
  .mobile\:group:focus-within .group-focus-within\:rotate-202 {
    transform: rotate(202deg);
  }
  .mobile\:rotate-203,
  .mobile\:hover\:rotate-203:hover,
  .mobile\:focus\:rotate-203:focus,
  .mobile\:group:hover .group-hover\:rotate-203,
  .mobile\:group:focus-within .group-focus-within\:rotate-203 {
    transform: rotate(203deg);
  }
  .mobile\:rotate-204,
  .mobile\:hover\:rotate-204:hover,
  .mobile\:focus\:rotate-204:focus,
  .mobile\:group:hover .group-hover\:rotate-204,
  .mobile\:group:focus-within .group-focus-within\:rotate-204 {
    transform: rotate(204deg);
  }
  .mobile\:rotate-205,
  .mobile\:hover\:rotate-205:hover,
  .mobile\:focus\:rotate-205:focus,
  .mobile\:group:hover .group-hover\:rotate-205,
  .mobile\:group:focus-within .group-focus-within\:rotate-205 {
    transform: rotate(205deg);
  }
  .mobile\:rotate-206,
  .mobile\:hover\:rotate-206:hover,
  .mobile\:focus\:rotate-206:focus,
  .mobile\:group:hover .group-hover\:rotate-206,
  .mobile\:group:focus-within .group-focus-within\:rotate-206 {
    transform: rotate(206deg);
  }
  .mobile\:rotate-207,
  .mobile\:hover\:rotate-207:hover,
  .mobile\:focus\:rotate-207:focus,
  .mobile\:group:hover .group-hover\:rotate-207,
  .mobile\:group:focus-within .group-focus-within\:rotate-207 {
    transform: rotate(207deg);
  }
  .mobile\:rotate-208,
  .mobile\:hover\:rotate-208:hover,
  .mobile\:focus\:rotate-208:focus,
  .mobile\:group:hover .group-hover\:rotate-208,
  .mobile\:group:focus-within .group-focus-within\:rotate-208 {
    transform: rotate(208deg);
  }
  .mobile\:rotate-209,
  .mobile\:hover\:rotate-209:hover,
  .mobile\:focus\:rotate-209:focus,
  .mobile\:group:hover .group-hover\:rotate-209,
  .mobile\:group:focus-within .group-focus-within\:rotate-209 {
    transform: rotate(209deg);
  }
  .mobile\:rotate-210,
  .mobile\:hover\:rotate-210:hover,
  .mobile\:focus\:rotate-210:focus,
  .mobile\:group:hover .group-hover\:rotate-210,
  .mobile\:group:focus-within .group-focus-within\:rotate-210 {
    transform: rotate(210deg);
  }
  .mobile\:rotate-211,
  .mobile\:hover\:rotate-211:hover,
  .mobile\:focus\:rotate-211:focus,
  .mobile\:group:hover .group-hover\:rotate-211,
  .mobile\:group:focus-within .group-focus-within\:rotate-211 {
    transform: rotate(211deg);
  }
  .mobile\:rotate-212,
  .mobile\:hover\:rotate-212:hover,
  .mobile\:focus\:rotate-212:focus,
  .mobile\:group:hover .group-hover\:rotate-212,
  .mobile\:group:focus-within .group-focus-within\:rotate-212 {
    transform: rotate(212deg);
  }
  .mobile\:rotate-213,
  .mobile\:hover\:rotate-213:hover,
  .mobile\:focus\:rotate-213:focus,
  .mobile\:group:hover .group-hover\:rotate-213,
  .mobile\:group:focus-within .group-focus-within\:rotate-213 {
    transform: rotate(213deg);
  }
  .mobile\:rotate-214,
  .mobile\:hover\:rotate-214:hover,
  .mobile\:focus\:rotate-214:focus,
  .mobile\:group:hover .group-hover\:rotate-214,
  .mobile\:group:focus-within .group-focus-within\:rotate-214 {
    transform: rotate(214deg);
  }
  .mobile\:rotate-215,
  .mobile\:hover\:rotate-215:hover,
  .mobile\:focus\:rotate-215:focus,
  .mobile\:group:hover .group-hover\:rotate-215,
  .mobile\:group:focus-within .group-focus-within\:rotate-215 {
    transform: rotate(215deg);
  }
  .mobile\:rotate-216,
  .mobile\:hover\:rotate-216:hover,
  .mobile\:focus\:rotate-216:focus,
  .mobile\:group:hover .group-hover\:rotate-216,
  .mobile\:group:focus-within .group-focus-within\:rotate-216 {
    transform: rotate(216deg);
  }
  .mobile\:rotate-217,
  .mobile\:hover\:rotate-217:hover,
  .mobile\:focus\:rotate-217:focus,
  .mobile\:group:hover .group-hover\:rotate-217,
  .mobile\:group:focus-within .group-focus-within\:rotate-217 {
    transform: rotate(217deg);
  }
  .mobile\:rotate-218,
  .mobile\:hover\:rotate-218:hover,
  .mobile\:focus\:rotate-218:focus,
  .mobile\:group:hover .group-hover\:rotate-218,
  .mobile\:group:focus-within .group-focus-within\:rotate-218 {
    transform: rotate(218deg);
  }
  .mobile\:rotate-219,
  .mobile\:hover\:rotate-219:hover,
  .mobile\:focus\:rotate-219:focus,
  .mobile\:group:hover .group-hover\:rotate-219,
  .mobile\:group:focus-within .group-focus-within\:rotate-219 {
    transform: rotate(219deg);
  }
  .mobile\:rotate-220,
  .mobile\:hover\:rotate-220:hover,
  .mobile\:focus\:rotate-220:focus,
  .mobile\:group:hover .group-hover\:rotate-220,
  .mobile\:group:focus-within .group-focus-within\:rotate-220 {
    transform: rotate(220deg);
  }
  .mobile\:rotate-221,
  .mobile\:hover\:rotate-221:hover,
  .mobile\:focus\:rotate-221:focus,
  .mobile\:group:hover .group-hover\:rotate-221,
  .mobile\:group:focus-within .group-focus-within\:rotate-221 {
    transform: rotate(221deg);
  }
  .mobile\:rotate-222,
  .mobile\:hover\:rotate-222:hover,
  .mobile\:focus\:rotate-222:focus,
  .mobile\:group:hover .group-hover\:rotate-222,
  .mobile\:group:focus-within .group-focus-within\:rotate-222 {
    transform: rotate(222deg);
  }
  .mobile\:rotate-223,
  .mobile\:hover\:rotate-223:hover,
  .mobile\:focus\:rotate-223:focus,
  .mobile\:group:hover .group-hover\:rotate-223,
  .mobile\:group:focus-within .group-focus-within\:rotate-223 {
    transform: rotate(223deg);
  }
  .mobile\:rotate-224,
  .mobile\:hover\:rotate-224:hover,
  .mobile\:focus\:rotate-224:focus,
  .mobile\:group:hover .group-hover\:rotate-224,
  .mobile\:group:focus-within .group-focus-within\:rotate-224 {
    transform: rotate(224deg);
  }
  .mobile\:rotate-225,
  .mobile\:hover\:rotate-225:hover,
  .mobile\:focus\:rotate-225:focus,
  .mobile\:group:hover .group-hover\:rotate-225,
  .mobile\:group:focus-within .group-focus-within\:rotate-225 {
    transform: rotate(225deg);
  }
  .mobile\:rotate-226,
  .mobile\:hover\:rotate-226:hover,
  .mobile\:focus\:rotate-226:focus,
  .mobile\:group:hover .group-hover\:rotate-226,
  .mobile\:group:focus-within .group-focus-within\:rotate-226 {
    transform: rotate(226deg);
  }
  .mobile\:rotate-227,
  .mobile\:hover\:rotate-227:hover,
  .mobile\:focus\:rotate-227:focus,
  .mobile\:group:hover .group-hover\:rotate-227,
  .mobile\:group:focus-within .group-focus-within\:rotate-227 {
    transform: rotate(227deg);
  }
  .mobile\:rotate-228,
  .mobile\:hover\:rotate-228:hover,
  .mobile\:focus\:rotate-228:focus,
  .mobile\:group:hover .group-hover\:rotate-228,
  .mobile\:group:focus-within .group-focus-within\:rotate-228 {
    transform: rotate(228deg);
  }
  .mobile\:rotate-229,
  .mobile\:hover\:rotate-229:hover,
  .mobile\:focus\:rotate-229:focus,
  .mobile\:group:hover .group-hover\:rotate-229,
  .mobile\:group:focus-within .group-focus-within\:rotate-229 {
    transform: rotate(229deg);
  }
  .mobile\:rotate-230,
  .mobile\:hover\:rotate-230:hover,
  .mobile\:focus\:rotate-230:focus,
  .mobile\:group:hover .group-hover\:rotate-230,
  .mobile\:group:focus-within .group-focus-within\:rotate-230 {
    transform: rotate(230deg);
  }
  .mobile\:rotate-231,
  .mobile\:hover\:rotate-231:hover,
  .mobile\:focus\:rotate-231:focus,
  .mobile\:group:hover .group-hover\:rotate-231,
  .mobile\:group:focus-within .group-focus-within\:rotate-231 {
    transform: rotate(231deg);
  }
  .mobile\:rotate-232,
  .mobile\:hover\:rotate-232:hover,
  .mobile\:focus\:rotate-232:focus,
  .mobile\:group:hover .group-hover\:rotate-232,
  .mobile\:group:focus-within .group-focus-within\:rotate-232 {
    transform: rotate(232deg);
  }
  .mobile\:rotate-233,
  .mobile\:hover\:rotate-233:hover,
  .mobile\:focus\:rotate-233:focus,
  .mobile\:group:hover .group-hover\:rotate-233,
  .mobile\:group:focus-within .group-focus-within\:rotate-233 {
    transform: rotate(233deg);
  }
  .mobile\:rotate-234,
  .mobile\:hover\:rotate-234:hover,
  .mobile\:focus\:rotate-234:focus,
  .mobile\:group:hover .group-hover\:rotate-234,
  .mobile\:group:focus-within .group-focus-within\:rotate-234 {
    transform: rotate(234deg);
  }
  .mobile\:rotate-235,
  .mobile\:hover\:rotate-235:hover,
  .mobile\:focus\:rotate-235:focus,
  .mobile\:group:hover .group-hover\:rotate-235,
  .mobile\:group:focus-within .group-focus-within\:rotate-235 {
    transform: rotate(235deg);
  }
  .mobile\:rotate-236,
  .mobile\:hover\:rotate-236:hover,
  .mobile\:focus\:rotate-236:focus,
  .mobile\:group:hover .group-hover\:rotate-236,
  .mobile\:group:focus-within .group-focus-within\:rotate-236 {
    transform: rotate(236deg);
  }
  .mobile\:rotate-237,
  .mobile\:hover\:rotate-237:hover,
  .mobile\:focus\:rotate-237:focus,
  .mobile\:group:hover .group-hover\:rotate-237,
  .mobile\:group:focus-within .group-focus-within\:rotate-237 {
    transform: rotate(237deg);
  }
  .mobile\:rotate-238,
  .mobile\:hover\:rotate-238:hover,
  .mobile\:focus\:rotate-238:focus,
  .mobile\:group:hover .group-hover\:rotate-238,
  .mobile\:group:focus-within .group-focus-within\:rotate-238 {
    transform: rotate(238deg);
  }
  .mobile\:rotate-239,
  .mobile\:hover\:rotate-239:hover,
  .mobile\:focus\:rotate-239:focus,
  .mobile\:group:hover .group-hover\:rotate-239,
  .mobile\:group:focus-within .group-focus-within\:rotate-239 {
    transform: rotate(239deg);
  }
  .mobile\:rotate-240,
  .mobile\:hover\:rotate-240:hover,
  .mobile\:focus\:rotate-240:focus,
  .mobile\:group:hover .group-hover\:rotate-240,
  .mobile\:group:focus-within .group-focus-within\:rotate-240 {
    transform: rotate(240deg);
  }
  .mobile\:rotate-241,
  .mobile\:hover\:rotate-241:hover,
  .mobile\:focus\:rotate-241:focus,
  .mobile\:group:hover .group-hover\:rotate-241,
  .mobile\:group:focus-within .group-focus-within\:rotate-241 {
    transform: rotate(241deg);
  }
  .mobile\:rotate-242,
  .mobile\:hover\:rotate-242:hover,
  .mobile\:focus\:rotate-242:focus,
  .mobile\:group:hover .group-hover\:rotate-242,
  .mobile\:group:focus-within .group-focus-within\:rotate-242 {
    transform: rotate(242deg);
  }
  .mobile\:rotate-243,
  .mobile\:hover\:rotate-243:hover,
  .mobile\:focus\:rotate-243:focus,
  .mobile\:group:hover .group-hover\:rotate-243,
  .mobile\:group:focus-within .group-focus-within\:rotate-243 {
    transform: rotate(243deg);
  }
  .mobile\:rotate-244,
  .mobile\:hover\:rotate-244:hover,
  .mobile\:focus\:rotate-244:focus,
  .mobile\:group:hover .group-hover\:rotate-244,
  .mobile\:group:focus-within .group-focus-within\:rotate-244 {
    transform: rotate(244deg);
  }
  .mobile\:rotate-245,
  .mobile\:hover\:rotate-245:hover,
  .mobile\:focus\:rotate-245:focus,
  .mobile\:group:hover .group-hover\:rotate-245,
  .mobile\:group:focus-within .group-focus-within\:rotate-245 {
    transform: rotate(245deg);
  }
  .mobile\:rotate-246,
  .mobile\:hover\:rotate-246:hover,
  .mobile\:focus\:rotate-246:focus,
  .mobile\:group:hover .group-hover\:rotate-246,
  .mobile\:group:focus-within .group-focus-within\:rotate-246 {
    transform: rotate(246deg);
  }
  .mobile\:rotate-247,
  .mobile\:hover\:rotate-247:hover,
  .mobile\:focus\:rotate-247:focus,
  .mobile\:group:hover .group-hover\:rotate-247,
  .mobile\:group:focus-within .group-focus-within\:rotate-247 {
    transform: rotate(247deg);
  }
  .mobile\:rotate-248,
  .mobile\:hover\:rotate-248:hover,
  .mobile\:focus\:rotate-248:focus,
  .mobile\:group:hover .group-hover\:rotate-248,
  .mobile\:group:focus-within .group-focus-within\:rotate-248 {
    transform: rotate(248deg);
  }
  .mobile\:rotate-249,
  .mobile\:hover\:rotate-249:hover,
  .mobile\:focus\:rotate-249:focus,
  .mobile\:group:hover .group-hover\:rotate-249,
  .mobile\:group:focus-within .group-focus-within\:rotate-249 {
    transform: rotate(249deg);
  }
  .mobile\:rotate-250,
  .mobile\:hover\:rotate-250:hover,
  .mobile\:focus\:rotate-250:focus,
  .mobile\:group:hover .group-hover\:rotate-250,
  .mobile\:group:focus-within .group-focus-within\:rotate-250 {
    transform: rotate(250deg);
  }
  .mobile\:rotate-251,
  .mobile\:hover\:rotate-251:hover,
  .mobile\:focus\:rotate-251:focus,
  .mobile\:group:hover .group-hover\:rotate-251,
  .mobile\:group:focus-within .group-focus-within\:rotate-251 {
    transform: rotate(251deg);
  }
  .mobile\:rotate-252,
  .mobile\:hover\:rotate-252:hover,
  .mobile\:focus\:rotate-252:focus,
  .mobile\:group:hover .group-hover\:rotate-252,
  .mobile\:group:focus-within .group-focus-within\:rotate-252 {
    transform: rotate(252deg);
  }
  .mobile\:rotate-253,
  .mobile\:hover\:rotate-253:hover,
  .mobile\:focus\:rotate-253:focus,
  .mobile\:group:hover .group-hover\:rotate-253,
  .mobile\:group:focus-within .group-focus-within\:rotate-253 {
    transform: rotate(253deg);
  }
  .mobile\:rotate-254,
  .mobile\:hover\:rotate-254:hover,
  .mobile\:focus\:rotate-254:focus,
  .mobile\:group:hover .group-hover\:rotate-254,
  .mobile\:group:focus-within .group-focus-within\:rotate-254 {
    transform: rotate(254deg);
  }
  .mobile\:rotate-255,
  .mobile\:hover\:rotate-255:hover,
  .mobile\:focus\:rotate-255:focus,
  .mobile\:group:hover .group-hover\:rotate-255,
  .mobile\:group:focus-within .group-focus-within\:rotate-255 {
    transform: rotate(255deg);
  }
  .mobile\:rotate-256,
  .mobile\:hover\:rotate-256:hover,
  .mobile\:focus\:rotate-256:focus,
  .mobile\:group:hover .group-hover\:rotate-256,
  .mobile\:group:focus-within .group-focus-within\:rotate-256 {
    transform: rotate(256deg);
  }
  .mobile\:rotate-257,
  .mobile\:hover\:rotate-257:hover,
  .mobile\:focus\:rotate-257:focus,
  .mobile\:group:hover .group-hover\:rotate-257,
  .mobile\:group:focus-within .group-focus-within\:rotate-257 {
    transform: rotate(257deg);
  }
  .mobile\:rotate-258,
  .mobile\:hover\:rotate-258:hover,
  .mobile\:focus\:rotate-258:focus,
  .mobile\:group:hover .group-hover\:rotate-258,
  .mobile\:group:focus-within .group-focus-within\:rotate-258 {
    transform: rotate(258deg);
  }
  .mobile\:rotate-259,
  .mobile\:hover\:rotate-259:hover,
  .mobile\:focus\:rotate-259:focus,
  .mobile\:group:hover .group-hover\:rotate-259,
  .mobile\:group:focus-within .group-focus-within\:rotate-259 {
    transform: rotate(259deg);
  }
  .mobile\:rotate-260,
  .mobile\:hover\:rotate-260:hover,
  .mobile\:focus\:rotate-260:focus,
  .mobile\:group:hover .group-hover\:rotate-260,
  .mobile\:group:focus-within .group-focus-within\:rotate-260 {
    transform: rotate(260deg);
  }
  .mobile\:rotate-261,
  .mobile\:hover\:rotate-261:hover,
  .mobile\:focus\:rotate-261:focus,
  .mobile\:group:hover .group-hover\:rotate-261,
  .mobile\:group:focus-within .group-focus-within\:rotate-261 {
    transform: rotate(261deg);
  }
  .mobile\:rotate-262,
  .mobile\:hover\:rotate-262:hover,
  .mobile\:focus\:rotate-262:focus,
  .mobile\:group:hover .group-hover\:rotate-262,
  .mobile\:group:focus-within .group-focus-within\:rotate-262 {
    transform: rotate(262deg);
  }
  .mobile\:rotate-263,
  .mobile\:hover\:rotate-263:hover,
  .mobile\:focus\:rotate-263:focus,
  .mobile\:group:hover .group-hover\:rotate-263,
  .mobile\:group:focus-within .group-focus-within\:rotate-263 {
    transform: rotate(263deg);
  }
  .mobile\:rotate-264,
  .mobile\:hover\:rotate-264:hover,
  .mobile\:focus\:rotate-264:focus,
  .mobile\:group:hover .group-hover\:rotate-264,
  .mobile\:group:focus-within .group-focus-within\:rotate-264 {
    transform: rotate(264deg);
  }
  .mobile\:rotate-265,
  .mobile\:hover\:rotate-265:hover,
  .mobile\:focus\:rotate-265:focus,
  .mobile\:group:hover .group-hover\:rotate-265,
  .mobile\:group:focus-within .group-focus-within\:rotate-265 {
    transform: rotate(265deg);
  }
  .mobile\:rotate-266,
  .mobile\:hover\:rotate-266:hover,
  .mobile\:focus\:rotate-266:focus,
  .mobile\:group:hover .group-hover\:rotate-266,
  .mobile\:group:focus-within .group-focus-within\:rotate-266 {
    transform: rotate(266deg);
  }
  .mobile\:rotate-267,
  .mobile\:hover\:rotate-267:hover,
  .mobile\:focus\:rotate-267:focus,
  .mobile\:group:hover .group-hover\:rotate-267,
  .mobile\:group:focus-within .group-focus-within\:rotate-267 {
    transform: rotate(267deg);
  }
  .mobile\:rotate-268,
  .mobile\:hover\:rotate-268:hover,
  .mobile\:focus\:rotate-268:focus,
  .mobile\:group:hover .group-hover\:rotate-268,
  .mobile\:group:focus-within .group-focus-within\:rotate-268 {
    transform: rotate(268deg);
  }
  .mobile\:rotate-269,
  .mobile\:hover\:rotate-269:hover,
  .mobile\:focus\:rotate-269:focus,
  .mobile\:group:hover .group-hover\:rotate-269,
  .mobile\:group:focus-within .group-focus-within\:rotate-269 {
    transform: rotate(269deg);
  }
  .mobile\:rotate-270,
  .mobile\:hover\:rotate-270:hover,
  .mobile\:focus\:rotate-270:focus,
  .mobile\:group:hover .group-hover\:rotate-270,
  .mobile\:group:focus-within .group-focus-within\:rotate-270 {
    transform: rotate(270deg);
  }
  .mobile\:rotate-271,
  .mobile\:hover\:rotate-271:hover,
  .mobile\:focus\:rotate-271:focus,
  .mobile\:group:hover .group-hover\:rotate-271,
  .mobile\:group:focus-within .group-focus-within\:rotate-271 {
    transform: rotate(271deg);
  }
  .mobile\:rotate-272,
  .mobile\:hover\:rotate-272:hover,
  .mobile\:focus\:rotate-272:focus,
  .mobile\:group:hover .group-hover\:rotate-272,
  .mobile\:group:focus-within .group-focus-within\:rotate-272 {
    transform: rotate(272deg);
  }
  .mobile\:rotate-273,
  .mobile\:hover\:rotate-273:hover,
  .mobile\:focus\:rotate-273:focus,
  .mobile\:group:hover .group-hover\:rotate-273,
  .mobile\:group:focus-within .group-focus-within\:rotate-273 {
    transform: rotate(273deg);
  }
  .mobile\:rotate-274,
  .mobile\:hover\:rotate-274:hover,
  .mobile\:focus\:rotate-274:focus,
  .mobile\:group:hover .group-hover\:rotate-274,
  .mobile\:group:focus-within .group-focus-within\:rotate-274 {
    transform: rotate(274deg);
  }
  .mobile\:rotate-275,
  .mobile\:hover\:rotate-275:hover,
  .mobile\:focus\:rotate-275:focus,
  .mobile\:group:hover .group-hover\:rotate-275,
  .mobile\:group:focus-within .group-focus-within\:rotate-275 {
    transform: rotate(275deg);
  }
  .mobile\:rotate-276,
  .mobile\:hover\:rotate-276:hover,
  .mobile\:focus\:rotate-276:focus,
  .mobile\:group:hover .group-hover\:rotate-276,
  .mobile\:group:focus-within .group-focus-within\:rotate-276 {
    transform: rotate(276deg);
  }
  .mobile\:rotate-277,
  .mobile\:hover\:rotate-277:hover,
  .mobile\:focus\:rotate-277:focus,
  .mobile\:group:hover .group-hover\:rotate-277,
  .mobile\:group:focus-within .group-focus-within\:rotate-277 {
    transform: rotate(277deg);
  }
  .mobile\:rotate-278,
  .mobile\:hover\:rotate-278:hover,
  .mobile\:focus\:rotate-278:focus,
  .mobile\:group:hover .group-hover\:rotate-278,
  .mobile\:group:focus-within .group-focus-within\:rotate-278 {
    transform: rotate(278deg);
  }
  .mobile\:rotate-279,
  .mobile\:hover\:rotate-279:hover,
  .mobile\:focus\:rotate-279:focus,
  .mobile\:group:hover .group-hover\:rotate-279,
  .mobile\:group:focus-within .group-focus-within\:rotate-279 {
    transform: rotate(279deg);
  }
  .mobile\:rotate-280,
  .mobile\:hover\:rotate-280:hover,
  .mobile\:focus\:rotate-280:focus,
  .mobile\:group:hover .group-hover\:rotate-280,
  .mobile\:group:focus-within .group-focus-within\:rotate-280 {
    transform: rotate(280deg);
  }
  .mobile\:rotate-281,
  .mobile\:hover\:rotate-281:hover,
  .mobile\:focus\:rotate-281:focus,
  .mobile\:group:hover .group-hover\:rotate-281,
  .mobile\:group:focus-within .group-focus-within\:rotate-281 {
    transform: rotate(281deg);
  }
  .mobile\:rotate-282,
  .mobile\:hover\:rotate-282:hover,
  .mobile\:focus\:rotate-282:focus,
  .mobile\:group:hover .group-hover\:rotate-282,
  .mobile\:group:focus-within .group-focus-within\:rotate-282 {
    transform: rotate(282deg);
  }
  .mobile\:rotate-283,
  .mobile\:hover\:rotate-283:hover,
  .mobile\:focus\:rotate-283:focus,
  .mobile\:group:hover .group-hover\:rotate-283,
  .mobile\:group:focus-within .group-focus-within\:rotate-283 {
    transform: rotate(283deg);
  }
  .mobile\:rotate-284,
  .mobile\:hover\:rotate-284:hover,
  .mobile\:focus\:rotate-284:focus,
  .mobile\:group:hover .group-hover\:rotate-284,
  .mobile\:group:focus-within .group-focus-within\:rotate-284 {
    transform: rotate(284deg);
  }
  .mobile\:rotate-285,
  .mobile\:hover\:rotate-285:hover,
  .mobile\:focus\:rotate-285:focus,
  .mobile\:group:hover .group-hover\:rotate-285,
  .mobile\:group:focus-within .group-focus-within\:rotate-285 {
    transform: rotate(285deg);
  }
  .mobile\:rotate-286,
  .mobile\:hover\:rotate-286:hover,
  .mobile\:focus\:rotate-286:focus,
  .mobile\:group:hover .group-hover\:rotate-286,
  .mobile\:group:focus-within .group-focus-within\:rotate-286 {
    transform: rotate(286deg);
  }
  .mobile\:rotate-287,
  .mobile\:hover\:rotate-287:hover,
  .mobile\:focus\:rotate-287:focus,
  .mobile\:group:hover .group-hover\:rotate-287,
  .mobile\:group:focus-within .group-focus-within\:rotate-287 {
    transform: rotate(287deg);
  }
  .mobile\:rotate-288,
  .mobile\:hover\:rotate-288:hover,
  .mobile\:focus\:rotate-288:focus,
  .mobile\:group:hover .group-hover\:rotate-288,
  .mobile\:group:focus-within .group-focus-within\:rotate-288 {
    transform: rotate(288deg);
  }
  .mobile\:rotate-289,
  .mobile\:hover\:rotate-289:hover,
  .mobile\:focus\:rotate-289:focus,
  .mobile\:group:hover .group-hover\:rotate-289,
  .mobile\:group:focus-within .group-focus-within\:rotate-289 {
    transform: rotate(289deg);
  }
  .mobile\:rotate-290,
  .mobile\:hover\:rotate-290:hover,
  .mobile\:focus\:rotate-290:focus,
  .mobile\:group:hover .group-hover\:rotate-290,
  .mobile\:group:focus-within .group-focus-within\:rotate-290 {
    transform: rotate(290deg);
  }
  .mobile\:rotate-291,
  .mobile\:hover\:rotate-291:hover,
  .mobile\:focus\:rotate-291:focus,
  .mobile\:group:hover .group-hover\:rotate-291,
  .mobile\:group:focus-within .group-focus-within\:rotate-291 {
    transform: rotate(291deg);
  }
  .mobile\:rotate-292,
  .mobile\:hover\:rotate-292:hover,
  .mobile\:focus\:rotate-292:focus,
  .mobile\:group:hover .group-hover\:rotate-292,
  .mobile\:group:focus-within .group-focus-within\:rotate-292 {
    transform: rotate(292deg);
  }
  .mobile\:rotate-293,
  .mobile\:hover\:rotate-293:hover,
  .mobile\:focus\:rotate-293:focus,
  .mobile\:group:hover .group-hover\:rotate-293,
  .mobile\:group:focus-within .group-focus-within\:rotate-293 {
    transform: rotate(293deg);
  }
  .mobile\:rotate-294,
  .mobile\:hover\:rotate-294:hover,
  .mobile\:focus\:rotate-294:focus,
  .mobile\:group:hover .group-hover\:rotate-294,
  .mobile\:group:focus-within .group-focus-within\:rotate-294 {
    transform: rotate(294deg);
  }
  .mobile\:rotate-295,
  .mobile\:hover\:rotate-295:hover,
  .mobile\:focus\:rotate-295:focus,
  .mobile\:group:hover .group-hover\:rotate-295,
  .mobile\:group:focus-within .group-focus-within\:rotate-295 {
    transform: rotate(295deg);
  }
  .mobile\:rotate-296,
  .mobile\:hover\:rotate-296:hover,
  .mobile\:focus\:rotate-296:focus,
  .mobile\:group:hover .group-hover\:rotate-296,
  .mobile\:group:focus-within .group-focus-within\:rotate-296 {
    transform: rotate(296deg);
  }
  .mobile\:rotate-297,
  .mobile\:hover\:rotate-297:hover,
  .mobile\:focus\:rotate-297:focus,
  .mobile\:group:hover .group-hover\:rotate-297,
  .mobile\:group:focus-within .group-focus-within\:rotate-297 {
    transform: rotate(297deg);
  }
  .mobile\:rotate-298,
  .mobile\:hover\:rotate-298:hover,
  .mobile\:focus\:rotate-298:focus,
  .mobile\:group:hover .group-hover\:rotate-298,
  .mobile\:group:focus-within .group-focus-within\:rotate-298 {
    transform: rotate(298deg);
  }
  .mobile\:rotate-299,
  .mobile\:hover\:rotate-299:hover,
  .mobile\:focus\:rotate-299:focus,
  .mobile\:group:hover .group-hover\:rotate-299,
  .mobile\:group:focus-within .group-focus-within\:rotate-299 {
    transform: rotate(299deg);
  }
  .mobile\:rotate-300,
  .mobile\:hover\:rotate-300:hover,
  .mobile\:focus\:rotate-300:focus,
  .mobile\:group:hover .group-hover\:rotate-300,
  .mobile\:group:focus-within .group-focus-within\:rotate-300 {
    transform: rotate(300deg);
  }
  .mobile\:rotate-301,
  .mobile\:hover\:rotate-301:hover,
  .mobile\:focus\:rotate-301:focus,
  .mobile\:group:hover .group-hover\:rotate-301,
  .mobile\:group:focus-within .group-focus-within\:rotate-301 {
    transform: rotate(301deg);
  }
  .mobile\:rotate-302,
  .mobile\:hover\:rotate-302:hover,
  .mobile\:focus\:rotate-302:focus,
  .mobile\:group:hover .group-hover\:rotate-302,
  .mobile\:group:focus-within .group-focus-within\:rotate-302 {
    transform: rotate(302deg);
  }
  .mobile\:rotate-303,
  .mobile\:hover\:rotate-303:hover,
  .mobile\:focus\:rotate-303:focus,
  .mobile\:group:hover .group-hover\:rotate-303,
  .mobile\:group:focus-within .group-focus-within\:rotate-303 {
    transform: rotate(303deg);
  }
  .mobile\:rotate-304,
  .mobile\:hover\:rotate-304:hover,
  .mobile\:focus\:rotate-304:focus,
  .mobile\:group:hover .group-hover\:rotate-304,
  .mobile\:group:focus-within .group-focus-within\:rotate-304 {
    transform: rotate(304deg);
  }
  .mobile\:rotate-305,
  .mobile\:hover\:rotate-305:hover,
  .mobile\:focus\:rotate-305:focus,
  .mobile\:group:hover .group-hover\:rotate-305,
  .mobile\:group:focus-within .group-focus-within\:rotate-305 {
    transform: rotate(305deg);
  }
  .mobile\:rotate-306,
  .mobile\:hover\:rotate-306:hover,
  .mobile\:focus\:rotate-306:focus,
  .mobile\:group:hover .group-hover\:rotate-306,
  .mobile\:group:focus-within .group-focus-within\:rotate-306 {
    transform: rotate(306deg);
  }
  .mobile\:rotate-307,
  .mobile\:hover\:rotate-307:hover,
  .mobile\:focus\:rotate-307:focus,
  .mobile\:group:hover .group-hover\:rotate-307,
  .mobile\:group:focus-within .group-focus-within\:rotate-307 {
    transform: rotate(307deg);
  }
  .mobile\:rotate-308,
  .mobile\:hover\:rotate-308:hover,
  .mobile\:focus\:rotate-308:focus,
  .mobile\:group:hover .group-hover\:rotate-308,
  .mobile\:group:focus-within .group-focus-within\:rotate-308 {
    transform: rotate(308deg);
  }
  .mobile\:rotate-309,
  .mobile\:hover\:rotate-309:hover,
  .mobile\:focus\:rotate-309:focus,
  .mobile\:group:hover .group-hover\:rotate-309,
  .mobile\:group:focus-within .group-focus-within\:rotate-309 {
    transform: rotate(309deg);
  }
  .mobile\:rotate-310,
  .mobile\:hover\:rotate-310:hover,
  .mobile\:focus\:rotate-310:focus,
  .mobile\:group:hover .group-hover\:rotate-310,
  .mobile\:group:focus-within .group-focus-within\:rotate-310 {
    transform: rotate(310deg);
  }
  .mobile\:rotate-311,
  .mobile\:hover\:rotate-311:hover,
  .mobile\:focus\:rotate-311:focus,
  .mobile\:group:hover .group-hover\:rotate-311,
  .mobile\:group:focus-within .group-focus-within\:rotate-311 {
    transform: rotate(311deg);
  }
  .mobile\:rotate-312,
  .mobile\:hover\:rotate-312:hover,
  .mobile\:focus\:rotate-312:focus,
  .mobile\:group:hover .group-hover\:rotate-312,
  .mobile\:group:focus-within .group-focus-within\:rotate-312 {
    transform: rotate(312deg);
  }
  .mobile\:rotate-313,
  .mobile\:hover\:rotate-313:hover,
  .mobile\:focus\:rotate-313:focus,
  .mobile\:group:hover .group-hover\:rotate-313,
  .mobile\:group:focus-within .group-focus-within\:rotate-313 {
    transform: rotate(313deg);
  }
  .mobile\:rotate-314,
  .mobile\:hover\:rotate-314:hover,
  .mobile\:focus\:rotate-314:focus,
  .mobile\:group:hover .group-hover\:rotate-314,
  .mobile\:group:focus-within .group-focus-within\:rotate-314 {
    transform: rotate(314deg);
  }
  .mobile\:rotate-315,
  .mobile\:hover\:rotate-315:hover,
  .mobile\:focus\:rotate-315:focus,
  .mobile\:group:hover .group-hover\:rotate-315,
  .mobile\:group:focus-within .group-focus-within\:rotate-315 {
    transform: rotate(315deg);
  }
  .mobile\:rotate-316,
  .mobile\:hover\:rotate-316:hover,
  .mobile\:focus\:rotate-316:focus,
  .mobile\:group:hover .group-hover\:rotate-316,
  .mobile\:group:focus-within .group-focus-within\:rotate-316 {
    transform: rotate(316deg);
  }
  .mobile\:rotate-317,
  .mobile\:hover\:rotate-317:hover,
  .mobile\:focus\:rotate-317:focus,
  .mobile\:group:hover .group-hover\:rotate-317,
  .mobile\:group:focus-within .group-focus-within\:rotate-317 {
    transform: rotate(317deg);
  }
  .mobile\:rotate-318,
  .mobile\:hover\:rotate-318:hover,
  .mobile\:focus\:rotate-318:focus,
  .mobile\:group:hover .group-hover\:rotate-318,
  .mobile\:group:focus-within .group-focus-within\:rotate-318 {
    transform: rotate(318deg);
  }
  .mobile\:rotate-319,
  .mobile\:hover\:rotate-319:hover,
  .mobile\:focus\:rotate-319:focus,
  .mobile\:group:hover .group-hover\:rotate-319,
  .mobile\:group:focus-within .group-focus-within\:rotate-319 {
    transform: rotate(319deg);
  }
  .mobile\:rotate-320,
  .mobile\:hover\:rotate-320:hover,
  .mobile\:focus\:rotate-320:focus,
  .mobile\:group:hover .group-hover\:rotate-320,
  .mobile\:group:focus-within .group-focus-within\:rotate-320 {
    transform: rotate(320deg);
  }
  .mobile\:rotate-321,
  .mobile\:hover\:rotate-321:hover,
  .mobile\:focus\:rotate-321:focus,
  .mobile\:group:hover .group-hover\:rotate-321,
  .mobile\:group:focus-within .group-focus-within\:rotate-321 {
    transform: rotate(321deg);
  }
  .mobile\:rotate-322,
  .mobile\:hover\:rotate-322:hover,
  .mobile\:focus\:rotate-322:focus,
  .mobile\:group:hover .group-hover\:rotate-322,
  .mobile\:group:focus-within .group-focus-within\:rotate-322 {
    transform: rotate(322deg);
  }
  .mobile\:rotate-323,
  .mobile\:hover\:rotate-323:hover,
  .mobile\:focus\:rotate-323:focus,
  .mobile\:group:hover .group-hover\:rotate-323,
  .mobile\:group:focus-within .group-focus-within\:rotate-323 {
    transform: rotate(323deg);
  }
  .mobile\:rotate-324,
  .mobile\:hover\:rotate-324:hover,
  .mobile\:focus\:rotate-324:focus,
  .mobile\:group:hover .group-hover\:rotate-324,
  .mobile\:group:focus-within .group-focus-within\:rotate-324 {
    transform: rotate(324deg);
  }
  .mobile\:rotate-325,
  .mobile\:hover\:rotate-325:hover,
  .mobile\:focus\:rotate-325:focus,
  .mobile\:group:hover .group-hover\:rotate-325,
  .mobile\:group:focus-within .group-focus-within\:rotate-325 {
    transform: rotate(325deg);
  }
  .mobile\:rotate-326,
  .mobile\:hover\:rotate-326:hover,
  .mobile\:focus\:rotate-326:focus,
  .mobile\:group:hover .group-hover\:rotate-326,
  .mobile\:group:focus-within .group-focus-within\:rotate-326 {
    transform: rotate(326deg);
  }
  .mobile\:rotate-327,
  .mobile\:hover\:rotate-327:hover,
  .mobile\:focus\:rotate-327:focus,
  .mobile\:group:hover .group-hover\:rotate-327,
  .mobile\:group:focus-within .group-focus-within\:rotate-327 {
    transform: rotate(327deg);
  }
  .mobile\:rotate-328,
  .mobile\:hover\:rotate-328:hover,
  .mobile\:focus\:rotate-328:focus,
  .mobile\:group:hover .group-hover\:rotate-328,
  .mobile\:group:focus-within .group-focus-within\:rotate-328 {
    transform: rotate(328deg);
  }
  .mobile\:rotate-329,
  .mobile\:hover\:rotate-329:hover,
  .mobile\:focus\:rotate-329:focus,
  .mobile\:group:hover .group-hover\:rotate-329,
  .mobile\:group:focus-within .group-focus-within\:rotate-329 {
    transform: rotate(329deg);
  }
  .mobile\:rotate-330,
  .mobile\:hover\:rotate-330:hover,
  .mobile\:focus\:rotate-330:focus,
  .mobile\:group:hover .group-hover\:rotate-330,
  .mobile\:group:focus-within .group-focus-within\:rotate-330 {
    transform: rotate(330deg);
  }
  .mobile\:rotate-331,
  .mobile\:hover\:rotate-331:hover,
  .mobile\:focus\:rotate-331:focus,
  .mobile\:group:hover .group-hover\:rotate-331,
  .mobile\:group:focus-within .group-focus-within\:rotate-331 {
    transform: rotate(331deg);
  }
  .mobile\:rotate-332,
  .mobile\:hover\:rotate-332:hover,
  .mobile\:focus\:rotate-332:focus,
  .mobile\:group:hover .group-hover\:rotate-332,
  .mobile\:group:focus-within .group-focus-within\:rotate-332 {
    transform: rotate(332deg);
  }
  .mobile\:rotate-333,
  .mobile\:hover\:rotate-333:hover,
  .mobile\:focus\:rotate-333:focus,
  .mobile\:group:hover .group-hover\:rotate-333,
  .mobile\:group:focus-within .group-focus-within\:rotate-333 {
    transform: rotate(333deg);
  }
  .mobile\:rotate-334,
  .mobile\:hover\:rotate-334:hover,
  .mobile\:focus\:rotate-334:focus,
  .mobile\:group:hover .group-hover\:rotate-334,
  .mobile\:group:focus-within .group-focus-within\:rotate-334 {
    transform: rotate(334deg);
  }
  .mobile\:rotate-335,
  .mobile\:hover\:rotate-335:hover,
  .mobile\:focus\:rotate-335:focus,
  .mobile\:group:hover .group-hover\:rotate-335,
  .mobile\:group:focus-within .group-focus-within\:rotate-335 {
    transform: rotate(335deg);
  }
  .mobile\:rotate-336,
  .mobile\:hover\:rotate-336:hover,
  .mobile\:focus\:rotate-336:focus,
  .mobile\:group:hover .group-hover\:rotate-336,
  .mobile\:group:focus-within .group-focus-within\:rotate-336 {
    transform: rotate(336deg);
  }
  .mobile\:rotate-337,
  .mobile\:hover\:rotate-337:hover,
  .mobile\:focus\:rotate-337:focus,
  .mobile\:group:hover .group-hover\:rotate-337,
  .mobile\:group:focus-within .group-focus-within\:rotate-337 {
    transform: rotate(337deg);
  }
  .mobile\:rotate-338,
  .mobile\:hover\:rotate-338:hover,
  .mobile\:focus\:rotate-338:focus,
  .mobile\:group:hover .group-hover\:rotate-338,
  .mobile\:group:focus-within .group-focus-within\:rotate-338 {
    transform: rotate(338deg);
  }
  .mobile\:rotate-339,
  .mobile\:hover\:rotate-339:hover,
  .mobile\:focus\:rotate-339:focus,
  .mobile\:group:hover .group-hover\:rotate-339,
  .mobile\:group:focus-within .group-focus-within\:rotate-339 {
    transform: rotate(339deg);
  }
  .mobile\:rotate-340,
  .mobile\:hover\:rotate-340:hover,
  .mobile\:focus\:rotate-340:focus,
  .mobile\:group:hover .group-hover\:rotate-340,
  .mobile\:group:focus-within .group-focus-within\:rotate-340 {
    transform: rotate(340deg);
  }
  .mobile\:rotate-341,
  .mobile\:hover\:rotate-341:hover,
  .mobile\:focus\:rotate-341:focus,
  .mobile\:group:hover .group-hover\:rotate-341,
  .mobile\:group:focus-within .group-focus-within\:rotate-341 {
    transform: rotate(341deg);
  }
  .mobile\:rotate-342,
  .mobile\:hover\:rotate-342:hover,
  .mobile\:focus\:rotate-342:focus,
  .mobile\:group:hover .group-hover\:rotate-342,
  .mobile\:group:focus-within .group-focus-within\:rotate-342 {
    transform: rotate(342deg);
  }
  .mobile\:rotate-343,
  .mobile\:hover\:rotate-343:hover,
  .mobile\:focus\:rotate-343:focus,
  .mobile\:group:hover .group-hover\:rotate-343,
  .mobile\:group:focus-within .group-focus-within\:rotate-343 {
    transform: rotate(343deg);
  }
  .mobile\:rotate-344,
  .mobile\:hover\:rotate-344:hover,
  .mobile\:focus\:rotate-344:focus,
  .mobile\:group:hover .group-hover\:rotate-344,
  .mobile\:group:focus-within .group-focus-within\:rotate-344 {
    transform: rotate(344deg);
  }
  .mobile\:rotate-345,
  .mobile\:hover\:rotate-345:hover,
  .mobile\:focus\:rotate-345:focus,
  .mobile\:group:hover .group-hover\:rotate-345,
  .mobile\:group:focus-within .group-focus-within\:rotate-345 {
    transform: rotate(345deg);
  }
  .mobile\:rotate-346,
  .mobile\:hover\:rotate-346:hover,
  .mobile\:focus\:rotate-346:focus,
  .mobile\:group:hover .group-hover\:rotate-346,
  .mobile\:group:focus-within .group-focus-within\:rotate-346 {
    transform: rotate(346deg);
  }
  .mobile\:rotate-347,
  .mobile\:hover\:rotate-347:hover,
  .mobile\:focus\:rotate-347:focus,
  .mobile\:group:hover .group-hover\:rotate-347,
  .mobile\:group:focus-within .group-focus-within\:rotate-347 {
    transform: rotate(347deg);
  }
  .mobile\:rotate-348,
  .mobile\:hover\:rotate-348:hover,
  .mobile\:focus\:rotate-348:focus,
  .mobile\:group:hover .group-hover\:rotate-348,
  .mobile\:group:focus-within .group-focus-within\:rotate-348 {
    transform: rotate(348deg);
  }
  .mobile\:rotate-349,
  .mobile\:hover\:rotate-349:hover,
  .mobile\:focus\:rotate-349:focus,
  .mobile\:group:hover .group-hover\:rotate-349,
  .mobile\:group:focus-within .group-focus-within\:rotate-349 {
    transform: rotate(349deg);
  }
  .mobile\:rotate-350,
  .mobile\:hover\:rotate-350:hover,
  .mobile\:focus\:rotate-350:focus,
  .mobile\:group:hover .group-hover\:rotate-350,
  .mobile\:group:focus-within .group-focus-within\:rotate-350 {
    transform: rotate(350deg);
  }
  .mobile\:rotate-351,
  .mobile\:hover\:rotate-351:hover,
  .mobile\:focus\:rotate-351:focus,
  .mobile\:group:hover .group-hover\:rotate-351,
  .mobile\:group:focus-within .group-focus-within\:rotate-351 {
    transform: rotate(351deg);
  }
  .mobile\:rotate-352,
  .mobile\:hover\:rotate-352:hover,
  .mobile\:focus\:rotate-352:focus,
  .mobile\:group:hover .group-hover\:rotate-352,
  .mobile\:group:focus-within .group-focus-within\:rotate-352 {
    transform: rotate(352deg);
  }
  .mobile\:rotate-353,
  .mobile\:hover\:rotate-353:hover,
  .mobile\:focus\:rotate-353:focus,
  .mobile\:group:hover .group-hover\:rotate-353,
  .mobile\:group:focus-within .group-focus-within\:rotate-353 {
    transform: rotate(353deg);
  }
  .mobile\:rotate-354,
  .mobile\:hover\:rotate-354:hover,
  .mobile\:focus\:rotate-354:focus,
  .mobile\:group:hover .group-hover\:rotate-354,
  .mobile\:group:focus-within .group-focus-within\:rotate-354 {
    transform: rotate(354deg);
  }
  .mobile\:rotate-355,
  .mobile\:hover\:rotate-355:hover,
  .mobile\:focus\:rotate-355:focus,
  .mobile\:group:hover .group-hover\:rotate-355,
  .mobile\:group:focus-within .group-focus-within\:rotate-355 {
    transform: rotate(355deg);
  }
  .mobile\:rotate-356,
  .mobile\:hover\:rotate-356:hover,
  .mobile\:focus\:rotate-356:focus,
  .mobile\:group:hover .group-hover\:rotate-356,
  .mobile\:group:focus-within .group-focus-within\:rotate-356 {
    transform: rotate(356deg);
  }
  .mobile\:rotate-357,
  .mobile\:hover\:rotate-357:hover,
  .mobile\:focus\:rotate-357:focus,
  .mobile\:group:hover .group-hover\:rotate-357,
  .mobile\:group:focus-within .group-focus-within\:rotate-357 {
    transform: rotate(357deg);
  }
  .mobile\:rotate-358,
  .mobile\:hover\:rotate-358:hover,
  .mobile\:focus\:rotate-358:focus,
  .mobile\:group:hover .group-hover\:rotate-358,
  .mobile\:group:focus-within .group-focus-within\:rotate-358 {
    transform: rotate(358deg);
  }
  .mobile\:rotate-359,
  .mobile\:hover\:rotate-359:hover,
  .mobile\:focus\:rotate-359:focus,
  .mobile\:group:hover .group-hover\:rotate-359,
  .mobile\:group:focus-within .group-focus-within\:rotate-359 {
    transform: rotate(359deg);
  }
  .mobile\:rotate-360,
  .mobile\:hover\:rotate-360:hover,
  .mobile\:focus\:rotate-360:focus,
  .mobile\:group:hover .group-hover\:rotate-360,
  .mobile\:group:focus-within .group-focus-within\:rotate-360 {
    transform: rotate(360deg);
  }
  .mobile\:scale-0,
  .mobile\:hover\:scale-0:hover,
  .mobile\:focus\:scale-0:focus,
  .mobile\:group:hover .group-hover\:scale-0,
  .mobile\:group:focus-within .group-focus-within\:scale-0 {
    transform: scale(0);
  }
  .mobile\:scale-1,
  .mobile\:hover\:scale-1:hover,
  .mobile\:focus\:scale-1:focus,
  .mobile\:group:hover .group-hover\:scale-1,
  .mobile\:group:focus-within .group-focus-within\:scale-1 {
    transform: scale(0.1);
  }
  .mobile\:scale-2,
  .mobile\:hover\:scale-2:hover,
  .mobile\:focus\:scale-2:focus,
  .mobile\:group:hover .group-hover\:scale-2,
  .mobile\:group:focus-within .group-focus-within\:scale-2 {
    transform: scale(0.2);
  }
  .mobile\:scale-3,
  .mobile\:hover\:scale-3:hover,
  .mobile\:focus\:scale-3:focus,
  .mobile\:group:hover .group-hover\:scale-3,
  .mobile\:group:focus-within .group-focus-within\:scale-3 {
    transform: scale(0.3);
  }
  .mobile\:scale-4,
  .mobile\:hover\:scale-4:hover,
  .mobile\:focus\:scale-4:focus,
  .mobile\:group:hover .group-hover\:scale-4,
  .mobile\:group:focus-within .group-focus-within\:scale-4 {
    transform: scale(0.4);
  }
  .mobile\:scale-5,
  .mobile\:hover\:scale-5:hover,
  .mobile\:focus\:scale-5:focus,
  .mobile\:group:hover .group-hover\:scale-5,
  .mobile\:group:focus-within .group-focus-within\:scale-5 {
    transform: scale(0.5);
  }
  .mobile\:scale-6,
  .mobile\:hover\:scale-6:hover,
  .mobile\:focus\:scale-6:focus,
  .mobile\:group:hover .group-hover\:scale-6,
  .mobile\:group:focus-within .group-focus-within\:scale-6 {
    transform: scale(0.6);
  }
  .mobile\:scale-7,
  .mobile\:hover\:scale-7:hover,
  .mobile\:focus\:scale-7:focus,
  .mobile\:group:hover .group-hover\:scale-7,
  .mobile\:group:focus-within .group-focus-within\:scale-7 {
    transform: scale(0.7);
  }
  .mobile\:scale-8,
  .mobile\:hover\:scale-8:hover,
  .mobile\:focus\:scale-8:focus,
  .mobile\:group:hover .group-hover\:scale-8,
  .mobile\:group:focus-within .group-focus-within\:scale-8 {
    transform: scale(0.8);
  }
  .mobile\:scale-9,
  .mobile\:hover\:scale-9:hover,
  .mobile\:focus\:scale-9:focus,
  .mobile\:group:hover .group-hover\:scale-9,
  .mobile\:group:focus-within .group-focus-within\:scale-9 {
    transform: scale(0.9);
  }
  .mobile\:scale-10,
  .mobile\:hover\:scale-10:hover,
  .mobile\:focus\:scale-10:focus,
  .mobile\:group:hover .group-hover\:scale-10,
  .mobile\:group:focus-within .group-focus-within\:scale-10 {
    transform: scale(1);
  }
  .mobile\:scale-11,
  .mobile\:hover\:scale-11:hover,
  .mobile\:focus\:scale-11:focus,
  .mobile\:group:hover .group-hover\:scale-11,
  .mobile\:group:focus-within .group-focus-within\:scale-11 {
    transform: scale(1.1);
  }
  .mobile\:scale-12,
  .mobile\:hover\:scale-12:hover,
  .mobile\:focus\:scale-12:focus,
  .mobile\:group:hover .group-hover\:scale-12,
  .mobile\:group:focus-within .group-focus-within\:scale-12 {
    transform: scale(1.2);
  }
  .mobile\:scale-13,
  .mobile\:hover\:scale-13:hover,
  .mobile\:focus\:scale-13:focus,
  .mobile\:group:hover .group-hover\:scale-13,
  .mobile\:group:focus-within .group-focus-within\:scale-13 {
    transform: scale(1.3);
  }
  .mobile\:scale-14,
  .mobile\:hover\:scale-14:hover,
  .mobile\:focus\:scale-14:focus,
  .mobile\:group:hover .group-hover\:scale-14,
  .mobile\:group:focus-within .group-focus-within\:scale-14 {
    transform: scale(1.4);
  }
  .mobile\:scale-15,
  .mobile\:hover\:scale-15:hover,
  .mobile\:focus\:scale-15:focus,
  .mobile\:group:hover .group-hover\:scale-15,
  .mobile\:group:focus-within .group-focus-within\:scale-15 {
    transform: scale(1.5);
  }
  .mobile\:scale-16,
  .mobile\:hover\:scale-16:hover,
  .mobile\:focus\:scale-16:focus,
  .mobile\:group:hover .group-hover\:scale-16,
  .mobile\:group:focus-within .group-focus-within\:scale-16 {
    transform: scale(1.6);
  }
  .mobile\:scale-17,
  .mobile\:hover\:scale-17:hover,
  .mobile\:focus\:scale-17:focus,
  .mobile\:group:hover .group-hover\:scale-17,
  .mobile\:group:focus-within .group-focus-within\:scale-17 {
    transform: scale(1.7);
  }
  .mobile\:scale-18,
  .mobile\:hover\:scale-18:hover,
  .mobile\:focus\:scale-18:focus,
  .mobile\:group:hover .group-hover\:scale-18,
  .mobile\:group:focus-within .group-focus-within\:scale-18 {
    transform: scale(1.8);
  }
  .mobile\:scale-19,
  .mobile\:hover\:scale-19:hover,
  .mobile\:focus\:scale-19:focus,
  .mobile\:group:hover .group-hover\:scale-19,
  .mobile\:group:focus-within .group-focus-within\:scale-19 {
    transform: scale(1.9);
  }
  .mobile\:scale-20,
  .mobile\:hover\:scale-20:hover,
  .mobile\:focus\:scale-20:focus,
  .mobile\:group:hover .group-hover\:scale-20,
  .mobile\:group:focus-within .group-focus-within\:scale-20 {
    transform: scale(2);
  }
  .mobile\:scale-21,
  .mobile\:hover\:scale-21:hover,
  .mobile\:focus\:scale-21:focus,
  .mobile\:group:hover .group-hover\:scale-21,
  .mobile\:group:focus-within .group-focus-within\:scale-21 {
    transform: scale(2.1);
  }
  .mobile\:scale-22,
  .mobile\:hover\:scale-22:hover,
  .mobile\:focus\:scale-22:focus,
  .mobile\:group:hover .group-hover\:scale-22,
  .mobile\:group:focus-within .group-focus-within\:scale-22 {
    transform: scale(2.2);
  }
  .mobile\:scale-23,
  .mobile\:hover\:scale-23:hover,
  .mobile\:focus\:scale-23:focus,
  .mobile\:group:hover .group-hover\:scale-23,
  .mobile\:group:focus-within .group-focus-within\:scale-23 {
    transform: scale(2.3);
  }
  .mobile\:scale-24,
  .mobile\:hover\:scale-24:hover,
  .mobile\:focus\:scale-24:focus,
  .mobile\:group:hover .group-hover\:scale-24,
  .mobile\:group:focus-within .group-focus-within\:scale-24 {
    transform: scale(2.4);
  }
  .mobile\:scale-25,
  .mobile\:hover\:scale-25:hover,
  .mobile\:focus\:scale-25:focus,
  .mobile\:group:hover .group-hover\:scale-25,
  .mobile\:group:focus-within .group-focus-within\:scale-25 {
    transform: scale(2.5);
  }
  .mobile\:scale-26,
  .mobile\:hover\:scale-26:hover,
  .mobile\:focus\:scale-26:focus,
  .mobile\:group:hover .group-hover\:scale-26,
  .mobile\:group:focus-within .group-focus-within\:scale-26 {
    transform: scale(2.6);
  }
  .mobile\:scale-27,
  .mobile\:hover\:scale-27:hover,
  .mobile\:focus\:scale-27:focus,
  .mobile\:group:hover .group-hover\:scale-27,
  .mobile\:group:focus-within .group-focus-within\:scale-27 {
    transform: scale(2.7);
  }
  .mobile\:scale-28,
  .mobile\:hover\:scale-28:hover,
  .mobile\:focus\:scale-28:focus,
  .mobile\:group:hover .group-hover\:scale-28,
  .mobile\:group:focus-within .group-focus-within\:scale-28 {
    transform: scale(2.8);
  }
  .mobile\:scale-29,
  .mobile\:hover\:scale-29:hover,
  .mobile\:focus\:scale-29:focus,
  .mobile\:group:hover .group-hover\:scale-29,
  .mobile\:group:focus-within .group-focus-within\:scale-29 {
    transform: scale(2.9);
  }
  .mobile\:scale-30,
  .mobile\:hover\:scale-30:hover,
  .mobile\:focus\:scale-30:focus,
  .mobile\:group:hover .group-hover\:scale-30,
  .mobile\:group:focus-within .group-focus-within\:scale-30 {
    transform: scale(3);
  }
}
.transition-slow {
  transition: var(--transition-slow);
}

.transition-mid {
  transition: var(--transition-mid);
}

.transition-fast {
  transition: var(--transition-fast);
}

@media (max-width: 8640px) {
  .visibility-hidden {
    visibility: hidden;
  }
  .visibility-visible {
    visibility: visible;
  }
  .visibility-initial {
    visibility: initial;
  }
}
@media (max-width: 1024px) {
  .tablet\:visibility-hidden {
    visibility: hidden;
  }
  .tablet\:visibility-visible {
    visibility: visible;
  }
  .tablet\:visibility-initial {
    visibility: initial;
  }
}
@media (max-width: 768px) {
  .mobile\:visibility-hidden {
    visibility: hidden;
  }
  .mobile\:visibility-visible {
    visibility: visible;
  }
  .mobile\:visibility-initial {
    visibility: initial;
  }
}
.hide-on-mobile {
  display: block;
}
@media (width <= 520px) {
  .hide-on-mobile {
    display: none;
  }
}

.show-on-mobile {
  display: none;
}
@media (width <= 520px) {
  .show-on-mobile {
    display: block;
  }
}

.transition-delay-0 {
  transition-delay: 0s;
}

.transition-duration-0 {
  transition-duration: 0s;
}

.animation-delay-0 {
  animation-delay: 0s;
}

.animation-duration-0 {
  animation-duration: 0s;
}

.transition-delay-1 {
  transition-delay: 1s;
}

.transition-duration-1 {
  transition-duration: 1s;
}

.animation-delay-1 {
  animation-delay: 1s;
}

.animation-duration-1 {
  animation-duration: 1s;
}

.transition-delay-2 {
  transition-delay: 2s;
}

.transition-duration-2 {
  transition-duration: 2s;
}

.animation-delay-2 {
  animation-delay: 2s;
}

.animation-duration-2 {
  animation-duration: 2s;
}

.transition-delay-3 {
  transition-delay: 3s;
}

.transition-duration-3 {
  transition-duration: 3s;
}

.animation-delay-3 {
  animation-delay: 3s;
}

.animation-duration-3 {
  animation-duration: 3s;
}

.transition-delay-4 {
  transition-delay: 4s;
}

.transition-duration-4 {
  transition-duration: 4s;
}

.animation-delay-4 {
  animation-delay: 4s;
}

.animation-duration-4 {
  animation-duration: 4s;
}

.transition-delay-5 {
  transition-delay: 5s;
}

.transition-duration-5 {
  transition-duration: 5s;
}

.animation-delay-5 {
  animation-delay: 5s;
}

.animation-duration-5 {
  animation-duration: 5s;
}

.transition-delay-6 {
  transition-delay: 6s;
}

.transition-duration-6 {
  transition-duration: 6s;
}

.animation-delay-6 {
  animation-delay: 6s;
}

.animation-duration-6 {
  animation-duration: 6s;
}

.transition-delay-7 {
  transition-delay: 7s;
}

.transition-duration-7 {
  transition-duration: 7s;
}

.animation-delay-7 {
  animation-delay: 7s;
}

.animation-duration-7 {
  animation-duration: 7s;
}

.transition-delay-8 {
  transition-delay: 8s;
}

.transition-duration-8 {
  transition-duration: 8s;
}

.animation-delay-8 {
  animation-delay: 8s;
}

.animation-duration-8 {
  animation-duration: 8s;
}

.transition-delay-9 {
  transition-delay: 9s;
}

.transition-duration-9 {
  transition-duration: 9s;
}

.animation-delay-9 {
  animation-delay: 9s;
}

.animation-duration-9 {
  animation-duration: 9s;
}

.transition-delay-10 {
  transition-delay: 10s;
}

.transition-duration-10 {
  transition-duration: 10s;
}

.animation-delay-10 {
  animation-delay: 10s;
}

.animation-duration-10 {
  animation-duration: 10s;
}

.transition-delay-11 {
  transition-delay: 11s;
}

.transition-duration-11 {
  transition-duration: 11s;
}

.animation-delay-11 {
  animation-delay: 11s;
}

.animation-duration-11 {
  animation-duration: 11s;
}

.transition-delay-12 {
  transition-delay: 12s;
}

.transition-duration-12 {
  transition-duration: 12s;
}

.animation-delay-12 {
  animation-delay: 12s;
}

.animation-duration-12 {
  animation-duration: 12s;
}

.transition-delay-13 {
  transition-delay: 13s;
}

.transition-duration-13 {
  transition-duration: 13s;
}

.animation-delay-13 {
  animation-delay: 13s;
}

.animation-duration-13 {
  animation-duration: 13s;
}

.transition-delay-14 {
  transition-delay: 14s;
}

.transition-duration-14 {
  transition-duration: 14s;
}

.animation-delay-14 {
  animation-delay: 14s;
}

.animation-duration-14 {
  animation-duration: 14s;
}

.transition-delay-15 {
  transition-delay: 15s;
}

.transition-duration-15 {
  transition-duration: 15s;
}

.animation-delay-15 {
  animation-delay: 15s;
}

.animation-duration-15 {
  animation-duration: 15s;
}

.transition-delay-16 {
  transition-delay: 16s;
}

.transition-duration-16 {
  transition-duration: 16s;
}

.animation-delay-16 {
  animation-delay: 16s;
}

.animation-duration-16 {
  animation-duration: 16s;
}

.transition-delay-17 {
  transition-delay: 17s;
}

.transition-duration-17 {
  transition-duration: 17s;
}

.animation-delay-17 {
  animation-delay: 17s;
}

.animation-duration-17 {
  animation-duration: 17s;
}

.transition-delay-18 {
  transition-delay: 18s;
}

.transition-duration-18 {
  transition-duration: 18s;
}

.animation-delay-18 {
  animation-delay: 18s;
}

.animation-duration-18 {
  animation-duration: 18s;
}

.transition-delay-19 {
  transition-delay: 19s;
}

.transition-duration-19 {
  transition-duration: 19s;
}

.animation-delay-19 {
  animation-delay: 19s;
}

.animation-duration-19 {
  animation-duration: 19s;
}

.transition-delay-20 {
  transition-delay: 20s;
}

.transition-duration-20 {
  transition-duration: 20s;
}

.animation-delay-20 {
  animation-delay: 20s;
}

.animation-duration-20 {
  animation-duration: 20s;
}

@keyframes fly-in-top {
  0% {
    opacity: 0;
    transform: translateY(-1.5rem);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fly-in-bottom {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes pan-left {
  0% {
    opacity: 0;
    transform: translateX(-1.5rem);
  }
  60% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pan-right {
  0% {
    opacity: 0;
    transform: translateX(1.5rem);
  }
  60% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
@keyframes sparkle {
  0% {
    transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }
  25% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
  50% {
    transform: scale(0.3) rotate(720deg);
    opacity: 0;
  }
  100% {
    transform: scale(0.3) rotate(0deg);
    opacity: 0;
  }
}
/*# sourceMappingURL=utilities.css.map */
