@charset "UTF-8";

/*!
 * E-commerce-ui.com
 * Copyright 2025 
 */
:root {
  --neutral-0: #fff;
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #A3B0C2;
  --neutral-500: #6B7C94;
  --neutral-600: #52637A;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
  --neutral-1000: #000;
  --primary-100: #ffedd5;
  --primary-200: #fed7aa;
  --primary-300: #fdba74;
  --primary-400: #fb923c;
  --primary-500: #f97316;
  --primary-600: #d14f09;
  --primary-700: #b13606;
  --primary-800: #87290a;
  --primary-900: #5e1a04;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3780f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #112a6e;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #ef3232;
  --red-600: #d11616;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #671010;
  --green-100: #DBFFE1;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #0dab47;
  --green-600: #0d923e;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #0a4321;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #d14f09;
  --orange-700: #b13606;
  --orange-800: #87290a;
  --orange-900: #5e1a04;
  --yellow-100: #fff6a5;
  --yellow-200: #ffed4a;
  --yellow-300: #ffe11e;
  --yellow-400: #fed507;
  --yellow-500: #E5B800;
  --yellow-600: #D6A400;
  --yellow-700: #B88700;
  --yellow-800: #996B00;
  --yellow-900: #855800;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #3f0b68;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #0c4844;
  --alpha-1: rgba(0, 20, 60, .06);
  --alpha-2: rgba(0, 20, 60, .10);
  --alpha-3: rgba(0, 20, 60, .15);
  --alpha-4: rgba(0, 20, 60, .2);
  --alpha-5: rgba(0, 20, 60, .3);
  --alpha-6: rgba(0, 20, 60, .4);
  --alpha-7: rgba(0, 20, 60, .5);
  --alpha-8: rgba(0, 20, 60, .6);
  --alpha-9: rgba(0, 20, 60, .7);
  --bg-color-base: #fff;
  --bg-color-secondary: var(--neutral-50);
  --border-color-default: var(--neutral-200);
  --text-link-color: var(--primary-500);
  --text-color-base: #000;
  --text-color-secondary: var(--neutral-500);
  --text-color-muted: var(--neutral-400);
  --border-radius-base: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --font-family-base: system-ui, -apple-system, "Helvetica Neue", "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-size-default: 15px;
  --font-size-sm: 0.9rem;
  --line-height-base: 1.4;
  --line-height-sm: 1.25;
  --line-height-lg: 1.8;
  --hero-h: clamp(280px, 28vw, 440px);
  /* Desktop üçün responsiv hündürlük */
  --rb-gap: 12px;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-default, 15px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-base, Arial);
  font-weight: normal;
  font-optical-sizing: auto;
  line-height: var(--line-height-base, 1.4);
  color: var(--text-color-base, #000);
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 640px) {

  html,
  body {
    font-size: 16px;
    font-weight: 500;
  }
}

.scrollbar-thin {
  scrollbar-width: thin;
  scrollbar-color: var(--neutral-300) rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid #85858a;
  opacity: 0.25;
  width: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

dl {
  margin: 0;
}

dt {
  font-weight: 500;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 600;
}

small {
  font-size: var(--font-size-sm, 0.9rem);
}

sub,
sup {
  position: relative;
  font-size: 75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  text-decoration: none;
  color: var(--text-link-color, blue);
}

a:hover {
  text-decoration: none;
}

a.link {
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-color: var(--primary-400);
}

a.link:hover {
  text-decoration: none;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  display: block;
  tab-size: 32px;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  text-wrap: wrap;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
  display: block;
  padding: 8px;
}

code {
  word-wrap: break-word;
  padding: 0px 4px;
  color: #b31b66;
  font-weight: 500;
}

a>code {
  color: inherit;
}

figure {
  margin: 0;
}

img,
svg {
  vertical-align: middle;
  max-width: 100%;
}

img {
  object-fit: cover;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}

th {
  font-weight: 500;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

[role=button] {
  cursor: pointer;
  user-select: none;
}

[role=button]:disabled,
[role=button].disabled {
  opacity: 0.4;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

[role=button]:hover {
  text-decoration: none;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  line-height: inherit;
}

legend+* {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  appearance: textfield;
  outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  user-select: none;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

var {
  font-style: normal;
  line-height: inherit;
}

progress {
  width: 100%;
  overflow: hidden;
  padding: 0px;
  height: 8px;
  display: block;
  border-radius: 4px;
}

.focus-none {
  outline: none !important;
}

.outline-none {
  outline: none !important;
}

.container {
  max-width: 1280px;
}

.container {
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {

  .container,
  .container-fluid {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.row {
  --flex-gap-rows: 0px;
  --flex-gap-cols: 20px;
  gap: 0 !important;
  row-gap: 0 !important;
  column-gap: 0 !important;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-0.5 * var(--flex-gap-cols));
  margin-right: calc(-0.5 * var(--flex-gap-cols));
  margin-top: calc(-1 * var(--flex-gap-rows));
}

.row>* {
  flex: 0 0 auto;
  max-width: 100%;
  width: 100%;
  padding-right: calc(var(--flex-gap-cols)* 0.5);
  padding-left: calc(var(--flex-gap-cols)* 0.5);
  margin-top: var(--flex-gap-rows);
}

.row-cols-auto>* {
  width: auto;
  flex: 0 0 auto !important;
}

.row-cols-1>* {
  width: 100%;
  flex: 0 0 auto !important;
}

.row-cols-2>* {
  width: 50%;
  flex: 0 0 auto !important;
}

.row-cols-3>* {
  width: 33.33333333%;
  flex: 0 0 auto !important;
}

.row-cols-4>* {
  width: 25%;
  flex: 0 0 auto !important;
}

.row-cols-5>* {
  width: 20%;
  flex: 0 0 auto !important;
}

.row-cols-6>* {
  width: 16.66666667%;
  flex: 0 0 auto !important;
}

.row-cols-7>* {
  width: 14.285714%;
  flex: 0 0 auto !important;
}

.row-cols-8>* {
  width: 12.5%;
  flex: 0 0 auto !important;
}

.row-cols-9>* {
  width: 11.111111%;
  flex: 0 0 auto !important;
}

.row-cols-10>* {
  width: 10%;
  flex: 0 0 auto !important;
}

.row-cols-11>* {
  width: 9.09090909%;
  flex: 0 0 auto !important;
}

.row-cols-12>* {
  width: 8.33333333%;
  flex: 0 0 auto !important;
}

@media (max-width: 1199px) {
  .max-lg\:row-cols-auto>* {
    width: auto;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-1>* {
    width: 100%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-2>* {
    width: 50%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-3>* {
    width: 33.3333333333%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-4>* {
    width: 25%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-5>* {
    width: 20%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-6>* {
    width: 16.6666666667%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-7>* {
    width: 14.285714%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-8>* {
    width: 12.5%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-9>* {
    width: 11.111111%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-10>* {
    width: 10%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-11>* {
    width: 9.09090909%;
    flex: 0 0 auto !important;
  }

  .max-lg\:row-cols-12>* {
    width: 8.33333333%;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 920px) {
  .max-md\:row-cols-auto>* {
    width: auto;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-1>* {
    width: 100%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-2>* {
    width: 50%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-3>* {
    width: 33.3333333333%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-4>* {
    width: 25%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-5>* {
    width: 20%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-6>* {
    width: 16.6666666667%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-7>* {
    width: 14.285714%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-8>* {
    width: 12.5%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-9>* {
    width: 11.111111%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-10>* {
    width: 10%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-11>* {
    width: 9.09090909%;
    flex: 0 0 auto !important;
  }

  .max-md\:row-cols-12>* {
    width: 8.33333333%;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 640px) {
  .max-sm\:row-cols-auto>* {
    width: auto;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-1>* {
    width: 100%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-2>* {
    width: 50%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-3>* {
    width: 33.3333333333%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-4>* {
    width: 25%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-5>* {
    width: 20%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-6>* {
    width: 16.6666666667%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-7>* {
    width: 14.285714%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-8>* {
    width: 12.5%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-9>* {
    width: 11.111111%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-10>* {
    width: 10%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-11>* {
    width: 9.09090909%;
    flex: 0 0 auto !important;
  }

  .max-sm\:row-cols-12>* {
    width: 8.33333333%;
    flex: 0 0 auto !important;
  }
}

@media (min-width: 641px) {
  .sm\:row-cols-auto>* {
    width: auto;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-1>* {
    width: 100%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-2>* {
    width: 50%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-3>* {
    width: 33.3333333333%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-4>* {
    width: 25%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-5>* {
    width: 20%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-6>* {
    width: 16.6666666667%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-7>* {
    width: 14.285714%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-8>* {
    width: 12.5%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-9>* {
    width: 11.111111%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-10>* {
    width: 10%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-11>* {
    width: 9.09090909%;
    flex: 0 0 auto !important;
  }

  .sm\:row-cols-12>* {
    width: 8.33333333%;
    flex: 0 0 auto !important;
  }
}

@media (min-width: 921px) {
  .md\:row-cols-auto>* {
    width: auto;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-1>* {
    width: 100%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-2>* {
    width: 50%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-3>* {
    width: 33.3333333333%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-4>* {
    width: 25%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-5>* {
    width: 20%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-6>* {
    width: 16.6666666667%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-7>* {
    width: 14.285714%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-8>* {
    width: 12.5%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-9>* {
    width: 11.111111%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-10>* {
    width: 10%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-11>* {
    width: 9.09090909%;
    flex: 0 0 auto !important;
  }

  .md\:row-cols-12>* {
    width: 8.33333333%;
    flex: 0 0 auto !important;
  }
}

@media (min-width: 1201px) {
  .lg\:row-cols-auto>* {
    width: auto;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-1>* {
    width: 100%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-2>* {
    width: 50%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-3>* {
    width: 33.3333333333%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-4>* {
    width: 25%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-5>* {
    width: 20%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-6>* {
    width: 16.6666666667%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-7>* {
    width: 14.285714%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-8>* {
    width: 12.5%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-9>* {
    width: 11.111111%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-10>* {
    width: 10%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-11>* {
    width: 9.09090909%;
    flex: 0 0 auto !important;
  }

  .lg\:row-cols-12>* {
    width: 8.33333333%;
    flex: 0 0 auto !important;
  }
}

.col {
  flex: 1 0 0;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  width: 8.33333333%;
}

.col-2 {
  width: 16.66666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333333%;
}

.col-5 {
  width: 41.66666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33333333%;
}

.col-8 {
  width: 66.66666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333333%;
}

.col-11 {
  width: 91.66666667%;
}

.col-12 {
  width: 100%;
}

@media (max-width: 1199px) {
  .max-lg\:col {
    flex: 1 0 0;
  }

  .max-lg\:col-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .max-lg\:col-1 {
    width: 8.33333333%;
  }

  .max-lg\:col-2 {
    width: 16.66666667%;
  }

  .max-lg\:col-3 {
    width: 25%;
  }

  .max-lg\:col-4 {
    width: 33.33333333%;
  }

  .max-lg\:col-5 {
    width: 41.66666667%;
  }

  .max-lg\:col-6 {
    width: 50%;
  }

  .max-lg\:col-7 {
    width: 58.33333333%;
  }

  .max-lg\:col-8 {
    width: 66.66666667%;
  }

  .max-lg\:col-9 {
    width: 75%;
  }

  .max-lg\:col-10 {
    width: 83.33333333%;
  }

  .max-lg\:col-11 {
    width: 91.66666667%;
  }

  .max-lg\:col-12 {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .max-md\:col {
    flex: 1 0 0;
  }

  .max-md\:col-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .max-md\:col-1 {
    width: 8.33333333%;
  }

  .max-md\:col-2 {
    width: 16.66666667%;
  }

  .max-md\:col-3 {
    width: 25%;
  }

  .max-md\:col-4 {
    width: 33.33333333%;
  }

  .max-md\:col-5 {
    width: 41.66666667%;
  }

  .max-md\:col-6 {
    width: 50%;
  }

  .max-md\:col-7 {
    width: 58.33333333%;
  }

  .max-md\:col-8 {
    width: 66.66666667%;
  }

  .max-md\:col-9 {
    width: 75%;
  }

  .max-md\:col-10 {
    width: 83.33333333%;
  }

  .max-md\:col-11 {
    width: 91.66666667%;
  }

  .max-md\:col-12 {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .max-sm\:col {
    flex: 1 0 0;
  }

  .max-sm\:col-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .max-sm\:col-1 {
    width: 8.33333333%;
  }

  .max-sm\:col-2 {
    width: 16.66666667%;
  }

  .max-sm\:col-3 {
    width: 25%;
  }

  .max-sm\:col-4 {
    width: 33.33333333%;
  }

  .max-sm\:col-5 {
    width: 41.66666667%;
  }

  .max-sm\:col-6 {
    width: 50%;
  }

  .max-sm\:col-7 {
    width: 58.33333333%;
  }

  .max-sm\:col-8 {
    width: 66.66666667%;
  }

  .max-sm\:col-9 {
    width: 75%;
  }

  .max-sm\:col-10 {
    width: 83.33333333%;
  }

  .max-sm\:col-11 {
    width: 91.66666667%;
  }

  .max-sm\:col-12 {
    width: 100%;
  }
}

@media (min-width: 641px) {
  .sm\:col {
    flex: 1 0 0;
  }

  .sm\:col-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .sm\:col-1 {
    width: 8.33333333%;
  }

  .sm\:col-2 {
    width: 16.66666667%;
  }

  .sm\:col-3 {
    width: 25%;
  }

  .sm\:col-4 {
    width: 33.33333333%;
  }

  .sm\:col-5 {
    width: 41.66666667%;
  }

  .sm\:col-6 {
    width: 50%;
  }

  .sm\:col-7 {
    width: 58.33333333%;
  }

  .sm\:col-8 {
    width: 66.66666667%;
  }

  .sm\:col-9 {
    width: 75%;
  }

  .sm\:col-10 {
    width: 83.33333333%;
  }

  .sm\:col-11 {
    width: 91.66666667%;
  }

  .sm\:col-12 {
    width: 100%;
  }
}

@media (min-width: 921px) {
  .md\:col {
    flex: 1 0 0;
  }

  .md\:col-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .md\:col-1 {
    width: 8.33333333%;
  }

  .md\:col-2 {
    width: 16.66666667%;
  }

  .md\:col-3 {
    width: 25%;
  }

  .md\:col-4 {
    width: 33.33333333%;
  }

  .md\:col-5 {
    width: 41.66666667%;
  }

  .md\:col-6 {
    width: 50%;
  }

  .md\:col-7 {
    width: 58.33333333%;
  }

  .md\:col-8 {
    width: 66.66666667%;
  }

  .md\:col-9 {
    width: 75%;
  }

  .md\:col-10 {
    width: 83.33333333%;
  }

  .md\:col-11 {
    width: 91.66666667%;
  }

  .md\:col-12 {
    width: 100%;
  }
}

@media (min-width: 1201px) {
  .lg\:col {
    flex: 1 0 0;
  }

  .lg\:col-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .lg\:col-1 {
    width: 8.33333333%;
  }

  .lg\:col-2 {
    width: 16.66666667%;
  }

  .lg\:col-3 {
    width: 25%;
  }

  .lg\:col-4 {
    width: 33.33333333%;
  }

  .lg\:col-5 {
    width: 41.66666667%;
  }

  .lg\:col-6 {
    width: 50%;
  }

  .lg\:col-7 {
    width: 58.33333333%;
  }

  .lg\:col-8 {
    width: 66.66666667%;
  }

  .lg\:col-9 {
    width: 75%;
  }

  .lg\:col-10 {
    width: 83.33333333%;
  }

  .lg\:col-11 {
    width: 91.66666667%;
  }

  .lg\:col-12 {
    width: 100%;
  }
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-none {
  grid-template-columns: none;
}

.grid-cols-subgrid {
  grid-template-columns: subgrid;
}

.grid-col-auto {
  grid-column: auto;
}

.col-span-1 {
  grid-column: auto/span 1;
}

.col-span-2 {
  grid-column: auto/span 2;
}

.col-span-3 {
  grid-column: auto/span 3;
}

.col-span-4 {
  grid-column: auto/span 4;
}

.col-span-5 {
  grid-column: auto/span 5;
}

.col-span-6 {
  grid-column: auto/span 6;
}

.col-span-7 {
  grid-column: auto/span 7;
}

.col-span-8 {
  grid-column: auto/span 8;
}

.col-span-9 {
  grid-column: auto/span 9;
}

.col-span-10 {
  grid-column: auto/span 10;
}

.col-span-11 {
  grid-column: auto/span 11;
}

.col-span-12 {
  grid-column: auto/span 12;
}

.col-span-full {
  grid-column: 1/-1;
}

.grid-row-auto {
  grid-row: auto;
}

.row-span-1 {
  grid-row: auto/span 1;
}

.row-span-2 {
  grid-row: auto/span 2;
}

.row-span-3 {
  grid-row: auto/span 3;
}

.row-span-4 {
  grid-row: auto/span 4;
}

.row-span-5 {
  grid-row: auto/span 5;
}

.row-span-6 {
  grid-row: auto/span 6;
}

.row-span-7 {
  grid-row: auto/span 7;
}

.row-span-8 {
  grid-row: auto/span 8;
}

.row-span-9 {
  grid-row: auto/span 9;
}

.row-span-10 {
  grid-row: auto/span 10;
}

.row-span-11 {
  grid-row: auto/span 11;
}

.row-span-12 {
  grid-row: auto/span 12;
}

.row-span-full {
  grid-row: 1/-1;
}

@media (max-width: 1199px) {
  .max-lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .max-lg\:grid-cols-none {
    grid-template-columns: none;
  }

  .max-lg\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }

  .max-lg\:col-auto {
    grid-column: auto;
  }

  .max-lg\:col-span-1 {
    grid-column: auto/span 1;
  }

  .max-lg\:col-span-2 {
    grid-column: auto/span 2;
  }

  .max-lg\:col-span-3 {
    grid-column: auto/span 3;
  }

  .max-lg\:col-span-4 {
    grid-column: auto/span 4;
  }

  .max-lg\:col-span-5 {
    grid-column: auto/span 5;
  }

  .max-lg\:col-span-6 {
    grid-column: auto/span 6;
  }

  .max-lg\:col-span-7 {
    grid-column: auto/span 7;
  }

  .max-lg\:col-span-8 {
    grid-column: auto/span 8;
  }

  .max-lg\:col-span-9 {
    grid-column: auto/span 9;
  }

  .max-lg\:col-span-10 {
    grid-column: auto/span 10;
  }

  .max-lg\:col-span-11 {
    grid-column: auto/span 11;
  }

  .max-lg\:col-span-12 {
    grid-column: auto/span 12;
  }

  .max-lg\:col-span-full {
    grid-column: 1/-1;
  }

  .max-lgrow-auto {
    grid-row: auto;
  }

  .max-lgrow-span-1 {
    grid-row: auto/span 1;
  }

  .max-lgrow-span-2 {
    grid-row: auto/span 2;
  }

  .max-lgrow-span-3 {
    grid-row: auto/span 3;
  }

  .max-lgrow-span-4 {
    grid-row: auto/span 4;
  }

  .max-lgrow-span-5 {
    grid-row: auto/span 5;
  }

  .max-lgrow-span-6 {
    grid-row: auto/span 6;
  }

  .max-lgrow-span-7 {
    grid-row: auto/span 7;
  }

  .max-lgrow-span-8 {
    grid-row: auto/span 8;
  }

  .max-lgrow-span-9 {
    grid-row: auto/span 9;
  }

  .max-lgrow-span-10 {
    grid-row: auto/span 10;
  }

  .max-lgrow-span-11 {
    grid-row: auto/span 11;
  }

  .max-lgrow-span-12 {
    grid-row: auto/span 12;
  }

  .max-lgrow-span-full {
    grid-row: 1/-1;
  }
}

@media (max-width: 920px) {
  .max-md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .max-md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .max-md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .max-md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .max-md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .max-md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .max-md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .max-md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .max-md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .max-md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .max-md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .max-md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .max-md\:grid-cols-none {
    grid-template-columns: none;
  }

  .max-md\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }

  .max-md\:col-auto {
    grid-column: auto;
  }

  .max-md\:col-span-1 {
    grid-column: auto/span 1;
  }

  .max-md\:col-span-2 {
    grid-column: auto/span 2;
  }

  .max-md\:col-span-3 {
    grid-column: auto/span 3;
  }

  .max-md\:col-span-4 {
    grid-column: auto/span 4;
  }

  .max-md\:col-span-5 {
    grid-column: auto/span 5;
  }

  .max-md\:col-span-6 {
    grid-column: auto/span 6;
  }

  .max-md\:col-span-7 {
    grid-column: auto/span 7;
  }

  .max-md\:col-span-8 {
    grid-column: auto/span 8;
  }

  .max-md\:col-span-9 {
    grid-column: auto/span 9;
  }

  .max-md\:col-span-10 {
    grid-column: auto/span 10;
  }

  .max-md\:col-span-11 {
    grid-column: auto/span 11;
  }

  .max-md\:col-span-12 {
    grid-column: auto/span 12;
  }

  .max-md\:col-span-full {
    grid-column: 1/-1;
  }

  .max-mdrow-auto {
    grid-row: auto;
  }

  .max-mdrow-span-1 {
    grid-row: auto/span 1;
  }

  .max-mdrow-span-2 {
    grid-row: auto/span 2;
  }

  .max-mdrow-span-3 {
    grid-row: auto/span 3;
  }

  .max-mdrow-span-4 {
    grid-row: auto/span 4;
  }

  .max-mdrow-span-5 {
    grid-row: auto/span 5;
  }

  .max-mdrow-span-6 {
    grid-row: auto/span 6;
  }

  .max-mdrow-span-7 {
    grid-row: auto/span 7;
  }

  .max-mdrow-span-8 {
    grid-row: auto/span 8;
  }

  .max-mdrow-span-9 {
    grid-row: auto/span 9;
  }

  .max-mdrow-span-10 {
    grid-row: auto/span 10;
  }

  .max-mdrow-span-11 {
    grid-row: auto/span 11;
  }

  .max-mdrow-span-12 {
    grid-row: auto/span 12;
  }

  .max-mdrow-span-full {
    grid-row: 1/-1;
  }
}

@media (max-width: 640px) {
  .max-sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .max-sm\:grid-cols-none {
    grid-template-columns: none;
  }

  .max-sm\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }

  .max-sm\:col-auto {
    grid-column: auto;
  }

  .max-sm\:col-span-1 {
    grid-column: auto/span 1;
  }

  .max-sm\:col-span-2 {
    grid-column: auto/span 2;
  }

  .max-sm\:col-span-3 {
    grid-column: auto/span 3;
  }

  .max-sm\:col-span-4 {
    grid-column: auto/span 4;
  }

  .max-sm\:col-span-5 {
    grid-column: auto/span 5;
  }

  .max-sm\:col-span-6 {
    grid-column: auto/span 6;
  }

  .max-sm\:col-span-7 {
    grid-column: auto/span 7;
  }

  .max-sm\:col-span-8 {
    grid-column: auto/span 8;
  }

  .max-sm\:col-span-9 {
    grid-column: auto/span 9;
  }

  .max-sm\:col-span-10 {
    grid-column: auto/span 10;
  }

  .max-sm\:col-span-11 {
    grid-column: auto/span 11;
  }

  .max-sm\:col-span-12 {
    grid-column: auto/span 12;
  }

  .max-sm\:col-span-full {
    grid-column: 1/-1;
  }

  .max-smrow-auto {
    grid-row: auto;
  }

  .max-smrow-span-1 {
    grid-row: auto/span 1;
  }

  .max-smrow-span-2 {
    grid-row: auto/span 2;
  }

  .max-smrow-span-3 {
    grid-row: auto/span 3;
  }

  .max-smrow-span-4 {
    grid-row: auto/span 4;
  }

  .max-smrow-span-5 {
    grid-row: auto/span 5;
  }

  .max-smrow-span-6 {
    grid-row: auto/span 6;
  }

  .max-smrow-span-7 {
    grid-row: auto/span 7;
  }

  .max-smrow-span-8 {
    grid-row: auto/span 8;
  }

  .max-smrow-span-9 {
    grid-row: auto/span 9;
  }

  .max-smrow-span-10 {
    grid-row: auto/span 10;
  }

  .max-smrow-span-11 {
    grid-row: auto/span 11;
  }

  .max-smrow-span-12 {
    grid-row: auto/span 12;
  }

  .max-smrow-span-full {
    grid-row: 1/-1;
  }
}

@media (min-width: 641px) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .sm\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .sm\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .sm\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .sm\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .sm\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .sm\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .sm\:grid-cols-none {
    grid-template-columns: none;
  }

  .sm\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }

  .sm\:col-auto {
    grid-column: auto;
  }

  .sm\:col-span-1 {
    grid-column: auto/span 1;
  }

  .sm\:col-span-2 {
    grid-column: auto/span 2;
  }

  .sm\:col-span-3 {
    grid-column: auto/span 3;
  }

  .sm\:col-span-4 {
    grid-column: auto/span 4;
  }

  .sm\:col-span-5 {
    grid-column: auto/span 5;
  }

  .sm\:col-span-6 {
    grid-column: auto/span 6;
  }

  .sm\:col-span-7 {
    grid-column: auto/span 7;
  }

  .sm\:col-span-8 {
    grid-column: auto/span 8;
  }

  .sm\:col-span-9 {
    grid-column: auto/span 9;
  }

  .sm\:col-span-10 {
    grid-column: auto/span 10;
  }

  .sm\:col-span-11 {
    grid-column: auto/span 11;
  }

  .sm\:col-span-12 {
    grid-column: auto/span 12;
  }

  .sm\:col-span-full {
    grid-column: 1/-1;
  }

  .smrow-auto {
    grid-row: auto;
  }

  .smrow-span-1 {
    grid-row: auto/span 1;
  }

  .smrow-span-2 {
    grid-row: auto/span 2;
  }

  .smrow-span-3 {
    grid-row: auto/span 3;
  }

  .smrow-span-4 {
    grid-row: auto/span 4;
  }

  .smrow-span-5 {
    grid-row: auto/span 5;
  }

  .smrow-span-6 {
    grid-row: auto/span 6;
  }

  .smrow-span-7 {
    grid-row: auto/span 7;
  }

  .smrow-span-8 {
    grid-row: auto/span 8;
  }

  .smrow-span-9 {
    grid-row: auto/span 9;
  }

  .smrow-span-10 {
    grid-row: auto/span 10;
  }

  .smrow-span-11 {
    grid-row: auto/span 11;
  }

  .smrow-span-12 {
    grid-row: auto/span 12;
  }

  .smrow-span-full {
    grid-row: 1/-1;
  }
}

@media (min-width: 921px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .md\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .md\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .md\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .md\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:grid-cols-none {
    grid-template-columns: none;
  }

  .md\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }

  .md\:col-auto {
    grid-column: auto;
  }

  .md\:col-span-1 {
    grid-column: auto/span 1;
  }

  .md\:col-span-2 {
    grid-column: auto/span 2;
  }

  .md\:col-span-3 {
    grid-column: auto/span 3;
  }

  .md\:col-span-4 {
    grid-column: auto/span 4;
  }

  .md\:col-span-5 {
    grid-column: auto/span 5;
  }

  .md\:col-span-6 {
    grid-column: auto/span 6;
  }

  .md\:col-span-7 {
    grid-column: auto/span 7;
  }

  .md\:col-span-8 {
    grid-column: auto/span 8;
  }

  .md\:col-span-9 {
    grid-column: auto/span 9;
  }

  .md\:col-span-10 {
    grid-column: auto/span 10;
  }

  .md\:col-span-11 {
    grid-column: auto/span 11;
  }

  .md\:col-span-12 {
    grid-column: auto/span 12;
  }

  .md\:col-span-full {
    grid-column: 1/-1;
  }

  .mdrow-auto {
    grid-row: auto;
  }

  .mdrow-span-1 {
    grid-row: auto/span 1;
  }

  .mdrow-span-2 {
    grid-row: auto/span 2;
  }

  .mdrow-span-3 {
    grid-row: auto/span 3;
  }

  .mdrow-span-4 {
    grid-row: auto/span 4;
  }

  .mdrow-span-5 {
    grid-row: auto/span 5;
  }

  .mdrow-span-6 {
    grid-row: auto/span 6;
  }

  .mdrow-span-7 {
    grid-row: auto/span 7;
  }

  .mdrow-span-8 {
    grid-row: auto/span 8;
  }

  .mdrow-span-9 {
    grid-row: auto/span 9;
  }

  .mdrow-span-10 {
    grid-row: auto/span 10;
  }

  .mdrow-span-11 {
    grid-row: auto/span 11;
  }

  .mdrow-span-12 {
    grid-row: auto/span 12;
  }

  .mdrow-span-full {
    grid-row: 1/-1;
  }
}

@media (min-width: 1201px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .lg\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:grid-cols-none {
    grid-template-columns: none;
  }

  .lg\:grid-cols-subgrid {
    grid-template-columns: subgrid;
  }

  .lg\:col-auto {
    grid-column: auto;
  }

  .lg\:col-span-1 {
    grid-column: auto/span 1;
  }

  .lg\:col-span-2 {
    grid-column: auto/span 2;
  }

  .lg\:col-span-3 {
    grid-column: auto/span 3;
  }

  .lg\:col-span-4 {
    grid-column: auto/span 4;
  }

  .lg\:col-span-5 {
    grid-column: auto/span 5;
  }

  .lg\:col-span-6 {
    grid-column: auto/span 6;
  }

  .lg\:col-span-7 {
    grid-column: auto/span 7;
  }

  .lg\:col-span-8 {
    grid-column: auto/span 8;
  }

  .lg\:col-span-9 {
    grid-column: auto/span 9;
  }

  .lg\:col-span-10 {
    grid-column: auto/span 10;
  }

  .lg\:col-span-11 {
    grid-column: auto/span 11;
  }

  .lg\:col-span-12 {
    grid-column: auto/span 12;
  }

  .lg\:col-span-full {
    grid-column: 1/-1;
  }

  .lgrow-auto {
    grid-row: auto;
  }

  .lgrow-span-1 {
    grid-row: auto/span 1;
  }

  .lgrow-span-2 {
    grid-row: auto/span 2;
  }

  .lgrow-span-3 {
    grid-row: auto/span 3;
  }

  .lgrow-span-4 {
    grid-row: auto/span 4;
  }

  .lgrow-span-5 {
    grid-row: auto/span 5;
  }

  .lgrow-span-6 {
    grid-row: auto/span 6;
  }

  .lgrow-span-7 {
    grid-row: auto/span 7;
  }

  .lgrow-span-8 {
    grid-row: auto/span 8;
  }

  .lgrow-span-9 {
    grid-row: auto/span 9;
  }

  .lgrow-span-10 {
    grid-row: auto/span 10;
  }

  .lgrow-span-11 {
    grid-row: auto/span 11;
  }

  .lgrow-span-12 {
    grid-row: auto/span 12;
  }

  .lgrow-span-full {
    grid-row: 1/-1;
  }
}

.avatar {
  font-size: var(--font-size, 1.5rem);
  width: var(--size, 40px);
  height: var(--size, 40px);
  background-color: var(--primary-500, teal);
  color: #ffffffaf;
  object-fit: cover;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 500;
  white-space: nowrap;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-xs {
  width: 24px;
  height: 24px;
  font-size: 1rem;
}

.avatar-sm {
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
}

.avatar-md {
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
}

.avatar-lg {
  width: 48px;
  height: 48px;
  font-size: 3rem;
}

.avatar-xl {
  width: 60px;
  height: 60px;
  font-size: 3rem;
}

.avatar-2xl {
  width: 120px;
  height: 120px;
  font-size: 4rem;
}

.alert {
  --alert-bg-color: transparent;
  --alert-text-color: inherit;
  color: var(--alert-text-color);
  background-color: var(--alert-bg-color);
  position: relative;
  padding: 12px;
  margin-bottom: 1rem;
  border: transparent;
  border-radius: var(--border-radius-base);
  margin-bottom: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.alert svg,
.alert .icon,
.alert img {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.alert-danger {
  --alert-text-color: var(--text-color-red);
  --alert-bg-color: var(--red-100);
}

.alert-warning {
  --alert-text-color: var(--text-color-orange);
  --alert-bg-color: var(--orange-100);
}

.alert-success {
  --alert-text-color: var(--text-color-green);
  --alert-bg-color: var(--green-100);
}

.alert-info {
  --alert-text-color: var(--text-color-blue);
  --alert-bg-color: var(--blue-100);
}

.btn {
  --btn-size-sm: 32px;
  --btn-size-md: 40px;
  --btn-size-lg: 44px;
  --btn-size-xl: 56px;
  --btn-padding-x: 12px;
  --btn-padding-y: 6px;
  --btn-font-size-md: 1rem;
  --btn-font-size-sm: 0.96rem;
  --btn-font-size-lg: 1.1rem;
  --btn-font-size-xl: 1.14rem;
  --btn-font-weight: 400;
  --btn-bg: transparent;
  --btn-bg-hover: var(--alpha-1);
  --btn-border-color: transparent;
  --btn-border-hover-color: transparent;
  --btn-text-color: inherit;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: var(--btn-size-md);
  min-width: var(--btn-size-sm);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: var(--btn-font-size-md);
  font-weight: var(--btn-font-weight);
  background-color: var(--btn-bg);
  border: 1px solid var(--btn-border-color);
  border-radius: var(--border-radius-base);
  color: var(--btn-text-color);
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  user-select: none;
  gap: 8px;
}

.btn svg,
.btn .icon,
.btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn:hover {
  background-color: var(--btn-bg-hover);
  border-color: var(--btn-border-hover-color);
  text-decoration: none;
}

.btn:active {
  box-shadow: 0 3px 6px rgba(64, 64, 64, 0.2) inset;
}

.btn-xl {
  padding-left: 20px;
  padding-right: 20px;
  height: var(--btn-size-xl);
  font-size: var(--btn-font-size-xl);
  border-radius: 10px;
}

.btn-lg {
  padding-left: 12px;
  padding-right: 12px;
  height: var(--btn-size-lg);
  font-size: var(--btn-font-size-lg);
}

.btn-lg svg,
.btn-lg .icon,
.btn-lg img {
  width: 24px;
  height: 24px;
}

.btn-sm {
  padding-left: 8px;
  padding-right: 8px;
  height: var(--btn-size-sm);
  font-size: var(--btn-font-size-sm);
}

.btn-sm svg,
.btn-sm .icon,
.btn-sm img {
  width: 18px;
  height: 18px;
}

.btn-icon {
  width: var(--btn-size-md);
  padding-left: 0;
  padding-right: 0;
}

.btn-lg.btn-icon {
  width: var(--btn-size-lg);
  padding-left: 0;
  padding-right: 0;
}

.btn-lg.btn-icon svg,
.btn-lg.btn-icon .icon,
.btn-lg.btn-icon img {
  width: 24px;
  height: 24px;
}

.btn-xl.btn-icon {
  width: var(--btn-size-xl);
  padding-left: 0;
  padding-right: 0;
}

.btn-xl.btn-icon svg,
.btn-xl.btn-icon .icon,
.btn-xl.btn-icon img {
  width: 24px;
  height: 24px;
}

.btn-sm.btn-icon {
  width: var(--btn-size-sm);
  padding-left: 0;
  padding-right: 0;
}

.btn-neutral {
  --btn-bg: var(--neutral-500);
  --btn-bg-hover: var(--neutral-600);
  --btn-text-color: #fff;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset, 0 -4px 4px rgba(128, 128, 128, 0.1) inset;
}

.btn-primary {
  --btn-bg: var(--primary-500);
  --btn-bg-hover: var(--primary-600);
  --btn-text-color: #fff;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset, 0 -4px 4px rgba(128, 128, 128, 0.1) inset;
}

.btn-blue {
  --btn-bg: var(--blue-500);
  --btn-bg-hover: var(--blue-600);
  --btn-text-color: #fff;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset, 0 -4px 4px rgba(128, 128, 128, 0.1) inset;
}

.btn-red {
  --btn-bg: var(--red-500);
  --btn-bg-hover: var(--red-600);
  --btn-text-color: #fff;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset, 0 -4px 4px rgba(128, 128, 128, 0.1) inset;
}

.btn-green {
  --btn-bg: var(--green-500);
  --btn-bg-hover: var(--green-600);
  --btn-text-color: #fff;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset, 0 -4px 4px rgba(128, 128, 128, 0.1) inset;
}

.btn-orange {
  --btn-bg: var(--orange-500);
  --btn-bg-hover: var(--orange-600);
  --btn-text-color: #fff;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset, 0 -4px 4px rgba(128, 128, 128, 0.1) inset;
}

.btn-yellow {
  --btn-bg: var(--yellow-500);
  --btn-bg-hover: var(--yellow-600);
  --btn-text-color: #fff;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset, 0 -4px 4px rgba(128, 128, 128, 0.1) inset;
}

.btn-purple {
  --btn-bg: var(--purple-500);
  --btn-bg-hover: var(--purple-600);
  --btn-text-color: #fff;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset, 0 -4px 4px rgba(128, 128, 128, 0.1) inset;
}

.btn-teal {
  --btn-bg: var(--teal-500);
  --btn-bg-hover: var(--teal-600);
  --btn-text-color: #fff;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset, 0 -4px 4px rgba(128, 128, 128, 0.1) inset;
}

.btn-neutral-subtle {
  --btn-bg: var(--neutral-100);
  --btn-bg-hover: var(--neutral-200);
  --btn-text-color: var(--neutral-700);
}

.btn-primary-subtle {
  --btn-bg: var(--primary-100);
  --btn-bg-hover: var(--primary-200);
  --btn-text-color: var(--primary-700);
}

.btn-blue-subtle {
  --btn-bg: var(--blue-100);
  --btn-bg-hover: var(--blue-200);
  --btn-text-color: var(--blue-700);
}

.btn-red-subtle {
  --btn-bg: var(--red-100);
  --btn-bg-hover: var(--red-200);
  --btn-text-color: var(--red-700);
}

.btn-green-subtle {
  --btn-bg: var(--green-100);
  --btn-bg-hover: var(--green-200);
  --btn-text-color: var(--green-700);
}

.btn-orange-subtle {
  --btn-bg: var(--orange-100);
  --btn-bg-hover: var(--orange-200);
  --btn-text-color: var(--orange-700);
}

.btn-yellow-subtle {
  --btn-bg: var(--yellow-100);
  --btn-bg-hover: var(--yellow-200);
  --btn-text-color: var(--yellow-700);
}

.btn-purple-subtle {
  --btn-bg: var(--purple-100);
  --btn-bg-hover: var(--purple-200);
  --btn-text-color: var(--purple-700);
}

.btn-teal-subtle {
  --btn-bg: var(--teal-100);
  --btn-bg-hover: var(--teal-200);
  --btn-text-color: var(--teal-700);
}

.btn-default,
.btn-secondary {
  --btn-bg: var(--bg-color-base);
  --btn-bg-hover: var(--bg-color-base);
  --btn-text-color: var(--text-color-base);
  --btn-border-color: var(--neutral-300);
  --btn-border-hover-color: var(--neutral-400);
  box-shadow: 0 -2px 0 0 rgba(64, 64, 64, 0.1) inset;
}

.btn-outline {
  --btn-bg: transparent;
  --btn-bg-hover: var(--alpha-1);
  --btn-text-color: var(--text-color-primary);
  --btn-border-color: var(--primary-500);
  --btn-border-hover-color: var(--primary-500);
}

.btn-neutral {
  --btn-bg: var(--alpha-2);
  --btn-bg-hover: var(--alpha-3);
  --btn-text-color: var(--text-color-base);
  box-shadow: none !important;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--bg-color-base);
  background-clip: border-box;
  border-radius: var(--border-radius-base);
}

.card img {
  max-width: 100%;
}

a.card {
  text-decoration: none;
  color: inherit;
}

.card-body {
  flex: 1 1 auto;
  padding: 24px 24px;
}

dialog:not([open]) {
  display: none;
}

dialog {
  z-index: 99999;
  overflow: hidden;
  padding: 0;
  width: 90%;
  max-width: 620px;
  top: 0;
  margin-top: 8%;
  background-color: var(--bg-color-base);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: var(--font-size-default);
  color: var(--text-color-base);
  border: 1px solid var(--border-color-default);
  border-radius: var(--border-radius-base);
}

dialog img,
dialog svg {
  max-width: 100%;
}

.dialog-xl {
  max-width: 1024px;
}

.dialog-lg {
  max-width: 760px;
}

.dialog-md {
  max-width: 620px;
}

.dialog-sm {
  max-width: 360px;
}

dialog::backdrop {
  background: rgba(70, 70, 90, 0.8);
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  padding-left: 16px;
  border-bottom: 1px solid var(--border-color-default);
  gap: 4px;
}

.dialog-body {
  padding: 16px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--neutral-400) rgba(0, 0, 0, 0);
  max-height: 70vh;
}

.dialog-bottom {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 4px;
  border-top: 1px solid var(--border-color-default);
}

.dialog-aside-left,
.dialog-aside-right {
  margin-top: 0;
  margin-bottom: 0;
  max-height: none;
  max-height: 100vh;
  border-radius: 0;
  height: 100%;
}

.dialog-aside-left .dialog-body,
.dialog-aside-right .dialog-body {
  max-height: none;
  max-height: 92vh;
}

.dialog-aside-left {
  margin-left: 0;
  left: 0;
}

.dialog-aside-right {
  margin-right: 0;
  right: 0;
}

.btn-close-dialog {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  margin: 8px;
  padding: 4px;
  min-width: 32px;
  height: 32px;
  color: var(--text-color-secondary);
  background-color: transparent;
  border: 0;
  border-radius: var(--border-radius-base);
}

.btn-close-dialog svg,
.btn-close-dialog .icon,
.btn-close-dialog img {
  max-width: 20px;
  max-height: 20px;
  min-width: 16px;
  min-height: 16px;
}

.btn-close-dialog:hover {
  background-color: var(--alpha-2);
  text-decoration: none;
}

.btn-close-dialog:active {
  transform: translateY(1px);
  box-shadow: 0 3px 6px rgba(64, 64, 64, 0.2) inset;
}

.overlay,
.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background: rgba(70, 70, 90, 0.8);
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: middle;
  border-color: var(--border-color-default);
}

.table tr>td,
.table tr>th {
  padding: 0.5rem 0.5rem;
  border-bottom-width: 1px;
}

.table>tbody {
  vertical-align: inherit;
}

.table>thead {
  vertical-align: bottom;
  background-color: var(--neutral-100);
}

.table td:not(:first-child) {
  min-width: 110px;
}

.table>tbody>tr:has(input[type=checkbox]:checked)>* {
  background-color: var(--primary-100) !important;
}

.table-bordered> :not(caption)>* {
  border-width: 1px 0;
}

.table-bordered> :not(caption)>*>* {
  border-width: 0 1px;
}

.table-borderless> :not(caption)>*>* {
  border-bottom-width: 0;
}

.table-borderless> :not(:first-child) {
  border-top-width: 0;
}

.table-striped>tbody>tr:nth-of-type(even)>* {
  background-color: var(--neutral-100);
}

.table-striped-cols> :not(caption)>tr> :nth-child(even) {
  background-color: var(--neutral-100);
}

.table-hover>tbody>tr:hover>* {
  background-color: var(--neutral-100);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table {
  min-width: 400px;
}

.form-label {
  margin-bottom: 0.4rem;
}

.form-control {
  height: 40px;
  background-color: var(--neutral-50);
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-base);
  display: block;
  min-width: 80px;
  width: 100%;
  padding: 0.4rem 0.6rem;
  line-height: 1.4;
  appearance: none;
  background-clip: padding-box;
}

.form-control[type=file] {
  overflow: hidden;
}

.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  outline-offset: 1px;
  outline-color: var(--primary-500);
}

.form-control:hover {
  border-color: var(--neutral-400);
}

.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}

.form-control::placeholder {
  color: var(--text-color-muted);
  opacity: 1;
}

.form-control:disabled {
  color: var(--text-color-muted);
  background-color: var(--neutral-200);
  border-color: var(--neutral-200);
  opacity: 0.9;
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

.form-select {
  --icon-arrow: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  min-width: 120px;
  width: 100%;
  height: 40px;
  padding: 0.4rem 0.6rem;
  padding-right: 32px;
  line-height: 1.4;
  appearance: none;
  background-color: var(--neutral-50);
  background-image: var(--icon-arrow);
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 16px 12px;
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-base);
}

.form-select:focus {
  border-color: var(--primary-500);
  outline: 0;
  box-shadow: 0 0 0 1px blue;
}

.form-select:hover {
  border-color: var(--neutral-500);
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

.form-select:disabled {
  background-color: var(--neutral-200);
}

.form-check-input:checked[type=checkbox] {
  --form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
  --form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--primary-100);
  background-image: var(--form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--primary-400);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}

.form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check-input:active {
  filter: brightness(90%);
}

.form-check-input:focus,
.form-check-input:focus-visible {
  outline-offset: 3px;
  outline-style: #0d6efd;
}

.form-check-input:checked {
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}

.form-check-input:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.form-check-input[disabled]~.form-check-label,
.form-check-input:disabled~.form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-check {
  display: flex;
  align-items: center;
  min-height: 1.5rem;
}

.form-check .form-check-input {
  float: left;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}

.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.card-check {
  width: 100%;
  border: 1px solid var(--neutral-300);
}

.card-check:hover {
  border: 1px solid var(--primary-400);
}

.card-check:has(input[type=checkbox]:checked),
.card-check:has(input[type=radio]:checked) {
  background-color: var(--primary-100);
  border-color: var(--primary-500) !important;
}

.badge.success {
  background: #dcfce7;
  color: #166534;
}

.badge.paid {
  background: #dcfce7;
  color: #c28e00ff;
}

.badge.warning {
  background: #fef9c3;
  color: #854d0e;
}

.badge.danger {
  background: #fee2e2;
  color: #991b1b;
}

.badge.secondary {
  background: #e5e7eb;
  color: #374151;
}

.badge {
  --badge-text-color: inherit;
  --badge-border: transparent;
  color: var(--badge-text-color);
  background-color: var(--badge-bg);
  border: 1px solid var(--badge-border);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 16px;
  min-height: 28px;
}

.badge svg,
.badge img,
.badge .icon {
  width: 18px;
  height: 18px;
}

.badge:empty {
  display: none;
}

.badge-neutral {
  --badge-bg: var(--neutral-100);
  --badge-text-color: var(--neutral-600);
  --badge-border: var(--neutral-300);
}

.badge-primary {
  --badge-bg: var(--primary-100);
  --badge-text-color: var(--primary-600);
  --badge-border: var(--primary-300);
}

.badge-blue {
  --badge-bg: var(--blue-100);
  --badge-text-color: var(--blue-600);
  --badge-border: var(--blue-300);
}

.badge-red {
  --badge-bg: var(--red-100);
  --badge-text-color: var(--red-600);
  --badge-border: var(--red-300);
}

.badge-green {
  --badge-bg: var(--green-100);
  --badge-text-color: var(--green-600);
  --badge-border: var(--green-300);
}

.badge-orange {
  --badge-bg: var(--orange-100);
  --badge-text-color: var(--orange-600);
  --badge-border: var(--orange-300);
}

.badge-yellow {
  --badge-bg: var(--yellow-100);
  --badge-text-color: var(--yellow-600);
  --badge-border: var(--yellow-300);
}

.badge-purple {
  --badge-bg: var(--purple-100);
  --badge-text-color: var(--purple-600);
  --badge-border: var(--purple-300);
}

.badge-teal {
  --badge-bg: var(--teal-100);
  --badge-text-color: var(--teal-600);
  --badge-border: var(--teal-300);
}

.nav {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 2px;
}

.nav li {
  position: relative;
}

nav a {
  color: var(--neutral-600);
}

.nav-row,
.nav-horizontal {
  flex-direction: row;
  align-items: center;
  width: auto;
}

.nav-col,
.nav-vertical {
  flex-direction: column;
}

.nav-col .nav-link,
.nav-vertical .nav-link {
  width: 100%;
  justify-content: flex-start;
}

.nav-underline {
  flex-wrap: nowrap;
  padding: 4px;
}

.nav-underline .active {
  position: relative;
}

.nav-underline .active:after {
  content: "";
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  position: absolute;
  display: inline-block;
  border-bottom: 2px solid var(--primary-500);
}

.nav-underline .nav-link.active {
  background-color: initial;
}

.nav-underline .nav-link.active:hover {
  background-color: var(--alpha-1);
}

.item-nav {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.item-nav .nav-link {
  width: 100%;
}

.nav-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  text-decoration: none;
  white-space: nowrap;
  color: var(--neutral-700);
  border-radius: var(--border-radius-base);
}

.nav-link svg,
.nav-link img,
.nav-link .icon {
  width: 20px;
  height: 20px;
  min-width: 16px;
  min-height: 16px;
}

.nav-link:hover {
  text-decoration: none;
  color: var(--text-color-base);
  background-color: var(--alpha-1);
}

.nav-link:active {
  background-color: var(--neutral-300);
}

.nav-link.active {
  color: var(--primary-600);
  background-color: var(--primary-100);
}

.nav-link.disabled {
  color: var(--text-color-muted);
  cursor: not-allowed;
}

.nav-compact .nav-link {
  min-height: 32px;
  gap: 6px;
  padding: 4px 8px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  gap: 2px;
}

.tabs .tab-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  padding-top: 10px;
  font-size: inherit;
  text-decoration: none;
  color: var(--text-color-secondary);
  border-bottom: 2px solid transparent;
}

.tabs .tab-link:hover {
  text-decoration: none;
  color: var(--text-color-base);
  background-color: var(--alpha-1);
}

.tabs .tab-link:not(.active):active {
  background-color: var(--neutral-300);
}

.tabs .tab-link.active {
  color: var(--text-color-primary);
  border-bottom-color: var(--primary-500);
}

.tabs .tab-link.disabled {
  color: var(--text-color-muted);
  cursor: not-allowed;
  border-bottom: 2px solid transparent;
}

.tabs:not(.tabs-boxed) {
  border-bottom: 1px solid var(--border-color-default, #ccc);
}

.tabs-boxed {
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-base);
  display: inline-flex;
  width: auto;
  padding: 1px;
  height: 38px;
  overflow-x: auto;
}

.tabs-boxed svg,
.tabs-boxed .icon,
.tabs-boxed img {
  width: 22px;
  height: 22px;
}

.tabs-boxed .tab-link {
  color: var(--text-color-secondary);
  border-radius: var(--border-radius-base);
  justify-content: center;
  padding: 0.4rem 1rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-align: center;
  font-size: inherit;
  font-weight: 400;
  text-decoration: none;
  user-select: none;
  text-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
}

.tabs-boxed .tab-link:hover,
.tabs-boxed .tab-link:focus {
  text-decoration: none;
  color: var(--text-color-base);
  background-color: var(--alpha-1);
}

.tabs-boxed .tab-link.active,
.tabs-boxed .tab-link.selected,
.tabs-boxed .tab-link:has(input[type=radio]:checked) {
  color: var(--text-color-base);
  background-color: var(--bg-color-base);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--neutral-300);
}

.tabs-boxed .tab-link.disabled {
  color: var(--text-color-muted);
  pointer-events: none;
  cursor: not-allowed;
}

.tabs-boxed .tab-link:has(svg, img, .icon) {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.tabs-boxed.w-full .tab-link,
.tabs-boxed.w-100\% .tab-link {
  flex-grow: 1;
}

.has-icon-dropup::after {
  display: inline-block;
  vertical-align: 3px;
  content: "";
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
}

.icon-dropup {
  width: 0;
  height: 0;
  display: inline-block;
  vertical-align: middle;
  border-style: solid;
  border-top: 0;
  border-right: 5px solid transparent;
  border-bottom: 5px solid;
  border-left: 5px solid transparent;
}

.tag,
.chip,
.pill {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 3px 8px;
  min-height: 32px;
  min-width: 40px;
  justify-content: center;
  background: var(--alpha-2);
  line-height: 1.2;
  text-decoration: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  user-select: none;
  gap: 4px;
  border: 1px solid transparent;
  border-radius: 16px;
  margin-right: 2px;
  color: var(--text-color-base);
}

.tag:hover,
.chip:hover,
.pill:hover {
  background: var(--alpha-3);
}

.tag[role=button]:active,
.chip[role=button]:active,
.pill[role=button]:active {
  transform: translateY(1px);
  box-shadow: 0 3px 6px rgba(64, 64, 64, 0.2) inset;
}

.tag.active,
.chip.active,
.pill.active {
  background-color: var(--primary-500);
  color: white;
}

.progress {
  display: flex;
  height: 12px;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: var(--neutral-300, #bbb);
  border-radius: var(--border-radius-sm);
  width: 100%;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  background-color: var(--primary-500, blue);
  transition: width 0.6s ease;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.d-initial {
  display: initial;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-inline {
  display: inline;
}

.d-table {
  display: table;
}

.d-table-row {
  display: table-row;
}

.d-table-cell {
  display: table-cell;
}

.d-inline-table {
  display: inline-table;
}

.d-table-caption {
  display: table-caption;
}

.d-grid {
  display: grid;
}

.d-inline-grid {
  display: inline-grid;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-none {
  display: none;
}

.hidden {
  display: none;
}

.flex-basis-auto {
  flex-basis: auto;
}

.flex-basis-0 {
  flex-basis: 0;
}

.flex-basis-full {
  flex-basis: 100%;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-shrink-initial {
  flex-shrink: initial;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow {
  flex-grow: 1;
}

.flex-grow-initial {
  flex-grow: initial;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.align-content-normal {
  align-content: normal;
}

.align-content-center {
  align-content: center;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

.align-content-between {
  align-content: space-between;
}

.align-content-around {
  align-content: space-around;
}

.align-content-evenly {
  align-content: space-evenly;
}

.align-content-stretch {
  align-content: stretch;
}

.align-self-auto {
  align-self: auto;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

.align-self-stretch {
  align-self: stretch;
}

.align-self-baseline {
  align-self: baseline;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

.justify-content-normal {
  justify-content: normal;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

.justify-content-stretch {
  justify-content: stretch;
}

.justify-items-start {
  justify-items: start;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-center {
  justify-items: center;
}

.justify-items-stretch {
  justify-items: stretch;
}

.place-items-start {
  place-items: start;
}

.place-items-end {
  place-items: end;
}

.place-items-center {
  place-items: center;
}

.place-items-baseline {
  place-items: baseline;
}

.place-items-stretch {
  place-items: stretch;
}

.place-content-center {
  place-content: center;
}

.place-content-start {
  place-content: start;
}

.place-content-end {
  place-content: end;
}

.place-content-between {
  place-content: space-between;
}

.place-content-around {
  place-content: space-around;
}

.place-content-evenly {
  place-content: space-evenly;
}

.place-content-baseline {
  place-content: baseline;
}

.place-content-stretch {
  place-content: stretch;
}

@media (max-width: 1199px) {
  .max-lg\:d-initial {
    display: initial;
  }

  .max-lg\:d-block {
    display: block;
  }

  .max-lg\:d-inline-block {
    display: inline-block;
  }

  .max-lg\:d-inline {
    display: inline;
  }

  .max-lg\:d-table {
    display: table;
  }

  .max-lg\:d-table-row {
    display: table-row;
  }

  .max-lg\:d-table-cell {
    display: table-cell;
  }

  .max-lg\:d-inline-table {
    display: inline-table;
  }

  .max-lg\:d-table-caption {
    display: table-caption;
  }

  .max-lg\:d-grid {
    display: grid;
  }

  .max-lg\:d-inline-grid {
    display: inline-grid;
  }

  .max-lg\:d-flex {
    display: flex;
  }

  .max-lg\:d-inline-flex {
    display: inline-flex;
  }

  .max-lg\:d-none {
    display: none;
  }

  .max-lg\:hidden {
    display: none;
  }

  .max-lg\:flex-basis-auto {
    flex-basis: auto;
  }

  .max-lg\:flex-basis-0 {
    flex-basis: 0;
  }

  .max-lg\:flex-basis-full {
    flex-basis: 100%;
  }

  .max-lg\:flex-1 {
    flex: 1 1 0%;
  }

  .max-lg\:flex-auto {
    flex: 1 1 auto;
  }

  .max-lg\:flex-none {
    flex: none;
  }

  .max-lg\:flex-shrink-0 {
    flex-shrink: 0;
  }

  .max-lg\:flex-shrink {
    flex-shrink: 1;
  }

  .max-lg\:flex-shrink-initial {
    flex-shrink: initial;
  }

  .max-lg\:flex-grow-0 {
    flex-grow: 0;
  }

  .max-lg\:flex-grow {
    flex-grow: 1;
  }

  .max-lg\:flex-grow-initial {
    flex-grow: initial;
  }

  .max-lg\:flex-row {
    flex-direction: row;
  }

  .max-lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .max-lg\:flex-col {
    flex-direction: column;
  }

  .max-lg\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .max-lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .max-lg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .max-lg\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .max-lg\:align-content-normal {
    align-content: normal;
  }

  .max-lg\:align-content-center {
    align-content: center;
  }

  .max-lg\:align-content-start {
    align-content: flex-start;
  }

  .max-lg\:align-content-end {
    align-content: flex-end;
  }

  .max-lg\:align-content-between {
    align-content: space-between;
  }

  .max-lg\:align-content-around {
    align-content: space-around;
  }

  .max-lg\:align-content-evenly {
    align-content: space-evenly;
  }

  .max-lg\:align-content-stretch {
    align-content: stretch;
  }

  .max-lg\:align-self-auto {
    align-self: auto;
  }

  .max-lg\:align-self-start {
    align-self: flex-start;
  }

  .max-lg\:align-self-end {
    align-self: flex-end;
  }

  .max-lg\:align-self-center {
    align-self: center;
  }

  .max-lg\:align-self-stretch {
    align-self: stretch;
  }

  .max-lg\:align-self-baseline {
    align-self: baseline;
  }

  .max-lg\:align-items-start {
    align-items: flex-start;
  }

  .max-lg\:align-items-end {
    align-items: flex-end;
  }

  .max-lg\:align-items-center {
    align-items: center;
  }

  .max-lg\:align-items-baseline {
    align-items: baseline;
  }

  .max-lg\:align-items-stretch {
    align-items: stretch;
  }

  .max-lg\:justify-content-normal {
    justify-content: normal;
  }

  .max-lg\:justify-content-start {
    justify-content: flex-start;
  }

  .max-lg\:justify-content-end {
    justify-content: flex-end;
  }

  .max-lg\:justify-content-center {
    justify-content: center;
  }

  .max-lg\:justify-content-between {
    justify-content: space-between;
  }

  .max-lg\:justify-content-around {
    justify-content: space-around;
  }

  .max-lg\:justify-content-evenly {
    justify-content: space-evenly;
  }

  .max-lg\:justify-content-stretch {
    justify-content: stretch;
  }

  .max-lg\:justify-items-start {
    justify-items: start;
  }

  .max-lg\:justify-items-end {
    justify-items: end;
  }

  .max-lg\:justify-items-center {
    justify-items: center;
  }

  .max-lg\:justify-items-stretch {
    justify-items: stretch;
  }

  .max-lg\:place-items-start {
    place-items: start;
  }

  .max-lg\:place-items-end {
    place-items: end;
  }

  .max-lg\:place-items-center {
    place-items: center;
  }

  .max-lg\:place-items-baseline {
    place-items: baseline;
  }

  .max-lg\:place-items-stretch {
    place-items: stretch;
  }

  .max-lg\:place-content-center {
    place-content: center;
  }

  .max-lg\:place-content-start {
    place-content: start;
  }

  .max-lg\:place-content-end {
    place-content: end;
  }

  .max-lg\:place-content-between {
    place-content: space-between;
  }

  .max-lg\:place-content-around {
    place-content: space-around;
  }

  .max-lg\:place-content-evenly {
    place-content: space-evenly;
  }

  .max-lg\:place-content-baseline {
    place-content: baseline;
  }

  .max-lg\:place-content-stretch {
    place-content: stretch;
  }
}

@media (max-width: 920px) {
  .max-md\:d-initial {
    display: initial;
  }

  .max-md\:d-block {
    display: block;
  }

  .max-md\:d-inline-block {
    display: inline-block;
  }

  .max-md\:d-inline {
    display: inline;
  }

  .max-md\:d-table {
    display: table;
  }

  .max-md\:d-table-row {
    display: table-row;
  }

  .max-md\:d-table-cell {
    display: table-cell;
  }

  .max-md\:d-inline-table {
    display: inline-table;
  }

  .max-md\:d-table-caption {
    display: table-caption;
  }

  .max-md\:d-grid {
    display: grid;
  }

  .max-md\:d-inline-grid {
    display: inline-grid;
  }

  .max-md\:d-flex {
    display: flex;
  }

  .max-md\:d-inline-flex {
    display: inline-flex;
  }

  .max-md\:d-none {
    display: none;
  }

  .max-md\:hidden {
    display: none;
  }

  .max-md\:flex-basis-auto {
    flex-basis: auto;
  }

  .max-md\:flex-basis-0 {
    flex-basis: 0;
  }

  .max-md\:flex-basis-full {
    flex-basis: 100%;
  }

  .max-md\:flex-1 {
    flex: 1 1 0%;
  }

  .max-md\:flex-auto {
    flex: 1 1 auto;
  }

  .max-md\:flex-none {
    flex: none;
  }

  .max-md\:flex-shrink-0 {
    flex-shrink: 0;
  }

  .max-md\:flex-shrink {
    flex-shrink: 1;
  }

  .max-md\:flex-shrink-initial {
    flex-shrink: initial;
  }

  .max-md\:flex-grow-0 {
    flex-grow: 0;
  }

  .max-md\:flex-grow {
    flex-grow: 1;
  }

  .max-md\:flex-grow-initial {
    flex-grow: initial;
  }

  .max-md\:flex-row {
    flex-direction: row;
  }

  .max-md\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .max-md\:flex-col {
    flex-direction: column;
  }

  .max-md\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .max-md\:flex-wrap {
    flex-wrap: wrap;
  }

  .max-md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .max-md\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .max-md\:align-content-normal {
    align-content: normal;
  }

  .max-md\:align-content-center {
    align-content: center;
  }

  .max-md\:align-content-start {
    align-content: flex-start;
  }

  .max-md\:align-content-end {
    align-content: flex-end;
  }

  .max-md\:align-content-between {
    align-content: space-between;
  }

  .max-md\:align-content-around {
    align-content: space-around;
  }

  .max-md\:align-content-evenly {
    align-content: space-evenly;
  }

  .max-md\:align-content-stretch {
    align-content: stretch;
  }

  .max-md\:align-self-auto {
    align-self: auto;
  }

  .max-md\:align-self-start {
    align-self: flex-start;
  }

  .max-md\:align-self-end {
    align-self: flex-end;
  }

  .max-md\:align-self-center {
    align-self: center;
  }

  .max-md\:align-self-stretch {
    align-self: stretch;
  }

  .max-md\:align-self-baseline {
    align-self: baseline;
  }

  .max-md\:align-items-start {
    align-items: flex-start;
  }

  .max-md\:align-items-end {
    align-items: flex-end;
  }

  .max-md\:align-items-center {
    align-items: center;
  }

  .max-md\:align-items-baseline {
    align-items: baseline;
  }

  .max-md\:align-items-stretch {
    align-items: stretch;
  }

  .max-md\:justify-content-normal {
    justify-content: normal;
  }

  .max-md\:justify-content-start {
    justify-content: flex-start;
  }

  .max-md\:justify-content-end {
    justify-content: flex-end;
  }

  .max-md\:justify-content-center {
    justify-content: center;
  }

  .max-md\:justify-content-between {
    justify-content: space-between;
  }

  .max-md\:justify-content-around {
    justify-content: space-around;
  }

  .max-md\:justify-content-evenly {
    justify-content: space-evenly;
  }

  .max-md\:justify-content-stretch {
    justify-content: stretch;
  }

  .max-md\:justify-items-start {
    justify-items: start;
  }

  .max-md\:justify-items-end {
    justify-items: end;
  }

  .max-md\:justify-items-center {
    justify-items: center;
  }

  .max-md\:justify-items-stretch {
    justify-items: stretch;
  }

  .max-md\:place-items-start {
    place-items: start;
  }

  .max-md\:place-items-end {
    place-items: end;
  }

  .max-md\:place-items-center {
    place-items: center;
  }

  .max-md\:place-items-baseline {
    place-items: baseline;
  }

  .max-md\:place-items-stretch {
    place-items: stretch;
  }

  .max-md\:place-content-center {
    place-content: center;
  }

  .max-md\:place-content-start {
    place-content: start;
  }

  .max-md\:place-content-end {
    place-content: end;
  }

  .max-md\:place-content-between {
    place-content: space-between;
  }

  .max-md\:place-content-around {
    place-content: space-around;
  }

  .max-md\:place-content-evenly {
    place-content: space-evenly;
  }

  .max-md\:place-content-baseline {
    place-content: baseline;
  }

  .max-md\:place-content-stretch {
    place-content: stretch;
  }
}

@media (max-width: 640px) {
  .max-sm\:d-initial {
    display: initial;
  }

  .max-sm\:d-block {
    display: block;
  }

  .max-sm\:d-inline-block {
    display: inline-block;
  }

  .max-sm\:d-inline {
    display: inline;
  }

  .max-sm\:d-table {
    display: table;
  }

  .max-sm\:d-table-row {
    display: table-row;
  }

  .max-sm\:d-table-cell {
    display: table-cell;
  }

  .max-sm\:d-inline-table {
    display: inline-table;
  }

  .max-sm\:d-table-caption {
    display: table-caption;
  }

  .max-sm\:d-grid {
    display: grid;
  }

  .max-sm\:d-inline-grid {
    display: inline-grid;
  }

  .max-sm\:d-flex {
    display: flex;
  }

  .max-sm\:d-inline-flex {
    display: inline-flex;
  }

  .max-sm\:d-none {
    display: none;
  }

  .max-sm\:hidden {
    display: none;
  }

  .max-sm\:flex-basis-auto {
    flex-basis: auto;
  }

  .max-sm\:flex-basis-0 {
    flex-basis: 0;
  }

  .max-sm\:flex-basis-full {
    flex-basis: 100%;
  }

  .max-sm\:flex-1 {
    flex: 1 1 0%;
  }

  .max-sm\:flex-auto {
    flex: 1 1 auto;
  }

  .max-sm\:flex-none {
    flex: none;
  }

  .max-sm\:flex-shrink-0 {
    flex-shrink: 0;
  }

  .max-sm\:flex-shrink {
    flex-shrink: 1;
  }

  .max-sm\:flex-shrink-initial {
    flex-shrink: initial;
  }

  .max-sm\:flex-grow-0 {
    flex-grow: 0;
  }

  .max-sm\:flex-grow {
    flex-grow: 1;
  }

  .max-sm\:flex-grow-initial {
    flex-grow: initial;
  }

  .max-sm\:flex-row {
    flex-direction: row;
  }

  .max-sm\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .max-sm\:flex-col {
    flex-direction: column;
  }

  .max-sm\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .max-sm\:flex-wrap {
    flex-wrap: wrap;
  }

  .max-sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .max-sm\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .max-sm\:align-content-normal {
    align-content: normal;
  }

  .max-sm\:align-content-center {
    align-content: center;
  }

  .max-sm\:align-content-start {
    align-content: flex-start;
  }

  .max-sm\:align-content-end {
    align-content: flex-end;
  }

  .max-sm\:align-content-between {
    align-content: space-between;
  }

  .max-sm\:align-content-around {
    align-content: space-around;
  }

  .max-sm\:align-content-evenly {
    align-content: space-evenly;
  }

  .max-sm\:align-content-stretch {
    align-content: stretch;
  }

  .max-sm\:align-self-auto {
    align-self: auto;
  }

  .max-sm\:align-self-start {
    align-self: flex-start;
  }

  .max-sm\:align-self-end {
    align-self: flex-end;
  }

  .max-sm\:align-self-center {
    align-self: center;
  }

  .max-sm\:align-self-stretch {
    align-self: stretch;
  }

  .max-sm\:align-self-baseline {
    align-self: baseline;
  }

  .max-sm\:align-items-start {
    align-items: flex-start;
  }

  .max-sm\:align-items-end {
    align-items: flex-end;
  }

  .max-sm\:align-items-center {
    align-items: center;
  }

  .max-sm\:align-items-baseline {
    align-items: baseline;
  }

  .max-sm\:align-items-stretch {
    align-items: stretch;
  }

  .max-sm\:justify-content-normal {
    justify-content: normal;
  }

  .max-sm\:justify-content-start {
    justify-content: flex-start;
  }

  .max-sm\:justify-content-end {
    justify-content: flex-end;
  }

  .max-sm\:justify-content-center {
    justify-content: center;
  }

  .max-sm\:justify-content-between {
    justify-content: space-between;
  }

  .max-sm\:justify-content-around {
    justify-content: space-around;
  }

  .max-sm\:justify-content-evenly {
    justify-content: space-evenly;
  }

  .max-sm\:justify-content-stretch {
    justify-content: stretch;
  }

  .max-sm\:justify-items-start {
    justify-items: start;
  }

  .max-sm\:justify-items-end {
    justify-items: end;
  }

  .max-sm\:justify-items-center {
    justify-items: center;
  }

  .max-sm\:justify-items-stretch {
    justify-items: stretch;
  }

  .max-sm\:place-items-start {
    place-items: start;
  }

  .max-sm\:place-items-end {
    place-items: end;
  }

  .max-sm\:place-items-center {
    place-items: center;
  }

  .max-sm\:place-items-baseline {
    place-items: baseline;
  }

  .max-sm\:place-items-stretch {
    place-items: stretch;
  }

  .max-sm\:place-content-center {
    place-content: center;
  }

  .max-sm\:place-content-start {
    place-content: start;
  }

  .max-sm\:place-content-end {
    place-content: end;
  }

  .max-sm\:place-content-between {
    place-content: space-between;
  }

  .max-sm\:place-content-around {
    place-content: space-around;
  }

  .max-sm\:place-content-evenly {
    place-content: space-evenly;
  }

  .max-sm\:place-content-baseline {
    place-content: baseline;
  }

  .max-sm\:place-content-stretch {
    place-content: stretch;
  }
}

@media (min-width: 641px) {
  .sm\:d-initial {
    display: initial;
  }

  .sm\:d-block {
    display: block;
  }

  .sm\:d-inline-block {
    display: inline-block;
  }

  .sm\:d-inline {
    display: inline;
  }

  .sm\:d-table {
    display: table;
  }

  .sm\:d-table-row {
    display: table-row;
  }

  .sm\:d-table-cell {
    display: table-cell;
  }

  .sm\:d-inline-table {
    display: inline-table;
  }

  .sm\:d-table-caption {
    display: table-caption;
  }

  .sm\:d-grid {
    display: grid;
  }

  .sm\:d-inline-grid {
    display: inline-grid;
  }

  .sm\:d-flex {
    display: flex;
  }

  .sm\:d-inline-flex {
    display: inline-flex;
  }

  .sm\:d-none {
    display: none;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:flex-basis-auto {
    flex-basis: auto;
  }

  .sm\:flex-basis-0 {
    flex-basis: 0;
  }

  .sm\:flex-basis-full {
    flex-basis: 100%;
  }

  .sm\:flex-1 {
    flex: 1 1 0%;
  }

  .sm\:flex-auto {
    flex: 1 1 auto;
  }

  .sm\:flex-none {
    flex: none;
  }

  .sm\:flex-shrink-0 {
    flex-shrink: 0;
  }

  .sm\:flex-shrink {
    flex-shrink: 1;
  }

  .sm\:flex-shrink-initial {
    flex-shrink: initial;
  }

  .sm\:flex-grow-0 {
    flex-grow: 0;
  }

  .sm\:flex-grow {
    flex-grow: 1;
  }

  .sm\:flex-grow-initial {
    flex-grow: initial;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .sm\:flex-wrap {
    flex-wrap: wrap;
  }

  .sm\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .sm\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .sm\:align-content-normal {
    align-content: normal;
  }

  .sm\:align-content-center {
    align-content: center;
  }

  .sm\:align-content-start {
    align-content: flex-start;
  }

  .sm\:align-content-end {
    align-content: flex-end;
  }

  .sm\:align-content-between {
    align-content: space-between;
  }

  .sm\:align-content-around {
    align-content: space-around;
  }

  .sm\:align-content-evenly {
    align-content: space-evenly;
  }

  .sm\:align-content-stretch {
    align-content: stretch;
  }

  .sm\:align-self-auto {
    align-self: auto;
  }

  .sm\:align-self-start {
    align-self: flex-start;
  }

  .sm\:align-self-end {
    align-self: flex-end;
  }

  .sm\:align-self-center {
    align-self: center;
  }

  .sm\:align-self-stretch {
    align-self: stretch;
  }

  .sm\:align-self-baseline {
    align-self: baseline;
  }

  .sm\:align-items-start {
    align-items: flex-start;
  }

  .sm\:align-items-end {
    align-items: flex-end;
  }

  .sm\:align-items-center {
    align-items: center;
  }

  .sm\:align-items-baseline {
    align-items: baseline;
  }

  .sm\:align-items-stretch {
    align-items: stretch;
  }

  .sm\:justify-content-normal {
    justify-content: normal;
  }

  .sm\:justify-content-start {
    justify-content: flex-start;
  }

  .sm\:justify-content-end {
    justify-content: flex-end;
  }

  .sm\:justify-content-center {
    justify-content: center;
  }

  .sm\:justify-content-between {
    justify-content: space-between;
  }

  .sm\:justify-content-around {
    justify-content: space-around;
  }

  .sm\:justify-content-evenly {
    justify-content: space-evenly;
  }

  .sm\:justify-content-stretch {
    justify-content: stretch;
  }

  .sm\:justify-items-start {
    justify-items: start;
  }

  .sm\:justify-items-end {
    justify-items: end;
  }

  .sm\:justify-items-center {
    justify-items: center;
  }

  .sm\:justify-items-stretch {
    justify-items: stretch;
  }

  .sm\:place-items-start {
    place-items: start;
  }

  .sm\:place-items-end {
    place-items: end;
  }

  .sm\:place-items-center {
    place-items: center;
  }

  .sm\:place-items-baseline {
    place-items: baseline;
  }

  .sm\:place-items-stretch {
    place-items: stretch;
  }

  .sm\:place-content-center {
    place-content: center;
  }

  .sm\:place-content-start {
    place-content: start;
  }

  .sm\:place-content-end {
    place-content: end;
  }

  .sm\:place-content-between {
    place-content: space-between;
  }

  .sm\:place-content-around {
    place-content: space-around;
  }

  .sm\:place-content-evenly {
    place-content: space-evenly;
  }

  .sm\:place-content-baseline {
    place-content: baseline;
  }

  .sm\:place-content-stretch {
    place-content: stretch;
  }
}

@media (min-width: 921px) {
  .md\:d-initial {
    display: initial;
  }

  .md\:d-block {
    display: block;
  }

  .md\:d-inline-block {
    display: inline-block;
  }

  .md\:d-inline {
    display: inline;
  }

  .md\:d-table {
    display: table;
  }

  .md\:d-table-row {
    display: table-row;
  }

  .md\:d-table-cell {
    display: table-cell;
  }

  .md\:d-inline-table {
    display: inline-table;
  }

  .md\:d-table-caption {
    display: table-caption;
  }

  .md\:d-grid {
    display: grid;
  }

  .md\:d-inline-grid {
    display: inline-grid;
  }

  .md\:d-flex {
    display: flex;
  }

  .md\:d-inline-flex {
    display: inline-flex;
  }

  .md\:d-none {
    display: none;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex-basis-auto {
    flex-basis: auto;
  }

  .md\:flex-basis-0 {
    flex-basis: 0;
  }

  .md\:flex-basis-full {
    flex-basis: 100%;
  }

  .md\:flex-1 {
    flex: 1 1 0%;
  }

  .md\:flex-auto {
    flex: 1 1 auto;
  }

  .md\:flex-none {
    flex: none;
  }

  .md\:flex-shrink-0 {
    flex-shrink: 0;
  }

  .md\:flex-shrink {
    flex-shrink: 1;
  }

  .md\:flex-shrink-initial {
    flex-shrink: initial;
  }

  .md\:flex-grow-0 {
    flex-grow: 0;
  }

  .md\:flex-grow {
    flex-grow: 1;
  }

  .md\:flex-grow-initial {
    flex-grow: initial;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .md\:flex-wrap {
    flex-wrap: wrap;
  }

  .md\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .md\:align-content-normal {
    align-content: normal;
  }

  .md\:align-content-center {
    align-content: center;
  }

  .md\:align-content-start {
    align-content: flex-start;
  }

  .md\:align-content-end {
    align-content: flex-end;
  }

  .md\:align-content-between {
    align-content: space-between;
  }

  .md\:align-content-around {
    align-content: space-around;
  }

  .md\:align-content-evenly {
    align-content: space-evenly;
  }

  .md\:align-content-stretch {
    align-content: stretch;
  }

  .md\:align-self-auto {
    align-self: auto;
  }

  .md\:align-self-start {
    align-self: flex-start;
  }

  .md\:align-self-end {
    align-self: flex-end;
  }

  .md\:align-self-center {
    align-self: center;
  }

  .md\:align-self-stretch {
    align-self: stretch;
  }

  .md\:align-self-baseline {
    align-self: baseline;
  }

  .md\:align-items-start {
    align-items: flex-start;
  }

  .md\:align-items-end {
    align-items: flex-end;
  }

  .md\:align-items-center {
    align-items: center;
  }

  .md\:align-items-baseline {
    align-items: baseline;
  }

  .md\:align-items-stretch {
    align-items: stretch;
  }

  .md\:justify-content-normal {
    justify-content: normal;
  }

  .md\:justify-content-start {
    justify-content: flex-start;
  }

  .md\:justify-content-end {
    justify-content: flex-end;
  }

  .md\:justify-content-center {
    justify-content: center;
  }

  .md\:justify-content-between {
    justify-content: space-between;
  }

  .md\:justify-content-around {
    justify-content: space-around;
  }

  .md\:justify-content-evenly {
    justify-content: space-evenly;
  }

  .md\:justify-content-stretch {
    justify-content: stretch;
  }

  .md\:justify-items-start {
    justify-items: start;
  }

  .md\:justify-items-end {
    justify-items: end;
  }

  .md\:justify-items-center {
    justify-items: center;
  }

  .md\:justify-items-stretch {
    justify-items: stretch;
  }

  .md\:place-items-start {
    place-items: start;
  }

  .md\:place-items-end {
    place-items: end;
  }

  .md\:place-items-center {
    place-items: center;
  }

  .md\:place-items-baseline {
    place-items: baseline;
  }

  .md\:place-items-stretch {
    place-items: stretch;
  }

  .md\:place-content-center {
    place-content: center;
  }

  .md\:place-content-start {
    place-content: start;
  }

  .md\:place-content-end {
    place-content: end;
  }

  .md\:place-content-between {
    place-content: space-between;
  }

  .md\:place-content-around {
    place-content: space-around;
  }

  .md\:place-content-evenly {
    place-content: space-evenly;
  }

  .md\:place-content-baseline {
    place-content: baseline;
  }

  .md\:place-content-stretch {
    place-content: stretch;
  }
}

@media (min-width: 1201px) {
  .lg\:d-initial {
    display: initial;
  }

  .lg\:d-block {
    display: block;
  }

  .lg\:d-inline-block {
    display: inline-block;
  }

  .lg\:d-inline {
    display: inline;
  }

  .lg\:d-table {
    display: table;
  }

  .lg\:d-table-row {
    display: table-row;
  }

  .lg\:d-table-cell {
    display: table-cell;
  }

  .lg\:d-inline-table {
    display: inline-table;
  }

  .lg\:d-table-caption {
    display: table-caption;
  }

  .lg\:d-grid {
    display: grid;
  }

  .lg\:d-inline-grid {
    display: inline-grid;
  }

  .lg\:d-flex {
    display: flex;
  }

  .lg\:d-inline-flex {
    display: inline-flex;
  }

  .lg\:d-none {
    display: none;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:flex-basis-auto {
    flex-basis: auto;
  }

  .lg\:flex-basis-0 {
    flex-basis: 0;
  }

  .lg\:flex-basis-full {
    flex-basis: 100%;
  }

  .lg\:flex-1 {
    flex: 1 1 0%;
  }

  .lg\:flex-auto {
    flex: 1 1 auto;
  }

  .lg\:flex-none {
    flex: none;
  }

  .lg\:flex-shrink-0 {
    flex-shrink: 0;
  }

  .lg\:flex-shrink {
    flex-shrink: 1;
  }

  .lg\:flex-shrink-initial {
    flex-shrink: initial;
  }

  .lg\:flex-grow-0 {
    flex-grow: 0;
  }

  .lg\:flex-grow {
    flex-grow: 1;
  }

  .lg\:flex-grow-initial {
    flex-grow: initial;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .lg\:flex-col {
    flex-direction: column;
  }

  .lg\:flex-col-reverse {
    flex-direction: column-reverse;
  }

  .lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .lg\:flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }

  .lg\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .lg\:align-content-normal {
    align-content: normal;
  }

  .lg\:align-content-center {
    align-content: center;
  }

  .lg\:align-content-start {
    align-content: flex-start;
  }

  .lg\:align-content-end {
    align-content: flex-end;
  }

  .lg\:align-content-between {
    align-content: space-between;
  }

  .lg\:align-content-around {
    align-content: space-around;
  }

  .lg\:align-content-evenly {
    align-content: space-evenly;
  }

  .lg\:align-content-stretch {
    align-content: stretch;
  }

  .lg\:align-self-auto {
    align-self: auto;
  }

  .lg\:align-self-start {
    align-self: flex-start;
  }

  .lg\:align-self-end {
    align-self: flex-end;
  }

  .lg\:align-self-center {
    align-self: center;
  }

  .lg\:align-self-stretch {
    align-self: stretch;
  }

  .lg\:align-self-baseline {
    align-self: baseline;
  }

  .lg\:align-items-start {
    align-items: flex-start;
  }

  .lg\:align-items-end {
    align-items: flex-end;
  }

  .lg\:align-items-center {
    align-items: center;
  }

  .lg\:align-items-baseline {
    align-items: baseline;
  }

  .lg\:align-items-stretch {
    align-items: stretch;
  }

  .lg\:justify-content-normal {
    justify-content: normal;
  }

  .lg\:justify-content-start {
    justify-content: flex-start;
  }

  .lg\:justify-content-end {
    justify-content: flex-end;
  }

  .lg\:justify-content-center {
    justify-content: center;
  }

  .lg\:justify-content-between {
    justify-content: space-between;
  }

  .lg\:justify-content-around {
    justify-content: space-around;
  }

  .lg\:justify-content-evenly {
    justify-content: space-evenly;
  }

  .lg\:justify-content-stretch {
    justify-content: stretch;
  }

  .lg\:justify-items-start {
    justify-items: start;
  }

  .lg\:justify-items-end {
    justify-items: end;
  }

  .lg\:justify-items-center {
    justify-items: center;
  }

  .lg\:justify-items-stretch {
    justify-items: stretch;
  }

  .lg\:place-items-start {
    place-items: start;
  }

  .lg\:place-items-end {
    place-items: end;
  }

  .lg\:place-items-center {
    place-items: center;
  }

  .lg\:place-items-baseline {
    place-items: baseline;
  }

  .lg\:place-items-stretch {
    place-items: stretch;
  }

  .lg\:place-content-center {
    place-content: center;
  }

  .lg\:place-content-start {
    place-content: start;
  }

  .lg\:place-content-end {
    place-content: end;
  }

  .lg\:place-content-between {
    place-content: space-between;
  }

  .lg\:place-content-around {
    place-content: space-around;
  }

  .lg\:place-content-evenly {
    place-content: space-evenly;
  }

  .lg\:place-content-baseline {
    place-content: baseline;
  }

  .lg\:place-content-stretch {
    place-content: stretch;
  }
}

.hover\:d-block:hover {
  display: block;
}

.hover\:d-inline:hover {
  display: inline;
}

.hover\:d-inline-block:hover {
  display: inline-block;
}

.hover\:d-flex:hover {
  display: flex;
}

.hover\:d-inline-flex:hover {
  display: inline-flex;
}

.hover\:d-grid:hover {
  display: grid;
}

.hover\:d-inline-grid:hover {
  display: inline-grid;
}

.hover\:d-none:hover {
  display: none;
}

.hover\:hidden:hover {
  display: none;
}

.group:hover .group-hover\:d-block {
  display: block;
}

.group:hover .group-hover\:d-inline {
  display: inline;
}

.group:hover .group-hover\:d-inline-block {
  display: inline-block;
}

.group:hover .group-hover\:d-flex {
  display: flex;
}

.group:hover .group-hover\:d-inline-flex {
  display: inline-flex;
}

.group:hover .group-hover\:d-grid {
  display: grid;
}

.group:hover .group-hover\:d-inline-grid {
  display: inline-grid;
}

.group:hover .group-hover\:d-none {
  display: none;
}

.group:hover .group-hover\:hidden {
  display: none;
}

.article-wrap {
  line-height: 1.6;
}

.article-wrap p:not(:first-child) {
  margin-top: 12px;
}

.article-wrap p {
  margin-bottom: 12px;
}

.article-wrap h1,
.article-wrap h2,
.article-wrap h3,
.article-wrap h4,
.article-wrap h5,
.article-wrap h6 {
  margin-bottom: 1rem;
}

.article-wrap p~h1,
.article-wrap p~h2,
.article-wrap p~h3,
.article-wrap p~h4,
.article-wrap p~h5,
.article-wrap p~h6 {
  margin-top: 1.5rem;
}

.visibility-visible {
  visibility: visible;
}

.visibility-hidden {
  visibility: hidden;
}

.visibility-collapse {
  visibility: collapse;
}

.visually-hidden {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  opacity: 0 !important;
}

@media (max-width: 1199px) {
  .max-lg\:visibility-visible {
    visibility: visible;
  }

  .max-lg\:visibility-hidden {
    visibility: hidden;
  }

  .max-lg\:visibility-collapse {
    visibility: collapse;
  }
}

@media (max-width: 920px) {
  .max-md\:visibility-visible {
    visibility: visible;
  }

  .max-md\:visibility-hidden {
    visibility: hidden;
  }

  .max-md\:visibility-collapse {
    visibility: collapse;
  }
}

@media (max-width: 640px) {
  .max-sm\:visibility-visible {
    visibility: visible;
  }

  .max-sm\:visibility-hidden {
    visibility: hidden;
  }

  .max-sm\:visibility-collapse {
    visibility: collapse;
  }
}

@media (min-width: 641px) {
  .sm\:visibility-visible {
    visibility: visible;
  }

  .sm\:visibility-hidden {
    visibility: hidden;
  }

  .sm\:visibility-collapse {
    visibility: collapse;
  }
}

@media (min-width: 921px) {
  .md\:visibility-visible {
    visibility: visible;
  }

  .md\:visibility-hidden {
    visibility: hidden;
  }

  .md\:visibility-collapse {
    visibility: collapse;
  }
}

@media (min-width: 1201px) {
  .lg\:visibility-visible {
    visibility: visible;
  }

  .lg\:visibility-hidden {
    visibility: hidden;
  }

  .lg\:visibility-collapse {
    visibility: collapse;
  }
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

@media (max-width: 1199px) {
  .max-lg\:order-0 {
    order: 0;
  }

  .max-lg\:order-1 {
    order: 1;
  }

  .max-lg\:order-2 {
    order: 2;
  }

  .max-lg\:order-3 {
    order: 3;
  }

  .max-lg\:order-4 {
    order: 4;
  }

  .max-lg\:order-5 {
    order: 5;
  }
}

@media (max-width: 920px) {
  .max-md\:order-0 {
    order: 0;
  }

  .max-md\:order-1 {
    order: 1;
  }

  .max-md\:order-2 {
    order: 2;
  }

  .max-md\:order-3 {
    order: 3;
  }

  .max-md\:order-4 {
    order: 4;
  }

  .max-md\:order-5 {
    order: 5;
  }
}

@media (max-width: 640px) {
  .max-sm\:order-0 {
    order: 0;
  }

  .max-sm\:order-1 {
    order: 1;
  }

  .max-sm\:order-2 {
    order: 2;
  }

  .max-sm\:order-3 {
    order: 3;
  }

  .max-sm\:order-4 {
    order: 4;
  }

  .max-sm\:order-5 {
    order: 5;
  }
}

@media (min-width: 641px) {
  .sm\:order-0 {
    order: 0;
  }

  .sm\:order-1 {
    order: 1;
  }

  .sm\:order-2 {
    order: 2;
  }

  .sm\:order-3 {
    order: 3;
  }

  .sm\:order-4 {
    order: 4;
  }

  .sm\:order-5 {
    order: 5;
  }
}

@media (min-width: 921px) {
  .md\:order-0 {
    order: 0;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:order-3 {
    order: 3;
  }

  .md\:order-4 {
    order: 4;
  }

  .md\:order-5 {
    order: 5;
  }
}

@media (min-width: 1201px) {
  .lg\:order-0 {
    order: 0;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:order-3 {
    order: 3;
  }

  .lg\:order-4 {
    order: 4;
  }

  .lg\:order-5 {
    order: 5;
  }
}

.gap-0 {
  gap: 0;
  --flex-gap-rows: 0;
  --flex-gap-cols: 0;
}

.gap-rows-0 {
  row-gap: 0;
  --flex-gap-rows: 0;
}

.gap-cols-0 {
  column-gap: 0;
  --flex-gap-cols: 0;
}

.gap-1 {
  gap: 4px;
  --flex-gap-rows: 4px;
  --flex-gap-cols: 4px;
}

.gap-rows-1 {
  row-gap: 4px;
  --flex-gap-rows: 4px;
}

.gap-cols-1 {
  column-gap: 4px;
  --flex-gap-cols: 4px;
}

.gap-2 {
  gap: 8px;
  --flex-gap-rows: 8px;
  --flex-gap-cols: 8px;
}

.gap-rows-2 {
  row-gap: 8px;
  --flex-gap-rows: 8px;
}

.gap-cols-2 {
  column-gap: 8px;
  --flex-gap-cols: 8px;
}

.gap-3 {
  gap: 12px;
  --flex-gap-rows: 12px;
  --flex-gap-cols: 12px;
}

.gap-rows-3 {
  row-gap: 12px;
  --flex-gap-rows: 12px;
}

.gap-cols-3 {
  column-gap: 12px;
  --flex-gap-cols: 12px;
}

.gap-4 {
  gap: 16px;
  --flex-gap-rows: 16px;
  --flex-gap-cols: 16px;
}

.gap-rows-4 {
  row-gap: 16px;
  --flex-gap-rows: 16px;
}

.gap-cols-4 {
  column-gap: 16px;
  --flex-gap-cols: 16px;
}

.gap-5 {
  gap: 20px;
  --flex-gap-rows: 20px;
  --flex-gap-cols: 20px;
}

.gap-rows-5 {
  row-gap: 20px;
  --flex-gap-rows: 20px;
}

.gap-cols-5 {
  column-gap: 20px;
  --flex-gap-cols: 20px;
}

.gap-6 {
  gap: 24px;
  --flex-gap-rows: 24px;
  --flex-gap-cols: 24px;
}

.gap-rows-6 {
  row-gap: 24px;
  --flex-gap-rows: 24px;
}

.gap-cols-6 {
  column-gap: 24px;
  --flex-gap-cols: 24px;
}

.gap-7 {
  gap: 28px;
  --flex-gap-rows: 28px;
  --flex-gap-cols: 28px;
}

.gap-rows-7 {
  row-gap: 28px;
  --flex-gap-rows: 28px;
}

.gap-cols-7 {
  column-gap: 28px;
  --flex-gap-cols: 28px;
}

.gap-8 {
  gap: 32px;
  --flex-gap-rows: 32px;
  --flex-gap-cols: 32px;
}

.gap-rows-8 {
  row-gap: 32px;
  --flex-gap-rows: 32px;
}

.gap-cols-8 {
  column-gap: 32px;
  --flex-gap-cols: 32px;
}

.gap-9 {
  gap: 36px;
  --flex-gap-rows: 36px;
  --flex-gap-cols: 36px;
}

.gap-rows-9 {
  row-gap: 36px;
  --flex-gap-rows: 36px;
}

.gap-cols-9 {
  column-gap: 36px;
  --flex-gap-cols: 36px;
}

.gap-10 {
  gap: 40px;
  --flex-gap-rows: 40px;
  --flex-gap-cols: 40px;
}

.gap-rows-10 {
  row-gap: 40px;
  --flex-gap-rows: 40px;
}

.gap-cols-10 {
  column-gap: 40px;
  --flex-gap-cols: 40px;
}

@media (max-width: 1199px) {
  .max-lg\:gap-0 {
    gap: 0;
    --flex-gap-rows: 0;
    --flex-gap-cols: 0;
  }

  .max-lg\:gap-rows-0 {
    row-gap: 0;
    --flex-gap-rows: 0;
  }

  .max-lg\:gap-cols-0 {
    column-gap: 0;
    --flex-gap-cols: 0;
  }

  .max-lg\:gap-1 {
    gap: 4px;
    --flex-gap-rows: 4px;
    --flex-gap-cols: 4px;
  }

  .max-lg\:gap-rows-1 {
    row-gap: 4px;
    --flex-gap-rows: 4px;
  }

  .max-lg\:gap-cols-1 {
    column-gap: 4px;
    --flex-gap-cols: 4px;
  }

  .max-lg\:gap-2 {
    gap: 8px;
    --flex-gap-rows: 8px;
    --flex-gap-cols: 8px;
  }

  .max-lg\:gap-rows-2 {
    row-gap: 8px;
    --flex-gap-rows: 8px;
  }

  .max-lg\:gap-cols-2 {
    column-gap: 8px;
    --flex-gap-cols: 8px;
  }

  .max-lg\:gap-3 {
    gap: 12px;
    --flex-gap-rows: 12px;
    --flex-gap-cols: 12px;
  }

  .max-lg\:gap-rows-3 {
    row-gap: 12px;
    --flex-gap-rows: 12px;
  }

  .max-lg\:gap-cols-3 {
    column-gap: 12px;
    --flex-gap-cols: 12px;
  }

  .max-lg\:gap-4 {
    gap: 16px;
    --flex-gap-rows: 16px;
    --flex-gap-cols: 16px;
  }

  .max-lg\:gap-rows-4 {
    row-gap: 16px;
    --flex-gap-rows: 16px;
  }

  .max-lg\:gap-cols-4 {
    column-gap: 16px;
    --flex-gap-cols: 16px;
  }

  .max-lg\:gap-5 {
    gap: 20px;
    --flex-gap-rows: 20px;
    --flex-gap-cols: 20px;
  }

  .max-lg\:gap-rows-5 {
    row-gap: 20px;
    --flex-gap-rows: 20px;
  }

  .max-lg\:gap-cols-5 {
    column-gap: 20px;
    --flex-gap-cols: 20px;
  }

  .max-lg\:gap-6 {
    gap: 24px;
    --flex-gap-rows: 24px;
    --flex-gap-cols: 24px;
  }

  .max-lg\:gap-rows-6 {
    row-gap: 24px;
    --flex-gap-rows: 24px;
  }

  .max-lg\:gap-cols-6 {
    column-gap: 24px;
    --flex-gap-cols: 24px;
  }

  .max-lg\:gap-7 {
    gap: 28px;
    --flex-gap-rows: 28px;
    --flex-gap-cols: 28px;
  }

  .max-lg\:gap-rows-7 {
    row-gap: 28px;
    --flex-gap-rows: 28px;
  }

  .max-lg\:gap-cols-7 {
    column-gap: 28px;
    --flex-gap-cols: 28px;
  }

  .max-lg\:gap-8 {
    gap: 32px;
    --flex-gap-rows: 32px;
    --flex-gap-cols: 32px;
  }

  .max-lg\:gap-rows-8 {
    row-gap: 32px;
    --flex-gap-rows: 32px;
  }

  .max-lg\:gap-cols-8 {
    column-gap: 32px;
    --flex-gap-cols: 32px;
  }

  .max-lg\:gap-9 {
    gap: 36px;
    --flex-gap-rows: 36px;
    --flex-gap-cols: 36px;
  }

  .max-lg\:gap-rows-9 {
    row-gap: 36px;
    --flex-gap-rows: 36px;
  }

  .max-lg\:gap-cols-9 {
    column-gap: 36px;
    --flex-gap-cols: 36px;
  }

  .max-lg\:gap-10 {
    gap: 40px;
    --flex-gap-rows: 40px;
    --flex-gap-cols: 40px;
  }

  .max-lg\:gap-rows-10 {
    row-gap: 40px;
    --flex-gap-rows: 40px;
  }

  .max-lg\:gap-cols-10 {
    column-gap: 40px;
    --flex-gap-cols: 40px;
  }
}

@media (max-width: 920px) {
  .max-md\:gap-0 {
    gap: 0;
    --flex-gap-rows: 0;
    --flex-gap-cols: 0;
  }

  .max-md\:gap-rows-0 {
    row-gap: 0;
    --flex-gap-rows: 0;
  }

  .max-md\:gap-cols-0 {
    column-gap: 0;
    --flex-gap-cols: 0;
  }

  .max-md\:gap-1 {
    gap: 4px;
    --flex-gap-rows: 4px;
    --flex-gap-cols: 4px;
  }

  .max-md\:gap-rows-1 {
    row-gap: 4px;
    --flex-gap-rows: 4px;
  }

  .max-md\:gap-cols-1 {
    column-gap: 4px;
    --flex-gap-cols: 4px;
  }

  .max-md\:gap-2 {
    gap: 8px;
    --flex-gap-rows: 8px;
    --flex-gap-cols: 8px;
  }

  .max-md\:gap-rows-2 {
    row-gap: 8px;
    --flex-gap-rows: 8px;
  }

  .max-md\:gap-cols-2 {
    column-gap: 8px;
    --flex-gap-cols: 8px;
  }

  .max-md\:gap-3 {
    gap: 12px;
    --flex-gap-rows: 12px;
    --flex-gap-cols: 12px;
  }

  .max-md\:gap-rows-3 {
    row-gap: 12px;
    --flex-gap-rows: 12px;
  }

  .max-md\:gap-cols-3 {
    column-gap: 12px;
    --flex-gap-cols: 12px;
  }

  .max-md\:gap-4 {
    gap: 16px;
    --flex-gap-rows: 16px;
    --flex-gap-cols: 16px;
  }

  .max-md\:gap-rows-4 {
    row-gap: 16px;
    --flex-gap-rows: 16px;
  }

  .max-md\:gap-cols-4 {
    column-gap: 16px;
    --flex-gap-cols: 16px;
  }

  .max-md\:gap-5 {
    gap: 20px;
    --flex-gap-rows: 20px;
    --flex-gap-cols: 20px;
  }

  .max-md\:gap-rows-5 {
    row-gap: 20px;
    --flex-gap-rows: 20px;
  }

  .max-md\:gap-cols-5 {
    column-gap: 20px;
    --flex-gap-cols: 20px;
  }

  .max-md\:gap-6 {
    gap: 24px;
    --flex-gap-rows: 24px;
    --flex-gap-cols: 24px;
  }

  .max-md\:gap-rows-6 {
    row-gap: 24px;
    --flex-gap-rows: 24px;
  }

  .max-md\:gap-cols-6 {
    column-gap: 24px;
    --flex-gap-cols: 24px;
  }

  .max-md\:gap-7 {
    gap: 28px;
    --flex-gap-rows: 28px;
    --flex-gap-cols: 28px;
  }

  .max-md\:gap-rows-7 {
    row-gap: 28px;
    --flex-gap-rows: 28px;
  }

  .max-md\:gap-cols-7 {
    column-gap: 28px;
    --flex-gap-cols: 28px;
  }

  .max-md\:gap-8 {
    gap: 32px;
    --flex-gap-rows: 32px;
    --flex-gap-cols: 32px;
  }

  .max-md\:gap-rows-8 {
    row-gap: 32px;
    --flex-gap-rows: 32px;
  }

  .max-md\:gap-cols-8 {
    column-gap: 32px;
    --flex-gap-cols: 32px;
  }

  .max-md\:gap-9 {
    gap: 36px;
    --flex-gap-rows: 36px;
    --flex-gap-cols: 36px;
  }

  .max-md\:gap-rows-9 {
    row-gap: 36px;
    --flex-gap-rows: 36px;
  }

  .max-md\:gap-cols-9 {
    column-gap: 36px;
    --flex-gap-cols: 36px;
  }

  .max-md\:gap-10 {
    gap: 40px;
    --flex-gap-rows: 40px;
    --flex-gap-cols: 40px;
  }

  .max-md\:gap-rows-10 {
    row-gap: 40px;
    --flex-gap-rows: 40px;
  }

  .max-md\:gap-cols-10 {
    column-gap: 40px;
    --flex-gap-cols: 40px;
  }
}

@media (max-width: 640px) {
  .max-sm\:gap-0 {
    gap: 0;
    --flex-gap-rows: 0;
    --flex-gap-cols: 0;
  }

  .max-sm\:gap-rows-0 {
    row-gap: 0;
    --flex-gap-rows: 0;
  }

  .max-sm\:gap-cols-0 {
    column-gap: 0;
    --flex-gap-cols: 0;
  }

  .max-sm\:gap-1 {
    gap: 4px;
    --flex-gap-rows: 4px;
    --flex-gap-cols: 4px;
  }

  .max-sm\:gap-rows-1 {
    row-gap: 4px;
    --flex-gap-rows: 4px;
  }

  .max-sm\:gap-cols-1 {
    column-gap: 4px;
    --flex-gap-cols: 4px;
  }

  .max-sm\:gap-2 {
    gap: 8px;
    --flex-gap-rows: 8px;
    --flex-gap-cols: 8px;
  }

  .max-sm\:gap-rows-2 {
    row-gap: 8px;
    --flex-gap-rows: 8px;
  }

  .max-sm\:gap-cols-2 {
    column-gap: 8px;
    --flex-gap-cols: 8px;
  }

  .max-sm\:gap-3 {
    gap: 12px;
    --flex-gap-rows: 12px;
    --flex-gap-cols: 12px;
  }

  .max-sm\:gap-rows-3 {
    row-gap: 12px;
    --flex-gap-rows: 12px;
  }

  .max-sm\:gap-cols-3 {
    column-gap: 12px;
    --flex-gap-cols: 12px;
  }

  .max-sm\:gap-4 {
    gap: 16px;
    --flex-gap-rows: 16px;
    --flex-gap-cols: 16px;
  }

  .max-sm\:gap-rows-4 {
    row-gap: 16px;
    --flex-gap-rows: 16px;
  }

  .max-sm\:gap-cols-4 {
    column-gap: 16px;
    --flex-gap-cols: 16px;
  }

  .max-sm\:gap-5 {
    gap: 20px;
    --flex-gap-rows: 20px;
    --flex-gap-cols: 20px;
  }

  .max-sm\:gap-rows-5 {
    row-gap: 20px;
    --flex-gap-rows: 20px;
  }

  .max-sm\:gap-cols-5 {
    column-gap: 20px;
    --flex-gap-cols: 20px;
  }

  .max-sm\:gap-6 {
    gap: 24px;
    --flex-gap-rows: 24px;
    --flex-gap-cols: 24px;
  }

  .max-sm\:gap-rows-6 {
    row-gap: 24px;
    --flex-gap-rows: 24px;
  }

  .max-sm\:gap-cols-6 {
    column-gap: 24px;
    --flex-gap-cols: 24px;
  }

  .max-sm\:gap-7 {
    gap: 28px;
    --flex-gap-rows: 28px;
    --flex-gap-cols: 28px;
  }

  .max-sm\:gap-rows-7 {
    row-gap: 28px;
    --flex-gap-rows: 28px;
  }

  .max-sm\:gap-cols-7 {
    column-gap: 28px;
    --flex-gap-cols: 28px;
  }

  .max-sm\:gap-8 {
    gap: 32px;
    --flex-gap-rows: 32px;
    --flex-gap-cols: 32px;
  }

  .max-sm\:gap-rows-8 {
    row-gap: 32px;
    --flex-gap-rows: 32px;
  }

  .max-sm\:gap-cols-8 {
    column-gap: 32px;
    --flex-gap-cols: 32px;
  }

  .max-sm\:gap-9 {
    gap: 36px;
    --flex-gap-rows: 36px;
    --flex-gap-cols: 36px;
  }

  .max-sm\:gap-rows-9 {
    row-gap: 36px;
    --flex-gap-rows: 36px;
  }

  .max-sm\:gap-cols-9 {
    column-gap: 36px;
    --flex-gap-cols: 36px;
  }

  .max-sm\:gap-10 {
    gap: 40px;
    --flex-gap-rows: 40px;
    --flex-gap-cols: 40px;
  }

  .max-sm\:gap-rows-10 {
    row-gap: 40px;
    --flex-gap-rows: 40px;
  }

  .max-sm\:gap-cols-10 {
    column-gap: 40px;
    --flex-gap-cols: 40px;
  }
}

@media (min-width: 641px) {
  .sm\:gap-0 {
    gap: 0;
    --flex-gap-rows: 0;
    --flex-gap-cols: 0;
  }

  .sm\:gap-rows-0 {
    row-gap: 0;
    --flex-gap-rows: 0;
  }

  .sm\:gap-cols-0 {
    column-gap: 0;
    --flex-gap-cols: 0;
  }

  .sm\:gap-1 {
    gap: 4px;
    --flex-gap-rows: 4px;
    --flex-gap-cols: 4px;
  }

  .sm\:gap-rows-1 {
    row-gap: 4px;
    --flex-gap-rows: 4px;
  }

  .sm\:gap-cols-1 {
    column-gap: 4px;
    --flex-gap-cols: 4px;
  }

  .sm\:gap-2 {
    gap: 8px;
    --flex-gap-rows: 8px;
    --flex-gap-cols: 8px;
  }

  .sm\:gap-rows-2 {
    row-gap: 8px;
    --flex-gap-rows: 8px;
  }

  .sm\:gap-cols-2 {
    column-gap: 8px;
    --flex-gap-cols: 8px;
  }

  .sm\:gap-3 {
    gap: 12px;
    --flex-gap-rows: 12px;
    --flex-gap-cols: 12px;
  }

  .sm\:gap-rows-3 {
    row-gap: 12px;
    --flex-gap-rows: 12px;
  }

  .sm\:gap-cols-3 {
    column-gap: 12px;
    --flex-gap-cols: 12px;
  }

  .sm\:gap-4 {
    gap: 16px;
    --flex-gap-rows: 16px;
    --flex-gap-cols: 16px;
  }

  .sm\:gap-rows-4 {
    row-gap: 16px;
    --flex-gap-rows: 16px;
  }

  .sm\:gap-cols-4 {
    column-gap: 16px;
    --flex-gap-cols: 16px;
  }

  .sm\:gap-5 {
    gap: 20px;
    --flex-gap-rows: 20px;
    --flex-gap-cols: 20px;
  }

  .sm\:gap-rows-5 {
    row-gap: 20px;
    --flex-gap-rows: 20px;
  }

  .sm\:gap-cols-5 {
    column-gap: 20px;
    --flex-gap-cols: 20px;
  }

  .sm\:gap-6 {
    gap: 24px;
    --flex-gap-rows: 24px;
    --flex-gap-cols: 24px;
  }

  .sm\:gap-rows-6 {
    row-gap: 24px;
    --flex-gap-rows: 24px;
  }

  .sm\:gap-cols-6 {
    column-gap: 24px;
    --flex-gap-cols: 24px;
  }

  .sm\:gap-7 {
    gap: 28px;
    --flex-gap-rows: 28px;
    --flex-gap-cols: 28px;
  }

  .sm\:gap-rows-7 {
    row-gap: 28px;
    --flex-gap-rows: 28px;
  }

  .sm\:gap-cols-7 {
    column-gap: 28px;
    --flex-gap-cols: 28px;
  }

  .sm\:gap-8 {
    gap: 32px;
    --flex-gap-rows: 32px;
    --flex-gap-cols: 32px;
  }

  .sm\:gap-rows-8 {
    row-gap: 32px;
    --flex-gap-rows: 32px;
  }

  .sm\:gap-cols-8 {
    column-gap: 32px;
    --flex-gap-cols: 32px;
  }

  .sm\:gap-9 {
    gap: 36px;
    --flex-gap-rows: 36px;
    --flex-gap-cols: 36px;
  }

  .sm\:gap-rows-9 {
    row-gap: 36px;
    --flex-gap-rows: 36px;
  }

  .sm\:gap-cols-9 {
    column-gap: 36px;
    --flex-gap-cols: 36px;
  }

  .sm\:gap-10 {
    gap: 40px;
    --flex-gap-rows: 40px;
    --flex-gap-cols: 40px;
  }

  .sm\:gap-rows-10 {
    row-gap: 40px;
    --flex-gap-rows: 40px;
  }

  .sm\:gap-cols-10 {
    column-gap: 40px;
    --flex-gap-cols: 40px;
  }
}

@media (min-width: 921px) {
  .md\:gap-0 {
    gap: 0;
    --flex-gap-rows: 0;
    --flex-gap-cols: 0;
  }

  .md\:gap-rows-0 {
    row-gap: 0;
    --flex-gap-rows: 0;
  }

  .md\:gap-cols-0 {
    column-gap: 0;
    --flex-gap-cols: 0;
  }

  .md\:gap-1 {
    gap: 4px;
    --flex-gap-rows: 4px;
    --flex-gap-cols: 4px;
  }

  .md\:gap-rows-1 {
    row-gap: 4px;
    --flex-gap-rows: 4px;
  }

  .md\:gap-cols-1 {
    column-gap: 4px;
    --flex-gap-cols: 4px;
  }

  .md\:gap-2 {
    gap: 8px;
    --flex-gap-rows: 8px;
    --flex-gap-cols: 8px;
  }

  .md\:gap-rows-2 {
    row-gap: 8px;
    --flex-gap-rows: 8px;
  }

  .md\:gap-cols-2 {
    column-gap: 8px;
    --flex-gap-cols: 8px;
  }

  .md\:gap-3 {
    gap: 12px;
    --flex-gap-rows: 12px;
    --flex-gap-cols: 12px;
  }

  .md\:gap-rows-3 {
    row-gap: 12px;
    --flex-gap-rows: 12px;
  }

  .md\:gap-cols-3 {
    column-gap: 12px;
    --flex-gap-cols: 12px;
  }

  .md\:gap-4 {
    gap: 16px;
    --flex-gap-rows: 16px;
    --flex-gap-cols: 16px;
  }

  .md\:gap-rows-4 {
    row-gap: 16px;
    --flex-gap-rows: 16px;
  }

  .md\:gap-cols-4 {
    column-gap: 16px;
    --flex-gap-cols: 16px;
  }

  .md\:gap-5 {
    gap: 20px;
    --flex-gap-rows: 20px;
    --flex-gap-cols: 20px;
  }

  .md\:gap-rows-5 {
    row-gap: 20px;
    --flex-gap-rows: 20px;
  }

  .md\:gap-cols-5 {
    column-gap: 20px;
    --flex-gap-cols: 20px;
  }

  .md\:gap-6 {
    gap: 24px;
    --flex-gap-rows: 24px;
    --flex-gap-cols: 24px;
  }

  .md\:gap-rows-6 {
    row-gap: 24px;
    --flex-gap-rows: 24px;
  }

  .md\:gap-cols-6 {
    column-gap: 24px;
    --flex-gap-cols: 24px;
  }

  .md\:gap-7 {
    gap: 28px;
    --flex-gap-rows: 28px;
    --flex-gap-cols: 28px;
  }

  .md\:gap-rows-7 {
    row-gap: 28px;
    --flex-gap-rows: 28px;
  }

  .md\:gap-cols-7 {
    column-gap: 28px;
    --flex-gap-cols: 28px;
  }

  .md\:gap-8 {
    gap: 32px;
    --flex-gap-rows: 32px;
    --flex-gap-cols: 32px;
  }

  .md\:gap-rows-8 {
    row-gap: 32px;
    --flex-gap-rows: 32px;
  }

  .md\:gap-cols-8 {
    column-gap: 32px;
    --flex-gap-cols: 32px;
  }

  .md\:gap-9 {
    gap: 36px;
    --flex-gap-rows: 36px;
    --flex-gap-cols: 36px;
  }

  .md\:gap-rows-9 {
    row-gap: 36px;
    --flex-gap-rows: 36px;
  }

  .md\:gap-cols-9 {
    column-gap: 36px;
    --flex-gap-cols: 36px;
  }

  .md\:gap-10 {
    gap: 40px;
    --flex-gap-rows: 40px;
    --flex-gap-cols: 40px;
  }

  .md\:gap-rows-10 {
    row-gap: 40px;
    --flex-gap-rows: 40px;
  }

  .md\:gap-cols-10 {
    column-gap: 40px;
    --flex-gap-cols: 40px;
  }
}

@media (min-width: 1201px) {
  .lg\:gap-0 {
    gap: 0;
    --flex-gap-rows: 0;
    --flex-gap-cols: 0;
  }

  .lg\:gap-rows-0 {
    row-gap: 0;
    --flex-gap-rows: 0;
  }

  .lg\:gap-cols-0 {
    column-gap: 0;
    --flex-gap-cols: 0;
  }

  .lg\:gap-1 {
    gap: 4px;
    --flex-gap-rows: 4px;
    --flex-gap-cols: 4px;
  }

  .lg\:gap-rows-1 {
    row-gap: 4px;
    --flex-gap-rows: 4px;
  }

  .lg\:gap-cols-1 {
    column-gap: 4px;
    --flex-gap-cols: 4px;
  }

  .lg\:gap-2 {
    gap: 8px;
    --flex-gap-rows: 8px;
    --flex-gap-cols: 8px;
  }

  .lg\:gap-rows-2 {
    row-gap: 8px;
    --flex-gap-rows: 8px;
  }

  .lg\:gap-cols-2 {
    column-gap: 8px;
    --flex-gap-cols: 8px;
  }

  .lg\:gap-3 {
    gap: 12px;
    --flex-gap-rows: 12px;
    --flex-gap-cols: 12px;
  }

  .lg\:gap-rows-3 {
    row-gap: 12px;
    --flex-gap-rows: 12px;
  }

  .lg\:gap-cols-3 {
    column-gap: 12px;
    --flex-gap-cols: 12px;
  }

  .lg\:gap-4 {
    gap: 16px;
    --flex-gap-rows: 16px;
    --flex-gap-cols: 16px;
  }

  .lg\:gap-rows-4 {
    row-gap: 16px;
    --flex-gap-rows: 16px;
  }

  .lg\:gap-cols-4 {
    column-gap: 16px;
    --flex-gap-cols: 16px;
  }

  .lg\:gap-5 {
    gap: 20px;
    --flex-gap-rows: 20px;
    --flex-gap-cols: 20px;
  }

  .lg\:gap-rows-5 {
    row-gap: 20px;
    --flex-gap-rows: 20px;
  }

  .lg\:gap-cols-5 {
    column-gap: 20px;
    --flex-gap-cols: 20px;
  }

  .lg\:gap-6 {
    gap: 24px;
    --flex-gap-rows: 24px;
    --flex-gap-cols: 24px;
  }

  .lg\:gap-rows-6 {
    row-gap: 24px;
    --flex-gap-rows: 24px;
  }

  .lg\:gap-cols-6 {
    column-gap: 24px;
    --flex-gap-cols: 24px;
  }

  .lg\:gap-7 {
    gap: 28px;
    --flex-gap-rows: 28px;
    --flex-gap-cols: 28px;
  }

  .lg\:gap-rows-7 {
    row-gap: 28px;
    --flex-gap-rows: 28px;
  }

  .lg\:gap-cols-7 {
    column-gap: 28px;
    --flex-gap-cols: 28px;
  }

  .lg\:gap-8 {
    gap: 32px;
    --flex-gap-rows: 32px;
    --flex-gap-cols: 32px;
  }

  .lg\:gap-rows-8 {
    row-gap: 32px;
    --flex-gap-rows: 32px;
  }

  .lg\:gap-cols-8 {
    column-gap: 32px;
    --flex-gap-cols: 32px;
  }

  .lg\:gap-9 {
    gap: 36px;
    --flex-gap-rows: 36px;
    --flex-gap-cols: 36px;
  }

  .lg\:gap-rows-9 {
    row-gap: 36px;
    --flex-gap-rows: 36px;
  }

  .lg\:gap-cols-9 {
    column-gap: 36px;
    --flex-gap-cols: 36px;
  }

  .lg\:gap-10 {
    gap: 40px;
    --flex-gap-rows: 40px;
    --flex-gap-cols: 40px;
  }

  .lg\:gap-rows-10 {
    row-gap: 40px;
    --flex-gap-rows: 40px;
  }

  .lg\:gap-cols-10 {
    column-gap: 40px;
    --flex-gap-cols: 40px;
  }
}

.float-start {
  float: inline-start;
}

.float-end {
  float: inline-end;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

@media (max-width: 1199px) {
  .max-lg\:float-start {
    float: inline-start;
  }

  .max-lg\:float-end {
    float: inline-end;
  }

  .max-lg\:float-right {
    float: right;
  }

  .max-lg\:float-left {
    float: left;
  }

  .max-lg\:float-none {
    float: none;
  }
}

@media (max-width: 920px) {
  .max-md\:float-start {
    float: inline-start;
  }

  .max-md\:float-end {
    float: inline-end;
  }

  .max-md\:float-right {
    float: right;
  }

  .max-md\:float-left {
    float: left;
  }

  .max-md\:float-none {
    float: none;
  }
}

@media (max-width: 640px) {
  .max-sm\:float-start {
    float: inline-start;
  }

  .max-sm\:float-end {
    float: inline-end;
  }

  .max-sm\:float-right {
    float: right;
  }

  .max-sm\:float-left {
    float: left;
  }

  .max-sm\:float-none {
    float: none;
  }
}

@media (min-width: 641px) {
  .sm\:float-start {
    float: inline-start;
  }

  .sm\:float-end {
    float: inline-end;
  }

  .sm\:float-right {
    float: right;
  }

  .sm\:float-left {
    float: left;
  }

  .sm\:float-none {
    float: none;
  }
}

@media (min-width: 921px) {
  .md\:float-start {
    float: inline-start;
  }

  .md\:float-end {
    float: inline-end;
  }

  .md\:float-right {
    float: right;
  }

  .md\:float-left {
    float: left;
  }

  .md\:float-none {
    float: none;
  }
}

@media (min-width: 1201px) {
  .lg\:float-start {
    float: inline-start;
  }

  .lg\:float-end {
    float: inline-end;
  }

  .lg\:float-right {
    float: right;
  }

  .lg\:float-left {
    float: left;
  }

  .lg\:float-none {
    float: none;
  }
}

.font-light,
.font-300 {
  font-weight: 300 !important;
}

.font-normal,
.font-400 {
  font-weight: 400 !important;
}

.font-medium,
.font-500 {
  font-weight: 500 !important;
}

.font-semibold,
.font-600 {
  font-weight: 600 !important;
}

.font-bold,
.font-700 {
  font-weight: 700 !important;
}

.font-bolder,
.font-800 {
  font-weight: bolder !important;
}

.font-style-italic {
  font-style: italic;
}

.font-style-normal {
  font-style: normal;
}

.text-wrap {
  text-wrap: wrap !important;
}

.text-balance {
  text-wrap: balance !important;
}

.text-pretty {
  text-wrap: pretty !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-underline {
  text-decoration: underline !important;
}

.text-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
  text-wrap: nowrap !important;
}

.text-truncate {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.lh-1 {
  line-height: 1;
}

.lh-base {
  line-height: var(--line-height-base, 1.4);
}

.lh-sm {
  line-height: var(--line-height-sm, 1.25);
}

.lh-lg {
  line-height: var(--line-height-lg, 1.8);
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

@media (max-width: 1199px) {
  .max-lg\:text-left {
    text-align: left !important;
  }

  .max-lg\:text-right {
    text-align: right !important;
  }

  .max-lg\:text-center {
    text-align: center !important;
  }
}

@media (max-width: 920px) {
  .max-md\:text-left {
    text-align: left !important;
  }

  .max-md\:text-right {
    text-align: right !important;
  }

  .max-md\:text-center {
    text-align: center !important;
  }
}

@media (max-width: 640px) {
  .max-sm\:text-left {
    text-align: left !important;
  }

  .max-sm\:text-right {
    text-align: right !important;
  }

  .max-sm\:text-center {
    text-align: center !important;
  }
}

@media (min-width: 641px) {
  .sm\:text-left {
    text-align: left !important;
  }

  .sm\:text-right {
    text-align: right !important;
  }

  .sm\:text-center {
    text-align: center !important;
  }
}

@media (min-width: 921px) {
  .md\:text-left {
    text-align: left !important;
  }

  .md\:text-right {
    text-align: right !important;
  }

  .md\:text-center {
    text-align: center !important;
  }
}

@media (min-width: 1201px) {
  .lg\:text-left {
    text-align: left !important;
  }

  .lg\:text-right {
    text-align: right !important;
  }

  .lg\:text-center {
    text-align: center !important;
  }
}

.hover\:text-underline:hover {
  text-decoration: underline !important;
}

.group:hover .group-hover\:text-underline {
  text-decoration: underline !important;
}

.hover\:text-decoration-none:hover {
  text-decoration: none !important;
}

.group:hover .group-hover\:text-decoration-none {
  text-decoration: none !important;
}

.text-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.25;
}

h6 {
  font-size: 1rem;
}

h5 {
  font-size: 1.12rem;
}

h4 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.8rem;
}

h2 {
  font-size: 2.2rem;
}

h1 {
  font-size: 3rem;
}

.text-xs {
  font-size: 0.8rem;
}

.text-sm {
  font-size: 0.9rem;
}

.text-default {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.12rem;
}

.text-xl {
  font-size: 1.3rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.8rem;
}

.text-4xl {
  font-size: 2.2rem;
}

.text-5xl {
  font-size: 2.8rem;
}

.text-6xl {
  font-size: 3.4rem;
}

.text-7xl {
  font-size: 4rem;
}

.text-8xl {
  font-size: 5rem;
}

.text-9xl {
  font-size: 6rem;
}

@media (max-width: 1199px) {
  .max-lg\:text-xs {
    font-size: 0.8rem !important;
  }

  .max-lg\:text-sm {
    font-size: 0.9rem !important;
  }

  .max-lg\:text-default {
    font-size: 1rem !important;
  }

  .max-lg\:text-lg {
    font-size: 1.12rem !important;
  }

  .max-lg\:text-xl {
    font-size: 1.3rem !important;
  }

  .max-lg\:text-2xl {
    font-size: 1.5rem !important;
  }

  .max-lg\:text-3xl {
    font-size: 1.8rem !important;
  }

  .max-lg\:text-4xl {
    font-size: 2.2rem !important;
  }

  .max-lg\:text-5xl {
    font-size: 2.8rem !important;
  }

  .max-lg\:text-6xl {
    font-size: 3.4rem !important;
  }

  .max-lg\:text-7xl {
    font-size: 4rem !important;
  }

  .max-lg\:text-8xl {
    font-size: 5rem !important;
  }

  .max-lg\:text-9xl {
    font-size: 6rem !important;
  }
}

@media (max-width: 920px) {
  .max-md\:text-xs {
    font-size: 0.8rem !important;
  }

  .max-md\:text-sm {
    font-size: 0.9rem !important;
  }

  .max-md\:text-default {
    font-size: 1rem !important;
  }

  .max-md\:text-lg {
    font-size: 1.12rem !important;
  }

  .max-md\:text-xl {
    font-size: 1.3rem !important;
  }

  .max-md\:text-2xl {
    font-size: 1.5rem !important;
  }

  .max-md\:text-3xl {
    font-size: 1.8rem !important;
  }

  .max-md\:text-4xl {
    font-size: 2.2rem !important;
  }

  .max-md\:text-5xl {
    font-size: 2.8rem !important;
  }

  .max-md\:text-6xl {
    font-size: 3.4rem !important;
  }

  .max-md\:text-7xl {
    font-size: 4rem !important;
  }

  .max-md\:text-8xl {
    font-size: 5rem !important;
  }

  .max-md\:text-9xl {
    font-size: 6rem !important;
  }
}

@media (max-width: 640px) {
  .max-sm\:text-xs {
    font-size: 0.8rem !important;
  }

  .max-sm\:text-sm {
    font-size: 0.9rem !important;
  }

  .max-sm\:text-default {
    font-size: 1rem !important;
  }

  .max-sm\:text-lg {
    font-size: 1.12rem !important;
  }

  .max-sm\:text-xl {
    font-size: 1.3rem !important;
  }

  .max-sm\:text-2xl {
    font-size: 1.5rem !important;
  }

  .max-sm\:text-3xl {
    font-size: 1.8rem !important;
  }

  .max-sm\:text-4xl {
    font-size: 2.2rem !important;
  }

  .max-sm\:text-5xl {
    font-size: 2.8rem !important;
  }

  .max-sm\:text-6xl {
    font-size: 3.4rem !important;
  }

  .max-sm\:text-7xl {
    font-size: 4rem !important;
  }

  .max-sm\:text-8xl {
    font-size: 5rem !important;
  }

  .max-sm\:text-9xl {
    font-size: 6rem !important;
  }
}

@media (min-width: 641px) {
  .sm\:text-xs {
    font-size: 0.8rem !important;
  }

  .sm\:text-sm {
    font-size: 0.9rem !important;
  }

  .sm\:text-default {
    font-size: 1rem !important;
  }

  .sm\:text-lg {
    font-size: 1.12rem !important;
  }

  .sm\:text-xl {
    font-size: 1.3rem !important;
  }

  .sm\:text-2xl {
    font-size: 1.5rem !important;
  }

  .sm\:text-3xl {
    font-size: 1.8rem !important;
  }

  .sm\:text-4xl {
    font-size: 2.2rem !important;
  }

  .sm\:text-5xl {
    font-size: 2.8rem !important;
  }

  .sm\:text-6xl {
    font-size: 3.4rem !important;
  }

  .sm\:text-7xl {
    font-size: 4rem !important;
  }

  .sm\:text-8xl {
    font-size: 5rem !important;
  }

  .sm\:text-9xl {
    font-size: 6rem !important;
  }
}

@media (min-width: 921px) {
  .md\:text-xs {
    font-size: 0.8rem !important;
  }

  .md\:text-sm {
    font-size: 0.9rem !important;
  }

  .md\:text-default {
    font-size: 1rem !important;
  }

  .md\:text-lg {
    font-size: 1.12rem !important;
  }

  .md\:text-xl {
    font-size: 1.3rem !important;
  }

  .md\:text-2xl {
    font-size: 1.5rem !important;
  }

  .md\:text-3xl {
    font-size: 1.8rem !important;
  }

  .md\:text-4xl {
    font-size: 2.2rem !important;
  }

  .md\:text-5xl {
    font-size: 2.8rem !important;
  }

  .md\:text-6xl {
    font-size: 3.4rem !important;
  }

  .md\:text-7xl {
    font-size: 4rem !important;
  }

  .md\:text-8xl {
    font-size: 5rem !important;
  }

  .md\:text-9xl {
    font-size: 6rem !important;
  }
}

@media (min-width: 1201px) {
  .lg\:text-xs {
    font-size: 0.8rem !important;
  }

  .lg\:text-sm {
    font-size: 0.9rem !important;
  }

  .lg\:text-default {
    font-size: 1rem !important;
  }

  .lg\:text-lg {
    font-size: 1.12rem !important;
  }

  .lg\:text-xl {
    font-size: 1.3rem !important;
  }

  .lg\:text-2xl {
    font-size: 1.5rem !important;
  }

  .lg\:text-3xl {
    font-size: 1.8rem !important;
  }

  .lg\:text-4xl {
    font-size: 2.2rem !important;
  }

  .lg\:text-5xl {
    font-size: 2.8rem !important;
  }

  .lg\:text-6xl {
    font-size: 3.4rem !important;
  }

  .lg\:text-7xl {
    font-size: 4rem !important;
  }

  .lg\:text-8xl {
    font-size: 5rem !important;
  }

  .lg\:text-9xl {
    font-size: 6rem !important;
  }
}

.links-color-base a {
  color: var(--text-color-base);
}

.text-base {
  color: var(--text-color-base);
}

.hover\:text-base:hover {
  color: var(--text-color-base);
}

.group:hover .group-hover\:text-base {
  color: var(--text-color-base);
}

.links-color-secondary a {
  color: var(--text-color-secondary);
}

.text-secondary {
  color: var(--text-color-secondary);
}

.hover\:text-secondary:hover {
  color: var(--text-color-secondary);
}

.group:hover .group-hover\:text-secondary {
  color: var(--text-color-secondary);
}

.links-color-muted a {
  color: var(--text-color-muted);
}

.text-muted {
  color: var(--text-color-muted);
}

.hover\:text-muted:hover {
  color: var(--text-color-muted);
}

.group:hover .group-hover\:text-muted {
  color: var(--text-color-muted);
}

.links-color-inherit a {
  color: inherit;
}

.text-inherit {
  color: inherit;
}

.hover\:text-inherit:hover {
  color: inherit;
}

.group:hover .group-hover\:text-inherit {
  color: inherit;
}

.links-color-initial a {
  color: initial;
}

.text-initial {
  color: initial;
}

.hover\:text-initial:hover {
  color: initial;
}

.group:hover .group-hover\:text-initial {
  color: initial;
}

.links-color-white a {
  color: #FFF;
}

.text-white {
  color: #FFF;
}

.hover\:text-white:hover {
  color: #FFF;
}

.group:hover .group-hover\:text-white {
  color: #FFF;
}

.links-color-black a {
  color: #000;
}

.text-black {
  color: #000;
}

.hover\:text-black:hover {
  color: #000;
}

.group:hover .group-hover\:text-black {
  color: #000;
}

.links-color-primary a {
  color: #4f46e5;
}

.text-primary {
  color: #4f46e5;
}

.hover\:text-primary:hover {
  color: #4f46e5;
}

.group:hover .group-hover\:text-primary {
  color: #4f46e5;
}

.links-color-red a {
  color: #d11616;
}

.text-red {
  color: #d11616;
}

.hover\:text-red:hover {
  color: #d11616;
}

.group:hover .group-hover\:text-red {
  color: #d11616;
}

.links-color-green a {
  color: #0d923e;
}

.text-green {
  color: #0d923e;
}

.hover\:text-green:hover {
  color: #0d923e;
}

.group:hover .group-hover\:text-green {
  color: #0d923e;
}

.links-color-blue a {
  color: #2563eb;
}

.text-blue {
  color: #2563eb;
}

.hover\:text-blue:hover {
  color: #2563eb;
}

.group:hover .group-hover\:text-blue {
  color: #2563eb;
}

.links-color-orange a {
  color: #d14f09;
}

.text-orange {
  color: #d14f09;
}

.hover\:text-orange:hover {
  color: #d14f09;
}

.group:hover .group-hover\:text-orange {
  color: #d14f09;
}

.links-color-yellow a {
  color: #D6A400;
}

.text-yellow {
  color: #D6A400;
}

.hover\:text-yellow:hover {
  color: #D6A400;
}

.group:hover .group-hover\:text-yellow {
  color: #D6A400;
}

.links-color-purple a {
  color: #9333ea;
}

.text-purple {
  color: #9333ea;
}

.hover\:text-purple:hover {
  color: #9333ea;
}

.group:hover .group-hover\:text-purple {
  color: #9333ea;
}

.links-color-teal a {
  color: #0d9488;
}

.text-teal {
  color: #0d9488;
}

.hover\:text-teal:hover {
  color: #0d9488;
}

.group:hover .group-hover\:text-teal {
  color: #0d9488;
}

.text-neutral-0 {
  color: var(--neutral-0) !important;
}

.hover\:text-neutral-0:hover {
  color: var(--neutral-0) !important;
}

.group:hover .group-hover\:text-neutral-0 {
  color: var(--neutral-0) !important;
}

.text-neutral-50 {
  color: var(--neutral-50) !important;
}

.hover\:text-neutral-50:hover {
  color: var(--neutral-50) !important;
}

.group:hover .group-hover\:text-neutral-50 {
  color: var(--neutral-50) !important;
}

.text-neutral-100 {
  color: var(--neutral-100) !important;
}

.hover\:text-neutral-100:hover {
  color: var(--neutral-100) !important;
}

.group:hover .group-hover\:text-neutral-100 {
  color: var(--neutral-100) !important;
}

.text-neutral-200 {
  color: var(--neutral-200) !important;
}

.hover\:text-neutral-200:hover {
  color: var(--neutral-200) !important;
}

.group:hover .group-hover\:text-neutral-200 {
  color: var(--neutral-200) !important;
}

.text-neutral-300 {
  color: var(--neutral-300) !important;
}

.hover\:text-neutral-300:hover {
  color: var(--neutral-300) !important;
}

.group:hover .group-hover\:text-neutral-300 {
  color: var(--neutral-300) !important;
}

.text-neutral-400 {
  color: var(--neutral-400) !important;
}

.hover\:text-neutral-400:hover {
  color: var(--neutral-400) !important;
}

.group:hover .group-hover\:text-neutral-400 {
  color: var(--neutral-400) !important;
}

.text-neutral-500 {
  color: var(--neutral-500) !important;
}

.hover\:text-neutral-500:hover {
  color: var(--neutral-500) !important;
}

.group:hover .group-hover\:text-neutral-500 {
  color: var(--neutral-500) !important;
}

.text-neutral-600 {
  color: var(--neutral-600) !important;
}

.hover\:text-neutral-600:hover {
  color: var(--neutral-600) !important;
}

.group:hover .group-hover\:text-neutral-600 {
  color: var(--neutral-600) !important;
}

.text-neutral-700 {
  color: var(--neutral-700) !important;
}

.hover\:text-neutral-700:hover {
  color: var(--neutral-700) !important;
}

.group:hover .group-hover\:text-neutral-700 {
  color: var(--neutral-700) !important;
}

.text-neutral-800 {
  color: var(--neutral-800) !important;
}

.hover\:text-neutral-800:hover {
  color: var(--neutral-800) !important;
}

.group:hover .group-hover\:text-neutral-800 {
  color: var(--neutral-800) !important;
}

.text-neutral-900 {
  color: var(--neutral-900) !important;
}

.hover\:text-neutral-900:hover {
  color: var(--neutral-900) !important;
}

.group:hover .group-hover\:text-neutral-900 {
  color: var(--neutral-900) !important;
}

.text-neutral-1000 {
  color: var(--neutral-1000) !important;
}

.hover\:text-neutral-1000:hover {
  color: var(--neutral-1000) !important;
}

.group:hover .group-hover\:text-neutral-1000 {
  color: var(--neutral-1000) !important;
}

.text-primary-100 {
  color: var(--primary-100) !important;
}

.hover\:text-primary-100:hover {
  color: var(--primary-100) !important;
}

.group:hover .group-hover\:text-primary-100 {
  color: var(--primary-100) !important;
}

.text-primary-200 {
  color: var(--primary-200) !important;
}

.hover\:text-primary-200:hover {
  color: var(--primary-200) !important;
}

.group:hover .group-hover\:text-primary-200 {
  color: var(--primary-200) !important;
}

.text-primary-300 {
  color: var(--primary-300) !important;
}

.hover\:text-primary-300:hover {
  color: var(--primary-300) !important;
}

.group:hover .group-hover\:text-primary-300 {
  color: var(--primary-300) !important;
}

.text-primary-400 {
  color: var(--primary-400) !important;
}

.hover\:text-primary-400:hover {
  color: var(--primary-400) !important;
}

.group:hover .group-hover\:text-primary-400 {
  color: var(--primary-400) !important;
}

.text-primary-500 {
  color: var(--primary-500) !important;
}

.hover\:text-primary-500:hover {
  color: var(--primary-500) !important;
}

.group:hover .group-hover\:text-primary-500 {
  color: var(--primary-500) !important;
}

.text-primary-600 {
  color: var(--primary-600) !important;
}

.hover\:text-primary-600:hover {
  color: var(--primary-600) !important;
}

.group:hover .group-hover\:text-primary-600 {
  color: var(--primary-600) !important;
}

.text-primary-700 {
  color: var(--primary-700) !important;
}

.hover\:text-primary-700:hover {
  color: var(--primary-700) !important;
}

.group:hover .group-hover\:text-primary-700 {
  color: var(--primary-700) !important;
}

.text-primary-800 {
  color: var(--primary-800) !important;
}

.hover\:text-primary-800:hover {
  color: var(--primary-800) !important;
}

.group:hover .group-hover\:text-primary-800 {
  color: var(--primary-800) !important;
}

.text-primary-900 {
  color: var(--primary-900) !important;
}

.hover\:text-primary-900:hover {
  color: var(--primary-900) !important;
}

.group:hover .group-hover\:text-primary-900 {
  color: var(--primary-900) !important;
}

.text-blue-100 {
  color: var(--blue-100) !important;
}

.hover\:text-blue-100:hover {
  color: var(--blue-100) !important;
}

.group:hover .group-hover\:text-blue-100 {
  color: var(--blue-100) !important;
}

.text-blue-200 {
  color: var(--blue-200) !important;
}

.hover\:text-blue-200:hover {
  color: var(--blue-200) !important;
}

.group:hover .group-hover\:text-blue-200 {
  color: var(--blue-200) !important;
}

.text-blue-300 {
  color: var(--blue-300) !important;
}

.hover\:text-blue-300:hover {
  color: var(--blue-300) !important;
}

.group:hover .group-hover\:text-blue-300 {
  color: var(--blue-300) !important;
}

.text-blue-400 {
  color: var(--blue-400) !important;
}

.hover\:text-blue-400:hover {
  color: var(--blue-400) !important;
}

.group:hover .group-hover\:text-blue-400 {
  color: var(--blue-400) !important;
}

.text-blue-500 {
  color: var(--blue-500) !important;
}

.hover\:text-blue-500:hover {
  color: var(--blue-500) !important;
}

.group:hover .group-hover\:text-blue-500 {
  color: var(--blue-500) !important;
}

.text-blue-600 {
  color: var(--blue-600) !important;
}

.hover\:text-blue-600:hover {
  color: var(--blue-600) !important;
}

.group:hover .group-hover\:text-blue-600 {
  color: var(--blue-600) !important;
}

.text-blue-700 {
  color: var(--blue-700) !important;
}

.hover\:text-blue-700:hover {
  color: var(--blue-700) !important;
}

.group:hover .group-hover\:text-blue-700 {
  color: var(--blue-700) !important;
}

.text-blue-800 {
  color: var(--blue-800) !important;
}

.hover\:text-blue-800:hover {
  color: var(--blue-800) !important;
}

.group:hover .group-hover\:text-blue-800 {
  color: var(--blue-800) !important;
}

.text-blue-900 {
  color: var(--blue-900) !important;
}

.hover\:text-blue-900:hover {
  color: var(--blue-900) !important;
}

.group:hover .group-hover\:text-blue-900 {
  color: var(--blue-900) !important;
}

.text-red-100 {
  color: var(--red-100) !important;
}

.hover\:text-red-100:hover {
  color: var(--red-100) !important;
}

.group:hover .group-hover\:text-red-100 {
  color: var(--red-100) !important;
}

.text-red-200 {
  color: var(--red-200) !important;
}

.hover\:text-red-200:hover {
  color: var(--red-200) !important;
}

.group:hover .group-hover\:text-red-200 {
  color: var(--red-200) !important;
}

.text-red-300 {
  color: var(--red-300) !important;
}

.hover\:text-red-300:hover {
  color: var(--red-300) !important;
}

.group:hover .group-hover\:text-red-300 {
  color: var(--red-300) !important;
}

.text-red-400 {
  color: var(--red-400) !important;
}

.hover\:text-red-400:hover {
  color: var(--red-400) !important;
}

.group:hover .group-hover\:text-red-400 {
  color: var(--red-400) !important;
}

.text-red-500 {
  color: var(--red-500) !important;
}

.hover\:text-red-500:hover {
  color: var(--red-500) !important;
}

.group:hover .group-hover\:text-red-500 {
  color: var(--red-500) !important;
}

.text-red-600 {
  color: var(--red-600) !important;
}

.hover\:text-red-600:hover {
  color: var(--red-600) !important;
}

.group:hover .group-hover\:text-red-600 {
  color: var(--red-600) !important;
}

.text-red-700 {
  color: var(--red-700) !important;
}

.hover\:text-red-700:hover {
  color: var(--red-700) !important;
}

.group:hover .group-hover\:text-red-700 {
  color: var(--red-700) !important;
}

.text-red-800 {
  color: var(--red-800) !important;
}

.hover\:text-red-800:hover {
  color: var(--red-800) !important;
}

.group:hover .group-hover\:text-red-800 {
  color: var(--red-800) !important;
}

.text-red-900 {
  color: var(--red-900) !important;
}

.hover\:text-red-900:hover {
  color: var(--red-900) !important;
}

.group:hover .group-hover\:text-red-900 {
  color: var(--red-900) !important;
}

.text-green-100 {
  color: var(--green-100) !important;
}

.hover\:text-green-100:hover {
  color: var(--green-100) !important;
}

.group:hover .group-hover\:text-green-100 {
  color: var(--green-100) !important;
}

.text-green-200 {
  color: var(--green-200) !important;
}

.hover\:text-green-200:hover {
  color: var(--green-200) !important;
}

.group:hover .group-hover\:text-green-200 {
  color: var(--green-200) !important;
}

.text-green-300 {
  color: var(--green-300) !important;
}

.hover\:text-green-300:hover {
  color: var(--green-300) !important;
}

.group:hover .group-hover\:text-green-300 {
  color: var(--green-300) !important;
}

.text-green-400 {
  color: var(--green-400) !important;
}

.hover\:text-green-400:hover {
  color: var(--green-400) !important;
}

.group:hover .group-hover\:text-green-400 {
  color: var(--green-400) !important;
}

.text-green-500 {
  color: var(--green-500) !important;
}

.hover\:text-green-500:hover {
  color: var(--green-500) !important;
}

.group:hover .group-hover\:text-green-500 {
  color: var(--green-500) !important;
}

.text-green-600 {
  color: var(--green-600) !important;
}

.hover\:text-green-600:hover {
  color: var(--green-600) !important;
}

.group:hover .group-hover\:text-green-600 {
  color: var(--green-600) !important;
}

.text-green-700 {
  color: var(--green-700) !important;
}

.hover\:text-green-700:hover {
  color: var(--green-700) !important;
}

.group:hover .group-hover\:text-green-700 {
  color: var(--green-700) !important;
}

.text-green-800 {
  color: var(--green-800) !important;
}

.hover\:text-green-800:hover {
  color: var(--green-800) !important;
}

.group:hover .group-hover\:text-green-800 {
  color: var(--green-800) !important;
}

.text-green-900 {
  color: var(--green-900) !important;
}

.hover\:text-green-900:hover {
  color: var(--green-900) !important;
}

.group:hover .group-hover\:text-green-900 {
  color: var(--green-900) !important;
}

.text-orange-100 {
  color: var(--orange-100) !important;
}

.hover\:text-orange-100:hover {
  color: var(--orange-100) !important;
}

.group:hover .group-hover\:text-orange-100 {
  color: var(--orange-100) !important;
}

.text-orange-200 {
  color: var(--orange-200) !important;
}

.hover\:text-orange-200:hover {
  color: var(--orange-200) !important;
}

.group:hover .group-hover\:text-orange-200 {
  color: var(--orange-200) !important;
}

.text-orange-300 {
  color: var(--orange-300) !important;
}

.hover\:text-orange-300:hover {
  color: var(--orange-300) !important;
}

.group:hover .group-hover\:text-orange-300 {
  color: var(--orange-300) !important;
}

.text-orange-400 {
  color: var(--orange-400) !important;
}

.hover\:text-orange-400:hover {
  color: var(--orange-400) !important;
}

.group:hover .group-hover\:text-orange-400 {
  color: var(--orange-400) !important;
}

.text-orange-500 {
  color: var(--orange-500) !important;
}

.hover\:text-orange-500:hover {
  color: var(--orange-500) !important;
}

.group:hover .group-hover\:text-orange-500 {
  color: var(--orange-500) !important;
}

.text-orange-600 {
  color: var(--orange-600) !important;
}

.hover\:text-orange-600:hover {
  color: var(--orange-600) !important;
}

.group:hover .group-hover\:text-orange-600 {
  color: var(--orange-600) !important;
}

.text-orange-700 {
  color: var(--orange-700) !important;
}

.hover\:text-orange-700:hover {
  color: var(--orange-700) !important;
}

.group:hover .group-hover\:text-orange-700 {
  color: var(--orange-700) !important;
}

.text-orange-800 {
  color: var(--orange-800) !important;
}

.hover\:text-orange-800:hover {
  color: var(--orange-800) !important;
}

.group:hover .group-hover\:text-orange-800 {
  color: var(--orange-800) !important;
}

.text-orange-900 {
  color: var(--orange-900) !important;
}

.hover\:text-orange-900:hover {
  color: var(--orange-900) !important;
}

.group:hover .group-hover\:text-orange-900 {
  color: var(--orange-900) !important;
}

.text-yellow-100 {
  color: var(--yellow-100) !important;
}

.hover\:text-yellow-100:hover {
  color: var(--yellow-100) !important;
}

.group:hover .group-hover\:text-yellow-100 {
  color: var(--yellow-100) !important;
}

.text-yellow-200 {
  color: var(--yellow-200) !important;
}

.hover\:text-yellow-200:hover {
  color: var(--yellow-200) !important;
}

.group:hover .group-hover\:text-yellow-200 {
  color: var(--yellow-200) !important;
}

.text-yellow-300 {
  color: var(--yellow-300) !important;
}

.hover\:text-yellow-300:hover {
  color: var(--yellow-300) !important;
}

.group:hover .group-hover\:text-yellow-300 {
  color: var(--yellow-300) !important;
}

.text-yellow-400 {
  color: var(--yellow-400) !important;
}

.hover\:text-yellow-400:hover {
  color: var(--yellow-400) !important;
}

.group:hover .group-hover\:text-yellow-400 {
  color: var(--yellow-400) !important;
}

.text-yellow-500 {
  color: var(--yellow-500) !important;
}

.hover\:text-yellow-500:hover {
  color: var(--yellow-500) !important;
}

.group:hover .group-hover\:text-yellow-500 {
  color: var(--yellow-500) !important;
}

.text-yellow-600 {
  color: var(--yellow-600) !important;
}

.hover\:text-yellow-600:hover {
  color: var(--yellow-600) !important;
}

.group:hover .group-hover\:text-yellow-600 {
  color: var(--yellow-600) !important;
}

.text-yellow-700 {
  color: var(--yellow-700) !important;
}

.hover\:text-yellow-700:hover {
  color: var(--yellow-700) !important;
}

.group:hover .group-hover\:text-yellow-700 {
  color: var(--yellow-700) !important;
}

.text-yellow-800 {
  color: var(--yellow-800) !important;
}

.hover\:text-yellow-800:hover {
  color: var(--yellow-800) !important;
}

.group:hover .group-hover\:text-yellow-800 {
  color: var(--yellow-800) !important;
}

.text-yellow-900 {
  color: var(--yellow-900) !important;
}

.hover\:text-yellow-900:hover {
  color: var(--yellow-900) !important;
}

.group:hover .group-hover\:text-yellow-900 {
  color: var(--yellow-900) !important;
}

.text-purple-100 {
  color: var(--purple-100) !important;
}

.hover\:text-purple-100:hover {
  color: var(--purple-100) !important;
}

.group:hover .group-hover\:text-purple-100 {
  color: var(--purple-100) !important;
}

.text-purple-200 {
  color: var(--purple-200) !important;
}

.hover\:text-purple-200:hover {
  color: var(--purple-200) !important;
}

.group:hover .group-hover\:text-purple-200 {
  color: var(--purple-200) !important;
}

.text-purple-300 {
  color: var(--purple-300) !important;
}

.hover\:text-purple-300:hover {
  color: var(--purple-300) !important;
}

.group:hover .group-hover\:text-purple-300 {
  color: var(--purple-300) !important;
}

.text-purple-400 {
  color: var(--purple-400) !important;
}

.hover\:text-purple-400:hover {
  color: var(--purple-400) !important;
}

.group:hover .group-hover\:text-purple-400 {
  color: var(--purple-400) !important;
}

.text-purple-500 {
  color: var(--purple-500) !important;
}

.hover\:text-purple-500:hover {
  color: var(--purple-500) !important;
}

.group:hover .group-hover\:text-purple-500 {
  color: var(--purple-500) !important;
}

.text-purple-600 {
  color: var(--purple-600) !important;
}

.hover\:text-purple-600:hover {
  color: var(--purple-600) !important;
}

.group:hover .group-hover\:text-purple-600 {
  color: var(--purple-600) !important;
}

.text-purple-700 {
  color: var(--purple-700) !important;
}

.hover\:text-purple-700:hover {
  color: var(--purple-700) !important;
}

.group:hover .group-hover\:text-purple-700 {
  color: var(--purple-700) !important;
}

.text-purple-800 {
  color: var(--purple-800) !important;
}

.hover\:text-purple-800:hover {
  color: var(--purple-800) !important;
}

.group:hover .group-hover\:text-purple-800 {
  color: var(--purple-800) !important;
}

.text-purple-900 {
  color: var(--purple-900) !important;
}

.hover\:text-purple-900:hover {
  color: var(--purple-900) !important;
}

.group:hover .group-hover\:text-purple-900 {
  color: var(--purple-900) !important;
}

.text-teal-100 {
  color: var(--teal-100) !important;
}

.hover\:text-teal-100:hover {
  color: var(--teal-100) !important;
}

.group:hover .group-hover\:text-teal-100 {
  color: var(--teal-100) !important;
}

.text-teal-200 {
  color: var(--teal-200) !important;
}

.hover\:text-teal-200:hover {
  color: var(--teal-200) !important;
}

.group:hover .group-hover\:text-teal-200 {
  color: var(--teal-200) !important;
}

.text-teal-300 {
  color: var(--teal-300) !important;
}

.hover\:text-teal-300:hover {
  color: var(--teal-300) !important;
}

.group:hover .group-hover\:text-teal-300 {
  color: var(--teal-300) !important;
}

.text-teal-400 {
  color: var(--teal-400) !important;
}

.hover\:text-teal-400:hover {
  color: var(--teal-400) !important;
}

.group:hover .group-hover\:text-teal-400 {
  color: var(--teal-400) !important;
}

.text-teal-500 {
  color: var(--teal-500) !important;
}

.hover\:text-teal-500:hover {
  color: var(--teal-500) !important;
}

.group:hover .group-hover\:text-teal-500 {
  color: var(--teal-500) !important;
}

.text-teal-600 {
  color: var(--teal-600) !important;
}

.hover\:text-teal-600:hover {
  color: var(--teal-600) !important;
}

.group:hover .group-hover\:text-teal-600 {
  color: var(--teal-600) !important;
}

.text-teal-700 {
  color: var(--teal-700) !important;
}

.hover\:text-teal-700:hover {
  color: var(--teal-700) !important;
}

.group:hover .group-hover\:text-teal-700 {
  color: var(--teal-700) !important;
}

.text-teal-800 {
  color: var(--teal-800) !important;
}

.hover\:text-teal-800:hover {
  color: var(--teal-800) !important;
}

.group:hover .group-hover\:text-teal-800 {
  color: var(--teal-800) !important;
}

.text-teal-900 {
  color: var(--teal-900) !important;
}

.hover\:text-teal-900:hover {
  color: var(--teal-900) !important;
}

.group:hover .group-hover\:text-teal-900 {
  color: var(--teal-900) !important;
}

.border {
  border: 1px solid var(--border-color-default);
}

.border-0 {
  border: 0 !important;
}

.border-none {
  border: none !important;
}

.hover\:border:hover {
  border: 1px solid var(--border-color-default);
}

.hover\:border-0:hover {
  border: 0 !important;
}

.hover\:border-none:hover {
  border: none !important;
}

.group:hover .group-hover\:border {
  border: 1px solid var(--border-color-default);
}

.group:hover .group-hover\:border-0 {
  border: 0 !important;
}

.group:hover .group-hover\:border-none {
  border: none !important;
}

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

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

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

.border-style-initial {
  border-style: solid !important;
}

.border-width-1 {
  border-width: 1px !important;
}

.border-width-2 {
  border-width: 2px !important;
}

.border-width-3 {
  border-width: 3px !important;
}

.border-width-4 {
  border-width: 4px !important;
}

.border-width-5 {
  border-width: 5px !important;
}

.border-default {
  border: 1px solid var(--border-color-default);
}

.hover\:border-default:hover {
  border: 1px solid var(--border-color-default);
}

.group:hover .group-hover\:border-default {
  border: 1px solid var(--border-color-default);
}

.border-color-default {
  border-color: var(--border-color-default) !important;
}

.hover\:border-color-default:hover {
  border-color: var(--border-color-default) !important;
}

.group:hover .group-hover\:border-color-default {
  border-color: var(--border-color-default) !important;
}

.border-strong {
  border: 1px solid var(--neutral-400);
}

.hover\:border-strong:hover {
  border: 1px solid var(--neutral-400);
}

.group:hover .group-hover\:border-strong {
  border: 1px solid var(--neutral-400);
}

.border-color-strong {
  border-color: var(--neutral-400) !important;
}

.hover\:border-color-strong:hover {
  border-color: var(--neutral-400) !important;
}

.group:hover .group-hover\:border-color-strong {
  border-color: var(--neutral-400) !important;
}

.border-transparent {
  border: 1px solid transparent;
}

.hover\:border-transparent:hover {
  border: 1px solid transparent;
}

.group:hover .group-hover\:border-transparent {
  border: 1px solid transparent;
}

.border-color-transparent {
  border-color: transparent !important;
}

.hover\:border-color-transparent:hover {
  border-color: transparent !important;
}

.group:hover .group-hover\:border-color-transparent {
  border-color: transparent !important;
}

.border-inherit {
  border: 1px solid inherit;
}

.hover\:border-inherit:hover {
  border: 1px solid inherit;
}

.group:hover .group-hover\:border-inherit {
  border: 1px solid inherit;
}

.border-color-inherit {
  border-color: inherit !important;
}

.hover\:border-color-inherit:hover {
  border-color: inherit !important;
}

.group:hover .group-hover\:border-color-inherit {
  border-color: inherit !important;
}

.border-initial {
  border: 1px solid initial;
}

.hover\:border-initial:hover {
  border: 1px solid initial;
}

.group:hover .group-hover\:border-initial {
  border: 1px solid initial;
}

.border-color-initial {
  border-color: initial !important;
}

.hover\:border-color-initial:hover {
  border-color: initial !important;
}

.group:hover .group-hover\:border-color-initial {
  border-color: initial !important;
}

.border-white {
  border: 1px solid #FFF;
}

.hover\:border-white:hover {
  border: 1px solid #FFF;
}

.group:hover .group-hover\:border-white {
  border: 1px solid #FFF;
}

.border-color-white {
  border-color: #FFF !important;
}

.hover\:border-color-white:hover {
  border-color: #FFF !important;
}

.group:hover .group-hover\:border-color-white {
  border-color: #FFF !important;
}

.border-black {
  border: 1px solid #000;
}

.hover\:border-black:hover {
  border: 1px solid #000;
}

.group:hover .group-hover\:border-black {
  border: 1px solid #000;
}

.border-color-black {
  border-color: #000 !important;
}

.hover\:border-color-black:hover {
  border-color: #000 !important;
}

.group:hover .group-hover\:border-color-black {
  border-color: #000 !important;
}

.border-primary {
  border: 1px solid #6163fe;
}

.hover\:border-primary:hover {
  border: 1px solid #6163fe;
}

.group:hover .group-hover\:border-primary {
  border: 1px solid #6163fe;
}

.border-color-primary {
  border-color: #6163fe !important;
}

.hover\:border-color-primary:hover {
  border-color: #6163fe !important;
}

.group:hover .group-hover\:border-color-primary {
  border-color: #6163fe !important;
}

.border-red {
  border: 1px solid #ef3232;
}

.hover\:border-red:hover {
  border: 1px solid #ef3232;
}

.group:hover .group-hover\:border-red {
  border: 1px solid #ef3232;
}

.border-color-red {
  border-color: #ef3232 !important;
}

.hover\:border-color-red:hover {
  border-color: #ef3232 !important;
}

.group:hover .group-hover\:border-color-red {
  border-color: #ef3232 !important;
}

.border-green {
  border: 1px solid #0dab47;
}

.hover\:border-green:hover {
  border: 1px solid #0dab47;
}

.group:hover .group-hover\:border-green {
  border: 1px solid #0dab47;
}

.border-color-green {
  border-color: #0dab47 !important;
}

.hover\:border-color-green:hover {
  border-color: #0dab47 !important;
}

.group:hover .group-hover\:border-color-green {
  border-color: #0dab47 !important;
}

.border-blue {
  border: 1px solid #3780f6;
}

.hover\:border-blue:hover {
  border: 1px solid #3780f6;
}

.group:hover .group-hover\:border-blue {
  border: 1px solid #3780f6;
}

.border-color-blue {
  border-color: #3780f6 !important;
}

.hover\:border-color-blue:hover {
  border-color: #3780f6 !important;
}

.group:hover .group-hover\:border-color-blue {
  border-color: #3780f6 !important;
}

.border-orange {
  border: 1px solid #f97316;
}

.hover\:border-orange:hover {
  border: 1px solid #f97316;
}

.group:hover .group-hover\:border-orange {
  border: 1px solid #f97316;
}

.border-color-orange {
  border-color: #f97316 !important;
}

.hover\:border-color-orange:hover {
  border-color: #f97316 !important;
}

.group:hover .group-hover\:border-color-orange {
  border-color: #f97316 !important;
}

.border-yellow {
  border: 1px solid #E5B800;
}

.hover\:border-yellow:hover {
  border: 1px solid #E5B800;
}

.group:hover .group-hover\:border-yellow {
  border: 1px solid #E5B800;
}

.border-color-yellow {
  border-color: #E5B800 !important;
}

.hover\:border-color-yellow:hover {
  border-color: #E5B800 !important;
}

.group:hover .group-hover\:border-color-yellow {
  border-color: #E5B800 !important;
}

.border-purple {
  border: 1px solid #a855f7;
}

.hover\:border-purple:hover {
  border: 1px solid #a855f7;
}

.group:hover .group-hover\:border-purple {
  border: 1px solid #a855f7;
}

.border-color-purple {
  border-color: #a855f7 !important;
}

.hover\:border-color-purple:hover {
  border-color: #a855f7 !important;
}

.group:hover .group-hover\:border-color-purple {
  border-color: #a855f7 !important;
}

.border-teal {
  border: 1px solid #14b8a6;
}

.hover\:border-teal:hover {
  border: 1px solid #14b8a6;
}

.group:hover .group-hover\:border-teal {
  border: 1px solid #14b8a6;
}

.border-color-teal {
  border-color: #14b8a6 !important;
}

.hover\:border-color-teal:hover {
  border-color: #14b8a6 !important;
}

.group:hover .group-hover\:border-color-teal {
  border-color: #14b8a6 !important;
}

.border-color-neutral-0 {
  border-color: var(--neutral-0) !important;
}

.hover\:border-color-neutral-0:hover {
  border-color: var(--neutral-0) !important;
}

.group:hover .group-hover\:border-color--neutral-0 {
  border-color: var(--neutral-0) !important;
}

.border-color-neutral-50 {
  border-color: var(--neutral-50) !important;
}

.hover\:border-color-neutral-50:hover {
  border-color: var(--neutral-50) !important;
}

.group:hover .group-hover\:border-color--neutral-50 {
  border-color: var(--neutral-50) !important;
}

.border-color-neutral-100 {
  border-color: var(--neutral-100) !important;
}

.hover\:border-color-neutral-100:hover {
  border-color: var(--neutral-100) !important;
}

.group:hover .group-hover\:border-color--neutral-100 {
  border-color: var(--neutral-100) !important;
}

.border-color-neutral-200 {
  border-color: var(--neutral-200) !important;
}

.hover\:border-color-neutral-200:hover {
  border-color: var(--neutral-200) !important;
}

.group:hover .group-hover\:border-color--neutral-200 {
  border-color: var(--neutral-200) !important;
}

.border-color-neutral-300 {
  border-color: var(--neutral-300) !important;
}

.hover\:border-color-neutral-300:hover {
  border-color: var(--neutral-300) !important;
}

.group:hover .group-hover\:border-color--neutral-300 {
  border-color: var(--neutral-300) !important;
}

.border-color-neutral-400 {
  border-color: var(--neutral-400) !important;
}

.hover\:border-color-neutral-400:hover {
  border-color: var(--neutral-400) !important;
}

.group:hover .group-hover\:border-color--neutral-400 {
  border-color: var(--neutral-400) !important;
}

.border-color-neutral-500 {
  border-color: var(--neutral-500) !important;
}

.hover\:border-color-neutral-500:hover {
  border-color: var(--neutral-500) !important;
}

.group:hover .group-hover\:border-color--neutral-500 {
  border-color: var(--neutral-500) !important;
}

.border-color-neutral-600 {
  border-color: var(--neutral-600) !important;
}

.hover\:border-color-neutral-600:hover {
  border-color: var(--neutral-600) !important;
}

.group:hover .group-hover\:border-color--neutral-600 {
  border-color: var(--neutral-600) !important;
}

.border-color-neutral-700 {
  border-color: var(--neutral-700) !important;
}

.hover\:border-color-neutral-700:hover {
  border-color: var(--neutral-700) !important;
}

.group:hover .group-hover\:border-color--neutral-700 {
  border-color: var(--neutral-700) !important;
}

.border-color-neutral-800 {
  border-color: var(--neutral-800) !important;
}

.hover\:border-color-neutral-800:hover {
  border-color: var(--neutral-800) !important;
}

.group:hover .group-hover\:border-color--neutral-800 {
  border-color: var(--neutral-800) !important;
}

.border-color-neutral-900 {
  border-color: var(--neutral-900) !important;
}

.hover\:border-color-neutral-900:hover {
  border-color: var(--neutral-900) !important;
}

.group:hover .group-hover\:border-color--neutral-900 {
  border-color: var(--neutral-900) !important;
}

.border-color-neutral-1000 {
  border-color: var(--neutral-1000) !important;
}

.hover\:border-color-neutral-1000:hover {
  border-color: var(--neutral-1000) !important;
}

.group:hover .group-hover\:border-color--neutral-1000 {
  border-color: var(--neutral-1000) !important;
}

.border-color-primary-100 {
  border-color: var(--primary-100) !important;
}

.hover\:border-color-primary-100:hover {
  border-color: var(--primary-100) !important;
}

.group:hover .group-hover\:border-color--primary-100 {
  border-color: var(--primary-100) !important;
}

.border-color-primary-200 {
  border-color: var(--primary-200) !important;
}

.hover\:border-color-primary-200:hover {
  border-color: var(--primary-200) !important;
}

.group:hover .group-hover\:border-color--primary-200 {
  border-color: var(--primary-200) !important;
}

.border-color-primary-300 {
  border-color: var(--primary-300) !important;
}

.hover\:border-color-primary-300:hover {
  border-color: var(--primary-300) !important;
}

.group:hover .group-hover\:border-color--primary-300 {
  border-color: var(--primary-300) !important;
}

.border-color-primary-400 {
  border-color: var(--primary-400) !important;
}

.hover\:border-color-primary-400:hover {
  border-color: var(--primary-400) !important;
}

.group:hover .group-hover\:border-color--primary-400 {
  border-color: var(--primary-400) !important;
}

.border-color-primary-500 {
  border-color: var(--primary-500) !important;
}

.hover\:border-color-primary-500:hover {
  border-color: var(--primary-500) !important;
}

.group:hover .group-hover\:border-color--primary-500 {
  border-color: var(--primary-500) !important;
}

.border-color-primary-600 {
  border-color: var(--primary-600) !important;
}

.hover\:border-color-primary-600:hover {
  border-color: var(--primary-600) !important;
}

.group:hover .group-hover\:border-color--primary-600 {
  border-color: var(--primary-600) !important;
}

.border-color-primary-700 {
  border-color: var(--primary-700) !important;
}

.hover\:border-color-primary-700:hover {
  border-color: var(--primary-700) !important;
}

.group:hover .group-hover\:border-color--primary-700 {
  border-color: var(--primary-700) !important;
}

.border-color-primary-800 {
  border-color: var(--primary-800) !important;
}

.hover\:border-color-primary-800:hover {
  border-color: var(--primary-800) !important;
}

.group:hover .group-hover\:border-color--primary-800 {
  border-color: var(--primary-800) !important;
}

.border-color-primary-900 {
  border-color: var(--primary-900) !important;
}

.hover\:border-color-primary-900:hover {
  border-color: var(--primary-900) !important;
}

.group:hover .group-hover\:border-color--primary-900 {
  border-color: var(--primary-900) !important;
}

.border-color-blue-100 {
  border-color: var(--blue-100) !important;
}

.hover\:border-color-blue-100:hover {
  border-color: var(--blue-100) !important;
}

.group:hover .group-hover\:border-color--blue-100 {
  border-color: var(--blue-100) !important;
}

.border-color-blue-200 {
  border-color: var(--blue-200) !important;
}

.hover\:border-color-blue-200:hover {
  border-color: var(--blue-200) !important;
}

.group:hover .group-hover\:border-color--blue-200 {
  border-color: var(--blue-200) !important;
}

.border-color-blue-300 {
  border-color: var(--blue-300) !important;
}

.hover\:border-color-blue-300:hover {
  border-color: var(--blue-300) !important;
}

.group:hover .group-hover\:border-color--blue-300 {
  border-color: var(--blue-300) !important;
}

.border-color-blue-400 {
  border-color: var(--blue-400) !important;
}

.hover\:border-color-blue-400:hover {
  border-color: var(--blue-400) !important;
}

.group:hover .group-hover\:border-color--blue-400 {
  border-color: var(--blue-400) !important;
}

.border-color-blue-500 {
  border-color: var(--blue-500) !important;
}

.hover\:border-color-blue-500:hover {
  border-color: var(--blue-500) !important;
}

.group:hover .group-hover\:border-color--blue-500 {
  border-color: var(--blue-500) !important;
}

.border-color-blue-600 {
  border-color: var(--blue-600) !important;
}

.hover\:border-color-blue-600:hover {
  border-color: var(--blue-600) !important;
}

.group:hover .group-hover\:border-color--blue-600 {
  border-color: var(--blue-600) !important;
}

.border-color-blue-700 {
  border-color: var(--blue-700) !important;
}

.hover\:border-color-blue-700:hover {
  border-color: var(--blue-700) !important;
}

.group:hover .group-hover\:border-color--blue-700 {
  border-color: var(--blue-700) !important;
}

.border-color-blue-800 {
  border-color: var(--blue-800) !important;
}

.hover\:border-color-blue-800:hover {
  border-color: var(--blue-800) !important;
}

.group:hover .group-hover\:border-color--blue-800 {
  border-color: var(--blue-800) !important;
}

.border-color-blue-900 {
  border-color: var(--blue-900) !important;
}

.hover\:border-color-blue-900:hover {
  border-color: var(--blue-900) !important;
}

.group:hover .group-hover\:border-color--blue-900 {
  border-color: var(--blue-900) !important;
}

.border-color-red-100 {
  border-color: var(--red-100) !important;
}

.hover\:border-color-red-100:hover {
  border-color: var(--red-100) !important;
}

.group:hover .group-hover\:border-color--red-100 {
  border-color: var(--red-100) !important;
}

.border-color-red-200 {
  border-color: var(--red-200) !important;
}

.hover\:border-color-red-200:hover {
  border-color: var(--red-200) !important;
}

.group:hover .group-hover\:border-color--red-200 {
  border-color: var(--red-200) !important;
}

.border-color-red-300 {
  border-color: var(--red-300) !important;
}

.hover\:border-color-red-300:hover {
  border-color: var(--red-300) !important;
}

.group:hover .group-hover\:border-color--red-300 {
  border-color: var(--red-300) !important;
}

.border-color-red-400 {
  border-color: var(--red-400) !important;
}

.hover\:border-color-red-400:hover {
  border-color: var(--red-400) !important;
}

.group:hover .group-hover\:border-color--red-400 {
  border-color: var(--red-400) !important;
}

.border-color-red-500 {
  border-color: var(--red-500) !important;
}

.hover\:border-color-red-500:hover {
  border-color: var(--red-500) !important;
}

.group:hover .group-hover\:border-color--red-500 {
  border-color: var(--red-500) !important;
}

.border-color-red-600 {
  border-color: var(--red-600) !important;
}

.hover\:border-color-red-600:hover {
  border-color: var(--red-600) !important;
}

.group:hover .group-hover\:border-color--red-600 {
  border-color: var(--red-600) !important;
}

.border-color-red-700 {
  border-color: var(--red-700) !important;
}

.hover\:border-color-red-700:hover {
  border-color: var(--red-700) !important;
}

.group:hover .group-hover\:border-color--red-700 {
  border-color: var(--red-700) !important;
}

.border-color-red-800 {
  border-color: var(--red-800) !important;
}

.hover\:border-color-red-800:hover {
  border-color: var(--red-800) !important;
}

.group:hover .group-hover\:border-color--red-800 {
  border-color: var(--red-800) !important;
}

.border-color-red-900 {
  border-color: var(--red-900) !important;
}

.hover\:border-color-red-900:hover {
  border-color: var(--red-900) !important;
}

.group:hover .group-hover\:border-color--red-900 {
  border-color: var(--red-900) !important;
}

.border-color-green-100 {
  border-color: var(--green-100) !important;
}

.hover\:border-color-green-100:hover {
  border-color: var(--green-100) !important;
}

.group:hover .group-hover\:border-color--green-100 {
  border-color: var(--green-100) !important;
}

.border-color-green-200 {
  border-color: var(--green-200) !important;
}

.hover\:border-color-green-200:hover {
  border-color: var(--green-200) !important;
}

.group:hover .group-hover\:border-color--green-200 {
  border-color: var(--green-200) !important;
}

.border-color-green-300 {
  border-color: var(--green-300) !important;
}

.hover\:border-color-green-300:hover {
  border-color: var(--green-300) !important;
}

.group:hover .group-hover\:border-color--green-300 {
  border-color: var(--green-300) !important;
}

.border-color-green-400 {
  border-color: var(--green-400) !important;
}

.hover\:border-color-green-400:hover {
  border-color: var(--green-400) !important;
}

.group:hover .group-hover\:border-color--green-400 {
  border-color: var(--green-400) !important;
}

.border-color-green-500 {
  border-color: var(--green-500) !important;
}

.hover\:border-color-green-500:hover {
  border-color: var(--green-500) !important;
}

.group:hover .group-hover\:border-color--green-500 {
  border-color: var(--green-500) !important;
}

.border-color-green-600 {
  border-color: var(--green-600) !important;
}

.hover\:border-color-green-600:hover {
  border-color: var(--green-600) !important;
}

.group:hover .group-hover\:border-color--green-600 {
  border-color: var(--green-600) !important;
}

.border-color-green-700 {
  border-color: var(--green-700) !important;
}

.hover\:border-color-green-700:hover {
  border-color: var(--green-700) !important;
}

.group:hover .group-hover\:border-color--green-700 {
  border-color: var(--green-700) !important;
}

.border-color-green-800 {
  border-color: var(--green-800) !important;
}

.hover\:border-color-green-800:hover {
  border-color: var(--green-800) !important;
}

.group:hover .group-hover\:border-color--green-800 {
  border-color: var(--green-800) !important;
}

.border-color-green-900 {
  border-color: var(--green-900) !important;
}

.hover\:border-color-green-900:hover {
  border-color: var(--green-900) !important;
}

.group:hover .group-hover\:border-color--green-900 {
  border-color: var(--green-900) !important;
}

.border-color-orange-100 {
  border-color: var(--orange-100) !important;
}

.hover\:border-color-orange-100:hover {
  border-color: var(--orange-100) !important;
}

.group:hover .group-hover\:border-color--orange-100 {
  border-color: var(--orange-100) !important;
}

.border-color-orange-200 {
  border-color: var(--orange-200) !important;
}

.hover\:border-color-orange-200:hover {
  border-color: var(--orange-200) !important;
}

.group:hover .group-hover\:border-color--orange-200 {
  border-color: var(--orange-200) !important;
}

.border-color-orange-300 {
  border-color: var(--orange-300) !important;
}

.hover\:border-color-orange-300:hover {
  border-color: var(--orange-300) !important;
}

.group:hover .group-hover\:border-color--orange-300 {
  border-color: var(--orange-300) !important;
}

.border-color-orange-400 {
  border-color: var(--orange-400) !important;
}

.hover\:border-color-orange-400:hover {
  border-color: var(--orange-400) !important;
}

.group:hover .group-hover\:border-color--orange-400 {
  border-color: var(--orange-400) !important;
}

.border-color-orange-500 {
  border-color: var(--orange-500) !important;
}

.hover\:border-color-orange-500:hover {
  border-color: var(--orange-500) !important;
}

.group:hover .group-hover\:border-color--orange-500 {
  border-color: var(--orange-500) !important;
}

.border-color-orange-600 {
  border-color: var(--orange-600) !important;
}

.hover\:border-color-orange-600:hover {
  border-color: var(--orange-600) !important;
}

.group:hover .group-hover\:border-color--orange-600 {
  border-color: var(--orange-600) !important;
}

.border-color-orange-700 {
  border-color: var(--orange-700) !important;
}

.hover\:border-color-orange-700:hover {
  border-color: var(--orange-700) !important;
}

.group:hover .group-hover\:border-color--orange-700 {
  border-color: var(--orange-700) !important;
}

.border-color-orange-800 {
  border-color: var(--orange-800) !important;
}

.hover\:border-color-orange-800:hover {
  border-color: var(--orange-800) !important;
}

.group:hover .group-hover\:border-color--orange-800 {
  border-color: var(--orange-800) !important;
}

.border-color-orange-900 {
  border-color: var(--orange-900) !important;
}

.hover\:border-color-orange-900:hover {
  border-color: var(--orange-900) !important;
}

.group:hover .group-hover\:border-color--orange-900 {
  border-color: var(--orange-900) !important;
}

.border-color-yellow-100 {
  border-color: var(--yellow-100) !important;
}

.hover\:border-color-yellow-100:hover {
  border-color: var(--yellow-100) !important;
}

.group:hover .group-hover\:border-color--yellow-100 {
  border-color: var(--yellow-100) !important;
}

.border-color-yellow-200 {
  border-color: var(--yellow-200) !important;
}

.hover\:border-color-yellow-200:hover {
  border-color: var(--yellow-200) !important;
}

.group:hover .group-hover\:border-color--yellow-200 {
  border-color: var(--yellow-200) !important;
}

.border-color-yellow-300 {
  border-color: var(--yellow-300) !important;
}

.hover\:border-color-yellow-300:hover {
  border-color: var(--yellow-300) !important;
}

.group:hover .group-hover\:border-color--yellow-300 {
  border-color: var(--yellow-300) !important;
}

.border-color-yellow-400 {
  border-color: var(--yellow-400) !important;
}

.hover\:border-color-yellow-400:hover {
  border-color: var(--yellow-400) !important;
}

.group:hover .group-hover\:border-color--yellow-400 {
  border-color: var(--yellow-400) !important;
}

.border-color-yellow-500 {
  border-color: var(--yellow-500) !important;
}

.hover\:border-color-yellow-500:hover {
  border-color: var(--yellow-500) !important;
}

.group:hover .group-hover\:border-color--yellow-500 {
  border-color: var(--yellow-500) !important;
}

.border-color-yellow-600 {
  border-color: var(--yellow-600) !important;
}

.hover\:border-color-yellow-600:hover {
  border-color: var(--yellow-600) !important;
}

.group:hover .group-hover\:border-color--yellow-600 {
  border-color: var(--yellow-600) !important;
}

.border-color-yellow-700 {
  border-color: var(--yellow-700) !important;
}

.hover\:border-color-yellow-700:hover {
  border-color: var(--yellow-700) !important;
}

.group:hover .group-hover\:border-color--yellow-700 {
  border-color: var(--yellow-700) !important;
}

.border-color-yellow-800 {
  border-color: var(--yellow-800) !important;
}

.hover\:border-color-yellow-800:hover {
  border-color: var(--yellow-800) !important;
}

.group:hover .group-hover\:border-color--yellow-800 {
  border-color: var(--yellow-800) !important;
}

.border-color-yellow-900 {
  border-color: var(--yellow-900) !important;
}

.hover\:border-color-yellow-900:hover {
  border-color: var(--yellow-900) !important;
}

.group:hover .group-hover\:border-color--yellow-900 {
  border-color: var(--yellow-900) !important;
}

.border-color-purple-100 {
  border-color: var(--purple-100) !important;
}

.hover\:border-color-purple-100:hover {
  border-color: var(--purple-100) !important;
}

.group:hover .group-hover\:border-color--purple-100 {
  border-color: var(--purple-100) !important;
}

.border-color-purple-200 {
  border-color: var(--purple-200) !important;
}

.hover\:border-color-purple-200:hover {
  border-color: var(--purple-200) !important;
}

.group:hover .group-hover\:border-color--purple-200 {
  border-color: var(--purple-200) !important;
}

.border-color-purple-300 {
  border-color: var(--purple-300) !important;
}

.hover\:border-color-purple-300:hover {
  border-color: var(--purple-300) !important;
}

.group:hover .group-hover\:border-color--purple-300 {
  border-color: var(--purple-300) !important;
}

.border-color-purple-400 {
  border-color: var(--purple-400) !important;
}

.hover\:border-color-purple-400:hover {
  border-color: var(--purple-400) !important;
}

.group:hover .group-hover\:border-color--purple-400 {
  border-color: var(--purple-400) !important;
}

.border-color-purple-500 {
  border-color: var(--purple-500) !important;
}

.hover\:border-color-purple-500:hover {
  border-color: var(--purple-500) !important;
}

.group:hover .group-hover\:border-color--purple-500 {
  border-color: var(--purple-500) !important;
}

.border-color-purple-600 {
  border-color: var(--purple-600) !important;
}

.hover\:border-color-purple-600:hover {
  border-color: var(--purple-600) !important;
}

.group:hover .group-hover\:border-color--purple-600 {
  border-color: var(--purple-600) !important;
}

.border-color-purple-700 {
  border-color: var(--purple-700) !important;
}

.hover\:border-color-purple-700:hover {
  border-color: var(--purple-700) !important;
}

.group:hover .group-hover\:border-color--purple-700 {
  border-color: var(--purple-700) !important;
}

.border-color-purple-800 {
  border-color: var(--purple-800) !important;
}

.hover\:border-color-purple-800:hover {
  border-color: var(--purple-800) !important;
}

.group:hover .group-hover\:border-color--purple-800 {
  border-color: var(--purple-800) !important;
}

.border-color-purple-900 {
  border-color: var(--purple-900) !important;
}

.hover\:border-color-purple-900:hover {
  border-color: var(--purple-900) !important;
}

.group:hover .group-hover\:border-color--purple-900 {
  border-color: var(--purple-900) !important;
}

.border-color-teal-100 {
  border-color: var(--teal-100) !important;
}

.hover\:border-color-teal-100:hover {
  border-color: var(--teal-100) !important;
}

.group:hover .group-hover\:border-color--teal-100 {
  border-color: var(--teal-100) !important;
}

.border-color-teal-200 {
  border-color: var(--teal-200) !important;
}

.hover\:border-color-teal-200:hover {
  border-color: var(--teal-200) !important;
}

.group:hover .group-hover\:border-color--teal-200 {
  border-color: var(--teal-200) !important;
}

.border-color-teal-300 {
  border-color: var(--teal-300) !important;
}

.hover\:border-color-teal-300:hover {
  border-color: var(--teal-300) !important;
}

.group:hover .group-hover\:border-color--teal-300 {
  border-color: var(--teal-300) !important;
}

.border-color-teal-400 {
  border-color: var(--teal-400) !important;
}

.hover\:border-color-teal-400:hover {
  border-color: var(--teal-400) !important;
}

.group:hover .group-hover\:border-color--teal-400 {
  border-color: var(--teal-400) !important;
}

.border-color-teal-500 {
  border-color: var(--teal-500) !important;
}

.hover\:border-color-teal-500:hover {
  border-color: var(--teal-500) !important;
}

.group:hover .group-hover\:border-color--teal-500 {
  border-color: var(--teal-500) !important;
}

.border-color-teal-600 {
  border-color: var(--teal-600) !important;
}

.hover\:border-color-teal-600:hover {
  border-color: var(--teal-600) !important;
}

.group:hover .group-hover\:border-color--teal-600 {
  border-color: var(--teal-600) !important;
}

.border-color-teal-700 {
  border-color: var(--teal-700) !important;
}

.hover\:border-color-teal-700:hover {
  border-color: var(--teal-700) !important;
}

.group:hover .group-hover\:border-color--teal-700 {
  border-color: var(--teal-700) !important;
}

.border-color-teal-800 {
  border-color: var(--teal-800) !important;
}

.hover\:border-color-teal-800:hover {
  border-color: var(--teal-800) !important;
}

.group:hover .group-hover\:border-color--teal-800 {
  border-color: var(--teal-800) !important;
}

.border-color-teal-900 {
  border-color: var(--teal-900) !important;
}

.hover\:border-color-teal-900:hover {
  border-color: var(--teal-900) !important;
}

.group:hover .group-hover\:border-color--teal-900 {
  border-color: var(--teal-900) !important;
}

.border-top {
  border-top: 1px solid var(--border-color-default);
}

.border-right {
  border-right: 1px solid var(--border-color-default);
}

.border-bottom {
  border-bottom: 1px solid var(--border-color-default);
}

.border-left {
  border-left: 1px solid var(--border-color-default);
}

.border-left-0 {
  border-left: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

@media (max-width: 1199px) {
  .max-lg\:border-top {
    border-top: 1px solid var(--border-color-default);
  }

  .max-lg\:border-right {
    border-right: 1px solid var(--border-color-default);
  }

  .max-lg\:border-bottom {
    border-bottom: 1px solid var(--border-color-default);
  }

  .max-lg\:border-left {
    border-left: 1px solid var(--border-color-default);
  }

  .max-lg\:border-top-0 {
    border-top: 0 !important;
  }

  .max-lg\:border-left-0 {
    border-left: 0 !important;
  }

  .max-lg\:border-right-0 {
    border-right: 0 !important;
  }

  .max-lg\:border-bottom-0 {
    border-bottom: 0 !important;
  }
}

@media (max-width: 920px) {
  .max-md\:border-top {
    border-top: 1px solid var(--border-color-default);
  }

  .max-md\:border-right {
    border-right: 1px solid var(--border-color-default);
  }

  .max-md\:border-bottom {
    border-bottom: 1px solid var(--border-color-default);
  }

  .max-md\:border-left {
    border-left: 1px solid var(--border-color-default);
  }

  .max-md\:border-top-0 {
    border-top: 0 !important;
  }

  .max-md\:border-left-0 {
    border-left: 0 !important;
  }

  .max-md\:border-right-0 {
    border-right: 0 !important;
  }

  .max-md\:border-bottom-0 {
    border-bottom: 0 !important;
  }
}

@media (max-width: 640px) {
  .max-sm\:border-top {
    border-top: 1px solid var(--border-color-default);
  }

  .max-sm\:border-right {
    border-right: 1px solid var(--border-color-default);
  }

  .max-sm\:border-bottom {
    border-bottom: 1px solid var(--border-color-default);
  }

  .max-sm\:border-left {
    border-left: 1px solid var(--border-color-default);
  }

  .max-sm\:border-top-0 {
    border-top: 0 !important;
  }

  .max-sm\:border-left-0 {
    border-left: 0 !important;
  }

  .max-sm\:border-right-0 {
    border-right: 0 !important;
  }

  .max-sm\:border-bottom-0 {
    border-bottom: 0 !important;
  }
}

@media (min-width: 641px) {
  .sm\:border-top {
    border-top: 1px solid var(--border-color-default);
  }

  .sm\:border-right {
    border-right: 1px solid var(--border-color-default);
  }

  .sm\:border-bottom {
    border-bottom: 1px solid var(--border-color-default);
  }

  .sm\:border-left {
    border-left: 1px solid var(--border-color-default);
  }

  .sm\:border-top-0 {
    border-top: 0 !important;
  }

  .sm\:border-left-0 {
    border-left: 0 !important;
  }

  .sm\:border-right-0 {
    border-right: 0 !important;
  }

  .sm\:border-bottom-0 {
    border-bottom: 0 !important;
  }
}

@media (min-width: 921px) {
  .md\:border-top {
    border-top: 1px solid var(--border-color-default);
  }

  .md\:border-right {
    border-right: 1px solid var(--border-color-default);
  }

  .md\:border-bottom {
    border-bottom: 1px solid var(--border-color-default);
  }

  .md\:border-left {
    border-left: 1px solid var(--border-color-default);
  }

  .md\:border-top-0 {
    border-top: 0 !important;
  }

  .md\:border-left-0 {
    border-left: 0 !important;
  }

  .md\:border-right-0 {
    border-right: 0 !important;
  }

  .md\:border-bottom-0 {
    border-bottom: 0 !important;
  }
}

@media (min-width: 1201px) {
  .lg\:border-top {
    border-top: 1px solid var(--border-color-default);
  }

  .lg\:border-right {
    border-right: 1px solid var(--border-color-default);
  }

  .lg\:border-bottom {
    border-bottom: 1px solid var(--border-color-default);
  }

  .lg\:border-left {
    border-left: 1px solid var(--border-color-default);
  }

  .lg\:border-top-0 {
    border-top: 0 !important;
  }

  .lg\:border-left-0 {
    border-left: 0 !important;
  }

  .lg\:border-right-0 {
    border-right: 0 !important;
  }

  .lg\:border-bottom-0 {
    border-bottom: 0 !important;
  }
}

.rounded-0 {
  border-radius: 0;
}

.rounded {
  border-radius: var(--border-radius-base);
}

.rounded-sm {
  border-radius: var(--border-radius-sm);
}

.rounded-md {
  border-radius: var(--border-radius-md);
}

.rounded-lg {
  border-radius: var(--border-radius-lg);
}

.rounded-xl {
  border-radius: var(--border-radius-xl);
}

.rounded-full {
  border-radius: 400px;
}

.rounded-circle {
  border-radius: 50%;
}

.rounded-top {
  border-top-left-radius: var(--border-radius-base) !important;
  border-top-right-radius: var(--border-radius-base) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--border-radius-base) !important;
  border-bottom-left-radius: var(--border-radius-base) !important;
}

.rounded-left {
  border-top-left-radius: var(--border-radius-base) !important;
  border-bottom-left-radius: var(--border-radius-base) !important;
}

.rounded-right {
  border-bottom-right-radius: var(--border-radius-base) !important;
  border-top-right-radius: var(--border-radius-base) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-left-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-right-0 {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.bg-base {
  background-color: var(--bg-color-base);
}

.hover\:bg-base:hover {
  background-color: var(--bg-color-base);
}

.group:hover .group-hover\:bg-base {
  background-color: var(--bg-color-base);
}

.bg-secondary {
  background-color: var(--bg-color-secondary);
}

.hover\:bg-secondary:hover {
  background-color: var(--bg-color-secondary);
}

.group:hover .group-hover\:bg-secondary {
  background-color: var(--bg-color-secondary);
}

.bg-transparent {
  background-color: transparent;
}

.hover\:bg-transparent:hover {
  background-color: transparent;
}

.group:hover .group-hover\:bg-transparent {
  background-color: transparent;
}

.bg-inherit {
  background-color: inherit;
}

.hover\:bg-inherit:hover {
  background-color: inherit;
}

.group:hover .group-hover\:bg-inherit {
  background-color: inherit;
}

.bg-initial {
  background-color: initial;
}

.hover\:bg-initial:hover {
  background-color: initial;
}

.group:hover .group-hover\:bg-initial {
  background-color: initial;
}

.bg-white {
  background-color: #FFF;
}

.hover\:bg-white:hover {
  background-color: #FFF;
}

.group:hover .group-hover\:bg-white {
  background-color: #FFF;
}

.bg-black {
  background-color: #000;
}

.hover\:bg-black:hover {
  background-color: #000;
}

.group:hover .group-hover\:bg-black {
  background-color: #000;
}

.bg-alpha-1 {
  background-color: var(--alpha-1);
}

.hover\:bg-alpha-1:hover {
  background-color: var(--alpha-1);
}

.group:hover .group-hover\:bg-alpha-1 {
  background-color: var(--alpha-1);
}

.bg-alpha-2 {
  background-color: var(--alpha-2);
}

.hover\:bg-alpha-2:hover {
  background-color: var(--alpha-2);
}

.group:hover .group-hover\:bg-alpha-2 {
  background-color: var(--alpha-2);
}

.bg-alpha-3 {
  background-color: var(--alpha-3);
}

.hover\:bg-alpha-3:hover {
  background-color: var(--alpha-3);
}

.group:hover .group-hover\:bg-alpha-3 {
  background-color: var(--alpha-3);
}

.bg-alpha-4 {
  background-color: var(--alpha-4);
}

.hover\:bg-alpha-4:hover {
  background-color: var(--alpha-4);
}

.group:hover .group-hover\:bg-alpha-4 {
  background-color: var(--alpha-4);
}

.bg-alpha-5 {
  background-color: var(--alpha-5);
}

.hover\:bg-alpha-5:hover {
  background-color: var(--alpha-5);
}

.group:hover .group-hover\:bg-alpha-5 {
  background-color: var(--alpha-5);
}

.bg-alpha-6 {
  background-color: var(--alpha-6);
}

.hover\:bg-alpha-6:hover {
  background-color: var(--alpha-6);
}

.group:hover .group-hover\:bg-alpha-6 {
  background-color: var(--alpha-6);
}

.bg-alpha-7 {
  background-color: var(--alpha-7);
}

.hover\:bg-alpha-7:hover {
  background-color: var(--alpha-7);
}

.group:hover .group-hover\:bg-alpha-7 {
  background-color: var(--alpha-7);
}

.bg-alpha-8 {
  background-color: var(--alpha-8);
}

.hover\:bg-alpha-8:hover {
  background-color: var(--alpha-8);
}

.group:hover .group-hover\:bg-alpha-8 {
  background-color: var(--alpha-8);
}

.bg-alpha-9 {
  background-color: var(--alpha-9);
}

.hover\:bg-alpha-9:hover {
  background-color: var(--alpha-9);
}

.group:hover .group-hover\:bg-alpha-9 {
  background-color: var(--alpha-9);
}

.bg-primary {
  background-color: #6163fe;
}

.hover\:bg-primary:hover {
  background-color: #6163fe;
}

.group:hover .group-hover\:bg-primary {
  background-color: #6163fe;
}

.bg-red {
  background-color: #ef3232;
}

.hover\:bg-red:hover {
  background-color: #ef3232;
}

.group:hover .group-hover\:bg-red {
  background-color: #ef3232;
}

.bg-green {
  background-color: #0dab47;
}

.hover\:bg-green:hover {
  background-color: #0dab47;
}

.group:hover .group-hover\:bg-green {
  background-color: #0dab47;
}

.bg-blue {
  background-color: #3780f6;
}

.hover\:bg-blue:hover {
  background-color: #3780f6;
}

.group:hover .group-hover\:bg-blue {
  background-color: #3780f6;
}

.bg-orange {
  background-color: #f97316;
}

.hover\:bg-orange:hover {
  background-color: #f97316;
}

.group:hover .group-hover\:bg-orange {
  background-color: #f97316;
}

.bg-yellow {
  background-color: #E5B800;
}

.hover\:bg-yellow:hover {
  background-color: #E5B800;
}

.group:hover .group-hover\:bg-yellow {
  background-color: #E5B800;
}

.bg-purple {
  background-color: #a855f7;
}

.hover\:bg-purple:hover {
  background-color: #a855f7;
}

.group:hover .group-hover\:bg-purple {
  background-color: #a855f7;
}

.bg-teal {
  background-color: #14b8a6;
}

.hover\:bg-teal:hover {
  background-color: #14b8a6;
}

.group:hover .group-hover\:bg-teal {
  background-color: #14b8a6;
}

.bg-neutral-0 {
  background-color: var(--neutral-0);
}

.hover\:bg-neutral-0:hover {
  background-color: var(--neutral-0) !important;
}

.group:hover .group-hover\:bg-neutral-0 {
  background-color: var(--neutral-0) !important;
}

.bg-neutral-50 {
  background-color: var(--neutral-50);
}

.hover\:bg-neutral-50:hover {
  background-color: var(--neutral-50) !important;
}

.group:hover .group-hover\:bg-neutral-50 {
  background-color: var(--neutral-50) !important;
}

.bg-neutral-100 {
  background-color: var(--neutral-100);
}

.hover\:bg-neutral-100:hover {
  background-color: var(--neutral-100) !important;
}

.group:hover .group-hover\:bg-neutral-100 {
  background-color: var(--neutral-100) !important;
}

.bg-neutral-200 {
  background-color: var(--neutral-200);
}

.hover\:bg-neutral-200:hover {
  background-color: var(--neutral-200) !important;
}

.group:hover .group-hover\:bg-neutral-200 {
  background-color: var(--neutral-200) !important;
}

.bg-neutral-300 {
  background-color: var(--neutral-300);
}

.hover\:bg-neutral-300:hover {
  background-color: var(--neutral-300) !important;
}

.group:hover .group-hover\:bg-neutral-300 {
  background-color: var(--neutral-300) !important;
}

.bg-neutral-400 {
  background-color: var(--neutral-400);
}

.hover\:bg-neutral-400:hover {
  background-color: var(--neutral-400) !important;
}

.group:hover .group-hover\:bg-neutral-400 {
  background-color: var(--neutral-400) !important;
}

.bg-neutral-500 {
  background-color: var(--neutral-500);
}

.hover\:bg-neutral-500:hover {
  background-color: var(--neutral-500) !important;
}

.group:hover .group-hover\:bg-neutral-500 {
  background-color: var(--neutral-500) !important;
}

.bg-neutral-600 {
  background-color: var(--neutral-600);
}

.hover\:bg-neutral-600:hover {
  background-color: var(--neutral-600) !important;
}

.group:hover .group-hover\:bg-neutral-600 {
  background-color: var(--neutral-600) !important;
}

.bg-neutral-700 {
  background-color: var(--neutral-700);
}

.hover\:bg-neutral-700:hover {
  background-color: var(--neutral-700) !important;
}

.group:hover .group-hover\:bg-neutral-700 {
  background-color: var(--neutral-700) !important;
}

.bg-neutral-800 {
  background-color: var(--neutral-800);
}

.hover\:bg-neutral-800:hover {
  background-color: var(--neutral-800) !important;
}

.group:hover .group-hover\:bg-neutral-800 {
  background-color: var(--neutral-800) !important;
}

.bg-neutral-900 {
  background-color: var(--neutral-900);
}

.hover\:bg-neutral-900:hover {
  background-color: var(--neutral-900) !important;
}

.group:hover .group-hover\:bg-neutral-900 {
  background-color: var(--neutral-900) !important;
}

.bg-neutral-1000 {
  background-color: var(--neutral-1000);
}

.hover\:bg-neutral-1000:hover {
  background-color: var(--neutral-1000) !important;
}

.group:hover .group-hover\:bg-neutral-1000 {
  background-color: var(--neutral-1000) !important;
}

.bg-primary-100 {
  background-color: var(--primary-100);
}

.hover\:bg-primary-100:hover {
  background-color: var(--primary-100) !important;
}

.group:hover .group-hover\:bg-primary-100 {
  background-color: var(--primary-100) !important;
}

.bg-primary-200 {
  background-color: var(--primary-200);
}

.hover\:bg-primary-200:hover {
  background-color: var(--primary-200) !important;
}

.group:hover .group-hover\:bg-primary-200 {
  background-color: var(--primary-200) !important;
}

.bg-primary-300 {
  background-color: var(--primary-300);
}

.hover\:bg-primary-300:hover {
  background-color: var(--primary-300) !important;
}

.group:hover .group-hover\:bg-primary-300 {
  background-color: var(--primary-300) !important;
}

.bg-primary-400 {
  background-color: var(--primary-400);
}

.hover\:bg-primary-400:hover {
  background-color: var(--primary-400) !important;
}

.group:hover .group-hover\:bg-primary-400 {
  background-color: var(--primary-400) !important;
}

.bg-primary-500 {
  background-color: var(--primary-500);
}

.hover\:bg-primary-500:hover {
  background-color: var(--primary-500) !important;
}

.group:hover .group-hover\:bg-primary-500 {
  background-color: var(--primary-500) !important;
}

.bg-primary-600 {
  background-color: var(--primary-600);
}

.hover\:bg-primary-600:hover {
  background-color: var(--primary-600) !important;
}

.group:hover .group-hover\:bg-primary-600 {
  background-color: var(--primary-600) !important;
}

.bg-primary-700 {
  background-color: var(--primary-700);
}

.hover\:bg-primary-700:hover {
  background-color: var(--primary-700) !important;
}

.group:hover .group-hover\:bg-primary-700 {
  background-color: var(--primary-700) !important;
}

.bg-primary-800 {
  background-color: var(--primary-800);
}

.hover\:bg-primary-800:hover {
  background-color: var(--primary-800) !important;
}

.group:hover .group-hover\:bg-primary-800 {
  background-color: var(--primary-800) !important;
}

.bg-primary-900 {
  background-color: var(--primary-900);
}

.hover\:bg-primary-900:hover {
  background-color: var(--primary-900) !important;
}

.group:hover .group-hover\:bg-primary-900 {
  background-color: var(--primary-900) !important;
}

.bg-blue-100 {
  background-color: var(--blue-100);
}

.hover\:bg-blue-100:hover {
  background-color: var(--blue-100) !important;
}

.group:hover .group-hover\:bg-blue-100 {
  background-color: var(--blue-100) !important;
}

.bg-blue-200 {
  background-color: var(--blue-200);
}

.hover\:bg-blue-200:hover {
  background-color: var(--blue-200) !important;
}

.group:hover .group-hover\:bg-blue-200 {
  background-color: var(--blue-200) !important;
}

.bg-blue-300 {
  background-color: var(--blue-300);
}

.hover\:bg-blue-300:hover {
  background-color: var(--blue-300) !important;
}

.group:hover .group-hover\:bg-blue-300 {
  background-color: var(--blue-300) !important;
}

.bg-blue-400 {
  background-color: var(--blue-400);
}

.hover\:bg-blue-400:hover {
  background-color: var(--blue-400) !important;
}

.group:hover .group-hover\:bg-blue-400 {
  background-color: var(--blue-400) !important;
}

.bg-blue-500 {
  background-color: var(--blue-500);
}

.hover\:bg-blue-500:hover {
  background-color: var(--blue-500) !important;
}

.group:hover .group-hover\:bg-blue-500 {
  background-color: var(--blue-500) !important;
}

.bg-blue-600 {
  background-color: var(--blue-600);
}

.hover\:bg-blue-600:hover {
  background-color: var(--blue-600) !important;
}

.group:hover .group-hover\:bg-blue-600 {
  background-color: var(--blue-600) !important;
}

.bg-blue-700 {
  background-color: var(--blue-700);
}

.hover\:bg-blue-700:hover {
  background-color: var(--blue-700) !important;
}

.group:hover .group-hover\:bg-blue-700 {
  background-color: var(--blue-700) !important;
}

.bg-blue-800 {
  background-color: var(--blue-800);
}

.hover\:bg-blue-800:hover {
  background-color: var(--blue-800) !important;
}

.group:hover .group-hover\:bg-blue-800 {
  background-color: var(--blue-800) !important;
}

.bg-blue-900 {
  background-color: var(--blue-900);
}

.hover\:bg-blue-900:hover {
  background-color: var(--blue-900) !important;
}

.group:hover .group-hover\:bg-blue-900 {
  background-color: var(--blue-900) !important;
}

.bg-red-100 {
  background-color: var(--red-100);
}

.hover\:bg-red-100:hover {
  background-color: var(--red-100) !important;
}

.group:hover .group-hover\:bg-red-100 {
  background-color: var(--red-100) !important;
}

.bg-red-200 {
  background-color: var(--red-200);
}

.hover\:bg-red-200:hover {
  background-color: var(--red-200) !important;
}

.group:hover .group-hover\:bg-red-200 {
  background-color: var(--red-200) !important;
}

.bg-red-300 {
  background-color: var(--red-300);
}

.hover\:bg-red-300:hover {
  background-color: var(--red-300) !important;
}

.group:hover .group-hover\:bg-red-300 {
  background-color: var(--red-300) !important;
}

.bg-red-400 {
  background-color: var(--red-400);
}

.hover\:bg-red-400:hover {
  background-color: var(--red-400) !important;
}

.group:hover .group-hover\:bg-red-400 {
  background-color: var(--red-400) !important;
}

.bg-red-500 {
  background-color: var(--red-500);
}

.hover\:bg-red-500:hover {
  background-color: var(--red-500) !important;
}

.group:hover .group-hover\:bg-red-500 {
  background-color: var(--red-500) !important;
}

.bg-red-600 {
  background-color: var(--red-600);
}

.hover\:bg-red-600:hover {
  background-color: var(--red-600) !important;
}

.group:hover .group-hover\:bg-red-600 {
  background-color: var(--red-600) !important;
}

.bg-red-700 {
  background-color: var(--red-700);
}

.hover\:bg-red-700:hover {
  background-color: var(--red-700) !important;
}

.group:hover .group-hover\:bg-red-700 {
  background-color: var(--red-700) !important;
}

.bg-red-800 {
  background-color: var(--red-800);
}

.hover\:bg-red-800:hover {
  background-color: var(--red-800) !important;
}

.group:hover .group-hover\:bg-red-800 {
  background-color: var(--red-800) !important;
}

.bg-red-900 {
  background-color: var(--red-900);
}

.hover\:bg-red-900:hover {
  background-color: var(--red-900) !important;
}

.group:hover .group-hover\:bg-red-900 {
  background-color: var(--red-900) !important;
}

.bg-green-100 {
  background-color: var(--green-100);
}

.hover\:bg-green-100:hover {
  background-color: var(--green-100) !important;
}

.group:hover .group-hover\:bg-green-100 {
  background-color: var(--green-100) !important;
}

.bg-green-200 {
  background-color: var(--green-200);
}

.hover\:bg-green-200:hover {
  background-color: var(--green-200) !important;
}

.group:hover .group-hover\:bg-green-200 {
  background-color: var(--green-200) !important;
}

.bg-green-300 {
  background-color: var(--green-300);
}

.hover\:bg-green-300:hover {
  background-color: var(--green-300) !important;
}

.group:hover .group-hover\:bg-green-300 {
  background-color: var(--green-300) !important;
}

.bg-green-400 {
  background-color: var(--green-400);
}

.hover\:bg-green-400:hover {
  background-color: var(--green-400) !important;
}

.group:hover .group-hover\:bg-green-400 {
  background-color: var(--green-400) !important;
}

.bg-green-500 {
  background-color: var(--green-500);
}

.hover\:bg-green-500:hover {
  background-color: var(--green-500) !important;
}

.group:hover .group-hover\:bg-green-500 {
  background-color: var(--green-500) !important;
}

.bg-green-600 {
  background-color: var(--green-600);
}

.hover\:bg-green-600:hover {
  background-color: var(--green-600) !important;
}

.group:hover .group-hover\:bg-green-600 {
  background-color: var(--green-600) !important;
}

.bg-green-700 {
  background-color: var(--green-700);
}

.hover\:bg-green-700:hover {
  background-color: var(--green-700) !important;
}

.group:hover .group-hover\:bg-green-700 {
  background-color: var(--green-700) !important;
}

.bg-green-800 {
  background-color: var(--green-800);
}

.hover\:bg-green-800:hover {
  background-color: var(--green-800) !important;
}

.group:hover .group-hover\:bg-green-800 {
  background-color: var(--green-800) !important;
}

.bg-green-900 {
  background-color: var(--green-900);
}

.hover\:bg-green-900:hover {
  background-color: var(--green-900) !important;
}

.group:hover .group-hover\:bg-green-900 {
  background-color: var(--green-900) !important;
}

.bg-orange-100 {
  background-color: var(--orange-100);
}

.hover\:bg-orange-100:hover {
  background-color: var(--orange-100) !important;
}

.group:hover .group-hover\:bg-orange-100 {
  background-color: var(--orange-100) !important;
}

.bg-orange-200 {
  background-color: var(--orange-200);
}

.hover\:bg-orange-200:hover {
  background-color: var(--orange-200) !important;
}

.group:hover .group-hover\:bg-orange-200 {
  background-color: var(--orange-200) !important;
}

.bg-orange-300 {
  background-color: var(--orange-300);
}

.hover\:bg-orange-300:hover {
  background-color: var(--orange-300) !important;
}

.group:hover .group-hover\:bg-orange-300 {
  background-color: var(--orange-300) !important;
}

.bg-orange-400 {
  background-color: var(--orange-400);
}

.hover\:bg-orange-400:hover {
  background-color: var(--orange-400) !important;
}

.group:hover .group-hover\:bg-orange-400 {
  background-color: var(--orange-400) !important;
}

.bg-orange-500 {
  background-color: var(--orange-500);
}

.hover\:bg-orange-500:hover {
  background-color: var(--orange-500) !important;
}

.group:hover .group-hover\:bg-orange-500 {
  background-color: var(--orange-500) !important;
}

.bg-orange-600 {
  background-color: var(--orange-600);
}

.hover\:bg-orange-600:hover {
  background-color: var(--orange-600) !important;
}

.group:hover .group-hover\:bg-orange-600 {
  background-color: var(--orange-600) !important;
}

.bg-orange-700 {
  background-color: var(--orange-700);
}

.hover\:bg-orange-700:hover {
  background-color: var(--orange-700) !important;
}

.group:hover .group-hover\:bg-orange-700 {
  background-color: var(--orange-700) !important;
}

.bg-orange-800 {
  background-color: var(--orange-800);
}

.hover\:bg-orange-800:hover {
  background-color: var(--orange-800) !important;
}

.group:hover .group-hover\:bg-orange-800 {
  background-color: var(--orange-800) !important;
}

.bg-orange-900 {
  background-color: var(--orange-900);
}

.hover\:bg-orange-900:hover {
  background-color: var(--orange-900) !important;
}

.group:hover .group-hover\:bg-orange-900 {
  background-color: var(--orange-900) !important;
}

.bg-yellow-100 {
  background-color: var(--yellow-100);
}

.hover\:bg-yellow-100:hover {
  background-color: var(--yellow-100) !important;
}

.group:hover .group-hover\:bg-yellow-100 {
  background-color: var(--yellow-100) !important;
}

.bg-yellow-200 {
  background-color: var(--yellow-200);
}

.hover\:bg-yellow-200:hover {
  background-color: var(--yellow-200) !important;
}

.group:hover .group-hover\:bg-yellow-200 {
  background-color: var(--yellow-200) !important;
}

.bg-yellow-300 {
  background-color: var(--yellow-300);
}

.hover\:bg-yellow-300:hover {
  background-color: var(--yellow-300) !important;
}

.group:hover .group-hover\:bg-yellow-300 {
  background-color: var(--yellow-300) !important;
}

.bg-yellow-400 {
  background-color: var(--yellow-400);
}

.hover\:bg-yellow-400:hover {
  background-color: var(--yellow-400) !important;
}

.group:hover .group-hover\:bg-yellow-400 {
  background-color: var(--yellow-400) !important;
}

.bg-yellow-500 {
  background-color: var(--yellow-500);
}

.hover\:bg-yellow-500:hover {
  background-color: var(--yellow-500) !important;
}

.group:hover .group-hover\:bg-yellow-500 {
  background-color: var(--yellow-500) !important;
}

.bg-yellow-600 {
  background-color: var(--yellow-600);
}

.hover\:bg-yellow-600:hover {
  background-color: var(--yellow-600) !important;
}

.group:hover .group-hover\:bg-yellow-600 {
  background-color: var(--yellow-600) !important;
}

.bg-yellow-700 {
  background-color: var(--yellow-700);
}

.hover\:bg-yellow-700:hover {
  background-color: var(--yellow-700) !important;
}

.group:hover .group-hover\:bg-yellow-700 {
  background-color: var(--yellow-700) !important;
}

.bg-yellow-800 {
  background-color: var(--yellow-800);
}

.hover\:bg-yellow-800:hover {
  background-color: var(--yellow-800) !important;
}

.group:hover .group-hover\:bg-yellow-800 {
  background-color: var(--yellow-800) !important;
}

.bg-yellow-900 {
  background-color: var(--yellow-900);
}

.hover\:bg-yellow-900:hover {
  background-color: var(--yellow-900) !important;
}

.group:hover .group-hover\:bg-yellow-900 {
  background-color: var(--yellow-900) !important;
}

.bg-purple-100 {
  background-color: var(--purple-100);
}

.hover\:bg-purple-100:hover {
  background-color: var(--purple-100) !important;
}

.group:hover .group-hover\:bg-purple-100 {
  background-color: var(--purple-100) !important;
}

.bg-purple-200 {
  background-color: var(--purple-200);
}

.hover\:bg-purple-200:hover {
  background-color: var(--purple-200) !important;
}

.group:hover .group-hover\:bg-purple-200 {
  background-color: var(--purple-200) !important;
}

.bg-purple-300 {
  background-color: var(--purple-300);
}

.hover\:bg-purple-300:hover {
  background-color: var(--purple-300) !important;
}

.group:hover .group-hover\:bg-purple-300 {
  background-color: var(--purple-300) !important;
}

.bg-purple-400 {
  background-color: var(--purple-400);
}

.hover\:bg-purple-400:hover {
  background-color: var(--purple-400) !important;
}

.group:hover .group-hover\:bg-purple-400 {
  background-color: var(--purple-400) !important;
}

.bg-purple-500 {
  background-color: var(--purple-500);
}

.hover\:bg-purple-500:hover {
  background-color: var(--purple-500) !important;
}

.group:hover .group-hover\:bg-purple-500 {
  background-color: var(--purple-500) !important;
}

.bg-purple-600 {
  background-color: var(--purple-600);
}

.hover\:bg-purple-600:hover {
  background-color: var(--purple-600) !important;
}

.group:hover .group-hover\:bg-purple-600 {
  background-color: var(--purple-600) !important;
}

.bg-purple-700 {
  background-color: var(--purple-700);
}

.hover\:bg-purple-700:hover {
  background-color: var(--purple-700) !important;
}

.group:hover .group-hover\:bg-purple-700 {
  background-color: var(--purple-700) !important;
}

.bg-purple-800 {
  background-color: var(--purple-800);
}

.hover\:bg-purple-800:hover {
  background-color: var(--purple-800) !important;
}

.group:hover .group-hover\:bg-purple-800 {
  background-color: var(--purple-800) !important;
}

.bg-purple-900 {
  background-color: var(--purple-900);
}

.hover\:bg-purple-900:hover {
  background-color: var(--purple-900) !important;
}

.group:hover .group-hover\:bg-purple-900 {
  background-color: var(--purple-900) !important;
}

.bg-teal-100 {
  background-color: var(--teal-100);
}

.hover\:bg-teal-100:hover {
  background-color: var(--teal-100) !important;
}

.group:hover .group-hover\:bg-teal-100 {
  background-color: var(--teal-100) !important;
}

.bg-teal-200 {
  background-color: var(--teal-200);
}

.hover\:bg-teal-200:hover {
  background-color: var(--teal-200) !important;
}

.group:hover .group-hover\:bg-teal-200 {
  background-color: var(--teal-200) !important;
}

.bg-teal-300 {
  background-color: var(--teal-300);
}

.hover\:bg-teal-300:hover {
  background-color: var(--teal-300) !important;
}

.group:hover .group-hover\:bg-teal-300 {
  background-color: var(--teal-300) !important;
}

.bg-teal-400 {
  background-color: var(--teal-400);
}

.hover\:bg-teal-400:hover {
  background-color: var(--teal-400) !important;
}

.group:hover .group-hover\:bg-teal-400 {
  background-color: var(--teal-400) !important;
}

.bg-teal-500 {
  background-color: var(--teal-500);
}

.hover\:bg-teal-500:hover {
  background-color: var(--teal-500) !important;
}

.group:hover .group-hover\:bg-teal-500 {
  background-color: var(--teal-500) !important;
}

.bg-teal-600 {
  background-color: var(--teal-600);
}

.hover\:bg-teal-600:hover {
  background-color: var(--teal-600) !important;
}

.group:hover .group-hover\:bg-teal-600 {
  background-color: var(--teal-600) !important;
}

.bg-teal-700 {
  background-color: var(--teal-700);
}

.hover\:bg-teal-700:hover {
  background-color: var(--teal-700) !important;
}

.group:hover .group-hover\:bg-teal-700 {
  background-color: var(--teal-700) !important;
}

.bg-teal-800 {
  background-color: var(--teal-800);
}

.hover\:bg-teal-800:hover {
  background-color: var(--teal-800) !important;
}

.group:hover .group-hover\:bg-teal-800 {
  background-color: var(--teal-800) !important;
}

.bg-teal-900 {
  background-color: var(--teal-900);
}

.hover\:bg-teal-900:hover {
  background-color: var(--teal-900) !important;
}

.group:hover .group-hover\:bg-teal-900 {
  background-color: var(--teal-900) !important;
}

.bg-size-cover {
  background-size: cover;
}

.bg-position-center {
  background-position: center;
}

.bg-none {
  background: none;
}

.bg-gradient {
  background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
}

.bg-gradient-2 {
  background-color: #4158D0;
  background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}

.bg-aurora {
  background-color: red;
  background-image: radial-gradient(at 40% 20%, #ffb87a 0px, transparent 50%), radial-gradient(at 80% 0%, #1fddff 0px, transparent 50%), radial-gradient(at 0% 50%, #ffdbde 0px, transparent 50%), radial-gradient(at 80% 50%, #ff85ad 0px, transparent 50%), radial-gradient(at 0% 100%, #ffb58a 0px, transparent 50%), radial-gradient(at 80% 100%, #6b66ff 0px, transparent 50%), radial-gradient(at 0% 0%, #ff85a7 0px, transparent 50%);
}

.bg-aurora-2 {
  background-color: #ffd899;
  background-image: radial-gradient(at 98% 75%, #62c2fd 0px, transparent 50%), radial-gradient(at 47% 73%, #95eeee 0px, transparent 50%), radial-gradient(at 45% 16%, #84f43e 0px, transparent 50%), radial-gradient(at 31% 64%, #c1e95d 0px, transparent 50%), radial-gradient(at 63% 93%, #854cf0 0px, transparent 50%), radial-gradient(at 67% 78%, #da5a58 0px, transparent 50%), radial-gradient(at 81% 92%, #e6f2a1 0px, transparent 50%);
}

.static {
  position: static;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
  z-index: 100;
}

.sticky {
  position: sticky;
  z-index: 100;
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1000;
}

@media (max-width: 1199px) {
  .max-lg\:static {
    position: static;
  }

  .max-lg\:relative {
    position: relative;
  }

  .max-lg\:absolute {
    position: absolute;
  }

  .max-lg\:fixed {
    position: fixed;
  }

  .max-lg\:sticky {
    position: sticky;
  }
}

@media (max-width: 920px) {
  .max-md\:static {
    position: static;
  }

  .max-md\:relative {
    position: relative;
  }

  .max-md\:absolute {
    position: absolute;
  }

  .max-md\:fixed {
    position: fixed;
  }

  .max-md\:sticky {
    position: sticky;
  }
}

@media (max-width: 640px) {
  .max-sm\:static {
    position: static;
  }

  .max-sm\:relative {
    position: relative;
  }

  .max-sm\:absolute {
    position: absolute;
  }

  .max-sm\:fixed {
    position: fixed;
  }

  .max-sm\:sticky {
    position: sticky;
  }
}

@media (min-width: 641px) {
  .sm\:static {
    position: static;
  }

  .sm\:relative {
    position: relative;
  }

  .sm\:absolute {
    position: absolute;
  }

  .sm\:fixed {
    position: fixed;
  }

  .sm\:sticky {
    position: sticky;
  }
}

@media (min-width: 921px) {
  .md\:static {
    position: static;
  }

  .md\:relative {
    position: relative;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:fixed {
    position: fixed;
  }

  .md\:sticky {
    position: sticky;
  }
}

@media (min-width: 1201px) {
  .lg\:static {
    position: static;
  }

  .lg\:relative {
    position: relative;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:fixed {
    position: fixed;
  }

  .lg\:sticky {
    position: sticky;
  }
}

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

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

.center-xy {
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  transform: translateX(-50%);
}

.top-auto {
  top: auto;
}

.bottom-auto {
  bottom: auto;
}

.right-auto {
  right: auto;
}

.left-auto {
  left: auto;
}

.top-initial {
  top: initial;
}

.bottom-initial {
  bottom: initial;
}

.right-initial {
  right: initial;
}

.left-initial {
  left: initial;
}

.top-unset {
  top: unset;
}

.bottom-unset {
  bottom: unset;
}

.right-unset {
  right: unset;
}

.left-unset {
  left: unset;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.right-0 {
  right: 0;
}

.left-0 {
  left: 0;
}

.top-1 {
  top: 4px;
}

.bottom-1 {
  bottom: 4px;
}

.right-1 {
  right: 4px;
}

.left-1 {
  left: 4px;
}

.top-2 {
  top: 8px;
}

.bottom-2 {
  bottom: 8px;
}

.right-2 {
  right: 8px;
}

.left-2 {
  left: 8px;
}

.top-3 {
  top: 12px;
}

.bottom-3 {
  bottom: 12px;
}

.right-3 {
  right: 12px;
}

.left-3 {
  left: 12px;
}

.top-4 {
  top: 16px;
}

.bottom-4 {
  bottom: 16px;
}

.right-4 {
  right: 16px;
}

.left-4 {
  left: 16px;
}

.top-5 {
  top: 20px;
}

.bottom-5 {
  bottom: 20px;
}

.right-5 {
  right: 20px;
}

.left-5 {
  left: 20px;
}

.top-6 {
  top: 24px;
}

.bottom-6 {
  bottom: 24px;
}

.right-6 {
  right: 24px;
}

.left-6 {
  left: 24px;
}

.top-7 {
  top: 28px;
}

.bottom-7 {
  bottom: 28px;
}

.right-7 {
  right: 28px;
}

.left-7 {
  left: 28px;
}

.top-8 {
  top: 32px;
}

.bottom-8 {
  bottom: 32px;
}

.right-8 {
  right: 32px;
}

.left-8 {
  left: 32px;
}

.top-9 {
  top: 36px;
}

.bottom-9 {
  bottom: 36px;
}

.right-9 {
  right: 36px;
}

.left-9 {
  left: 36px;
}

.top-10 {
  top: 40px;
}

.bottom-10 {
  bottom: 40px;
}

.right-10 {
  right: 40px;
}

.left-10 {
  left: 40px;
}

.top-5\% {
  top: 5%;
}

.bottom-5\% {
  bottom: 5%;
}

.right-5\% {
  right: 5%;
}

.left-5\% {
  left: 5%;
}

.top-10\% {
  top: 10%;
}

.bottom-10\% {
  bottom: 10%;
}

.right-10\% {
  right: 10%;
}

.left-10\% {
  left: 10%;
}

.top-15\% {
  top: 15%;
}

.bottom-15\% {
  bottom: 15%;
}

.right-15\% {
  right: 15%;
}

.left-15\% {
  left: 15%;
}

.top-20\% {
  top: 20%;
}

.bottom-20\% {
  bottom: 20%;
}

.right-20\% {
  right: 20%;
}

.left-20\% {
  left: 20%;
}

.top-25\% {
  top: 25%;
}

.bottom-25\% {
  bottom: 25%;
}

.right-25\% {
  right: 25%;
}

.left-25\% {
  left: 25%;
}

.top-30\% {
  top: 30%;
}

.bottom-30\% {
  bottom: 30%;
}

.right-30\% {
  right: 30%;
}

.left-30\% {
  left: 30%;
}

.top-35\% {
  top: 35%;
}

.bottom-35\% {
  bottom: 35%;
}

.right-35\% {
  right: 35%;
}

.left-35\% {
  left: 35%;
}

.top-40\% {
  top: 40%;
}

.bottom-40\% {
  bottom: 40%;
}

.right-40\% {
  right: 40%;
}

.left-40\% {
  left: 40%;
}

.top-45\% {
  top: 45%;
}

.bottom-45\% {
  bottom: 45%;
}

.right-45\% {
  right: 45%;
}

.left-45\% {
  left: 45%;
}

.top-50\% {
  top: 50%;
}

.bottom-50\% {
  bottom: 50%;
}

.right-50\% {
  right: 50%;
}

.left-50\% {
  left: 50%;
}

.top-55\% {
  top: 55%;
}

.bottom-55\% {
  bottom: 55%;
}

.right-55\% {
  right: 55%;
}

.left-55\% {
  left: 55%;
}

.top-60\% {
  top: 60%;
}

.bottom-60\% {
  bottom: 60%;
}

.right-60\% {
  right: 60%;
}

.left-60\% {
  left: 60%;
}

.top-65\% {
  top: 65%;
}

.bottom-65\% {
  bottom: 65%;
}

.right-65\% {
  right: 65%;
}

.left-65\% {
  left: 65%;
}

.top-70\% {
  top: 70%;
}

.bottom-70\% {
  bottom: 70%;
}

.right-70\% {
  right: 70%;
}

.left-70\% {
  left: 70%;
}

.top-75\% {
  top: 75%;
}

.bottom-75\% {
  bottom: 75%;
}

.right-75\% {
  right: 75%;
}

.left-75\% {
  left: 75%;
}

.top-80\% {
  top: 80%;
}

.bottom-80\% {
  bottom: 80%;
}

.right-80\% {
  right: 80%;
}

.left-80\% {
  left: 80%;
}

.top-85\% {
  top: 85%;
}

.bottom-85\% {
  bottom: 85%;
}

.right-85\% {
  right: 85%;
}

.left-85\% {
  left: 85%;
}

.top-90\% {
  top: 90%;
}

.bottom-90\% {
  bottom: 90%;
}

.right-90\% {
  right: 90%;
}

.left-90\% {
  left: 90%;
}

.top-95\% {
  top: 95%;
}

.bottom-95\% {
  bottom: 95%;
}

.right-95\% {
  right: 95%;
}

.left-95\% {
  left: 95%;
}

.top-100\% {
  top: 100%;
}

.bottom-100\% {
  bottom: 100%;
}

.right-100\% {
  right: 100%;
}

.left-100\% {
  left: 100%;
}

@media (max-width: 1199px) {
  .max-lg\:center-y {
    top: 50%;
    transform: translateY(-50%);
  }

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

  .max-lg\:center-xy {
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
  }

  .max-lg\:top-auto {
    top: auto !important;
  }

  .max-lg\:bottom-auto {
    bottom: auto !important;
  }

  .max-lg\:right-auto {
    right: auto !important;
  }

  .max-lg\:left-auto {
    left: auto !important;
  }

  .max-lg\:top-initial {
    top: initial !important;
  }

  .max-lg\:bottom-initial {
    bottom: initial !important;
  }

  .max-lg\:right-initial {
    right: initial !important;
  }

  .max-lg\:left-initial {
    left: initial !important;
  }

  .max-lg\:top-unset {
    top: unset !important;
  }

  .max-lg\:bottom-unset {
    bottom: unset !important;
  }

  .max-lg\:right-unset {
    right: unset !important;
  }

  .max-lg\:left-unset {
    left: unset !important;
  }

  .max-lg\:top-0 {
    top: 0 !important;
  }

  .max-lg\:bottom-0 {
    bottom: 0 !important;
  }

  .max-lg\:right-0 {
    right: 0 !important;
  }

  .max-lg\:left-0 {
    left: 0 !important;
  }

  .max-lg\:top-1 {
    top: 4px !important;
  }

  .max-lg\:bottom-1 {
    bottom: 4px !important;
  }

  .max-lg\:right-1 {
    right: 4px !important;
  }

  .max-lg\:left-1 {
    left: 4px !important;
  }

  .max-lg\:top-2 {
    top: 8px !important;
  }

  .max-lg\:bottom-2 {
    bottom: 8px !important;
  }

  .max-lg\:right-2 {
    right: 8px !important;
  }

  .max-lg\:left-2 {
    left: 8px !important;
  }

  .max-lg\:top-3 {
    top: 12px !important;
  }

  .max-lg\:bottom-3 {
    bottom: 12px !important;
  }

  .max-lg\:right-3 {
    right: 12px !important;
  }

  .max-lg\:left-3 {
    left: 12px !important;
  }

  .max-lg\:top-4 {
    top: 16px !important;
  }

  .max-lg\:bottom-4 {
    bottom: 16px !important;
  }

  .max-lg\:right-4 {
    right: 16px !important;
  }

  .max-lg\:left-4 {
    left: 16px !important;
  }

  .max-lg\:top-5 {
    top: 20px !important;
  }

  .max-lg\:bottom-5 {
    bottom: 20px !important;
  }

  .max-lg\:right-5 {
    right: 20px !important;
  }

  .max-lg\:left-5 {
    left: 20px !important;
  }

  .max-lg\:top-6 {
    top: 24px !important;
  }

  .max-lg\:bottom-6 {
    bottom: 24px !important;
  }

  .max-lg\:right-6 {
    right: 24px !important;
  }

  .max-lg\:left-6 {
    left: 24px !important;
  }

  .max-lg\:top-7 {
    top: 28px !important;
  }

  .max-lg\:bottom-7 {
    bottom: 28px !important;
  }

  .max-lg\:right-7 {
    right: 28px !important;
  }

  .max-lg\:left-7 {
    left: 28px !important;
  }

  .max-lg\:top-8 {
    top: 32px !important;
  }

  .max-lg\:bottom-8 {
    bottom: 32px !important;
  }

  .max-lg\:right-8 {
    right: 32px !important;
  }

  .max-lg\:left-8 {
    left: 32px !important;
  }

  .max-lg\:top-9 {
    top: 36px !important;
  }

  .max-lg\:bottom-9 {
    bottom: 36px !important;
  }

  .max-lg\:right-9 {
    right: 36px !important;
  }

  .max-lg\:left-9 {
    left: 36px !important;
  }

  .max-lg\:top-10 {
    top: 40px !important;
  }

  .max-lg\:bottom-10 {
    bottom: 40px !important;
  }

  .max-lg\:right-10 {
    right: 40px !important;
  }

  .max-lg\:left-10 {
    left: 40px !important;
  }

  .max-lg\:top-5\% {
    top: 5% !important;
  }

  .max-lg\:bottom-5\% {
    bottom: 5% !important;
  }

  .max-lg\:right-5\% {
    right: 5% !important;
  }

  .max-lg\:left-5\% {
    left: 5% !important;
  }

  .max-lg\:top-10\% {
    top: 10% !important;
  }

  .max-lg\:bottom-10\% {
    bottom: 10% !important;
  }

  .max-lg\:right-10\% {
    right: 10% !important;
  }

  .max-lg\:left-10\% {
    left: 10% !important;
  }

  .max-lg\:top-15\% {
    top: 15% !important;
  }

  .max-lg\:bottom-15\% {
    bottom: 15% !important;
  }

  .max-lg\:right-15\% {
    right: 15% !important;
  }

  .max-lg\:left-15\% {
    left: 15% !important;
  }

  .max-lg\:top-20\% {
    top: 20% !important;
  }

  .max-lg\:bottom-20\% {
    bottom: 20% !important;
  }

  .max-lg\:right-20\% {
    right: 20% !important;
  }

  .max-lg\:left-20\% {
    left: 20% !important;
  }

  .max-lg\:top-25\% {
    top: 25% !important;
  }

  .max-lg\:bottom-25\% {
    bottom: 25% !important;
  }

  .max-lg\:right-25\% {
    right: 25% !important;
  }

  .max-lg\:left-25\% {
    left: 25% !important;
  }

  .max-lg\:top-30\% {
    top: 30% !important;
  }

  .max-lg\:bottom-30\% {
    bottom: 30% !important;
  }

  .max-lg\:right-30\% {
    right: 30% !important;
  }

  .max-lg\:left-30\% {
    left: 30% !important;
  }

  .max-lg\:top-35\% {
    top: 35% !important;
  }

  .max-lg\:bottom-35\% {
    bottom: 35% !important;
  }

  .max-lg\:right-35\% {
    right: 35% !important;
  }

  .max-lg\:left-35\% {
    left: 35% !important;
  }

  .max-lg\:top-40\% {
    top: 40% !important;
  }

  .max-lg\:bottom-40\% {
    bottom: 40% !important;
  }

  .max-lg\:right-40\% {
    right: 40% !important;
  }

  .max-lg\:left-40\% {
    left: 40% !important;
  }

  .max-lg\:top-45\% {
    top: 45% !important;
  }

  .max-lg\:bottom-45\% {
    bottom: 45% !important;
  }

  .max-lg\:right-45\% {
    right: 45% !important;
  }

  .max-lg\:left-45\% {
    left: 45% !important;
  }

  .max-lg\:top-50\% {
    top: 50% !important;
  }

  .max-lg\:bottom-50\% {
    bottom: 50% !important;
  }

  .max-lg\:right-50\% {
    right: 50% !important;
  }

  .max-lg\:left-50\% {
    left: 50% !important;
  }

  .max-lg\:top-55\% {
    top: 55% !important;
  }

  .max-lg\:bottom-55\% {
    bottom: 55% !important;
  }

  .max-lg\:right-55\% {
    right: 55% !important;
  }

  .max-lg\:left-55\% {
    left: 55% !important;
  }

  .max-lg\:top-60\% {
    top: 60% !important;
  }

  .max-lg\:bottom-60\% {
    bottom: 60% !important;
  }

  .max-lg\:right-60\% {
    right: 60% !important;
  }

  .max-lg\:left-60\% {
    left: 60% !important;
  }

  .max-lg\:top-65\% {
    top: 65% !important;
  }

  .max-lg\:bottom-65\% {
    bottom: 65% !important;
  }

  .max-lg\:right-65\% {
    right: 65% !important;
  }

  .max-lg\:left-65\% {
    left: 65% !important;
  }

  .max-lg\:top-70\% {
    top: 70% !important;
  }

  .max-lg\:bottom-70\% {
    bottom: 70% !important;
  }

  .max-lg\:right-70\% {
    right: 70% !important;
  }

  .max-lg\:left-70\% {
    left: 70% !important;
  }

  .max-lg\:top-75\% {
    top: 75% !important;
  }

  .max-lg\:bottom-75\% {
    bottom: 75% !important;
  }

  .max-lg\:right-75\% {
    right: 75% !important;
  }

  .max-lg\:left-75\% {
    left: 75% !important;
  }

  .max-lg\:top-80\% {
    top: 80% !important;
  }

  .max-lg\:bottom-80\% {
    bottom: 80% !important;
  }

  .max-lg\:right-80\% {
    right: 80% !important;
  }

  .max-lg\:left-80\% {
    left: 80% !important;
  }

  .max-lg\:top-85\% {
    top: 85% !important;
  }

  .max-lg\:bottom-85\% {
    bottom: 85% !important;
  }

  .max-lg\:right-85\% {
    right: 85% !important;
  }

  .max-lg\:left-85\% {
    left: 85% !important;
  }

  .max-lg\:top-90\% {
    top: 90% !important;
  }

  .max-lg\:bottom-90\% {
    bottom: 90% !important;
  }

  .max-lg\:right-90\% {
    right: 90% !important;
  }

  .max-lg\:left-90\% {
    left: 90% !important;
  }

  .max-lg\:top-95\% {
    top: 95% !important;
  }

  .max-lg\:bottom-95\% {
    bottom: 95% !important;
  }

  .max-lg\:right-95\% {
    right: 95% !important;
  }

  .max-lg\:left-95\% {
    left: 95% !important;
  }

  .max-lg\:top-100\% {
    top: 100% !important;
  }

  .max-lg\:bottom-100\% {
    bottom: 100% !important;
  }

  .max-lg\:right-100\% {
    right: 100% !important;
  }

  .max-lg\:left-100\% {
    left: 100% !important;
  }
}

@media (max-width: 920px) {
  .max-md\:center-y {
    top: 50%;
    transform: translateY(-50%);
  }

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

  .max-md\:center-xy {
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
  }

  .max-md\:top-auto {
    top: auto !important;
  }

  .max-md\:bottom-auto {
    bottom: auto !important;
  }

  .max-md\:right-auto {
    right: auto !important;
  }

  .max-md\:left-auto {
    left: auto !important;
  }

  .max-md\:top-initial {
    top: initial !important;
  }

  .max-md\:bottom-initial {
    bottom: initial !important;
  }

  .max-md\:right-initial {
    right: initial !important;
  }

  .max-md\:left-initial {
    left: initial !important;
  }

  .max-md\:top-unset {
    top: unset !important;
  }

  .max-md\:bottom-unset {
    bottom: unset !important;
  }

  .max-md\:right-unset {
    right: unset !important;
  }

  .max-md\:left-unset {
    left: unset !important;
  }

  .max-md\:top-0 {
    top: 0 !important;
  }

  .max-md\:bottom-0 {
    bottom: 0 !important;
  }

  .max-md\:right-0 {
    right: 0 !important;
  }

  .max-md\:left-0 {
    left: 0 !important;
  }

  .max-md\:top-1 {
    top: 4px !important;
  }

  .max-md\:bottom-1 {
    bottom: 4px !important;
  }

  .max-md\:right-1 {
    right: 4px !important;
  }

  .max-md\:left-1 {
    left: 4px !important;
  }

  .max-md\:top-2 {
    top: 8px !important;
  }

  .max-md\:bottom-2 {
    bottom: 8px !important;
  }

  .max-md\:right-2 {
    right: 8px !important;
  }

  .max-md\:left-2 {
    left: 8px !important;
  }

  .max-md\:top-3 {
    top: 12px !important;
  }

  .max-md\:bottom-3 {
    bottom: 12px !important;
  }

  .max-md\:right-3 {
    right: 12px !important;
  }

  .max-md\:left-3 {
    left: 12px !important;
  }

  .max-md\:top-4 {
    top: 16px !important;
  }

  .max-md\:bottom-4 {
    bottom: 16px !important;
  }

  .max-md\:right-4 {
    right: 16px !important;
  }

  .max-md\:left-4 {
    left: 16px !important;
  }

  .max-md\:top-5 {
    top: 20px !important;
  }

  .max-md\:bottom-5 {
    bottom: 20px !important;
  }

  .max-md\:right-5 {
    right: 20px !important;
  }

  .max-md\:left-5 {
    left: 20px !important;
  }

  .max-md\:top-6 {
    top: 24px !important;
  }

  .max-md\:bottom-6 {
    bottom: 24px !important;
  }

  .max-md\:right-6 {
    right: 24px !important;
  }

  .max-md\:left-6 {
    left: 24px !important;
  }

  .max-md\:top-7 {
    top: 28px !important;
  }

  .max-md\:bottom-7 {
    bottom: 28px !important;
  }

  .max-md\:right-7 {
    right: 28px !important;
  }

  .max-md\:left-7 {
    left: 28px !important;
  }

  .max-md\:top-8 {
    top: 32px !important;
  }

  .max-md\:bottom-8 {
    bottom: 32px !important;
  }

  .max-md\:right-8 {
    right: 32px !important;
  }

  .max-md\:left-8 {
    left: 32px !important;
  }

  .max-md\:top-9 {
    top: 36px !important;
  }

  .max-md\:bottom-9 {
    bottom: 36px !important;
  }

  .max-md\:right-9 {
    right: 36px !important;
  }

  .max-md\:left-9 {
    left: 36px !important;
  }

  .max-md\:top-10 {
    top: 40px !important;
  }

  .max-md\:bottom-10 {
    bottom: 40px !important;
  }

  .max-md\:right-10 {
    right: 40px !important;
  }

  .max-md\:left-10 {
    left: 40px !important;
  }

  .max-md\:top-5\% {
    top: 5% !important;
  }

  .max-md\:bottom-5\% {
    bottom: 5% !important;
  }

  .max-md\:right-5\% {
    right: 5% !important;
  }

  .max-md\:left-5\% {
    left: 5% !important;
  }

  .max-md\:top-10\% {
    top: 10% !important;
  }

  .max-md\:bottom-10\% {
    bottom: 10% !important;
  }

  .max-md\:right-10\% {
    right: 10% !important;
  }

  .max-md\:left-10\% {
    left: 10% !important;
  }

  .max-md\:top-15\% {
    top: 15% !important;
  }

  .max-md\:bottom-15\% {
    bottom: 15% !important;
  }

  .max-md\:right-15\% {
    right: 15% !important;
  }

  .max-md\:left-15\% {
    left: 15% !important;
  }

  .max-md\:top-20\% {
    top: 20% !important;
  }

  .max-md\:bottom-20\% {
    bottom: 20% !important;
  }

  .max-md\:right-20\% {
    right: 20% !important;
  }

  .max-md\:left-20\% {
    left: 20% !important;
  }

  .max-md\:top-25\% {
    top: 25% !important;
  }

  .max-md\:bottom-25\% {
    bottom: 25% !important;
  }

  .max-md\:right-25\% {
    right: 25% !important;
  }

  .max-md\:left-25\% {
    left: 25% !important;
  }

  .max-md\:top-30\% {
    top: 30% !important;
  }

  .max-md\:bottom-30\% {
    bottom: 30% !important;
  }

  .max-md\:right-30\% {
    right: 30% !important;
  }

  .max-md\:left-30\% {
    left: 30% !important;
  }

  .max-md\:top-35\% {
    top: 35% !important;
  }

  .max-md\:bottom-35\% {
    bottom: 35% !important;
  }

  .max-md\:right-35\% {
    right: 35% !important;
  }

  .max-md\:left-35\% {
    left: 35% !important;
  }

  .max-md\:top-40\% {
    top: 40% !important;
  }

  .max-md\:bottom-40\% {
    bottom: 40% !important;
  }

  .max-md\:right-40\% {
    right: 40% !important;
  }

  .max-md\:left-40\% {
    left: 40% !important;
  }

  .max-md\:top-45\% {
    top: 45% !important;
  }

  .max-md\:bottom-45\% {
    bottom: 45% !important;
  }

  .max-md\:right-45\% {
    right: 45% !important;
  }

  .max-md\:left-45\% {
    left: 45% !important;
  }

  .max-md\:top-50\% {
    top: 50% !important;
  }

  .max-md\:bottom-50\% {
    bottom: 50% !important;
  }

  .max-md\:right-50\% {
    right: 50% !important;
  }

  .max-md\:left-50\% {
    left: 50% !important;
  }

  .max-md\:top-55\% {
    top: 55% !important;
  }

  .max-md\:bottom-55\% {
    bottom: 55% !important;
  }

  .max-md\:right-55\% {
    right: 55% !important;
  }

  .max-md\:left-55\% {
    left: 55% !important;
  }

  .max-md\:top-60\% {
    top: 60% !important;
  }

  .max-md\:bottom-60\% {
    bottom: 60% !important;
  }

  .max-md\:right-60\% {
    right: 60% !important;
  }

  .max-md\:left-60\% {
    left: 60% !important;
  }

  .max-md\:top-65\% {
    top: 65% !important;
  }

  .max-md\:bottom-65\% {
    bottom: 65% !important;
  }

  .max-md\:right-65\% {
    right: 65% !important;
  }

  .max-md\:left-65\% {
    left: 65% !important;
  }

  .max-md\:top-70\% {
    top: 70% !important;
  }

  .max-md\:bottom-70\% {
    bottom: 70% !important;
  }

  .max-md\:right-70\% {
    right: 70% !important;
  }

  .max-md\:left-70\% {
    left: 70% !important;
  }

  .max-md\:top-75\% {
    top: 75% !important;
  }

  .max-md\:bottom-75\% {
    bottom: 75% !important;
  }

  .max-md\:right-75\% {
    right: 75% !important;
  }

  .max-md\:left-75\% {
    left: 75% !important;
  }

  .max-md\:top-80\% {
    top: 80% !important;
  }

  .max-md\:bottom-80\% {
    bottom: 80% !important;
  }

  .max-md\:right-80\% {
    right: 80% !important;
  }

  .max-md\:left-80\% {
    left: 80% !important;
  }

  .max-md\:top-85\% {
    top: 85% !important;
  }

  .max-md\:bottom-85\% {
    bottom: 85% !important;
  }

  .max-md\:right-85\% {
    right: 85% !important;
  }

  .max-md\:left-85\% {
    left: 85% !important;
  }

  .max-md\:top-90\% {
    top: 90% !important;
  }

  .max-md\:bottom-90\% {
    bottom: 90% !important;
  }

  .max-md\:right-90\% {
    right: 90% !important;
  }

  .max-md\:left-90\% {
    left: 90% !important;
  }

  .max-md\:top-95\% {
    top: 95% !important;
  }

  .max-md\:bottom-95\% {
    bottom: 95% !important;
  }

  .max-md\:right-95\% {
    right: 95% !important;
  }

  .max-md\:left-95\% {
    left: 95% !important;
  }

  .max-md\:top-100\% {
    top: 100% !important;
  }

  .max-md\:bottom-100\% {
    bottom: 100% !important;
  }

  .max-md\:right-100\% {
    right: 100% !important;
  }

  .max-md\:left-100\% {
    left: 100% !important;
  }
}

@media (max-width: 640px) {
  .max-sm\:center-y {
    top: 50%;
    transform: translateY(-50%);
  }

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

  .max-sm\:center-xy {
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
  }

  .max-sm\:top-auto {
    top: auto !important;
  }

  .max-sm\:bottom-auto {
    bottom: auto !important;
  }

  .max-sm\:right-auto {
    right: auto !important;
  }

  .max-sm\:left-auto {
    left: auto !important;
  }

  .max-sm\:top-initial {
    top: initial !important;
  }

  .max-sm\:bottom-initial {
    bottom: initial !important;
  }

  .max-sm\:right-initial {
    right: initial !important;
  }

  .max-sm\:left-initial {
    left: initial !important;
  }

  .max-sm\:top-unset {
    top: unset !important;
  }

  .max-sm\:bottom-unset {
    bottom: unset !important;
  }

  .max-sm\:right-unset {
    right: unset !important;
  }

  .max-sm\:left-unset {
    left: unset !important;
  }

  .max-sm\:top-0 {
    top: 0 !important;
  }

  .max-sm\:bottom-0 {
    bottom: 0 !important;
  }

  .max-sm\:right-0 {
    right: 0 !important;
  }

  .max-sm\:left-0 {
    left: 0 !important;
  }

  .max-sm\:top-1 {
    top: 4px !important;
  }

  .max-sm\:bottom-1 {
    bottom: 4px !important;
  }

  .max-sm\:right-1 {
    right: 4px !important;
  }

  .max-sm\:left-1 {
    left: 4px !important;
  }

  .max-sm\:top-2 {
    top: 8px !important;
  }

  .max-sm\:bottom-2 {
    bottom: 8px !important;
  }

  .max-sm\:right-2 {
    right: 8px !important;
  }

  .max-sm\:left-2 {
    left: 8px !important;
  }

  .max-sm\:top-3 {
    top: 12px !important;
  }

  .max-sm\:bottom-3 {
    bottom: 12px !important;
  }

  .max-sm\:right-3 {
    right: 12px !important;
  }

  .max-sm\:left-3 {
    left: 12px !important;
  }

  .max-sm\:top-4 {
    top: 16px !important;
  }

  .max-sm\:bottom-4 {
    bottom: 16px !important;
  }

  .max-sm\:right-4 {
    right: 16px !important;
  }

  .max-sm\:left-4 {
    left: 16px !important;
  }

  .max-sm\:top-5 {
    top: 20px !important;
  }

  .max-sm\:bottom-5 {
    bottom: 20px !important;
  }

  .max-sm\:right-5 {
    right: 20px !important;
  }

  .max-sm\:left-5 {
    left: 20px !important;
  }

  .max-sm\:top-6 {
    top: 24px !important;
  }

  .max-sm\:bottom-6 {
    bottom: 24px !important;
  }

  .max-sm\:right-6 {
    right: 24px !important;
  }

  .max-sm\:left-6 {
    left: 24px !important;
  }

  .max-sm\:top-7 {
    top: 28px !important;
  }

  .max-sm\:bottom-7 {
    bottom: 28px !important;
  }

  .max-sm\:right-7 {
    right: 28px !important;
  }

  .max-sm\:left-7 {
    left: 28px !important;
  }

  .max-sm\:top-8 {
    top: 32px !important;
  }

  .max-sm\:bottom-8 {
    bottom: 32px !important;
  }

  .max-sm\:right-8 {
    right: 32px !important;
  }

  .max-sm\:left-8 {
    left: 32px !important;
  }

  .max-sm\:top-9 {
    top: 36px !important;
  }

  .max-sm\:bottom-9 {
    bottom: 36px !important;
  }

  .max-sm\:right-9 {
    right: 36px !important;
  }

  .max-sm\:left-9 {
    left: 36px !important;
  }

  .max-sm\:top-10 {
    top: 40px !important;
  }

  .max-sm\:bottom-10 {
    bottom: 40px !important;
  }

  .max-sm\:right-10 {
    right: 40px !important;
  }

  .max-sm\:left-10 {
    left: 40px !important;
  }

  .max-sm\:top-5\% {
    top: 5% !important;
  }

  .max-sm\:bottom-5\% {
    bottom: 5% !important;
  }

  .max-sm\:right-5\% {
    right: 5% !important;
  }

  .max-sm\:left-5\% {
    left: 5% !important;
  }

  .max-sm\:top-10\% {
    top: 10% !important;
  }

  .max-sm\:bottom-10\% {
    bottom: 10% !important;
  }

  .max-sm\:right-10\% {
    right: 10% !important;
  }

  .max-sm\:left-10\% {
    left: 10% !important;
  }

  .max-sm\:top-15\% {
    top: 15% !important;
  }

  .max-sm\:bottom-15\% {
    bottom: 15% !important;
  }

  .max-sm\:right-15\% {
    right: 15% !important;
  }

  .max-sm\:left-15\% {
    left: 15% !important;
  }

  .max-sm\:top-20\% {
    top: 20% !important;
  }

  .max-sm\:bottom-20\% {
    bottom: 20% !important;
  }

  .max-sm\:right-20\% {
    right: 20% !important;
  }

  .max-sm\:left-20\% {
    left: 20% !important;
  }

  .max-sm\:top-25\% {
    top: 25% !important;
  }

  .max-sm\:bottom-25\% {
    bottom: 25% !important;
  }

  .max-sm\:right-25\% {
    right: 25% !important;
  }

  .max-sm\:left-25\% {
    left: 25% !important;
  }

  .max-sm\:top-30\% {
    top: 30% !important;
  }

  .max-sm\:bottom-30\% {
    bottom: 30% !important;
  }

  .max-sm\:right-30\% {
    right: 30% !important;
  }

  .max-sm\:left-30\% {
    left: 30% !important;
  }

  .max-sm\:top-35\% {
    top: 35% !important;
  }

  .max-sm\:bottom-35\% {
    bottom: 35% !important;
  }

  .max-sm\:right-35\% {
    right: 35% !important;
  }

  .max-sm\:left-35\% {
    left: 35% !important;
  }

  .max-sm\:top-40\% {
    top: 40% !important;
  }

  .max-sm\:bottom-40\% {
    bottom: 40% !important;
  }

  .max-sm\:right-40\% {
    right: 40% !important;
  }

  .max-sm\:left-40\% {
    left: 40% !important;
  }

  .max-sm\:top-45\% {
    top: 45% !important;
  }

  .max-sm\:bottom-45\% {
    bottom: 45% !important;
  }

  .max-sm\:right-45\% {
    right: 45% !important;
  }

  .max-sm\:left-45\% {
    left: 45% !important;
  }

  .max-sm\:top-50\% {
    top: 50% !important;
  }

  .max-sm\:bottom-50\% {
    bottom: 50% !important;
  }

  .max-sm\:right-50\% {
    right: 50% !important;
  }

  .max-sm\:left-50\% {
    left: 50% !important;
  }

  .max-sm\:top-55\% {
    top: 55% !important;
  }

  .max-sm\:bottom-55\% {
    bottom: 55% !important;
  }

  .max-sm\:right-55\% {
    right: 55% !important;
  }

  .max-sm\:left-55\% {
    left: 55% !important;
  }

  .max-sm\:top-60\% {
    top: 60% !important;
  }

  .max-sm\:bottom-60\% {
    bottom: 60% !important;
  }

  .max-sm\:right-60\% {
    right: 60% !important;
  }

  .max-sm\:left-60\% {
    left: 60% !important;
  }

  .max-sm\:top-65\% {
    top: 65% !important;
  }

  .max-sm\:bottom-65\% {
    bottom: 65% !important;
  }

  .max-sm\:right-65\% {
    right: 65% !important;
  }

  .max-sm\:left-65\% {
    left: 65% !important;
  }

  .max-sm\:top-70\% {
    top: 70% !important;
  }

  .max-sm\:bottom-70\% {
    bottom: 70% !important;
  }

  .max-sm\:right-70\% {
    right: 70% !important;
  }

  .max-sm\:left-70\% {
    left: 70% !important;
  }

  .max-sm\:top-75\% {
    top: 75% !important;
  }

  .max-sm\:bottom-75\% {
    bottom: 75% !important;
  }

  .max-sm\:right-75\% {
    right: 75% !important;
  }

  .max-sm\:left-75\% {
    left: 75% !important;
  }

  .max-sm\:top-80\% {
    top: 80% !important;
  }

  .max-sm\:bottom-80\% {
    bottom: 80% !important;
  }

  .max-sm\:right-80\% {
    right: 80% !important;
  }

  .max-sm\:left-80\% {
    left: 80% !important;
  }

  .max-sm\:top-85\% {
    top: 85% !important;
  }

  .max-sm\:bottom-85\% {
    bottom: 85% !important;
  }

  .max-sm\:right-85\% {
    right: 85% !important;
  }

  .max-sm\:left-85\% {
    left: 85% !important;
  }

  .max-sm\:top-90\% {
    top: 90% !important;
  }

  .max-sm\:bottom-90\% {
    bottom: 90% !important;
  }

  .max-sm\:right-90\% {
    right: 90% !important;
  }

  .max-sm\:left-90\% {
    left: 90% !important;
  }

  .max-sm\:top-95\% {
    top: 95% !important;
  }

  .max-sm\:bottom-95\% {
    bottom: 95% !important;
  }

  .max-sm\:right-95\% {
    right: 95% !important;
  }

  .max-sm\:left-95\% {
    left: 95% !important;
  }

  .max-sm\:top-100\% {
    top: 100% !important;
  }

  .max-sm\:bottom-100\% {
    bottom: 100% !important;
  }

  .max-sm\:right-100\% {
    right: 100% !important;
  }

  .max-sm\:left-100\% {
    left: 100% !important;
  }
}

@media (min-width: 641px) {
  .sm\:center-y {
    top: 50%;
    transform: translateY(-50%);
  }

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

  .sm\:center-xy {
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
  }

  .sm\:top-auto {
    top: auto !important;
  }

  .sm\:bottom-auto {
    bottom: auto !important;
  }

  .sm\:right-auto {
    right: auto !important;
  }

  .sm\:left-auto {
    left: auto !important;
  }

  .sm\:top-initial {
    top: initial !important;
  }

  .sm\:bottom-initial {
    bottom: initial !important;
  }

  .sm\:right-initial {
    right: initial !important;
  }

  .sm\:left-initial {
    left: initial !important;
  }

  .sm\:top-unset {
    top: unset !important;
  }

  .sm\:bottom-unset {
    bottom: unset !important;
  }

  .sm\:right-unset {
    right: unset !important;
  }

  .sm\:left-unset {
    left: unset !important;
  }

  .sm\:top-0 {
    top: 0 !important;
  }

  .sm\:bottom-0 {
    bottom: 0 !important;
  }

  .sm\:right-0 {
    right: 0 !important;
  }

  .sm\:left-0 {
    left: 0 !important;
  }

  .sm\:top-1 {
    top: 4px !important;
  }

  .sm\:bottom-1 {
    bottom: 4px !important;
  }

  .sm\:right-1 {
    right: 4px !important;
  }

  .sm\:left-1 {
    left: 4px !important;
  }

  .sm\:top-2 {
    top: 8px !important;
  }

  .sm\:bottom-2 {
    bottom: 8px !important;
  }

  .sm\:right-2 {
    right: 8px !important;
  }

  .sm\:left-2 {
    left: 8px !important;
  }

  .sm\:top-3 {
    top: 12px !important;
  }

  .sm\:bottom-3 {
    bottom: 12px !important;
  }

  .sm\:right-3 {
    right: 12px !important;
  }

  .sm\:left-3 {
    left: 12px !important;
  }

  .sm\:top-4 {
    top: 16px !important;
  }

  .sm\:bottom-4 {
    bottom: 16px !important;
  }

  .sm\:right-4 {
    right: 16px !important;
  }

  .sm\:left-4 {
    left: 16px !important;
  }

  .sm\:top-5 {
    top: 20px !important;
  }

  .sm\:bottom-5 {
    bottom: 20px !important;
  }

  .sm\:right-5 {
    right: 20px !important;
  }

  .sm\:left-5 {
    left: 20px !important;
  }

  .sm\:top-6 {
    top: 24px !important;
  }

  .sm\:bottom-6 {
    bottom: 24px !important;
  }

  .sm\:right-6 {
    right: 24px !important;
  }

  .sm\:left-6 {
    left: 24px !important;
  }

  .sm\:top-7 {
    top: 28px !important;
  }

  .sm\:bottom-7 {
    bottom: 28px !important;
  }

  .sm\:right-7 {
    right: 28px !important;
  }

  .sm\:left-7 {
    left: 28px !important;
  }

  .sm\:top-8 {
    top: 32px !important;
  }

  .sm\:bottom-8 {
    bottom: 32px !important;
  }

  .sm\:right-8 {
    right: 32px !important;
  }

  .sm\:left-8 {
    left: 32px !important;
  }

  .sm\:top-9 {
    top: 36px !important;
  }

  .sm\:bottom-9 {
    bottom: 36px !important;
  }

  .sm\:right-9 {
    right: 36px !important;
  }

  .sm\:left-9 {
    left: 36px !important;
  }

  .sm\:top-10 {
    top: 40px !important;
  }

  .sm\:bottom-10 {
    bottom: 40px !important;
  }

  .sm\:right-10 {
    right: 40px !important;
  }

  .sm\:left-10 {
    left: 40px !important;
  }

  .sm\:top-5\% {
    top: 5% !important;
  }

  .sm\:bottom-5\% {
    bottom: 5% !important;
  }

  .sm\:right-5\% {
    right: 5% !important;
  }

  .sm\:left-5\% {
    left: 5% !important;
  }

  .sm\:top-10\% {
    top: 10% !important;
  }

  .sm\:bottom-10\% {
    bottom: 10% !important;
  }

  .sm\:right-10\% {
    right: 10% !important;
  }

  .sm\:left-10\% {
    left: 10% !important;
  }

  .sm\:top-15\% {
    top: 15% !important;
  }

  .sm\:bottom-15\% {
    bottom: 15% !important;
  }

  .sm\:right-15\% {
    right: 15% !important;
  }

  .sm\:left-15\% {
    left: 15% !important;
  }

  .sm\:top-20\% {
    top: 20% !important;
  }

  .sm\:bottom-20\% {
    bottom: 20% !important;
  }

  .sm\:right-20\% {
    right: 20% !important;
  }

  .sm\:left-20\% {
    left: 20% !important;
  }

  .sm\:top-25\% {
    top: 25% !important;
  }

  .sm\:bottom-25\% {
    bottom: 25% !important;
  }

  .sm\:right-25\% {
    right: 25% !important;
  }

  .sm\:left-25\% {
    left: 25% !important;
  }

  .sm\:top-30\% {
    top: 30% !important;
  }

  .sm\:bottom-30\% {
    bottom: 30% !important;
  }

  .sm\:right-30\% {
    right: 30% !important;
  }

  .sm\:left-30\% {
    left: 30% !important;
  }

  .sm\:top-35\% {
    top: 35% !important;
  }

  .sm\:bottom-35\% {
    bottom: 35% !important;
  }

  .sm\:right-35\% {
    right: 35% !important;
  }

  .sm\:left-35\% {
    left: 35% !important;
  }

  .sm\:top-40\% {
    top: 40% !important;
  }

  .sm\:bottom-40\% {
    bottom: 40% !important;
  }

  .sm\:right-40\% {
    right: 40% !important;
  }

  .sm\:left-40\% {
    left: 40% !important;
  }

  .sm\:top-45\% {
    top: 45% !important;
  }

  .sm\:bottom-45\% {
    bottom: 45% !important;
  }

  .sm\:right-45\% {
    right: 45% !important;
  }

  .sm\:left-45\% {
    left: 45% !important;
  }

  .sm\:top-50\% {
    top: 50% !important;
  }

  .sm\:bottom-50\% {
    bottom: 50% !important;
  }

  .sm\:right-50\% {
    right: 50% !important;
  }

  .sm\:left-50\% {
    left: 50% !important;
  }

  .sm\:top-55\% {
    top: 55% !important;
  }

  .sm\:bottom-55\% {
    bottom: 55% !important;
  }

  .sm\:right-55\% {
    right: 55% !important;
  }

  .sm\:left-55\% {
    left: 55% !important;
  }

  .sm\:top-60\% {
    top: 60% !important;
  }

  .sm\:bottom-60\% {
    bottom: 60% !important;
  }

  .sm\:right-60\% {
    right: 60% !important;
  }

  .sm\:left-60\% {
    left: 60% !important;
  }

  .sm\:top-65\% {
    top: 65% !important;
  }

  .sm\:bottom-65\% {
    bottom: 65% !important;
  }

  .sm\:right-65\% {
    right: 65% !important;
  }

  .sm\:left-65\% {
    left: 65% !important;
  }

  .sm\:top-70\% {
    top: 70% !important;
  }

  .sm\:bottom-70\% {
    bottom: 70% !important;
  }

  .sm\:right-70\% {
    right: 70% !important;
  }

  .sm\:left-70\% {
    left: 70% !important;
  }

  .sm\:top-75\% {
    top: 75% !important;
  }

  .sm\:bottom-75\% {
    bottom: 75% !important;
  }

  .sm\:right-75\% {
    right: 75% !important;
  }

  .sm\:left-75\% {
    left: 75% !important;
  }

  .sm\:top-80\% {
    top: 80% !important;
  }

  .sm\:bottom-80\% {
    bottom: 80% !important;
  }

  .sm\:right-80\% {
    right: 80% !important;
  }

  .sm\:left-80\% {
    left: 80% !important;
  }

  .sm\:top-85\% {
    top: 85% !important;
  }

  .sm\:bottom-85\% {
    bottom: 85% !important;
  }

  .sm\:right-85\% {
    right: 85% !important;
  }

  .sm\:left-85\% {
    left: 85% !important;
  }

  .sm\:top-90\% {
    top: 90% !important;
  }

  .sm\:bottom-90\% {
    bottom: 90% !important;
  }

  .sm\:right-90\% {
    right: 90% !important;
  }

  .sm\:left-90\% {
    left: 90% !important;
  }

  .sm\:top-95\% {
    top: 95% !important;
  }

  .sm\:bottom-95\% {
    bottom: 95% !important;
  }

  .sm\:right-95\% {
    right: 95% !important;
  }

  .sm\:left-95\% {
    left: 95% !important;
  }

  .sm\:top-100\% {
    top: 100% !important;
  }

  .sm\:bottom-100\% {
    bottom: 100% !important;
  }

  .sm\:right-100\% {
    right: 100% !important;
  }

  .sm\:left-100\% {
    left: 100% !important;
  }
}

@media (min-width: 921px) {
  .md\:center-y {
    top: 50%;
    transform: translateY(-50%);
  }

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

  .md\:center-xy {
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
  }

  .md\:top-auto {
    top: auto !important;
  }

  .md\:bottom-auto {
    bottom: auto !important;
  }

  .md\:right-auto {
    right: auto !important;
  }

  .md\:left-auto {
    left: auto !important;
  }

  .md\:top-initial {
    top: initial !important;
  }

  .md\:bottom-initial {
    bottom: initial !important;
  }

  .md\:right-initial {
    right: initial !important;
  }

  .md\:left-initial {
    left: initial !important;
  }

  .md\:top-unset {
    top: unset !important;
  }

  .md\:bottom-unset {
    bottom: unset !important;
  }

  .md\:right-unset {
    right: unset !important;
  }

  .md\:left-unset {
    left: unset !important;
  }

  .md\:top-0 {
    top: 0 !important;
  }

  .md\:bottom-0 {
    bottom: 0 !important;
  }

  .md\:right-0 {
    right: 0 !important;
  }

  .md\:left-0 {
    left: 0 !important;
  }

  .md\:top-1 {
    top: 4px !important;
  }

  .md\:bottom-1 {
    bottom: 4px !important;
  }

  .md\:right-1 {
    right: 4px !important;
  }

  .md\:left-1 {
    left: 4px !important;
  }

  .md\:top-2 {
    top: 8px !important;
  }

  .md\:bottom-2 {
    bottom: 8px !important;
  }

  .md\:right-2 {
    right: 8px !important;
  }

  .md\:left-2 {
    left: 8px !important;
  }

  .md\:top-3 {
    top: 12px !important;
  }

  .md\:bottom-3 {
    bottom: 12px !important;
  }

  .md\:right-3 {
    right: 12px !important;
  }

  .md\:left-3 {
    left: 12px !important;
  }

  .md\:top-4 {
    top: 16px !important;
  }

  .md\:bottom-4 {
    bottom: 16px !important;
  }

  .md\:right-4 {
    right: 16px !important;
  }

  .md\:left-4 {
    left: 16px !important;
  }

  .md\:top-5 {
    top: 20px !important;
  }

  .md\:bottom-5 {
    bottom: 20px !important;
  }

  .md\:right-5 {
    right: 20px !important;
  }

  .md\:left-5 {
    left: 20px !important;
  }

  .md\:top-6 {
    top: 24px !important;
  }

  .md\:bottom-6 {
    bottom: 24px !important;
  }

  .md\:right-6 {
    right: 24px !important;
  }

  .md\:left-6 {
    left: 24px !important;
  }

  .md\:top-7 {
    top: 28px !important;
  }

  .md\:bottom-7 {
    bottom: 28px !important;
  }

  .md\:right-7 {
    right: 28px !important;
  }

  .md\:left-7 {
    left: 28px !important;
  }

  .md\:top-8 {
    top: 32px !important;
  }

  .md\:bottom-8 {
    bottom: 32px !important;
  }

  .md\:right-8 {
    right: 32px !important;
  }

  .md\:left-8 {
    left: 32px !important;
  }

  .md\:top-9 {
    top: 36px !important;
  }

  .md\:bottom-9 {
    bottom: 36px !important;
  }

  .md\:right-9 {
    right: 36px !important;
  }

  .md\:left-9 {
    left: 36px !important;
  }

  .md\:top-10 {
    top: 40px !important;
  }

  .md\:bottom-10 {
    bottom: 40px !important;
  }

  .md\:right-10 {
    right: 40px !important;
  }

  .md\:left-10 {
    left: 40px !important;
  }

  .md\:top-5\% {
    top: 5% !important;
  }

  .md\:bottom-5\% {
    bottom: 5% !important;
  }

  .md\:right-5\% {
    right: 5% !important;
  }

  .md\:left-5\% {
    left: 5% !important;
  }

  .md\:top-10\% {
    top: 10% !important;
  }

  .md\:bottom-10\% {
    bottom: 10% !important;
  }

  .md\:right-10\% {
    right: 10% !important;
  }

  .md\:left-10\% {
    left: 10% !important;
  }

  .md\:top-15\% {
    top: 15% !important;
  }

  .md\:bottom-15\% {
    bottom: 15% !important;
  }

  .md\:right-15\% {
    right: 15% !important;
  }

  .md\:left-15\% {
    left: 15% !important;
  }

  .md\:top-20\% {
    top: 20% !important;
  }

  .md\:bottom-20\% {
    bottom: 20% !important;
  }

  .md\:right-20\% {
    right: 20% !important;
  }

  .md\:left-20\% {
    left: 20% !important;
  }

  .md\:top-25\% {
    top: 25% !important;
  }

  .md\:bottom-25\% {
    bottom: 25% !important;
  }

  .md\:right-25\% {
    right: 25% !important;
  }

  .md\:left-25\% {
    left: 25% !important;
  }

  .md\:top-30\% {
    top: 30% !important;
  }

  .md\:bottom-30\% {
    bottom: 30% !important;
  }

  .md\:right-30\% {
    right: 30% !important;
  }

  .md\:left-30\% {
    left: 30% !important;
  }

  .md\:top-35\% {
    top: 35% !important;
  }

  .md\:bottom-35\% {
    bottom: 35% !important;
  }

  .md\:right-35\% {
    right: 35% !important;
  }

  .md\:left-35\% {
    left: 35% !important;
  }

  .md\:top-40\% {
    top: 40% !important;
  }

  .md\:bottom-40\% {
    bottom: 40% !important;
  }

  .md\:right-40\% {
    right: 40% !important;
  }

  .md\:left-40\% {
    left: 40% !important;
  }

  .md\:top-45\% {
    top: 45% !important;
  }

  .md\:bottom-45\% {
    bottom: 45% !important;
  }

  .md\:right-45\% {
    right: 45% !important;
  }

  .md\:left-45\% {
    left: 45% !important;
  }

  .md\:top-50\% {
    top: 50% !important;
  }

  .md\:bottom-50\% {
    bottom: 50% !important;
  }

  .md\:right-50\% {
    right: 50% !important;
  }

  .md\:left-50\% {
    left: 50% !important;
  }

  .md\:top-55\% {
    top: 55% !important;
  }

  .md\:bottom-55\% {
    bottom: 55% !important;
  }

  .md\:right-55\% {
    right: 55% !important;
  }

  .md\:left-55\% {
    left: 55% !important;
  }

  .md\:top-60\% {
    top: 60% !important;
  }

  .md\:bottom-60\% {
    bottom: 60% !important;
  }

  .md\:right-60\% {
    right: 60% !important;
  }

  .md\:left-60\% {
    left: 60% !important;
  }

  .md\:top-65\% {
    top: 65% !important;
  }

  .md\:bottom-65\% {
    bottom: 65% !important;
  }

  .md\:right-65\% {
    right: 65% !important;
  }

  .md\:left-65\% {
    left: 65% !important;
  }

  .md\:top-70\% {
    top: 70% !important;
  }

  .md\:bottom-70\% {
    bottom: 70% !important;
  }

  .md\:right-70\% {
    right: 70% !important;
  }

  .md\:left-70\% {
    left: 70% !important;
  }

  .md\:top-75\% {
    top: 75% !important;
  }

  .md\:bottom-75\% {
    bottom: 75% !important;
  }

  .md\:right-75\% {
    right: 75% !important;
  }

  .md\:left-75\% {
    left: 75% !important;
  }

  .md\:top-80\% {
    top: 80% !important;
  }

  .md\:bottom-80\% {
    bottom: 80% !important;
  }

  .md\:right-80\% {
    right: 80% !important;
  }

  .md\:left-80\% {
    left: 80% !important;
  }

  .md\:top-85\% {
    top: 85% !important;
  }

  .md\:bottom-85\% {
    bottom: 85% !important;
  }

  .md\:right-85\% {
    right: 85% !important;
  }

  .md\:left-85\% {
    left: 85% !important;
  }

  .md\:top-90\% {
    top: 90% !important;
  }

  .md\:bottom-90\% {
    bottom: 90% !important;
  }

  .md\:right-90\% {
    right: 90% !important;
  }

  .md\:left-90\% {
    left: 90% !important;
  }

  .md\:top-95\% {
    top: 95% !important;
  }

  .md\:bottom-95\% {
    bottom: 95% !important;
  }

  .md\:right-95\% {
    right: 95% !important;
  }

  .md\:left-95\% {
    left: 95% !important;
  }

  .md\:top-100\% {
    top: 100% !important;
  }

  .md\:bottom-100\% {
    bottom: 100% !important;
  }

  .md\:right-100\% {
    right: 100% !important;
  }

  .md\:left-100\% {
    left: 100% !important;
  }
}

@media (min-width: 1201px) {
  .lg\:center-y {
    top: 50%;
    transform: translateY(-50%);
  }

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

  .lg\:center-xy {
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    transform: translateX(-50%);
  }

  .lg\:top-auto {
    top: auto !important;
  }

  .lg\:bottom-auto {
    bottom: auto !important;
  }

  .lg\:right-auto {
    right: auto !important;
  }

  .lg\:left-auto {
    left: auto !important;
  }

  .lg\:top-initial {
    top: initial !important;
  }

  .lg\:bottom-initial {
    bottom: initial !important;
  }

  .lg\:right-initial {
    right: initial !important;
  }

  .lg\:left-initial {
    left: initial !important;
  }

  .lg\:top-unset {
    top: unset !important;
  }

  .lg\:bottom-unset {
    bottom: unset !important;
  }

  .lg\:right-unset {
    right: unset !important;
  }

  .lg\:left-unset {
    left: unset !important;
  }

  .lg\:top-0 {
    top: 0 !important;
  }

  .lg\:bottom-0 {
    bottom: 0 !important;
  }

  .lg\:right-0 {
    right: 0 !important;
  }

  .lg\:left-0 {
    left: 0 !important;
  }

  .lg\:top-1 {
    top: 4px !important;
  }

  .lg\:bottom-1 {
    bottom: 4px !important;
  }

  .lg\:right-1 {
    right: 4px !important;
  }

  .lg\:left-1 {
    left: 4px !important;
  }

  .lg\:top-2 {
    top: 8px !important;
  }

  .lg\:bottom-2 {
    bottom: 8px !important;
  }

  .lg\:right-2 {
    right: 8px !important;
  }

  .lg\:left-2 {
    left: 8px !important;
  }

  .lg\:top-3 {
    top: 12px !important;
  }

  .lg\:bottom-3 {
    bottom: 12px !important;
  }

  .lg\:right-3 {
    right: 12px !important;
  }

  .lg\:left-3 {
    left: 12px !important;
  }

  .lg\:top-4 {
    top: 16px !important;
  }

  .lg\:bottom-4 {
    bottom: 16px !important;
  }

  .lg\:right-4 {
    right: 16px !important;
  }

  .lg\:left-4 {
    left: 16px !important;
  }

  .lg\:top-5 {
    top: 20px !important;
  }

  .lg\:bottom-5 {
    bottom: 20px !important;
  }

  .lg\:right-5 {
    right: 20px !important;
  }

  .lg\:left-5 {
    left: 20px !important;
  }

  .lg\:top-6 {
    top: 24px !important;
  }

  .lg\:bottom-6 {
    bottom: 24px !important;
  }

  .lg\:right-6 {
    right: 24px !important;
  }

  .lg\:left-6 {
    left: 24px !important;
  }

  .lg\:top-7 {
    top: 28px !important;
  }

  .lg\:bottom-7 {
    bottom: 28px !important;
  }

  .lg\:right-7 {
    right: 28px !important;
  }

  .lg\:left-7 {
    left: 28px !important;
  }

  .lg\:top-8 {
    top: 32px !important;
  }

  .lg\:bottom-8 {
    bottom: 32px !important;
  }

  .lg\:right-8 {
    right: 32px !important;
  }

  .lg\:left-8 {
    left: 32px !important;
  }

  .lg\:top-9 {
    top: 36px !important;
  }

  .lg\:bottom-9 {
    bottom: 36px !important;
  }

  .lg\:right-9 {
    right: 36px !important;
  }

  .lg\:left-9 {
    left: 36px !important;
  }

  .lg\:top-10 {
    top: 40px !important;
  }

  .lg\:bottom-10 {
    bottom: 40px !important;
  }

  .lg\:right-10 {
    right: 40px !important;
  }

  .lg\:left-10 {
    left: 40px !important;
  }

  .lg\:top-5\% {
    top: 5% !important;
  }

  .lg\:bottom-5\% {
    bottom: 5% !important;
  }

  .lg\:right-5\% {
    right: 5% !important;
  }

  .lg\:left-5\% {
    left: 5% !important;
  }

  .lg\:top-10\% {
    top: 10% !important;
  }

  .lg\:bottom-10\% {
    bottom: 10% !important;
  }

  .lg\:right-10\% {
    right: 10% !important;
  }

  .lg\:left-10\% {
    left: 10% !important;
  }

  .lg\:top-15\% {
    top: 15% !important;
  }

  .lg\:bottom-15\% {
    bottom: 15% !important;
  }

  .lg\:right-15\% {
    right: 15% !important;
  }

  .lg\:left-15\% {
    left: 15% !important;
  }

  .lg\:top-20\% {
    top: 20% !important;
  }

  .lg\:bottom-20\% {
    bottom: 20% !important;
  }

  .lg\:right-20\% {
    right: 20% !important;
  }

  .lg\:left-20\% {
    left: 20% !important;
  }

  .lg\:top-25\% {
    top: 25% !important;
  }

  .lg\:bottom-25\% {
    bottom: 25% !important;
  }

  .lg\:right-25\% {
    right: 25% !important;
  }

  .lg\:left-25\% {
    left: 25% !important;
  }

  .lg\:top-30\% {
    top: 30% !important;
  }

  .lg\:bottom-30\% {
    bottom: 30% !important;
  }

  .lg\:right-30\% {
    right: 30% !important;
  }

  .lg\:left-30\% {
    left: 30% !important;
  }

  .lg\:top-35\% {
    top: 35% !important;
  }

  .lg\:bottom-35\% {
    bottom: 35% !important;
  }

  .lg\:right-35\% {
    right: 35% !important;
  }

  .lg\:left-35\% {
    left: 35% !important;
  }

  .lg\:top-40\% {
    top: 40% !important;
  }

  .lg\:bottom-40\% {
    bottom: 40% !important;
  }

  .lg\:right-40\% {
    right: 40% !important;
  }

  .lg\:left-40\% {
    left: 40% !important;
  }

  .lg\:top-45\% {
    top: 45% !important;
  }

  .lg\:bottom-45\% {
    bottom: 45% !important;
  }

  .lg\:right-45\% {
    right: 45% !important;
  }

  .lg\:left-45\% {
    left: 45% !important;
  }

  .lg\:top-50\% {
    top: 50% !important;
  }

  .lg\:bottom-50\% {
    bottom: 50% !important;
  }

  .lg\:right-50\% {
    right: 50% !important;
  }

  .lg\:left-50\% {
    left: 50% !important;
  }

  .lg\:top-55\% {
    top: 55% !important;
  }

  .lg\:bottom-55\% {
    bottom: 55% !important;
  }

  .lg\:right-55\% {
    right: 55% !important;
  }

  .lg\:left-55\% {
    left: 55% !important;
  }

  .lg\:top-60\% {
    top: 60% !important;
  }

  .lg\:bottom-60\% {
    bottom: 60% !important;
  }

  .lg\:right-60\% {
    right: 60% !important;
  }

  .lg\:left-60\% {
    left: 60% !important;
  }

  .lg\:top-65\% {
    top: 65% !important;
  }

  .lg\:bottom-65\% {
    bottom: 65% !important;
  }

  .lg\:right-65\% {
    right: 65% !important;
  }

  .lg\:left-65\% {
    left: 65% !important;
  }

  .lg\:top-70\% {
    top: 70% !important;
  }

  .lg\:bottom-70\% {
    bottom: 70% !important;
  }

  .lg\:right-70\% {
    right: 70% !important;
  }

  .lg\:left-70\% {
    left: 70% !important;
  }

  .lg\:top-75\% {
    top: 75% !important;
  }

  .lg\:bottom-75\% {
    bottom: 75% !important;
  }

  .lg\:right-75\% {
    right: 75% !important;
  }

  .lg\:left-75\% {
    left: 75% !important;
  }

  .lg\:top-80\% {
    top: 80% !important;
  }

  .lg\:bottom-80\% {
    bottom: 80% !important;
  }

  .lg\:right-80\% {
    right: 80% !important;
  }

  .lg\:left-80\% {
    left: 80% !important;
  }

  .lg\:top-85\% {
    top: 85% !important;
  }

  .lg\:bottom-85\% {
    bottom: 85% !important;
  }

  .lg\:right-85\% {
    right: 85% !important;
  }

  .lg\:left-85\% {
    left: 85% !important;
  }

  .lg\:top-90\% {
    top: 90% !important;
  }

  .lg\:bottom-90\% {
    bottom: 90% !important;
  }

  .lg\:right-90\% {
    right: 90% !important;
  }

  .lg\:left-90\% {
    left: 90% !important;
  }

  .lg\:top-95\% {
    top: 95% !important;
  }

  .lg\:bottom-95\% {
    bottom: 95% !important;
  }

  .lg\:right-95\% {
    right: 95% !important;
  }

  .lg\:left-95\% {
    left: 95% !important;
  }

  .lg\:top-100\% {
    top: 100% !important;
  }

  .lg\:bottom-100\% {
    bottom: 100% !important;
  }

  .lg\:right-100\% {
    right: 100% !important;
  }

  .lg\:left-100\% {
    left: 100% !important;
  }
}

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

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

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

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

.vertical-align-text-bottom {
  vertical-align: text-bottom;
}

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

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

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

.object-fit-contain {
  object-fit: contain;
}

.object-fit-cover {
  object-fit: cover;
}

.object-fit-fill {
  object-fit: fill;
}

.object-fit-scale {
  object-fit: scale-down;
}

.object-fit-none {
  object-fit: none;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.opacity-0 {
  opacity: 0;
}

.hover\:opacity-0:hover {
  opacity: 0 !important;
}

.group:hover .group-hover\:opacity-0 {
  opacity: 0 !important;
}

.opacity-10 {
  opacity: 0.1;
}

.hover\:opacity-10:hover {
  opacity: 0.1 !important;
}

.group:hover .group-hover\:opacity-10 {
  opacity: 0.1 !important;
}

.opacity-20 {
  opacity: 0.2;
}

.hover\:opacity-20:hover {
  opacity: 0.2 !important;
}

.group:hover .group-hover\:opacity-20 {
  opacity: 0.2 !important;
}

.opacity-30 {
  opacity: 0.3;
}

.hover\:opacity-30:hover {
  opacity: 0.3 !important;
}

.group:hover .group-hover\:opacity-30 {
  opacity: 0.3 !important;
}

.opacity-40 {
  opacity: 0.4;
}

.hover\:opacity-40:hover {
  opacity: 0.4 !important;
}

.group:hover .group-hover\:opacity-40 {
  opacity: 0.4 !important;
}

.opacity-50 {
  opacity: 0.5;
}

.hover\:opacity-50:hover {
  opacity: 0.5 !important;
}

.group:hover .group-hover\:opacity-50 {
  opacity: 0.5 !important;
}

.opacity-60 {
  opacity: 0.6;
}

.hover\:opacity-60:hover {
  opacity: 0.6 !important;
}

.group:hover .group-hover\:opacity-60 {
  opacity: 0.6 !important;
}

.opacity-70 {
  opacity: 0.7;
}

.hover\:opacity-70:hover {
  opacity: 0.7 !important;
}

.group:hover .group-hover\:opacity-70 {
  opacity: 0.7 !important;
}

.opacity-80 {
  opacity: 0.8;
}

.hover\:opacity-80:hover {
  opacity: 0.8 !important;
}

.group:hover .group-hover\:opacity-80 {
  opacity: 0.8 !important;
}

.opacity-90 {
  opacity: 0.9;
}

.hover\:opacity-90:hover {
  opacity: 0.9 !important;
}

.group:hover .group-hover\:opacity-90 {
  opacity: 0.9 !important;
}

.opacity-100 {
  opacity: 1;
}

.hover\:opacity-100:hover {
  opacity: 1 !important;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1 !important;
}

.shadow {
  box-shadow: 0 4px 8px rgba(64, 64, 64, 0.1);
}

.shadow-top {
  box-shadow: 0 -4px 8px rgba(64, 64, 64, 0.1);
}

.shadow-sm {
  box-shadow: 0 1px 3px rgba(64, 64, 64, 0.08);
}

.shadow-lg {
  box-shadow: 0 6px 12px rgba(64, 64, 64, 0.1);
}

.shadow-inner,
.shadow-inset {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.shadow-none,
.shadow-0 {
  box-shadow: none !important;
}

.-z-1 {
  z-index: -10;
}

.-z-1 {
  z-index: -1;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-100 {
  z-index: 100;
}

.z-1000 {
  z-index: 1000;
}

.z-max {
  z-index: 9999;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-default {
  cursor: default;
}

.cursor-help {
  cursor: help;
}

.cursor-move {
  cursor: move;
}

.cursor-col-resize {
  cursor: col-resize;
}

.cursor-row-resize {
  cursor: row-resize;
}

.cursor-no-drop {
  cursor: no-drop;
}

.cursor-wait {
  cursor: wait;
}

.cursor-zoom-in {
  cursor: zoom-in;
}

.cursor-zoom-out {
  cursor: zoom-out;
}

.cursor-text {
  cursor: text;
}

.transition {
  transition-property: all;
  transition-duration: 0.2s;
}

[class*=scale] {
  transition: transform 0.2s;
}

.scale-50 {
  transform: scale(0.5);
}

.scale-60 {
  transform: scale(0.6);
}

.scale-70 {
  transform: scale(0.7);
}

.scale-80 {
  transform: scale(0.8);
}

.scale-90 {
  transform: scale(0.9);
}

.scale-100 {
  transform: scale(1);
}

.scale-110 {
  transform: scale(1.1);
}

.scale-120 {
  transform: scale(1.2);
}

.scale-130 {
  transform: scale(1.3);
}

.scale-140 {
  transform: scale(1.4);
}

.scale-150 {
  transform: scale(1.5);
}

.hover\:scale-50:hover {
  transform: scale(0.5);
}

.hover\:scale-60:hover {
  transform: scale(0.6);
}

.hover\:scale-70:hover {
  transform: scale(0.7);
}

.hover\:scale-80:hover {
  transform: scale(0.8);
}

.hover\:scale-90:hover {
  transform: scale(0.9);
}

.hover\:scale-100:hover {
  transform: scale(1);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.hover\:scale-120:hover {
  transform: scale(1.2);
}

.hover\:scale-130:hover {
  transform: scale(1.3);
}

.hover\:scale-140:hover {
  transform: scale(1.4);
}

.hover\:scale-150:hover {
  transform: scale(1.5);
}

.group:hover .group-hover\:scale-50 {
  transform: scale(0.5);
}

.group:hover .group-hover\:scale-60 {
  transform: scale(0.6);
}

.group:hover .group-hover\:scale-70 {
  transform: scale(0.7);
}

.group:hover .group-hover\:scale-80 {
  transform: scale(0.8);
}

.group:hover .group-hover\:scale-90 {
  transform: scale(0.9);
}

.group:hover .group-hover\:scale-100 {
  transform: scale(1);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover\:scale-120 {
  transform: scale(1.2);
}

.group:hover .group-hover\:scale-130 {
  transform: scale(1.3);
}

.group:hover .group-hover\:scale-140 {
  transform: scale(1.4);
}

.group:hover .group-hover\:scale-150 {
  transform: scale(1.5);
}

.list-style-initial {
  list-style-type: initial;
}

.list-style-disc {
  list-style-type: disc;
}

.list-style-like {
  list-style-type: "👍";
}

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

.list-postion-inside {
  list-style-position: inside;
}

.list-postion-outside {
  list-style-position: outside;
}

.list-number,
ol {
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: 20px;
}

.list-number>li,
ol>li {
  position: relative;
  margin-bottom: 0.5rem;
}

.list-number li::marker,
ol li::marker {
  color: var(--text-color-primary, #04b4a0);
  font-weight: 600;
}

.list-bullet {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-top: 0.6rem;
}

.list-bullet>li {
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.6rem;
}

.list-bullet>li::before {
  content: "●";
  color: var(--primary-500, #04b4a0);
  font-size: 0.8em;
  position: absolute;
  margin-top: 0.25em;
  left: 0;
  top: 0;
}

.list-check {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-top: 0.6rem;
}

.list-check>li {
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.6rem;
}

.list-check>li::before {
  content: "✓";
  color: var(--primary-500, #04b4a0);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.ratio-1x1,
.square {
  aspect-ratio: 1/1;
}

.ratio-2x1 {
  aspect-ratio: 2/1;
}

.ratio-1x2 {
  aspect-ratio: 1/2;
}

.ratio-3x1 {
  aspect-ratio: 3/1;
}

.ratio-1x3 {
  aspect-ratio: 1/3;
}

.ratio-3x2 {
  aspect-ratio: 3/2;
}

.ratio-2x3 {
  aspect-ratio: 2/3;
}

.ratio-4x3 {
  aspect-ratio: 4/3;
}

.ratio-3x4 {
  aspect-ratio: 3/4;
}

.ratio-16x9 {
  aspect-ratio: 16/9;
}

.ratio-9x16 {
  aspect-ratio: 9/16;
}

.whitespace-normal {
  white-space: normal;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.whitespace-pre {
  white-space: pre;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

.whitespace-break-spaces {
  white-space: break-spaces;
}

.columns-1 {
  columns: 1;
}

.columns-2 {
  columns: 2;
}

.columns-3 {
  columns: 3;
}

.columns-4 {
  columns: 4;
}

.columns-5 {
  columns: 5;
}

.columns-6 {
  columns: 6;
}

.columns-7 {
  columns: 7;
}

.columns-8 {
  columns: 8;
}

.columns-9 {
  columns: 9;
}

.columns-10 {
  columns: 10;
}

.break-inside-avoid {
  break-inside: avoid;
}

.break-inside-auto {
  break-inside: auto;
}

@media (max-width: 1199px) {
  .max-lg\:columns-1 {
    columns: 1;
  }

  .max-lg\:columns-2 {
    columns: 2;
  }

  .max-lg\:columns-3 {
    columns: 3;
  }

  .max-lg\:columns-4 {
    columns: 4;
  }

  .max-lg\:columns-5 {
    columns: 5;
  }

  .max-lg\:columns-6 {
    columns: 6;
  }

  .max-lg\:columns-7 {
    columns: 7;
  }

  .max-lg\:columns-8 {
    columns: 8;
  }

  .max-lg\:columns-9 {
    columns: 9;
  }

  .max-lg\:columns-10 {
    columns: 10;
  }

  .max-lg\:break-inside-avoid {
    break-inside: avoid;
  }

  .max-lg\:break-inside-auto {
    break-inside: auto;
  }
}

@media (max-width: 920px) {
  .max-md\:columns-1 {
    columns: 1;
  }

  .max-md\:columns-2 {
    columns: 2;
  }

  .max-md\:columns-3 {
    columns: 3;
  }

  .max-md\:columns-4 {
    columns: 4;
  }

  .max-md\:columns-5 {
    columns: 5;
  }

  .max-md\:columns-6 {
    columns: 6;
  }

  .max-md\:columns-7 {
    columns: 7;
  }

  .max-md\:columns-8 {
    columns: 8;
  }

  .max-md\:columns-9 {
    columns: 9;
  }

  .max-md\:columns-10 {
    columns: 10;
  }

  .max-md\:break-inside-avoid {
    break-inside: avoid;
  }

  .max-md\:break-inside-auto {
    break-inside: auto;
  }
}

@media (max-width: 640px) {
  .max-sm\:columns-1 {
    columns: 1;
  }

  .max-sm\:columns-2 {
    columns: 2;
  }

  .max-sm\:columns-3 {
    columns: 3;
  }

  .max-sm\:columns-4 {
    columns: 4;
  }

  .max-sm\:columns-5 {
    columns: 5;
  }

  .max-sm\:columns-6 {
    columns: 6;
  }

  .max-sm\:columns-7 {
    columns: 7;
  }

  .max-sm\:columns-8 {
    columns: 8;
  }

  .max-sm\:columns-9 {
    columns: 9;
  }

  .max-sm\:columns-10 {
    columns: 10;
  }

  .max-sm\:break-inside-avoid {
    break-inside: avoid;
  }

  .max-sm\:break-inside-auto {
    break-inside: auto;
  }
}

@media (min-width: 641px) {
  .sm\:columns-1 {
    columns: 1;
  }

  .sm\:columns-2 {
    columns: 2;
  }

  .sm\:columns-3 {
    columns: 3;
  }

  .sm\:columns-4 {
    columns: 4;
  }

  .sm\:columns-5 {
    columns: 5;
  }

  .sm\:columns-6 {
    columns: 6;
  }

  .sm\:columns-7 {
    columns: 7;
  }

  .sm\:columns-8 {
    columns: 8;
  }

  .sm\:columns-9 {
    columns: 9;
  }

  .sm\:columns-10 {
    columns: 10;
  }

  .sm\:break-inside-avoid {
    break-inside: avoid;
  }

  .sm\:break-inside-auto {
    break-inside: auto;
  }
}

@media (min-width: 921px) {
  .md\:columns-1 {
    columns: 1;
  }

  .md\:columns-2 {
    columns: 2;
  }

  .md\:columns-3 {
    columns: 3;
  }

  .md\:columns-4 {
    columns: 4;
  }

  .md\:columns-5 {
    columns: 5;
  }

  .md\:columns-6 {
    columns: 6;
  }

  .md\:columns-7 {
    columns: 7;
  }

  .md\:columns-8 {
    columns: 8;
  }

  .md\:columns-9 {
    columns: 9;
  }

  .md\:columns-10 {
    columns: 10;
  }

  .md\:break-inside-avoid {
    break-inside: avoid;
  }

  .md\:break-inside-auto {
    break-inside: auto;
  }
}

@media (min-width: 1201px) {
  .lg\:columns-1 {
    columns: 1;
  }

  .lg\:columns-2 {
    columns: 2;
  }

  .lg\:columns-3 {
    columns: 3;
  }

  .lg\:columns-4 {
    columns: 4;
  }

  .lg\:columns-5 {
    columns: 5;
  }

  .lg\:columns-6 {
    columns: 6;
  }

  .lg\:columns-7 {
    columns: 7;
  }

  .lg\:columns-8 {
    columns: 8;
  }

  .lg\:columns-9 {
    columns: 9;
  }

  .lg\:columns-10 {
    columns: 10;
  }

  .lg\:break-inside-avoid {
    break-inside: avoid;
  }

  .lg\:break-inside-auto {
    break-inside: auto;
  }
}

.w-custom {
  width: var(--w, initial);
}

.h-custom {
  height: var(--h, initial);
}

.min-w-custom {
  min-width: var(--min-w, initial);
}

.max-w-custom {
  max-width: var(--max-w, initial);
}

.w-unset {
  width: unset !important;
}

.h-unset {
  height: unset !important;
}

.min-w-unset {
  min-width: unset !important;
}

.max-w-unset {
  max-width: unset !important;
}

.min-h-unset {
  min-height: unset !important;
}

.max-h-unset {
  max-height: unset !important;
}

.w-initial {
  width: initial !important;
}

.h-initial {
  height: initial !important;
}

.min-w-initial {
  min-width: initial !important;
}

.max-w-initial {
  max-width: initial !important;
}

.min-h-initial {
  min-height: initial !important;
}

.max-h-initial {
  max-height: initial !important;
}

.w-auto {
  width: auto !important;
}

.h-auto {
  height: auto !important;
}

.min-w-auto {
  min-width: auto !important;
}

.max-w-auto {
  max-width: auto !important;
}

.min-h-auto {
  min-height: auto !important;
}

.max-h-auto {
  max-height: auto !important;
}

.w-0 {
  width: 0 !important;
}

.h-0 {
  height: 0 !important;
}

.min-w-0 {
  min-width: 0 !important;
}

.max-w-0 {
  max-width: 0 !important;
}

.min-h-0 {
  min-height: 0 !important;
}

.max-h-0 {
  max-height: 0 !important;
}

.w-1 {
  width: 4px !important;
}

.h-1 {
  height: 4px !important;
}

.min-w-1 {
  min-width: 4px !important;
}

.max-w-1 {
  max-width: 4px !important;
}

.min-h-1 {
  min-height: 4px !important;
}

.max-h-1 {
  max-height: 4px !important;
}

.w-2 {
  width: 8px !important;
}

.h-2 {
  height: 8px !important;
}

.min-w-2 {
  min-width: 8px !important;
}

.max-w-2 {
  max-width: 8px !important;
}

.min-h-2 {
  min-height: 8px !important;
}

.max-h-2 {
  max-height: 8px !important;
}

.w-3 {
  width: 12px !important;
}

.h-3 {
  height: 12px !important;
}

.min-w-3 {
  min-width: 12px !important;
}

.max-w-3 {
  max-width: 12px !important;
}

.min-h-3 {
  min-height: 12px !important;
}

.max-h-3 {
  max-height: 12px !important;
}

.w-4 {
  width: 16px !important;
}

.h-4 {
  height: 16px !important;
}

.min-w-4 {
  min-width: 16px !important;
}

.max-w-4 {
  max-width: 16px !important;
}

.min-h-4 {
  min-height: 16px !important;
}

.max-h-4 {
  max-height: 16px !important;
}

.w-5 {
  width: 20px !important;
}

.h-5 {
  height: 20px !important;
}

.min-w-5 {
  min-width: 20px !important;
}

.max-w-5 {
  max-width: 20px !important;
}

.min-h-5 {
  min-height: 20px !important;
}

.max-h-5 {
  max-height: 20px !important;
}

.w-6 {
  width: 24px !important;
}

.h-6 {
  height: 24px !important;
}

.min-w-6 {
  min-width: 24px !important;
}

.max-w-6 {
  max-width: 24px !important;
}

.min-h-6 {
  min-height: 24px !important;
}

.max-h-6 {
  max-height: 24px !important;
}

.w-7 {
  width: 28px !important;
}

.h-7 {
  height: 28px !important;
}

.min-w-7 {
  min-width: 28px !important;
}

.max-w-7 {
  max-width: 28px !important;
}

.min-h-7 {
  min-height: 28px !important;
}

.max-h-7 {
  max-height: 28px !important;
}

.w-8 {
  width: 32px !important;
}

.h-8 {
  height: 32px !important;
}

.min-w-8 {
  min-width: 32px !important;
}

.max-w-8 {
  max-width: 32px !important;
}

.min-h-8 {
  min-height: 32px !important;
}

.max-h-8 {
  max-height: 32px !important;
}

.w-9 {
  width: 36px !important;
}

.h-9 {
  height: 36px !important;
}

.min-w-9 {
  min-width: 36px !important;
}

.max-w-9 {
  max-width: 36px !important;
}

.min-h-9 {
  min-height: 36px !important;
}

.max-h-9 {
  max-height: 36px !important;
}

.w-10 {
  width: 40px !important;
}

.h-10 {
  height: 40px !important;
}

.min-w-10 {
  min-width: 40px !important;
}

.max-w-10 {
  max-width: 40px !important;
}

.min-h-10 {
  min-height: 40px !important;
}

.max-h-10 {
  max-height: 40px !important;
}

.w-11 {
  width: 44px !important;
}

.h-11 {
  height: 44px !important;
}

.min-w-11 {
  min-width: 44px !important;
}

.max-w-11 {
  max-width: 44px !important;
}

.min-h-11 {
  min-height: 44px !important;
}

.max-h-11 {
  max-height: 44px !important;
}

.w-12 {
  width: 48px !important;
}

.h-12 {
  height: 48px !important;
}

.min-w-12 {
  min-width: 48px !important;
}

.max-w-12 {
  max-width: 48px !important;
}

.min-h-12 {
  min-height: 48px !important;
}

.max-h-12 {
  max-height: 48px !important;
}

.w-14 {
  width: 56px !important;
}

.h-14 {
  height: 56px !important;
}

.min-w-14 {
  min-width: 56px !important;
}

.max-w-14 {
  max-width: 56px !important;
}

.min-h-14 {
  min-height: 56px !important;
}

.max-h-14 {
  max-height: 56px !important;
}

.w-15 {
  width: 60px !important;
}

.h-15 {
  height: 60px !important;
}

.min-w-15 {
  min-width: 60px !important;
}

.max-w-15 {
  max-width: 60px !important;
}

.min-h-15 {
  min-height: 60px !important;
}

.max-h-15 {
  max-height: 60px !important;
}

.w-16 {
  width: 64px !important;
}

.h-16 {
  height: 64px !important;
}

.min-w-16 {
  min-width: 64px !important;
}

.max-w-16 {
  max-width: 64px !important;
}

.min-h-16 {
  min-height: 64px !important;
}

.max-h-16 {
  max-height: 64px !important;
}

.w-18 {
  width: 72px !important;
}

.h-18 {
  height: 72px !important;
}

.min-w-18 {
  min-width: 72px !important;
}

.max-w-18 {
  max-width: 72px !important;
}

.min-h-18 {
  min-height: 72px !important;
}

.max-h-18 {
  max-height: 72px !important;
}

.w-20 {
  width: 80px !important;
}

.h-20 {
  height: 80px !important;
}

.min-w-20 {
  min-width: 80px !important;
}

.max-w-20 {
  max-width: 80px !important;
}

.min-h-20 {
  min-height: 80px !important;
}

.max-h-20 {
  max-height: 80px !important;
}

.w-25 {
  width: 100px !important;
}

.h-25 {
  height: 100px !important;
}

.min-w-25 {
  min-width: 100px !important;
}

.max-w-25 {
  max-width: 100px !important;
}

.min-h-25 {
  min-height: 100px !important;
}

.max-h-25 {
  max-height: 100px !important;
}

.w-30 {
  width: 120px !important;
}

.h-30 {
  height: 120px !important;
}

.min-w-30 {
  min-width: 120px !important;
}

.max-w-30 {
  max-width: 120px !important;
}

.min-h-30 {
  min-height: 120px !important;
}

.max-h-30 {
  max-height: 120px !important;
}

.w-35 {
  width: 140px !important;
}

.h-35 {
  height: 140px !important;
}

.min-w-35 {
  min-width: 140px !important;
}

.max-w-35 {
  max-width: 140px !important;
}

.min-h-35 {
  min-height: 140px !important;
}

.max-h-35 {
  max-height: 140px !important;
}

.w-40 {
  width: 160px !important;
}

.h-40 {
  height: 160px !important;
}

.min-w-40 {
  min-width: 160px !important;
}

.max-w-40 {
  max-width: 160px !important;
}

.min-h-40 {
  min-height: 160px !important;
}

.max-h-40 {
  max-height: 160px !important;
}

.w-45 {
  width: 180px !important;
}

.h-45 {
  height: 180px !important;
}

.min-w-45 {
  min-width: 180px !important;
}

.max-w-45 {
  max-width: 180px !important;
}

.min-h-45 {
  min-height: 180px !important;
}

.max-h-45 {
  max-height: 180px !important;
}

.w-50 {
  width: 200px !important;
}

.h-50 {
  height: 200px !important;
}

.min-w-50 {
  min-width: 200px !important;
}

.max-w-50 {
  max-width: 200px !important;
}

.min-h-50 {
  min-height: 200px !important;
}

.max-h-50 {
  max-height: 200px !important;
}

.w-55 {
  width: 220px !important;
}

.h-55 {
  height: 220px !important;
}

.min-w-55 {
  min-width: 220px !important;
}

.max-w-55 {
  max-width: 220px !important;
}

.min-h-55 {
  min-height: 220px !important;
}

.max-h-55 {
  max-height: 220px !important;
}

.w-60 {
  width: 240px !important;
}

.h-60 {
  height: 240px !important;
}

.min-w-60 {
  min-width: 240px !important;
}

.max-w-60 {
  max-width: 240px !important;
}

.min-h-60 {
  min-height: 240px !important;
}

.max-h-60 {
  max-height: 240px !important;
}

.w-65 {
  width: 260px !important;
}

.h-65 {
  height: 260px !important;
}

.min-w-65 {
  min-width: 260px !important;
}

.max-w-65 {
  max-width: 260px !important;
}

.min-h-65 {
  min-height: 260px !important;
}

.max-h-65 {
  max-height: 260px !important;
}

.w-70 {
  width: 280px !important;
}

.h-70 {
  height: 280px !important;
}

.min-w-70 {
  min-width: 280px !important;
}

.max-w-70 {
  max-width: 280px !important;
}

.min-h-70 {
  min-height: 280px !important;
}

.max-h-70 {
  max-height: 280px !important;
}

.w-75 {
  width: 300px !important;
}

.h-75 {
  height: 300px !important;
}

.min-w-75 {
  min-width: 300px !important;
}

.max-w-75 {
  max-width: 300px !important;
}

.min-h-75 {
  min-height: 300px !important;
}

.max-h-75 {
  max-height: 300px !important;
}

.w-80 {
  width: 320px !important;
}

.h-80 {
  height: 320px !important;
}

.min-w-80 {
  min-width: 320px !important;
}

.max-w-80 {
  max-width: 320px !important;
}

.min-h-80 {
  min-height: 320px !important;
}

.max-h-80 {
  max-height: 320px !important;
}

.w-85 {
  width: 340px !important;
}

.h-85 {
  height: 340px !important;
}

.min-w-85 {
  min-width: 340px !important;
}

.max-w-85 {
  max-width: 340px !important;
}

.min-h-85 {
  min-height: 340px !important;
}

.max-h-85 {
  max-height: 340px !important;
}

.w-90 {
  width: 360px !important;
}

.h-90 {
  height: 360px !important;
}

.min-w-90 {
  min-width: 360px !important;
}

.max-w-90 {
  max-width: 360px !important;
}

.min-h-90 {
  min-height: 360px !important;
}

.max-h-90 {
  max-height: 360px !important;
}

.w-95 {
  width: 380px !important;
}

.h-95 {
  height: 380px !important;
}

.min-w-95 {
  min-width: 380px !important;
}

.max-w-95 {
  max-width: 380px !important;
}

.min-h-95 {
  min-height: 380px !important;
}

.max-h-95 {
  max-height: 380px !important;
}

.w-100 {
  width: 400px !important;
}

.h-100 {
  height: 100% !important;
}

.min-w-100 {
  min-width: 400px !important;
}

.max-w-100 {
  max-width: 400px !important;
}

.min-h-100 {
  min-height: 400px !important;
}

.max-h-100 {
  max-height: 400px !important;
}

.w-110 {
  width: 440px !important;
}

.h-110 {
  height: 440px !important;
}

.min-w-110 {
  min-width: 440px !important;
}

.max-w-110 {
  max-width: 440px !important;
}

.min-h-110 {
  min-height: 440px !important;
}

.max-h-110 {
  max-height: 440px !important;
}

.w-120 {
  width: 480px !important;
}

.h-120 {
  height: 480px !important;
}

.min-w-120 {
  min-width: 480px !important;
}

.max-w-120 {
  max-width: 480px !important;
}

.min-h-120 {
  min-height: 480px !important;
}

.max-h-120 {
  max-height: 480px !important;
}

.w-130 {
  width: 520px !important;
}

.h-130 {
  height: 520px !important;
}

.min-w-130 {
  min-width: 520px !important;
}

.max-w-130 {
  max-width: 520px !important;
}

.min-h-130 {
  min-height: 520px !important;
}

.max-h-130 {
  max-height: 520px !important;
}

.w-140 {
  width: 560px !important;
}

.h-140 {
  height: 560px !important;
}

.min-w-140 {
  min-width: 560px !important;
}

.max-w-140 {
  max-width: 560px !important;
}

.min-h-140 {
  min-height: 560px !important;
}

.max-h-140 {
  max-height: 560px !important;
}

.w-150 {
  width: 600px !important;
}

.h-150 {
  height: 600px !important;
}

.min-w-150 {
  min-width: 600px !important;
}

.max-w-150 {
  max-width: 600px !important;
}

.min-h-150 {
  min-height: 600px !important;
}

.max-h-150 {
  max-height: 600px !important;
}

.w-full {
  width: 100% !important;
}

.h-full {
  height: 100% !important;
}

.min-w-full {
  min-width: 100% !important;
}

.max-w-full {
  max-width: 100% !important;
}

.min-h-full {
  min-height: 100% !important;
}

.max-h-full {
  max-height: 100% !important;
}

.w-10\% {
  width: 10% !important;
}

.h-10\% {
  height: 10% !important;
}

.min-w-10\% {
  min-width: 10% !important;
}

.max-w-10\% {
  max-width: 10% !important;
}

.min-h-10\% {
  min-height: 10% !important;
}

.max-h-10\% {
  max-height: 10% !important;
}

.w-15\% {
  width: 15% !important;
}

.h-15\% {
  height: 15% !important;
}

.min-w-15\% {
  min-width: 15% !important;
}

.max-w-15\% {
  max-width: 15% !important;
}

.min-h-15\% {
  min-height: 15% !important;
}

.max-h-15\% {
  max-height: 15% !important;
}

.w-20\% {
  width: 20% !important;
}

.h-20\% {
  height: 20% !important;
}

.min-w-20\% {
  min-width: 20% !important;
}

.max-w-20\% {
  max-width: 20% !important;
}

.min-h-20\% {
  min-height: 20% !important;
}

.max-h-20\% {
  max-height: 20% !important;
}

.w-25\% {
  width: 25% !important;
}

.h-25\% {
  height: 25% !important;
}

.min-w-25\% {
  min-width: 25% !important;
}

.max-w-25\% {
  max-width: 25% !important;
}

.min-h-25\% {
  min-height: 25% !important;
}

.max-h-25\% {
  max-height: 25% !important;
}

.w-30\% {
  width: 30% !important;
}

.h-30\% {
  height: 30% !important;
}

.min-w-30\% {
  min-width: 30% !important;
}

.max-w-30\% {
  max-width: 30% !important;
}

.min-h-30\% {
  min-height: 30% !important;
}

.max-h-30\% {
  max-height: 30% !important;
}

.w-35\% {
  width: 35% !important;
}

.h-35\% {
  height: 35% !important;
}

.min-w-35\% {
  min-width: 35% !important;
}

.max-w-35\% {
  max-width: 35% !important;
}

.min-h-35\% {
  min-height: 35% !important;
}

.max-h-35\% {
  max-height: 35% !important;
}

.w-40\% {
  width: 40% !important;
}

.h-40\% {
  height: 40% !important;
}

.min-w-40\% {
  min-width: 40% !important;
}

.max-w-40\% {
  max-width: 40% !important;
}

.min-h-40\% {
  min-height: 40% !important;
}

.max-h-40\% {
  max-height: 40% !important;
}

.w-45\% {
  width: 45% !important;
}

.h-45\% {
  height: 45% !important;
}

.min-w-45\% {
  min-width: 45% !important;
}

.max-w-45\% {
  max-width: 45% !important;
}

.min-h-45\% {
  min-height: 45% !important;
}

.max-h-45\% {
  max-height: 45% !important;
}

.w-50\% {
  width: 50% !important;
}

.h-50\% {
  height: 50% !important;
}

.min-w-50\% {
  min-width: 50% !important;
}

.max-w-50\% {
  max-width: 50% !important;
}

.min-h-50\% {
  min-height: 50% !important;
}

.max-h-50\% {
  max-height: 50% !important;
}

.w-55\% {
  width: 55% !important;
}

.h-55\% {
  height: 55% !important;
}

.min-w-55\% {
  min-width: 55% !important;
}

.max-w-55\% {
  max-width: 55% !important;
}

.min-h-55\% {
  min-height: 55% !important;
}

.max-h-55\% {
  max-height: 55% !important;
}

.w-60\% {
  width: 60% !important;
}

.h-60\% {
  height: 60% !important;
}

.min-w-60\% {
  min-width: 60% !important;
}

.max-w-60\% {
  max-width: 60% !important;
}

.min-h-60\% {
  min-height: 60% !important;
}

.max-h-60\% {
  max-height: 60% !important;
}

.w-65\% {
  width: 65% !important;
}

.h-65\% {
  height: 65% !important;
}

.min-w-65\% {
  min-width: 65% !important;
}

.max-w-65\% {
  max-width: 65% !important;
}

.min-h-65\% {
  min-height: 65% !important;
}

.max-h-65\% {
  max-height: 65% !important;
}

.w-70\% {
  width: 70% !important;
}

.h-70\% {
  height: 70% !important;
}

.min-w-70\% {
  min-width: 70% !important;
}

.max-w-70\% {
  max-width: 70% !important;
}

.min-h-70\% {
  min-height: 70% !important;
}

.max-h-70\% {
  max-height: 70% !important;
}

.w-75\% {
  width: 75% !important;
}

.h-75\% {
  height: 75% !important;
}

.min-w-75\% {
  min-width: 75% !important;
}

.max-w-75\% {
  max-width: 75% !important;
}

.min-h-75\% {
  min-height: 75% !important;
}

.max-h-75\% {
  max-height: 75% !important;
}

.w-80\% {
  width: 80% !important;
}

.h-80\% {
  height: 80% !important;
}

.min-w-80\% {
  min-width: 80% !important;
}

.max-w-80\% {
  max-width: 80% !important;
}

.min-h-80\% {
  min-height: 80% !important;
}

.max-h-80\% {
  max-height: 80% !important;
}

.w-85\% {
  width: 85% !important;
}

.h-85\% {
  height: 85% !important;
}

.min-w-85\% {
  min-width: 85% !important;
}

.max-w-85\% {
  max-width: 85% !important;
}

.min-h-85\% {
  min-height: 85% !important;
}

.max-h-85\% {
  max-height: 85% !important;
}

.w-90\% {
  width: 90% !important;
}

.h-90\% {
  height: 90% !important;
}

.min-w-90\% {
  min-width: 90% !important;
}

.max-w-90\% {
  max-width: 90% !important;
}

.min-h-90\% {
  min-height: 90% !important;
}

.max-h-90\% {
  max-height: 90% !important;
}

.w-95\% {
  width: 95% !important;
}

.h-95\% {
  height: 95% !important;
}

.min-w-95\% {
  min-width: 95% !important;
}

.max-w-95\% {
  max-width: 95% !important;
}

.min-h-95\% {
  min-height: 95% !important;
}

.max-h-95\% {
  max-height: 95% !important;
}

.w-100\% {
  width: 100% !important;
}

.h-100\% {
  height: 100% !important;
}

.min-w-100\% {
  min-width: 100% !important;
}

.max-w-100\% {
  max-width: 100% !important;
}

.min-h-100\% {
  min-height: 100% !important;
}

.max-h-100\% {
  max-height: 100% !important;
}

.w-10vw {
  width: 10vw;
}

.min-w-10vw {
  min-width: 10vw;
}

.max-w-10vw {
  max-width: 10vw;
}

.w-20vw {
  width: 20vw;
}

.min-w-20vw {
  min-width: 20vw;
}

.max-w-20vw {
  max-width: 20vw;
}

.w-30vw {
  width: 30vw;
}

.min-w-30vw {
  min-width: 30vw;
}

.max-w-30vw {
  max-width: 30vw;
}

.w-40vw {
  width: 40vw;
}

.min-w-40vw {
  min-width: 40vw;
}

.max-w-40vw {
  max-width: 40vw;
}

.w-50vw {
  width: 50vw;
}

.min-w-50vw {
  min-width: 50vw;
}

.max-w-50vw {
  max-width: 50vw;
}

.w-60vw {
  width: 60vw;
}

.min-w-60vw {
  min-width: 60vw;
}

.max-w-60vw {
  max-width: 60vw;
}

.w-70vw {
  width: 70vw;
}

.min-w-70vw {
  min-width: 70vw;
}

.max-w-70vw {
  max-width: 70vw;
}

.w-80vw {
  width: 80vw;
}

.min-w-80vw {
  min-width: 80vw;
}

.max-w-80vw {
  max-width: 80vw;
}

.w-90vw {
  width: 90vw;
}

.min-w-90vw {
  min-width: 90vw;
}

.max-w-90vw {
  max-width: 90vw;
}

.w-100vw {
  width: 100vw;
}

.min-w-100vw {
  min-width: 100vw;
}

.max-w-100vw {
  max-width: 100vw;
}

.h-10vh {
  height: 10vh;
}

.min-h-10vh {
  min-height: 10vh;
}

.max-h-10vh {
  max-height: 10vh;
}

.h-20vh {
  height: 20vh;
}

.min-h-20vh {
  min-height: 20vh;
}

.max-h-20vh {
  max-height: 20vh;
}

.h-30vh {
  height: 30vh;
}

.min-h-30vh {
  min-height: 30vh;
}

.max-h-30vh {
  max-height: 30vh;
}

.h-40vh {
  height: 40vh;
}

.min-h-40vh {
  min-height: 40vh;
}

.max-h-40vh {
  max-height: 40vh;
}

.h-50vh {
  height: 50vh;
}

.min-h-50vh {
  min-height: 50vh;
}

.max-h-50vh {
  max-height: 50vh;
}

.h-60vh {
  height: 60vh;
}

.min-h-60vh {
  min-height: 60vh;
}

.max-h-60vh {
  max-height: 60vh;
}

.h-70vh {
  height: 70vh;
}

.min-h-70vh {
  min-height: 70vh;
}

.max-h-70vh {
  max-height: 70vh;
}

.h-80vh {
  height: 80vh;
}

.min-h-80vh {
  min-height: 80vh;
}

.max-h-80vh {
  max-height: 80vh;
}

.h-90vh {
  height: 90vh;
}

.min-h-90vh {
  min-height: 90vh;
}

.max-h-90vh {
  max-height: 90vh;
}

.h-100vh {
  height: 100vh;
}

.min-h-100vh {
  min-height: 100vh;
}

.max-h-100vh {
  max-height: 100vh;
}

@media (max-width: 1199px) {
  .max-lg\:w-unset {
    width: unset !important;
  }

  .max-lg\:h-unset {
    height: unset !important;
  }

  .max-lg\:min-w-unset {
    min-width: unset !important;
  }

  .max-lg\:max-w-unset {
    max-width: unset !important;
  }

  .max-lg\:min-h-unset {
    min-height: unset !important;
  }

  .max-lg\:max-h-unset {
    max-height: unset !important;
  }

  .max-lg\:w-initial {
    width: initial !important;
  }

  .max-lg\:h-initial {
    height: initial !important;
  }

  .max-lg\:min-w-initial {
    min-width: initial !important;
  }

  .max-lg\:max-w-initial {
    max-width: initial !important;
  }

  .max-lg\:min-h-initial {
    min-height: initial !important;
  }

  .max-lg\:max-h-initial {
    max-height: initial !important;
  }

  .max-lg\:w-auto {
    width: auto !important;
  }

  .max-lg\:h-auto {
    height: auto !important;
  }

  .max-lg\:min-w-auto {
    min-width: auto !important;
  }

  .max-lg\:max-w-auto {
    max-width: auto !important;
  }

  .max-lg\:min-h-auto {
    min-height: auto !important;
  }

  .max-lg\:max-h-auto {
    max-height: auto !important;
  }

  .max-lg\:w-0 {
    width: 0 !important;
  }

  .max-lg\:h-0 {
    height: 0 !important;
  }

  .max-lg\:min-w-0 {
    min-width: 0 !important;
  }

  .max-lg\:max-w-0 {
    max-width: 0 !important;
  }

  .max-lg\:min-h-0 {
    min-height: 0 !important;
  }

  .max-lg\:max-h-0 {
    max-height: 0 !important;
  }

  .max-lg\:w-1 {
    width: 4px !important;
  }

  .max-lg\:h-1 {
    height: 4px !important;
  }

  .max-lg\:min-w-1 {
    min-width: 4px !important;
  }

  .max-lg\:max-w-1 {
    max-width: 4px !important;
  }

  .max-lg\:min-h-1 {
    min-height: 4px !important;
  }

  .max-lg\:max-h-1 {
    max-height: 4px !important;
  }

  .max-lg\:w-2 {
    width: 8px !important;
  }

  .max-lg\:h-2 {
    height: 8px !important;
  }

  .max-lg\:min-w-2 {
    min-width: 8px !important;
  }

  .max-lg\:max-w-2 {
    max-width: 8px !important;
  }

  .max-lg\:min-h-2 {
    min-height: 8px !important;
  }

  .max-lg\:max-h-2 {
    max-height: 8px !important;
  }

  .max-lg\:w-3 {
    width: 12px !important;
  }

  .max-lg\:h-3 {
    height: 12px !important;
  }

  .max-lg\:min-w-3 {
    min-width: 12px !important;
  }

  .max-lg\:max-w-3 {
    max-width: 12px !important;
  }

  .max-lg\:min-h-3 {
    min-height: 12px !important;
  }

  .max-lg\:max-h-3 {
    max-height: 12px !important;
  }

  .max-lg\:w-4 {
    width: 16px !important;
  }

  .max-lg\:h-4 {
    height: 16px !important;
  }

  .max-lg\:min-w-4 {
    min-width: 16px !important;
  }

  .max-lg\:max-w-4 {
    max-width: 16px !important;
  }

  .max-lg\:min-h-4 {
    min-height: 16px !important;
  }

  .max-lg\:max-h-4 {
    max-height: 16px !important;
  }

  .max-lg\:w-5 {
    width: 20px !important;
  }

  .max-lg\:h-5 {
    height: 20px !important;
  }

  .max-lg\:min-w-5 {
    min-width: 20px !important;
  }

  .max-lg\:max-w-5 {
    max-width: 20px !important;
  }

  .max-lg\:min-h-5 {
    min-height: 20px !important;
  }

  .max-lg\:max-h-5 {
    max-height: 20px !important;
  }

  .max-lg\:w-6 {
    width: 24px !important;
  }

  .max-lg\:h-6 {
    height: 24px !important;
  }

  .max-lg\:min-w-6 {
    min-width: 24px !important;
  }

  .max-lg\:max-w-6 {
    max-width: 24px !important;
  }

  .max-lg\:min-h-6 {
    min-height: 24px !important;
  }

  .max-lg\:max-h-6 {
    max-height: 24px !important;
  }

  .max-lg\:w-7 {
    width: 28px !important;
  }

  .max-lg\:h-7 {
    height: 28px !important;
  }

  .max-lg\:min-w-7 {
    min-width: 28px !important;
  }

  .max-lg\:max-w-7 {
    max-width: 28px !important;
  }

  .max-lg\:min-h-7 {
    min-height: 28px !important;
  }

  .max-lg\:max-h-7 {
    max-height: 28px !important;
  }

  .max-lg\:w-8 {
    width: 32px !important;
  }

  .max-lg\:h-8 {
    height: 32px !important;
  }

  .max-lg\:min-w-8 {
    min-width: 32px !important;
  }

  .max-lg\:max-w-8 {
    max-width: 32px !important;
  }

  .max-lg\:min-h-8 {
    min-height: 32px !important;
  }

  .max-lg\:max-h-8 {
    max-height: 32px !important;
  }

  .max-lg\:w-9 {
    width: 36px !important;
  }

  .max-lg\:h-9 {
    height: 36px !important;
  }

  .max-lg\:min-w-9 {
    min-width: 36px !important;
  }

  .max-lg\:max-w-9 {
    max-width: 36px !important;
  }

  .max-lg\:min-h-9 {
    min-height: 36px !important;
  }

  .max-lg\:max-h-9 {
    max-height: 36px !important;
  }

  .max-lg\:w-10 {
    width: 40px !important;
  }

  .max-lg\:h-10 {
    height: 40px !important;
  }

  .max-lg\:min-w-10 {
    min-width: 40px !important;
  }

  .max-lg\:max-w-10 {
    max-width: 40px !important;
  }

  .max-lg\:min-h-10 {
    min-height: 40px !important;
  }

  .max-lg\:max-h-10 {
    max-height: 40px !important;
  }

  .max-lg\:w-11 {
    width: 44px !important;
  }

  .max-lg\:h-11 {
    height: 44px !important;
  }

  .max-lg\:min-w-11 {
    min-width: 44px !important;
  }

  .max-lg\:max-w-11 {
    max-width: 44px !important;
  }

  .max-lg\:min-h-11 {
    min-height: 44px !important;
  }

  .max-lg\:max-h-11 {
    max-height: 44px !important;
  }

  .max-lg\:w-12 {
    width: 48px !important;
  }

  .max-lg\:h-12 {
    height: 48px !important;
  }

  .max-lg\:min-w-12 {
    min-width: 48px !important;
  }

  .max-lg\:max-w-12 {
    max-width: 48px !important;
  }

  .max-lg\:min-h-12 {
    min-height: 48px !important;
  }

  .max-lg\:max-h-12 {
    max-height: 48px !important;
  }

  .max-lg\:w-14 {
    width: 56px !important;
  }

  .max-lg\:h-14 {
    height: 56px !important;
  }

  .max-lg\:min-w-14 {
    min-width: 56px !important;
  }

  .max-lg\:max-w-14 {
    max-width: 56px !important;
  }

  .max-lg\:min-h-14 {
    min-height: 56px !important;
  }

  .max-lg\:max-h-14 {
    max-height: 56px !important;
  }

  .max-lg\:w-15 {
    width: 60px !important;
  }

  .max-lg\:h-15 {
    height: 60px !important;
  }

  .max-lg\:min-w-15 {
    min-width: 60px !important;
  }

  .max-lg\:max-w-15 {
    max-width: 60px !important;
  }

  .max-lg\:min-h-15 {
    min-height: 60px !important;
  }

  .max-lg\:max-h-15 {
    max-height: 60px !important;
  }

  .max-lg\:w-16 {
    width: 64px !important;
  }

  .max-lg\:h-16 {
    height: 64px !important;
  }

  .max-lg\:min-w-16 {
    min-width: 64px !important;
  }

  .max-lg\:max-w-16 {
    max-width: 64px !important;
  }

  .max-lg\:min-h-16 {
    min-height: 64px !important;
  }

  .max-lg\:max-h-16 {
    max-height: 64px !important;
  }

  .max-lg\:w-18 {
    width: 72px !important;
  }

  .max-lg\:h-18 {
    height: 72px !important;
  }

  .max-lg\:min-w-18 {
    min-width: 72px !important;
  }

  .max-lg\:max-w-18 {
    max-width: 72px !important;
  }

  .max-lg\:min-h-18 {
    min-height: 72px !important;
  }

  .max-lg\:max-h-18 {
    max-height: 72px !important;
  }

  .max-lg\:w-20 {
    width: 80px !important;
  }

  .max-lg\:h-20 {
    height: 80px !important;
  }

  .max-lg\:min-w-20 {
    min-width: 80px !important;
  }

  .max-lg\:max-w-20 {
    max-width: 80px !important;
  }

  .max-lg\:min-h-20 {
    min-height: 80px !important;
  }

  .max-lg\:max-h-20 {
    max-height: 80px !important;
  }

  .max-lg\:w-25 {
    width: 100px !important;
  }

  .max-lg\:h-25 {
    height: 100px !important;
  }

  .max-lg\:min-w-25 {
    min-width: 100px !important;
  }

  .max-lg\:max-w-25 {
    max-width: 100px !important;
  }

  .max-lg\:min-h-25 {
    min-height: 100px !important;
  }

  .max-lg\:max-h-25 {
    max-height: 100px !important;
  }

  .max-lg\:w-30 {
    width: 120px !important;
  }

  .max-lg\:h-30 {
    height: 120px !important;
  }

  .max-lg\:min-w-30 {
    min-width: 120px !important;
  }

  .max-lg\:max-w-30 {
    max-width: 120px !important;
  }

  .max-lg\:min-h-30 {
    min-height: 120px !important;
  }

  .max-lg\:max-h-30 {
    max-height: 120px !important;
  }

  .max-lg\:w-35 {
    width: 140px !important;
  }

  .max-lg\:h-35 {
    height: 140px !important;
  }

  .max-lg\:min-w-35 {
    min-width: 140px !important;
  }

  .max-lg\:max-w-35 {
    max-width: 140px !important;
  }

  .max-lg\:min-h-35 {
    min-height: 140px !important;
  }

  .max-lg\:max-h-35 {
    max-height: 140px !important;
  }

  .max-lg\:w-40 {
    width: 160px !important;
  }

  .max-lg\:h-40 {
    height: 160px !important;
  }

  .max-lg\:min-w-40 {
    min-width: 160px !important;
  }

  .max-lg\:max-w-40 {
    max-width: 160px !important;
  }

  .max-lg\:min-h-40 {
    min-height: 160px !important;
  }

  .max-lg\:max-h-40 {
    max-height: 160px !important;
  }

  .max-lg\:w-45 {
    width: 180px !important;
  }

  .max-lg\:h-45 {
    height: 180px !important;
  }

  .max-lg\:min-w-45 {
    min-width: 180px !important;
  }

  .max-lg\:max-w-45 {
    max-width: 180px !important;
  }

  .max-lg\:min-h-45 {
    min-height: 180px !important;
  }

  .max-lg\:max-h-45 {
    max-height: 180px !important;
  }

  .max-lg\:w-50 {
    width: 200px !important;
  }

  .max-lg\:h-50 {
    height: 200px !important;
  }

  .max-lg\:min-w-50 {
    min-width: 200px !important;
  }

  .max-lg\:max-w-50 {
    max-width: 200px !important;
  }

  .max-lg\:min-h-50 {
    min-height: 200px !important;
  }

  .max-lg\:max-h-50 {
    max-height: 200px !important;
  }

  .max-lg\:w-55 {
    width: 220px !important;
  }

  .max-lg\:h-55 {
    height: 220px !important;
  }

  .max-lg\:min-w-55 {
    min-width: 220px !important;
  }

  .max-lg\:max-w-55 {
    max-width: 220px !important;
  }

  .max-lg\:min-h-55 {
    min-height: 220px !important;
  }

  .max-lg\:max-h-55 {
    max-height: 220px !important;
  }

  .max-lg\:w-60 {
    width: 240px !important;
  }

  .max-lg\:h-60 {
    height: 240px !important;
  }

  .max-lg\:min-w-60 {
    min-width: 240px !important;
  }

  .max-lg\:max-w-60 {
    max-width: 240px !important;
  }

  .max-lg\:min-h-60 {
    min-height: 240px !important;
  }

  .max-lg\:max-h-60 {
    max-height: 240px !important;
  }

  .max-lg\:w-65 {
    width: 260px !important;
  }

  .max-lg\:h-65 {
    height: 260px !important;
  }

  .max-lg\:min-w-65 {
    min-width: 260px !important;
  }

  .max-lg\:max-w-65 {
    max-width: 260px !important;
  }

  .max-lg\:min-h-65 {
    min-height: 260px !important;
  }

  .max-lg\:max-h-65 {
    max-height: 260px !important;
  }

  .max-lg\:w-70 {
    width: 280px !important;
  }

  .max-lg\:h-70 {
    height: 280px !important;
  }

  .max-lg\:min-w-70 {
    min-width: 280px !important;
  }

  .max-lg\:max-w-70 {
    max-width: 280px !important;
  }

  .max-lg\:min-h-70 {
    min-height: 280px !important;
  }

  .max-lg\:max-h-70 {
    max-height: 280px !important;
  }

  .max-lg\:w-75 {
    width: 300px !important;
  }

  .max-lg\:h-75 {
    height: 300px !important;
  }

  .max-lg\:min-w-75 {
    min-width: 300px !important;
  }

  .max-lg\:max-w-75 {
    max-width: 300px !important;
  }

  .max-lg\:min-h-75 {
    min-height: 300px !important;
  }

  .max-lg\:max-h-75 {
    max-height: 300px !important;
  }

  .max-lg\:w-80 {
    width: 320px !important;
  }

  .max-lg\:h-80 {
    height: 320px !important;
  }

  .max-lg\:min-w-80 {
    min-width: 320px !important;
  }

  .max-lg\:max-w-80 {
    max-width: 320px !important;
  }

  .max-lg\:min-h-80 {
    min-height: 320px !important;
  }

  .max-lg\:max-h-80 {
    max-height: 320px !important;
  }

  .max-lg\:w-85 {
    width: 340px !important;
  }

  .max-lg\:h-85 {
    height: 340px !important;
  }

  .max-lg\:min-w-85 {
    min-width: 340px !important;
  }

  .max-lg\:max-w-85 {
    max-width: 340px !important;
  }

  .max-lg\:min-h-85 {
    min-height: 340px !important;
  }

  .max-lg\:max-h-85 {
    max-height: 340px !important;
  }

  .max-lg\:w-90 {
    width: 360px !important;
  }

  .max-lg\:h-90 {
    height: 360px !important;
  }

  .max-lg\:min-w-90 {
    min-width: 360px !important;
  }

  .max-lg\:max-w-90 {
    max-width: 360px !important;
  }

  .max-lg\:min-h-90 {
    min-height: 360px !important;
  }

  .max-lg\:max-h-90 {
    max-height: 360px !important;
  }

  .max-lg\:w-95 {
    width: 380px !important;
  }

  .max-lg\:h-95 {
    height: 380px !important;
  }

  .max-lg\:min-w-95 {
    min-width: 380px !important;
  }

  .max-lg\:max-w-95 {
    max-width: 380px !important;
  }

  .max-lg\:min-h-95 {
    min-height: 380px !important;
  }

  .max-lg\:max-h-95 {
    max-height: 380px !important;
  }

  .max-lg\:w-100 {
    width: 400px !important;
  }

  .max-lg\:h-100 {
    height: 400px !important;
  }

  .max-lg\:min-w-100 {
    min-width: 400px !important;
  }

  .max-lg\:max-w-100 {
    max-width: 400px !important;
  }

  .max-lg\:min-h-100 {
    min-height: 400px !important;
  }

  .max-lg\:max-h-100 {
    max-height: 400px !important;
  }

  .max-lg\:w-110 {
    width: 440px !important;
  }

  .max-lg\:h-110 {
    height: 440px !important;
  }

  .max-lg\:min-w-110 {
    min-width: 440px !important;
  }

  .max-lg\:max-w-110 {
    max-width: 440px !important;
  }

  .max-lg\:min-h-110 {
    min-height: 440px !important;
  }

  .max-lg\:max-h-110 {
    max-height: 440px !important;
  }

  .max-lg\:w-120 {
    width: 480px !important;
  }

  .max-lg\:h-120 {
    height: 480px !important;
  }

  .max-lg\:min-w-120 {
    min-width: 480px !important;
  }

  .max-lg\:max-w-120 {
    max-width: 480px !important;
  }

  .max-lg\:min-h-120 {
    min-height: 480px !important;
  }

  .max-lg\:max-h-120 {
    max-height: 480px !important;
  }

  .max-lg\:w-130 {
    width: 520px !important;
  }

  .max-lg\:h-130 {
    height: 520px !important;
  }

  .max-lg\:min-w-130 {
    min-width: 520px !important;
  }

  .max-lg\:max-w-130 {
    max-width: 520px !important;
  }

  .max-lg\:min-h-130 {
    min-height: 520px !important;
  }

  .max-lg\:max-h-130 {
    max-height: 520px !important;
  }

  .max-lg\:w-140 {
    width: 560px !important;
  }

  .max-lg\:h-140 {
    height: 560px !important;
  }

  .max-lg\:min-w-140 {
    min-width: 560px !important;
  }

  .max-lg\:max-w-140 {
    max-width: 560px !important;
  }

  .max-lg\:min-h-140 {
    min-height: 560px !important;
  }

  .max-lg\:max-h-140 {
    max-height: 560px !important;
  }

  .max-lg\:w-150 {
    width: 600px !important;
  }

  .max-lg\:h-150 {
    height: 600px !important;
  }

  .max-lg\:min-w-150 {
    min-width: 600px !important;
  }

  .max-lg\:max-w-150 {
    max-width: 600px !important;
  }

  .max-lg\:min-h-150 {
    min-height: 600px !important;
  }

  .max-lg\:max-h-150 {
    max-height: 600px !important;
  }

  .max-lg\:w-full {
    width: 100% !important;
  }

  .max-lg\:h-full {
    height: 100% !important;
  }

  .max-lg\:min-w-full {
    min-width: 100% !important;
  }

  .max-lg\:max-w-full {
    max-width: 100% !important;
  }

  .max-lg\:min-h-full {
    min-height: 100% !important;
  }

  .max-lg\:max-h-full {
    max-height: 100% !important;
  }

  .max-lg\:w-10\% {
    width: 10% !important;
  }

  .max-lg\:h-10\% {
    height: 10% !important;
  }

  .max-lg\:min-w-10\% {
    min-width: 10% !important;
  }

  .max-lg\:max-w-10\% {
    max-width: 10% !important;
  }

  .max-lg\:min-h-10\% {
    min-height: 10% !important;
  }

  .max-lg\:max-h-10\% {
    max-height: 10% !important;
  }

  .max-lg\:w-15\% {
    width: 15% !important;
  }

  .max-lg\:h-15\% {
    height: 15% !important;
  }

  .max-lg\:min-w-15\% {
    min-width: 15% !important;
  }

  .max-lg\:max-w-15\% {
    max-width: 15% !important;
  }

  .max-lg\:min-h-15\% {
    min-height: 15% !important;
  }

  .max-lg\:max-h-15\% {
    max-height: 15% !important;
  }

  .max-lg\:w-20\% {
    width: 20% !important;
  }

  .max-lg\:h-20\% {
    height: 20% !important;
  }

  .max-lg\:min-w-20\% {
    min-width: 20% !important;
  }

  .max-lg\:max-w-20\% {
    max-width: 20% !important;
  }

  .max-lg\:min-h-20\% {
    min-height: 20% !important;
  }

  .max-lg\:max-h-20\% {
    max-height: 20% !important;
  }

  .max-lg\:w-25\% {
    width: 25% !important;
  }

  .max-lg\:h-25\% {
    height: 25% !important;
  }

  .max-lg\:min-w-25\% {
    min-width: 25% !important;
  }

  .max-lg\:max-w-25\% {
    max-width: 25% !important;
  }

  .max-lg\:min-h-25\% {
    min-height: 25% !important;
  }

  .max-lg\:max-h-25\% {
    max-height: 25% !important;
  }

  .max-lg\:w-30\% {
    width: 30% !important;
  }

  .max-lg\:h-30\% {
    height: 30% !important;
  }

  .max-lg\:min-w-30\% {
    min-width: 30% !important;
  }

  .max-lg\:max-w-30\% {
    max-width: 30% !important;
  }

  .max-lg\:min-h-30\% {
    min-height: 30% !important;
  }

  .max-lg\:max-h-30\% {
    max-height: 30% !important;
  }

  .max-lg\:w-35\% {
    width: 35% !important;
  }

  .max-lg\:h-35\% {
    height: 35% !important;
  }

  .max-lg\:min-w-35\% {
    min-width: 35% !important;
  }

  .max-lg\:max-w-35\% {
    max-width: 35% !important;
  }

  .max-lg\:min-h-35\% {
    min-height: 35% !important;
  }

  .max-lg\:max-h-35\% {
    max-height: 35% !important;
  }

  .max-lg\:w-40\% {
    width: 40% !important;
  }

  .max-lg\:h-40\% {
    height: 40% !important;
  }

  .max-lg\:min-w-40\% {
    min-width: 40% !important;
  }

  .max-lg\:max-w-40\% {
    max-width: 40% !important;
  }

  .max-lg\:min-h-40\% {
    min-height: 40% !important;
  }

  .max-lg\:max-h-40\% {
    max-height: 40% !important;
  }

  .max-lg\:w-45\% {
    width: 45% !important;
  }

  .max-lg\:h-45\% {
    height: 45% !important;
  }

  .max-lg\:min-w-45\% {
    min-width: 45% !important;
  }

  .max-lg\:max-w-45\% {
    max-width: 45% !important;
  }

  .max-lg\:min-h-45\% {
    min-height: 45% !important;
  }

  .max-lg\:max-h-45\% {
    max-height: 45% !important;
  }

  .max-lg\:w-50\% {
    width: 50% !important;
  }

  .max-lg\:h-50\% {
    height: 50% !important;
  }

  .max-lg\:min-w-50\% {
    min-width: 50% !important;
  }

  .max-lg\:max-w-50\% {
    max-width: 50% !important;
  }

  .max-lg\:min-h-50\% {
    min-height: 50% !important;
  }

  .max-lg\:max-h-50\% {
    max-height: 50% !important;
  }

  .max-lg\:w-55\% {
    width: 55% !important;
  }

  .max-lg\:h-55\% {
    height: 55% !important;
  }

  .max-lg\:min-w-55\% {
    min-width: 55% !important;
  }

  .max-lg\:max-w-55\% {
    max-width: 55% !important;
  }

  .max-lg\:min-h-55\% {
    min-height: 55% !important;
  }

  .max-lg\:max-h-55\% {
    max-height: 55% !important;
  }

  .max-lg\:w-60\% {
    width: 60% !important;
  }

  .max-lg\:h-60\% {
    height: 60% !important;
  }

  .max-lg\:min-w-60\% {
    min-width: 60% !important;
  }

  .max-lg\:max-w-60\% {
    max-width: 60% !important;
  }

  .max-lg\:min-h-60\% {
    min-height: 60% !important;
  }

  .max-lg\:max-h-60\% {
    max-height: 60% !important;
  }

  .max-lg\:w-65\% {
    width: 65% !important;
  }

  .max-lg\:h-65\% {
    height: 65% !important;
  }

  .max-lg\:min-w-65\% {
    min-width: 65% !important;
  }

  .max-lg\:max-w-65\% {
    max-width: 65% !important;
  }

  .max-lg\:min-h-65\% {
    min-height: 65% !important;
  }

  .max-lg\:max-h-65\% {
    max-height: 65% !important;
  }

  .max-lg\:w-70\% {
    width: 70% !important;
  }

  .max-lg\:h-70\% {
    height: 70% !important;
  }

  .max-lg\:min-w-70\% {
    min-width: 70% !important;
  }

  .max-lg\:max-w-70\% {
    max-width: 70% !important;
  }

  .max-lg\:min-h-70\% {
    min-height: 70% !important;
  }

  .max-lg\:max-h-70\% {
    max-height: 70% !important;
  }

  .max-lg\:w-75\% {
    width: 75% !important;
  }

  .max-lg\:h-75\% {
    height: 75% !important;
  }

  .max-lg\:min-w-75\% {
    min-width: 75% !important;
  }

  .max-lg\:max-w-75\% {
    max-width: 75% !important;
  }

  .max-lg\:min-h-75\% {
    min-height: 75% !important;
  }

  .max-lg\:max-h-75\% {
    max-height: 75% !important;
  }

  .max-lg\:w-80\% {
    width: 80% !important;
  }

  .max-lg\:h-80\% {
    height: 80% !important;
  }

  .max-lg\:min-w-80\% {
    min-width: 80% !important;
  }

  .max-lg\:max-w-80\% {
    max-width: 80% !important;
  }

  .max-lg\:min-h-80\% {
    min-height: 80% !important;
  }

  .max-lg\:max-h-80\% {
    max-height: 80% !important;
  }

  .max-lg\:w-85\% {
    width: 85% !important;
  }

  .max-lg\:h-85\% {
    height: 85% !important;
  }

  .max-lg\:min-w-85\% {
    min-width: 85% !important;
  }

  .max-lg\:max-w-85\% {
    max-width: 85% !important;
  }

  .max-lg\:min-h-85\% {
    min-height: 85% !important;
  }

  .max-lg\:max-h-85\% {
    max-height: 85% !important;
  }

  .max-lg\:w-90\% {
    width: 90% !important;
  }

  .max-lg\:h-90\% {
    height: 90% !important;
  }

  .max-lg\:min-w-90\% {
    min-width: 90% !important;
  }

  .max-lg\:max-w-90\% {
    max-width: 90% !important;
  }

  .max-lg\:min-h-90\% {
    min-height: 90% !important;
  }

  .max-lg\:max-h-90\% {
    max-height: 90% !important;
  }

  .max-lg\:w-95\% {
    width: 95% !important;
  }

  .max-lg\:h-95\% {
    height: 95% !important;
  }

  .max-lg\:min-w-95\% {
    min-width: 95% !important;
  }

  .max-lg\:max-w-95\% {
    max-width: 95% !important;
  }

  .max-lg\:min-h-95\% {
    min-height: 95% !important;
  }

  .max-lg\:max-h-95\% {
    max-height: 95% !important;
  }

  .max-lg\:w-100\% {
    width: 100% !important;
  }

  .max-lg\:h-100\% {
    height: 100% !important;
  }

  .max-lg\:min-w-100\% {
    min-width: 100% !important;
  }

  .max-lg\:max-w-100\% {
    max-width: 100% !important;
  }

  .max-lg\:min-h-100\% {
    min-height: 100% !important;
  }

  .max-lg\:max-h-100\% {
    max-height: 100% !important;
  }

  .max-lg\:w-10vw {
    width: 10vw;
  }

  .max-lg\:min-w-10vw {
    min-width: 10vw;
  }

  .max-lg\:max-w-10vw {
    max-width: 10vw;
  }

  .max-lg\:w-20vw {
    width: 20vw;
  }

  .max-lg\:min-w-20vw {
    min-width: 20vw;
  }

  .max-lg\:max-w-20vw {
    max-width: 20vw;
  }

  .max-lg\:w-30vw {
    width: 30vw;
  }

  .max-lg\:min-w-30vw {
    min-width: 30vw;
  }

  .max-lg\:max-w-30vw {
    max-width: 30vw;
  }

  .max-lg\:w-40vw {
    width: 40vw;
  }

  .max-lg\:min-w-40vw {
    min-width: 40vw;
  }

  .max-lg\:max-w-40vw {
    max-width: 40vw;
  }

  .max-lg\:w-50vw {
    width: 50vw;
  }

  .max-lg\:min-w-50vw {
    min-width: 50vw;
  }

  .max-lg\:max-w-50vw {
    max-width: 50vw;
  }

  .max-lg\:w-60vw {
    width: 60vw;
  }

  .max-lg\:min-w-60vw {
    min-width: 60vw;
  }

  .max-lg\:max-w-60vw {
    max-width: 60vw;
  }

  .max-lg\:w-70vw {
    width: 70vw;
  }

  .max-lg\:min-w-70vw {
    min-width: 70vw;
  }

  .max-lg\:max-w-70vw {
    max-width: 70vw;
  }

  .max-lg\:w-80vw {
    width: 80vw;
  }

  .max-lg\:min-w-80vw {
    min-width: 80vw;
  }

  .max-lg\:max-w-80vw {
    max-width: 80vw;
  }

  .max-lg\:w-90vw {
    width: 90vw;
  }

  .max-lg\:min-w-90vw {
    min-width: 90vw;
  }

  .max-lg\:max-w-90vw {
    max-width: 90vw;
  }

  .max-lg\:w-100vw {
    width: 100vw;
  }

  .max-lg\:min-w-100vw {
    min-width: 100vw;
  }

  .max-lg\:max-w-100vw {
    max-width: 100vw;
  }

  .max-lg\:h-10vh {
    height: 10vh;
  }

  .max-lg\:min-h-10vh {
    min-height: 10vh;
  }

  .max-lg\:max-h-10vh {
    max-height: 10vh;
  }

  .max-lg\:h-20vh {
    height: 20vh;
  }

  .max-lg\:min-h-20vh {
    min-height: 20vh;
  }

  .max-lg\:max-h-20vh {
    max-height: 20vh;
  }

  .max-lg\:h-30vh {
    height: 30vh;
  }

  .max-lg\:min-h-30vh {
    min-height: 30vh;
  }

  .max-lg\:max-h-30vh {
    max-height: 30vh;
  }

  .max-lg\:h-40vh {
    height: 40vh;
  }

  .max-lg\:min-h-40vh {
    min-height: 40vh;
  }

  .max-lg\:max-h-40vh {
    max-height: 40vh;
  }

  .max-lg\:h-50vh {
    height: 50vh;
  }

  .max-lg\:min-h-50vh {
    min-height: 50vh;
  }

  .max-lg\:max-h-50vh {
    max-height: 50vh;
  }

  .max-lg\:h-60vh {
    height: 60vh;
  }

  .max-lg\:min-h-60vh {
    min-height: 60vh;
  }

  .max-lg\:max-h-60vh {
    max-height: 60vh;
  }

  .max-lg\:h-70vh {
    height: 70vh;
  }

  .max-lg\:min-h-70vh {
    min-height: 70vh;
  }

  .max-lg\:max-h-70vh {
    max-height: 70vh;
  }

  .max-lg\:h-80vh {
    height: 80vh;
  }

  .max-lg\:min-h-80vh {
    min-height: 80vh;
  }

  .max-lg\:max-h-80vh {
    max-height: 80vh;
  }

  .max-lg\:h-90vh {
    height: 90vh;
  }

  .max-lg\:min-h-90vh {
    min-height: 90vh;
  }

  .max-lg\:max-h-90vh {
    max-height: 90vh;
  }

  .max-lg\:h-100vh {
    height: 100vh;
  }

  .max-lg\:min-h-100vh {
    min-height: 100vh;
  }

  .max-lg\:max-h-100vh {
    max-height: 100vh;
  }
}

@media (max-width: 920px) {
  .max-md\:w-unset {
    width: unset !important;
  }

  .max-md\:h-unset {
    height: unset !important;
  }

  .max-md\:min-w-unset {
    min-width: unset !important;
  }

  .max-md\:max-w-unset {
    max-width: unset !important;
  }

  .max-md\:min-h-unset {
    min-height: unset !important;
  }

  .max-md\:max-h-unset {
    max-height: unset !important;
  }

  .max-md\:w-initial {
    width: initial !important;
  }

  .max-md\:h-initial {
    height: initial !important;
  }

  .max-md\:min-w-initial {
    min-width: initial !important;
  }

  .max-md\:max-w-initial {
    max-width: initial !important;
  }

  .max-md\:min-h-initial {
    min-height: initial !important;
  }

  .max-md\:max-h-initial {
    max-height: initial !important;
  }

  .max-md\:w-auto {
    width: auto !important;
  }

  .max-md\:h-auto {
    height: auto !important;
  }

  .max-md\:min-w-auto {
    min-width: auto !important;
  }

  .max-md\:max-w-auto {
    max-width: auto !important;
  }

  .max-md\:min-h-auto {
    min-height: auto !important;
  }

  .max-md\:max-h-auto {
    max-height: auto !important;
  }

  .max-md\:w-0 {
    width: 0 !important;
  }

  .max-md\:h-0 {
    height: 0 !important;
  }

  .max-md\:min-w-0 {
    min-width: 0 !important;
  }

  .max-md\:max-w-0 {
    max-width: 0 !important;
  }

  .max-md\:min-h-0 {
    min-height: 0 !important;
  }

  .max-md\:max-h-0 {
    max-height: 0 !important;
  }

  .max-md\:w-1 {
    width: 4px !important;
  }

  .max-md\:h-1 {
    height: 4px !important;
  }

  .max-md\:min-w-1 {
    min-width: 4px !important;
  }

  .max-md\:max-w-1 {
    max-width: 4px !important;
  }

  .max-md\:min-h-1 {
    min-height: 4px !important;
  }

  .max-md\:max-h-1 {
    max-height: 4px !important;
  }

  .max-md\:w-2 {
    width: 8px !important;
  }

  .max-md\:h-2 {
    height: 8px !important;
  }

  .max-md\:min-w-2 {
    min-width: 8px !important;
  }

  .max-md\:max-w-2 {
    max-width: 8px !important;
  }

  .max-md\:min-h-2 {
    min-height: 8px !important;
  }

  .max-md\:max-h-2 {
    max-height: 8px !important;
  }

  .max-md\:w-3 {
    width: 12px !important;
  }

  .max-md\:h-3 {
    height: 12px !important;
  }

  .max-md\:min-w-3 {
    min-width: 12px !important;
  }

  .max-md\:max-w-3 {
    max-width: 12px !important;
  }

  .max-md\:min-h-3 {
    min-height: 12px !important;
  }

  .max-md\:max-h-3 {
    max-height: 12px !important;
  }

  .max-md\:w-4 {
    width: 16px !important;
  }

  .max-md\:h-4 {
    height: 16px !important;
  }

  .max-md\:min-w-4 {
    min-width: 16px !important;
  }

  .max-md\:max-w-4 {
    max-width: 16px !important;
  }

  .max-md\:min-h-4 {
    min-height: 16px !important;
  }

  .max-md\:max-h-4 {
    max-height: 16px !important;
  }

  .max-md\:w-5 {
    width: 20px !important;
  }

  .max-md\:h-5 {
    height: 20px !important;
  }

  .max-md\:min-w-5 {
    min-width: 20px !important;
  }

  .max-md\:max-w-5 {
    max-width: 20px !important;
  }

  .max-md\:min-h-5 {
    min-height: 20px !important;
  }

  .max-md\:max-h-5 {
    max-height: 20px !important;
  }

  .max-md\:w-6 {
    width: 24px !important;
  }

  .max-md\:h-6 {
    height: 24px !important;
  }

  .max-md\:min-w-6 {
    min-width: 24px !important;
  }

  .max-md\:max-w-6 {
    max-width: 24px !important;
  }

  .max-md\:min-h-6 {
    min-height: 24px !important;
  }

  .max-md\:max-h-6 {
    max-height: 24px !important;
  }

  .max-md\:w-7 {
    width: 28px !important;
  }

  .max-md\:h-7 {
    height: 28px !important;
  }

  .max-md\:min-w-7 {
    min-width: 28px !important;
  }

  .max-md\:max-w-7 {
    max-width: 28px !important;
  }

  .max-md\:min-h-7 {
    min-height: 28px !important;
  }

  .max-md\:max-h-7 {
    max-height: 28px !important;
  }

  .max-md\:w-8 {
    width: 32px !important;
  }

  .max-md\:h-8 {
    height: 32px !important;
  }

  .max-md\:min-w-8 {
    min-width: 32px !important;
  }

  .max-md\:max-w-8 {
    max-width: 32px !important;
  }

  .max-md\:min-h-8 {
    min-height: 32px !important;
  }

  .max-md\:max-h-8 {
    max-height: 32px !important;
  }

  .max-md\:w-9 {
    width: 36px !important;
  }

  .max-md\:h-9 {
    height: 36px !important;
  }

  .max-md\:min-w-9 {
    min-width: 36px !important;
  }

  .max-md\:max-w-9 {
    max-width: 36px !important;
  }

  .max-md\:min-h-9 {
    min-height: 36px !important;
  }

  .max-md\:max-h-9 {
    max-height: 36px !important;
  }

  .max-md\:w-10 {
    width: 40px !important;
  }

  .max-md\:h-10 {
    height: 40px !important;
  }

  .max-md\:min-w-10 {
    min-width: 40px !important;
  }

  .max-md\:max-w-10 {
    max-width: 40px !important;
  }

  .max-md\:min-h-10 {
    min-height: 40px !important;
  }

  .max-md\:max-h-10 {
    max-height: 40px !important;
  }

  .max-md\:w-11 {
    width: 44px !important;
  }

  .max-md\:h-11 {
    height: 44px !important;
  }

  .max-md\:min-w-11 {
    min-width: 44px !important;
  }

  .max-md\:max-w-11 {
    max-width: 44px !important;
  }

  .max-md\:min-h-11 {
    min-height: 44px !important;
  }

  .max-md\:max-h-11 {
    max-height: 44px !important;
  }

  .max-md\:w-12 {
    width: 48px !important;
  }

  .max-md\:h-12 {
    height: 48px !important;
  }

  .max-md\:min-w-12 {
    min-width: 48px !important;
  }

  .max-md\:max-w-12 {
    max-width: 48px !important;
  }

  .max-md\:min-h-12 {
    min-height: 48px !important;
  }

  .max-md\:max-h-12 {
    max-height: 48px !important;
  }

  .max-md\:w-14 {
    width: 56px !important;
  }

  .max-md\:h-14 {
    height: 56px !important;
  }

  .max-md\:min-w-14 {
    min-width: 56px !important;
  }

  .max-md\:max-w-14 {
    max-width: 56px !important;
  }

  .max-md\:min-h-14 {
    min-height: 56px !important;
  }

  .max-md\:max-h-14 {
    max-height: 56px !important;
  }

  .max-md\:w-15 {
    width: 60px !important;
  }

  .max-md\:h-15 {
    height: 60px !important;
  }

  .max-md\:min-w-15 {
    min-width: 60px !important;
  }

  .max-md\:max-w-15 {
    max-width: 60px !important;
  }

  .max-md\:min-h-15 {
    min-height: 60px !important;
  }

  .max-md\:max-h-15 {
    max-height: 60px !important;
  }

  .max-md\:w-16 {
    width: 64px !important;
  }

  .max-md\:h-16 {
    height: 64px !important;
  }

  .max-md\:min-w-16 {
    min-width: 64px !important;
  }

  .max-md\:max-w-16 {
    max-width: 64px !important;
  }

  .max-md\:min-h-16 {
    min-height: 64px !important;
  }

  .max-md\:max-h-16 {
    max-height: 64px !important;
  }

  .max-md\:w-18 {
    width: 72px !important;
  }

  .max-md\:h-18 {
    height: 72px !important;
  }

  .max-md\:min-w-18 {
    min-width: 72px !important;
  }

  .max-md\:max-w-18 {
    max-width: 72px !important;
  }

  .max-md\:min-h-18 {
    min-height: 72px !important;
  }

  .max-md\:max-h-18 {
    max-height: 72px !important;
  }

  .max-md\:w-20 {
    width: 80px !important;
  }

  .max-md\:h-20 {
    height: 80px !important;
  }

  .max-md\:min-w-20 {
    min-width: 80px !important;
  }

  .max-md\:max-w-20 {
    max-width: 80px !important;
  }

  .max-md\:min-h-20 {
    min-height: 80px !important;
  }

  .max-md\:max-h-20 {
    max-height: 80px !important;
  }

  .max-md\:w-25 {
    width: 100px !important;
  }

  .max-md\:h-25 {
    height: 100px !important;
  }

  .max-md\:min-w-25 {
    min-width: 100px !important;
  }

  .max-md\:max-w-25 {
    max-width: 100px !important;
  }

  .max-md\:min-h-25 {
    min-height: 100px !important;
  }

  .max-md\:max-h-25 {
    max-height: 100px !important;
  }

  .max-md\:w-30 {
    width: 120px !important;
  }

  .max-md\:h-30 {
    height: 120px !important;
  }

  .max-md\:min-w-30 {
    min-width: 120px !important;
  }

  .max-md\:max-w-30 {
    max-width: 120px !important;
  }

  .max-md\:min-h-30 {
    min-height: 120px !important;
  }

  .max-md\:max-h-30 {
    max-height: 120px !important;
  }

  .max-md\:w-35 {
    width: 140px !important;
  }

  .max-md\:h-35 {
    height: 140px !important;
  }

  .max-md\:min-w-35 {
    min-width: 140px !important;
  }

  .max-md\:max-w-35 {
    max-width: 140px !important;
  }

  .max-md\:min-h-35 {
    min-height: 140px !important;
  }

  .max-md\:max-h-35 {
    max-height: 140px !important;
  }

  .max-md\:w-40 {
    width: 160px !important;
  }

  .max-md\:h-40 {
    height: 160px !important;
  }

  .max-md\:min-w-40 {
    min-width: 160px !important;
  }

  .max-md\:max-w-40 {
    max-width: 160px !important;
  }

  .max-md\:min-h-40 {
    min-height: 160px !important;
  }

  .max-md\:max-h-40 {
    max-height: 160px !important;
  }

  .max-md\:w-45 {
    width: 180px !important;
  }

  .max-md\:h-45 {
    height: 180px !important;
  }

  .max-md\:min-w-45 {
    min-width: 180px !important;
  }

  .max-md\:max-w-45 {
    max-width: 180px !important;
  }

  .max-md\:min-h-45 {
    min-height: 180px !important;
  }

  .max-md\:max-h-45 {
    max-height: 180px !important;
  }

  .max-md\:w-50 {
    width: 200px !important;
  }

  .max-md\:h-50 {
    height: 200px !important;
  }

  .max-md\:min-w-50 {
    min-width: 200px !important;
  }

  .max-md\:max-w-50 {
    max-width: 200px !important;
  }

  .max-md\:min-h-50 {
    min-height: 200px !important;
  }

  .max-md\:max-h-50 {
    max-height: 200px !important;
  }

  .max-md\:w-55 {
    width: 220px !important;
  }

  .max-md\:h-55 {
    height: 220px !important;
  }

  .max-md\:min-w-55 {
    min-width: 220px !important;
  }

  .max-md\:max-w-55 {
    max-width: 220px !important;
  }

  .max-md\:min-h-55 {
    min-height: 220px !important;
  }

  .max-md\:max-h-55 {
    max-height: 220px !important;
  }

  .max-md\:w-60 {
    width: 240px !important;
  }

  .max-md\:h-60 {
    height: 240px !important;
  }

  .max-md\:min-w-60 {
    min-width: 240px !important;
  }

  .max-md\:max-w-60 {
    max-width: 240px !important;
  }

  .max-md\:min-h-60 {
    min-height: 240px !important;
  }

  .max-md\:max-h-60 {
    max-height: 240px !important;
  }

  .max-md\:w-65 {
    width: 260px !important;
  }

  .max-md\:h-65 {
    height: 260px !important;
  }

  .max-md\:min-w-65 {
    min-width: 260px !important;
  }

  .max-md\:max-w-65 {
    max-width: 260px !important;
  }

  .max-md\:min-h-65 {
    min-height: 260px !important;
  }

  .max-md\:max-h-65 {
    max-height: 260px !important;
  }

  .max-md\:w-70 {
    width: 280px !important;
  }

  .max-md\:h-70 {
    height: 280px !important;
  }

  .max-md\:min-w-70 {
    min-width: 280px !important;
  }

  .max-md\:max-w-70 {
    max-width: 280px !important;
  }

  .max-md\:min-h-70 {
    min-height: 280px !important;
  }

  .max-md\:max-h-70 {
    max-height: 280px !important;
  }

  .max-md\:w-75 {
    width: 300px !important;
  }

  .max-md\:h-75 {
    height: 300px !important;
  }

  .max-md\:min-w-75 {
    min-width: 300px !important;
  }

  .max-md\:max-w-75 {
    max-width: 300px !important;
  }

  .max-md\:min-h-75 {
    min-height: 300px !important;
  }

  .max-md\:max-h-75 {
    max-height: 300px !important;
  }

  .max-md\:w-80 {
    width: 320px !important;
  }

  .max-md\:h-80 {
    height: 320px !important;
  }

  .max-md\:min-w-80 {
    min-width: 320px !important;
  }

  .max-md\:max-w-80 {
    max-width: 320px !important;
  }

  .max-md\:min-h-80 {
    min-height: 320px !important;
  }

  .max-md\:max-h-80 {
    max-height: 320px !important;
  }

  .max-md\:w-85 {
    width: 340px !important;
  }

  .max-md\:h-85 {
    height: 340px !important;
  }

  .max-md\:min-w-85 {
    min-width: 340px !important;
  }

  .max-md\:max-w-85 {
    max-width: 340px !important;
  }

  .max-md\:min-h-85 {
    min-height: 340px !important;
  }

  .max-md\:max-h-85 {
    max-height: 340px !important;
  }

  .max-md\:w-90 {
    width: 360px !important;
  }

  .max-md\:h-90 {
    height: 360px !important;
  }

  .max-md\:min-w-90 {
    min-width: 360px !important;
  }

  .max-md\:max-w-90 {
    max-width: 360px !important;
  }

  .max-md\:min-h-90 {
    min-height: 360px !important;
  }

  .max-md\:max-h-90 {
    max-height: 360px !important;
  }

  .max-md\:w-95 {
    width: 380px !important;
  }

  .max-md\:h-95 {
    height: 380px !important;
  }

  .max-md\:min-w-95 {
    min-width: 380px !important;
  }

  .max-md\:max-w-95 {
    max-width: 380px !important;
  }

  .max-md\:min-h-95 {
    min-height: 380px !important;
  }

  .max-md\:max-h-95 {
    max-height: 380px !important;
  }

  .max-md\:w-100 {
    width: 400px !important;
  }

  .max-md\:h-100 {
    height: 400px !important;
  }

  .max-md\:min-w-100 {
    min-width: 400px !important;
  }

  .max-md\:max-w-100 {
    max-width: 400px !important;
  }

  .max-md\:min-h-100 {
    min-height: 400px !important;
  }

  .max-md\:max-h-100 {
    max-height: 400px !important;
  }

  .max-md\:w-110 {
    width: 440px !important;
  }

  .max-md\:h-110 {
    height: 440px !important;
  }

  .max-md\:min-w-110 {
    min-width: 440px !important;
  }

  .max-md\:max-w-110 {
    max-width: 440px !important;
  }

  .max-md\:min-h-110 {
    min-height: 440px !important;
  }

  .max-md\:max-h-110 {
    max-height: 440px !important;
  }

  .max-md\:w-120 {
    width: 480px !important;
  }

  .max-md\:h-120 {
    height: 480px !important;
  }

  .max-md\:min-w-120 {
    min-width: 480px !important;
  }

  .max-md\:max-w-120 {
    max-width: 480px !important;
  }

  .max-md\:min-h-120 {
    min-height: 480px !important;
  }

  .max-md\:max-h-120 {
    max-height: 480px !important;
  }

  .max-md\:w-130 {
    width: 520px !important;
  }

  .max-md\:h-130 {
    height: 520px !important;
  }

  .max-md\:min-w-130 {
    min-width: 520px !important;
  }

  .max-md\:max-w-130 {
    max-width: 520px !important;
  }

  .max-md\:min-h-130 {
    min-height: 520px !important;
  }

  .max-md\:max-h-130 {
    max-height: 520px !important;
  }

  .max-md\:w-140 {
    width: 560px !important;
  }

  .max-md\:h-140 {
    height: 560px !important;
  }

  .max-md\:min-w-140 {
    min-width: 560px !important;
  }

  .max-md\:max-w-140 {
    max-width: 560px !important;
  }

  .max-md\:min-h-140 {
    min-height: 560px !important;
  }

  .max-md\:max-h-140 {
    max-height: 560px !important;
  }

  .max-md\:w-150 {
    width: 600px !important;
  }

  .max-md\:h-150 {
    height: 600px !important;
  }

  .max-md\:min-w-150 {
    min-width: 600px !important;
  }

  .max-md\:max-w-150 {
    max-width: 600px !important;
  }

  .max-md\:min-h-150 {
    min-height: 600px !important;
  }

  .max-md\:max-h-150 {
    max-height: 600px !important;
  }

  .max-md\:w-full {
    width: 100% !important;
  }

  .max-md\:h-full {
    height: 100% !important;
  }

  .max-md\:min-w-full {
    min-width: 100% !important;
  }

  .max-md\:max-w-full {
    max-width: 100% !important;
  }

  .max-md\:min-h-full {
    min-height: 100% !important;
  }

  .max-md\:max-h-full {
    max-height: 100% !important;
  }

  .max-md\:w-10\% {
    width: 10% !important;
  }

  .max-md\:h-10\% {
    height: 10% !important;
  }

  .max-md\:min-w-10\% {
    min-width: 10% !important;
  }

  .max-md\:max-w-10\% {
    max-width: 10% !important;
  }

  .max-md\:min-h-10\% {
    min-height: 10% !important;
  }

  .max-md\:max-h-10\% {
    max-height: 10% !important;
  }

  .max-md\:w-15\% {
    width: 15% !important;
  }

  .max-md\:h-15\% {
    height: 15% !important;
  }

  .max-md\:min-w-15\% {
    min-width: 15% !important;
  }

  .max-md\:max-w-15\% {
    max-width: 15% !important;
  }

  .max-md\:min-h-15\% {
    min-height: 15% !important;
  }

  .max-md\:max-h-15\% {
    max-height: 15% !important;
  }

  .max-md\:w-20\% {
    width: 20% !important;
  }

  .max-md\:h-20\% {
    height: 20% !important;
  }

  .max-md\:min-w-20\% {
    min-width: 20% !important;
  }

  .max-md\:max-w-20\% {
    max-width: 20% !important;
  }

  .max-md\:min-h-20\% {
    min-height: 20% !important;
  }

  .max-md\:max-h-20\% {
    max-height: 20% !important;
  }

  .max-md\:w-25\% {
    width: 25% !important;
  }

  .max-md\:h-25\% {
    height: 25% !important;
  }

  .max-md\:min-w-25\% {
    min-width: 25% !important;
  }

  .max-md\:max-w-25\% {
    max-width: 25% !important;
  }

  .max-md\:min-h-25\% {
    min-height: 25% !important;
  }

  .max-md\:max-h-25\% {
    max-height: 25% !important;
  }

  .max-md\:w-30\% {
    width: 30% !important;
  }

  .max-md\:h-30\% {
    height: 30% !important;
  }

  .max-md\:min-w-30\% {
    min-width: 30% !important;
  }

  .max-md\:max-w-30\% {
    max-width: 30% !important;
  }

  .max-md\:min-h-30\% {
    min-height: 30% !important;
  }

  .max-md\:max-h-30\% {
    max-height: 30% !important;
  }

  .max-md\:w-35\% {
    width: 35% !important;
  }

  .max-md\:h-35\% {
    height: 35% !important;
  }

  .max-md\:min-w-35\% {
    min-width: 35% !important;
  }

  .max-md\:max-w-35\% {
    max-width: 35% !important;
  }

  .max-md\:min-h-35\% {
    min-height: 35% !important;
  }

  .max-md\:max-h-35\% {
    max-height: 35% !important;
  }

  .max-md\:w-40\% {
    width: 40% !important;
  }

  .max-md\:h-40\% {
    height: 40% !important;
  }

  .max-md\:min-w-40\% {
    min-width: 40% !important;
  }

  .max-md\:max-w-40\% {
    max-width: 40% !important;
  }

  .max-md\:min-h-40\% {
    min-height: 40% !important;
  }

  .max-md\:max-h-40\% {
    max-height: 40% !important;
  }

  .max-md\:w-45\% {
    width: 45% !important;
  }

  .max-md\:h-45\% {
    height: 45% !important;
  }

  .max-md\:min-w-45\% {
    min-width: 45% !important;
  }

  .max-md\:max-w-45\% {
    max-width: 45% !important;
  }

  .max-md\:min-h-45\% {
    min-height: 45% !important;
  }

  .max-md\:max-h-45\% {
    max-height: 45% !important;
  }

  .max-md\:w-50\% {
    width: 50% !important;
  }

  .max-md\:h-50\% {
    height: 50% !important;
  }

  .max-md\:min-w-50\% {
    min-width: 50% !important;
  }

  .max-md\:max-w-50\% {
    max-width: 50% !important;
  }

  .max-md\:min-h-50\% {
    min-height: 50% !important;
  }

  .max-md\:max-h-50\% {
    max-height: 50% !important;
  }

  .max-md\:w-55\% {
    width: 55% !important;
  }

  .max-md\:h-55\% {
    height: 55% !important;
  }

  .max-md\:min-w-55\% {
    min-width: 55% !important;
  }

  .max-md\:max-w-55\% {
    max-width: 55% !important;
  }

  .max-md\:min-h-55\% {
    min-height: 55% !important;
  }

  .max-md\:max-h-55\% {
    max-height: 55% !important;
  }

  .max-md\:w-60\% {
    width: 60% !important;
  }

  .max-md\:h-60\% {
    height: 60% !important;
  }

  .max-md\:min-w-60\% {
    min-width: 60% !important;
  }

  .max-md\:max-w-60\% {
    max-width: 60% !important;
  }

  .max-md\:min-h-60\% {
    min-height: 60% !important;
  }

  .max-md\:max-h-60\% {
    max-height: 60% !important;
  }

  .max-md\:w-65\% {
    width: 65% !important;
  }

  .max-md\:h-65\% {
    height: 65% !important;
  }

  .max-md\:min-w-65\% {
    min-width: 65% !important;
  }

  .max-md\:max-w-65\% {
    max-width: 65% !important;
  }

  .max-md\:min-h-65\% {
    min-height: 65% !important;
  }

  .max-md\:max-h-65\% {
    max-height: 65% !important;
  }

  .max-md\:w-70\% {
    width: 70% !important;
  }

  .max-md\:h-70\% {
    height: 70% !important;
  }

  .max-md\:min-w-70\% {
    min-width: 70% !important;
  }

  .max-md\:max-w-70\% {
    max-width: 70% !important;
  }

  .max-md\:min-h-70\% {
    min-height: 70% !important;
  }

  .max-md\:max-h-70\% {
    max-height: 70% !important;
  }

  .max-md\:w-75\% {
    width: 75% !important;
  }

  .max-md\:h-75\% {
    height: 75% !important;
  }

  .max-md\:min-w-75\% {
    min-width: 75% !important;
  }

  .max-md\:max-w-75\% {
    max-width: 75% !important;
  }

  .max-md\:min-h-75\% {
    min-height: 75% !important;
  }

  .max-md\:max-h-75\% {
    max-height: 75% !important;
  }

  .max-md\:w-80\% {
    width: 80% !important;
  }

  .max-md\:h-80\% {
    height: 80% !important;
  }

  .max-md\:min-w-80\% {
    min-width: 80% !important;
  }

  .max-md\:max-w-80\% {
    max-width: 80% !important;
  }

  .max-md\:min-h-80\% {
    min-height: 80% !important;
  }

  .max-md\:max-h-80\% {
    max-height: 80% !important;
  }

  .max-md\:w-85\% {
    width: 85% !important;
  }

  .max-md\:h-85\% {
    height: 85% !important;
  }

  .max-md\:min-w-85\% {
    min-width: 85% !important;
  }

  .max-md\:max-w-85\% {
    max-width: 85% !important;
  }

  .max-md\:min-h-85\% {
    min-height: 85% !important;
  }

  .max-md\:max-h-85\% {
    max-height: 85% !important;
  }

  .max-md\:w-90\% {
    width: 90% !important;
  }

  .max-md\:h-90\% {
    height: 90% !important;
  }

  .max-md\:min-w-90\% {
    min-width: 90% !important;
  }

  .max-md\:max-w-90\% {
    max-width: 90% !important;
  }

  .max-md\:min-h-90\% {
    min-height: 90% !important;
  }

  .max-md\:max-h-90\% {
    max-height: 90% !important;
  }

  .max-md\:w-95\% {
    width: 95% !important;
  }

  .max-md\:h-95\% {
    height: 95% !important;
  }

  .max-md\:min-w-95\% {
    min-width: 95% !important;
  }

  .max-md\:max-w-95\% {
    max-width: 95% !important;
  }

  .max-md\:min-h-95\% {
    min-height: 95% !important;
  }

  .max-md\:max-h-95\% {
    max-height: 95% !important;
  }

  .max-md\:w-100\% {
    width: 100% !important;
  }

  .max-md\:h-100\% {
    height: 100% !important;
  }

  .max-md\:min-w-100\% {
    min-width: 100% !important;
  }

  .max-md\:max-w-100\% {
    max-width: 100% !important;
  }

  .max-md\:min-h-100\% {
    min-height: 100% !important;
  }

  .max-md\:max-h-100\% {
    max-height: 100% !important;
  }

  .max-md\:w-10vw {
    width: 10vw;
  }

  .max-md\:min-w-10vw {
    min-width: 10vw;
  }

  .max-md\:max-w-10vw {
    max-width: 10vw;
  }

  .max-md\:w-20vw {
    width: 20vw;
  }

  .max-md\:min-w-20vw {
    min-width: 20vw;
  }

  .max-md\:max-w-20vw {
    max-width: 20vw;
  }

  .max-md\:w-30vw {
    width: 30vw;
  }

  .max-md\:min-w-30vw {
    min-width: 30vw;
  }

  .max-md\:max-w-30vw {
    max-width: 30vw;
  }

  .max-md\:w-40vw {
    width: 40vw;
  }

  .max-md\:min-w-40vw {
    min-width: 40vw;
  }

  .max-md\:max-w-40vw {
    max-width: 40vw;
  }

  .max-md\:w-50vw {
    width: 50vw;
  }

  .max-md\:min-w-50vw {
    min-width: 50vw;
  }

  .max-md\:max-w-50vw {
    max-width: 50vw;
  }

  .max-md\:w-60vw {
    width: 60vw;
  }

  .max-md\:min-w-60vw {
    min-width: 60vw;
  }

  .max-md\:max-w-60vw {
    max-width: 60vw;
  }

  .max-md\:w-70vw {
    width: 70vw;
  }

  .max-md\:min-w-70vw {
    min-width: 70vw;
  }

  .max-md\:max-w-70vw {
    max-width: 70vw;
  }

  .max-md\:w-80vw {
    width: 80vw;
  }

  .max-md\:min-w-80vw {
    min-width: 80vw;
  }

  .max-md\:max-w-80vw {
    max-width: 80vw;
  }

  .max-md\:w-90vw {
    width: 90vw;
  }

  .max-md\:min-w-90vw {
    min-width: 90vw;
  }

  .max-md\:max-w-90vw {
    max-width: 90vw;
  }

  .max-md\:w-100vw {
    width: 100vw;
  }

  .max-md\:min-w-100vw {
    min-width: 100vw;
  }

  .max-md\:max-w-100vw {
    max-width: 100vw;
  }

  .max-md\:h-10vh {
    height: 10vh;
  }

  .max-md\:min-h-10vh {
    min-height: 10vh;
  }

  .max-md\:max-h-10vh {
    max-height: 10vh;
  }

  .max-md\:h-20vh {
    height: 20vh;
  }

  .max-md\:min-h-20vh {
    min-height: 20vh;
  }

  .max-md\:max-h-20vh {
    max-height: 20vh;
  }

  .max-md\:h-30vh {
    height: 30vh;
  }

  .max-md\:min-h-30vh {
    min-height: 30vh;
  }

  .max-md\:max-h-30vh {
    max-height: 30vh;
  }

  .max-md\:h-40vh {
    height: 40vh;
  }

  .max-md\:min-h-40vh {
    min-height: 40vh;
  }

  .max-md\:max-h-40vh {
    max-height: 40vh;
  }

  .max-md\:h-50vh {
    height: 50vh;
  }

  .max-md\:min-h-50vh {
    min-height: 50vh;
  }

  .max-md\:max-h-50vh {
    max-height: 50vh;
  }

  .max-md\:h-60vh {
    height: 60vh;
  }

  .max-md\:min-h-60vh {
    min-height: 60vh;
  }

  .max-md\:max-h-60vh {
    max-height: 60vh;
  }

  .max-md\:h-70vh {
    height: 70vh;
  }

  .max-md\:min-h-70vh {
    min-height: 70vh;
  }

  .max-md\:max-h-70vh {
    max-height: 70vh;
  }

  .max-md\:h-80vh {
    height: 80vh;
  }

  .max-md\:min-h-80vh {
    min-height: 80vh;
  }

  .max-md\:max-h-80vh {
    max-height: 80vh;
  }

  .max-md\:h-90vh {
    height: 90vh;
  }

  .max-md\:min-h-90vh {
    min-height: 90vh;
  }

  .max-md\:max-h-90vh {
    max-height: 90vh;
  }

  .max-md\:h-100vh {
    height: 100vh;
  }

  .max-md\:min-h-100vh {
    min-height: 100vh;
  }

  .max-md\:max-h-100vh {
    max-height: 100vh;
  }
}

@media (max-width: 640px) {
  .max-sm\:w-unset {
    width: unset !important;
  }

  .max-sm\:h-unset {
    height: unset !important;
  }

  .max-sm\:min-w-unset {
    min-width: unset !important;
  }

  .max-sm\:max-w-unset {
    max-width: unset !important;
  }

  .max-sm\:min-h-unset {
    min-height: unset !important;
  }

  .max-sm\:max-h-unset {
    max-height: unset !important;
  }

  .max-sm\:w-initial {
    width: initial !important;
  }

  .max-sm\:h-initial {
    height: initial !important;
  }

  .max-sm\:min-w-initial {
    min-width: initial !important;
  }

  .max-sm\:max-w-initial {
    max-width: initial !important;
  }

  .max-sm\:min-h-initial {
    min-height: initial !important;
  }

  .max-sm\:max-h-initial {
    max-height: initial !important;
  }

  .max-sm\:w-auto {
    width: auto !important;
  }

  .max-sm\:h-auto {
    height: auto !important;
  }

  .max-sm\:min-w-auto {
    min-width: auto !important;
  }

  .max-sm\:max-w-auto {
    max-width: auto !important;
  }

  .max-sm\:min-h-auto {
    min-height: auto !important;
  }

  .max-sm\:max-h-auto {
    max-height: auto !important;
  }

  .max-sm\:w-0 {
    width: 0 !important;
  }

  .max-sm\:h-0 {
    height: 0 !important;
  }

  .max-sm\:min-w-0 {
    min-width: 0 !important;
  }

  .max-sm\:max-w-0 {
    max-width: 0 !important;
  }

  .max-sm\:min-h-0 {
    min-height: 0 !important;
  }

  .max-sm\:max-h-0 {
    max-height: 0 !important;
  }

  .max-sm\:w-1 {
    width: 4px !important;
  }

  .max-sm\:h-1 {
    height: 4px !important;
  }

  .max-sm\:min-w-1 {
    min-width: 4px !important;
  }

  .max-sm\:max-w-1 {
    max-width: 4px !important;
  }

  .max-sm\:min-h-1 {
    min-height: 4px !important;
  }

  .max-sm\:max-h-1 {
    max-height: 4px !important;
  }

  .max-sm\:w-2 {
    width: 8px !important;
  }

  .max-sm\:h-2 {
    height: 8px !important;
  }

  .max-sm\:min-w-2 {
    min-width: 8px !important;
  }

  .max-sm\:max-w-2 {
    max-width: 8px !important;
  }

  .max-sm\:min-h-2 {
    min-height: 8px !important;
  }

  .max-sm\:max-h-2 {
    max-height: 8px !important;
  }

  .max-sm\:w-3 {
    width: 12px !important;
  }

  .max-sm\:h-3 {
    height: 12px !important;
  }

  .max-sm\:min-w-3 {
    min-width: 12px !important;
  }

  .max-sm\:max-w-3 {
    max-width: 12px !important;
  }

  .max-sm\:min-h-3 {
    min-height: 12px !important;
  }

  .max-sm\:max-h-3 {
    max-height: 12px !important;
  }

  .max-sm\:w-4 {
    width: 16px !important;
  }

  .max-sm\:h-4 {
    height: 16px !important;
  }

  .max-sm\:min-w-4 {
    min-width: 16px !important;
  }

  .max-sm\:max-w-4 {
    max-width: 16px !important;
  }

  .max-sm\:min-h-4 {
    min-height: 16px !important;
  }

  .max-sm\:max-h-4 {
    max-height: 16px !important;
  }

  .max-sm\:w-5 {
    width: 20px !important;
  }

  .max-sm\:h-5 {
    height: 20px !important;
  }

  .max-sm\:min-w-5 {
    min-width: 20px !important;
  }

  .max-sm\:max-w-5 {
    max-width: 20px !important;
  }

  .max-sm\:min-h-5 {
    min-height: 20px !important;
  }

  .max-sm\:max-h-5 {
    max-height: 20px !important;
  }

  .max-sm\:w-6 {
    width: 24px !important;
  }

  .max-sm\:h-6 {
    height: 24px !important;
  }

  .max-sm\:min-w-6 {
    min-width: 24px !important;
  }

  .max-sm\:max-w-6 {
    max-width: 24px !important;
  }

  .max-sm\:min-h-6 {
    min-height: 24px !important;
  }

  .max-sm\:max-h-6 {
    max-height: 24px !important;
  }

  .max-sm\:w-7 {
    width: 28px !important;
  }

  .max-sm\:h-7 {
    height: 28px !important;
  }

  .max-sm\:min-w-7 {
    min-width: 28px !important;
  }

  .max-sm\:max-w-7 {
    max-width: 28px !important;
  }

  .max-sm\:min-h-7 {
    min-height: 28px !important;
  }

  .max-sm\:max-h-7 {
    max-height: 28px !important;
  }

  .max-sm\:w-8 {
    width: 32px !important;
  }

  .max-sm\:h-8 {
    height: 32px !important;
  }

  .max-sm\:min-w-8 {
    min-width: 32px !important;
  }

  .max-sm\:max-w-8 {
    max-width: 32px !important;
  }

  .max-sm\:min-h-8 {
    min-height: 32px !important;
  }

  .max-sm\:max-h-8 {
    max-height: 32px !important;
  }

  .max-sm\:w-9 {
    width: 36px !important;
  }

  .max-sm\:h-9 {
    height: 36px !important;
  }

  .max-sm\:min-w-9 {
    min-width: 36px !important;
  }

  .max-sm\:max-w-9 {
    max-width: 36px !important;
  }

  .max-sm\:min-h-9 {
    min-height: 36px !important;
  }

  .max-sm\:max-h-9 {
    max-height: 36px !important;
  }

  .max-sm\:w-10 {
    width: 40px !important;
  }

  .max-sm\:h-10 {
    height: 40px !important;
  }

  .max-sm\:min-w-10 {
    min-width: 40px !important;
  }

  .max-sm\:max-w-10 {
    max-width: 40px !important;
  }

  .max-sm\:min-h-10 {
    min-height: 40px !important;
  }

  .max-sm\:max-h-10 {
    max-height: 40px !important;
  }

  .max-sm\:w-11 {
    width: 44px !important;
  }

  .max-sm\:h-11 {
    height: 44px !important;
  }

  .max-sm\:min-w-11 {
    min-width: 44px !important;
  }

  .max-sm\:max-w-11 {
    max-width: 44px !important;
  }

  .max-sm\:min-h-11 {
    min-height: 44px !important;
  }

  .max-sm\:max-h-11 {
    max-height: 44px !important;
  }

  .max-sm\:w-12 {
    width: 48px !important;
  }

  .max-sm\:h-12 {
    height: 48px !important;
  }

  .max-sm\:min-w-12 {
    min-width: 48px !important;
  }

  .max-sm\:max-w-12 {
    max-width: 48px !important;
  }

  .max-sm\:min-h-12 {
    min-height: 48px !important;
  }

  .max-sm\:max-h-12 {
    max-height: 48px !important;
  }

  .max-sm\:w-14 {
    width: 56px !important;
  }

  .max-sm\:h-14 {
    height: 56px !important;
  }

  .max-sm\:min-w-14 {
    min-width: 56px !important;
  }

  .max-sm\:max-w-14 {
    max-width: 56px !important;
  }

  .max-sm\:min-h-14 {
    min-height: 56px !important;
  }

  .max-sm\:max-h-14 {
    max-height: 56px !important;
  }

  .max-sm\:w-15 {
    width: 60px !important;
  }

  .max-sm\:h-15 {
    height: 60px !important;
  }

  .max-sm\:min-w-15 {
    min-width: 60px !important;
  }

  .max-sm\:max-w-15 {
    max-width: 60px !important;
  }

  .max-sm\:min-h-15 {
    min-height: 60px !important;
  }

  .max-sm\:max-h-15 {
    max-height: 60px !important;
  }

  .max-sm\:w-16 {
    width: 64px !important;
  }

  .max-sm\:h-16 {
    height: 64px !important;
  }

  .max-sm\:min-w-16 {
    min-width: 64px !important;
  }

  .max-sm\:max-w-16 {
    max-width: 64px !important;
  }

  .max-sm\:min-h-16 {
    min-height: 64px !important;
  }

  .max-sm\:max-h-16 {
    max-height: 64px !important;
  }

  .max-sm\:w-18 {
    width: 72px !important;
  }

  .max-sm\:h-18 {
    height: 72px !important;
  }

  .max-sm\:min-w-18 {
    min-width: 72px !important;
  }

  .max-sm\:max-w-18 {
    max-width: 72px !important;
  }

  .max-sm\:min-h-18 {
    min-height: 72px !important;
  }

  .max-sm\:max-h-18 {
    max-height: 72px !important;
  }

  .max-sm\:w-20 {
    width: 80px !important;
  }

  .max-sm\:h-20 {
    height: 80px !important;
  }

  .max-sm\:min-w-20 {
    min-width: 80px !important;
  }

  .max-sm\:max-w-20 {
    max-width: 80px !important;
  }

  .max-sm\:min-h-20 {
    min-height: 80px !important;
  }

  .max-sm\:max-h-20 {
    max-height: 80px !important;
  }

  .max-sm\:w-25 {
    width: 100px !important;
  }

  .max-sm\:h-25 {
    height: 100px !important;
  }

  .max-sm\:min-w-25 {
    min-width: 100px !important;
  }

  .max-sm\:max-w-25 {
    max-width: 100px !important;
  }

  .max-sm\:min-h-25 {
    min-height: 100px !important;
  }

  .max-sm\:max-h-25 {
    max-height: 100px !important;
  }

  .max-sm\:w-30 {
    width: 120px !important;
  }

  .max-sm\:h-30 {
    height: 120px !important;
  }

  .max-sm\:min-w-30 {
    min-width: 120px !important;
  }

  .max-sm\:max-w-30 {
    max-width: 120px !important;
  }

  .max-sm\:min-h-30 {
    min-height: 120px !important;
  }

  .max-sm\:max-h-30 {
    max-height: 120px !important;
  }

  .max-sm\:w-35 {
    width: 140px !important;
  }

  .max-sm\:h-35 {
    height: 140px !important;
  }

  .max-sm\:min-w-35 {
    min-width: 140px !important;
  }

  .max-sm\:max-w-35 {
    max-width: 140px !important;
  }

  .max-sm\:min-h-35 {
    min-height: 140px !important;
  }

  .max-sm\:max-h-35 {
    max-height: 140px !important;
  }

  .max-sm\:w-40 {
    width: 160px !important;
  }

  .max-sm\:h-40 {
    height: 160px !important;
  }

  .max-sm\:min-w-40 {
    min-width: 160px !important;
  }

  .max-sm\:max-w-40 {
    max-width: 160px !important;
  }

  .max-sm\:min-h-40 {
    min-height: 160px !important;
  }

  .max-sm\:max-h-40 {
    max-height: 160px !important;
  }

  .max-sm\:w-45 {
    width: 180px !important;
  }

  .max-sm\:h-45 {
    height: 180px !important;
  }

  .max-sm\:min-w-45 {
    min-width: 180px !important;
  }

  .max-sm\:max-w-45 {
    max-width: 180px !important;
  }

  .max-sm\:min-h-45 {
    min-height: 180px !important;
  }

  .max-sm\:max-h-45 {
    max-height: 180px !important;
  }

  .max-sm\:w-50 {
    width: 200px !important;
  }

  .max-sm\:h-50 {
    height: 200px !important;
  }

  .max-sm\:min-w-50 {
    min-width: 200px !important;
  }

  .max-sm\:max-w-50 {
    max-width: 200px !important;
  }

  .max-sm\:min-h-50 {
    min-height: 200px !important;
  }

  .max-sm\:max-h-50 {
    max-height: 200px !important;
  }

  .max-sm\:w-55 {
    width: 220px !important;
  }

  .max-sm\:h-55 {
    height: 220px !important;
  }

  .max-sm\:min-w-55 {
    min-width: 220px !important;
  }

  .max-sm\:max-w-55 {
    max-width: 220px !important;
  }

  .max-sm\:min-h-55 {
    min-height: 220px !important;
  }

  .max-sm\:max-h-55 {
    max-height: 220px !important;
  }

  .max-sm\:w-60 {
    width: 240px !important;
  }

  .max-sm\:h-60 {
    height: 240px !important;
  }

  .max-sm\:min-w-60 {
    min-width: 240px !important;
  }

  .max-sm\:max-w-60 {
    max-width: 240px !important;
  }

  .max-sm\:min-h-60 {
    min-height: 240px !important;
  }

  .max-sm\:max-h-60 {
    max-height: 240px !important;
  }

  .max-sm\:w-65 {
    width: 260px !important;
  }

  .max-sm\:h-65 {
    height: 260px !important;
  }

  .max-sm\:min-w-65 {
    min-width: 260px !important;
  }

  .max-sm\:max-w-65 {
    max-width: 260px !important;
  }

  .max-sm\:min-h-65 {
    min-height: 260px !important;
  }

  .max-sm\:max-h-65 {
    max-height: 260px !important;
  }

  .max-sm\:w-70 {
    width: 280px !important;
  }

  .max-sm\:h-70 {
    height: 280px !important;
  }

  .max-sm\:min-w-70 {
    min-width: 280px !important;
  }

  .max-sm\:max-w-70 {
    max-width: 280px !important;
  }

  .max-sm\:min-h-70 {
    min-height: 280px !important;
  }

  .max-sm\:max-h-70 {
    max-height: 280px !important;
  }

  .max-sm\:w-75 {
    width: 300px !important;
  }

  .max-sm\:h-75 {
    height: 300px !important;
  }

  .max-sm\:min-w-75 {
    min-width: 300px !important;
  }

  .max-sm\:max-w-75 {
    max-width: 300px !important;
  }

  .max-sm\:min-h-75 {
    min-height: 300px !important;
  }

  .max-sm\:max-h-75 {
    max-height: 300px !important;
  }

  .max-sm\:w-80 {
    width: 320px !important;
  }

  .max-sm\:h-80 {
    height: 320px !important;
  }

  .max-sm\:min-w-80 {
    min-width: 320px !important;
  }

  .max-sm\:max-w-80 {
    max-width: 320px !important;
  }

  .max-sm\:min-h-80 {
    min-height: 320px !important;
  }

  .max-sm\:max-h-80 {
    max-height: 320px !important;
  }

  .max-sm\:w-85 {
    width: 340px !important;
  }

  .max-sm\:h-85 {
    height: 340px !important;
  }

  .max-sm\:min-w-85 {
    min-width: 340px !important;
  }

  .max-sm\:max-w-85 {
    max-width: 340px !important;
  }

  .max-sm\:min-h-85 {
    min-height: 340px !important;
  }

  .max-sm\:max-h-85 {
    max-height: 340px !important;
  }

  .max-sm\:w-90 {
    width: 360px !important;
  }

  .max-sm\:h-90 {
    height: 360px !important;
  }

  .max-sm\:min-w-90 {
    min-width: 360px !important;
  }

  .max-sm\:max-w-90 {
    max-width: 360px !important;
  }

  .max-sm\:min-h-90 {
    min-height: 360px !important;
  }

  .max-sm\:max-h-90 {
    max-height: 360px !important;
  }

  .max-sm\:w-95 {
    width: 380px !important;
  }

  .max-sm\:h-95 {
    height: 380px !important;
  }

  .max-sm\:min-w-95 {
    min-width: 380px !important;
  }

  .max-sm\:max-w-95 {
    max-width: 380px !important;
  }

  .max-sm\:min-h-95 {
    min-height: 380px !important;
  }

  .max-sm\:max-h-95 {
    max-height: 380px !important;
  }

  .max-sm\:w-100 {
    width: 400px !important;
  }

  .max-sm\:h-100 {
    height: 400px !important;
  }

  .max-sm\:min-w-100 {
    min-width: 400px !important;
  }

  .max-sm\:max-w-100 {
    max-width: 400px !important;
  }

  .max-sm\:min-h-100 {
    min-height: 400px !important;
  }

  .max-sm\:max-h-100 {
    max-height: 400px !important;
  }

  .max-sm\:w-110 {
    width: 440px !important;
  }

  .max-sm\:h-110 {
    height: 440px !important;
  }

  .max-sm\:min-w-110 {
    min-width: 440px !important;
  }

  .max-sm\:max-w-110 {
    max-width: 440px !important;
  }

  .max-sm\:min-h-110 {
    min-height: 440px !important;
  }

  .max-sm\:max-h-110 {
    max-height: 440px !important;
  }

  .max-sm\:w-120 {
    width: 480px !important;
  }

  .max-sm\:h-120 {
    height: 480px !important;
  }

  .max-sm\:min-w-120 {
    min-width: 480px !important;
  }

  .max-sm\:max-w-120 {
    max-width: 480px !important;
  }

  .max-sm\:min-h-120 {
    min-height: 480px !important;
  }

  .max-sm\:max-h-120 {
    max-height: 480px !important;
  }

  .max-sm\:w-130 {
    width: 520px !important;
  }

  .max-sm\:h-130 {
    height: 520px !important;
  }

  .max-sm\:min-w-130 {
    min-width: 520px !important;
  }

  .max-sm\:max-w-130 {
    max-width: 520px !important;
  }

  .max-sm\:min-h-130 {
    min-height: 520px !important;
  }

  .max-sm\:max-h-130 {
    max-height: 520px !important;
  }

  .max-sm\:w-140 {
    width: 560px !important;
  }

  .max-sm\:h-140 {
    height: 560px !important;
  }

  .max-sm\:min-w-140 {
    min-width: 560px !important;
  }

  .max-sm\:max-w-140 {
    max-width: 560px !important;
  }

  .max-sm\:min-h-140 {
    min-height: 560px !important;
  }

  .max-sm\:max-h-140 {
    max-height: 560px !important;
  }

  .max-sm\:w-150 {
    width: 600px !important;
  }

  .max-sm\:h-150 {
    height: 600px !important;
  }

  .max-sm\:min-w-150 {
    min-width: 600px !important;
  }

  .max-sm\:max-w-150 {
    max-width: 600px !important;
  }

  .max-sm\:min-h-150 {
    min-height: 600px !important;
  }

  .max-sm\:max-h-150 {
    max-height: 600px !important;
  }

  .max-sm\:w-full {
    width: 100% !important;
  }

  .max-sm\:h-full {
    height: 100% !important;
  }

  .max-sm\:min-w-full {
    min-width: 100% !important;
  }

  .max-sm\:max-w-full {
    max-width: 100% !important;
  }

  .max-sm\:min-h-full {
    min-height: 100% !important;
  }

  .max-sm\:max-h-full {
    max-height: 100% !important;
  }

  .max-sm\:w-10\% {
    width: 10% !important;
  }

  .max-sm\:h-10\% {
    height: 10% !important;
  }

  .max-sm\:min-w-10\% {
    min-width: 10% !important;
  }

  .max-sm\:max-w-10\% {
    max-width: 10% !important;
  }

  .max-sm\:min-h-10\% {
    min-height: 10% !important;
  }

  .max-sm\:max-h-10\% {
    max-height: 10% !important;
  }

  .max-sm\:w-15\% {
    width: 15% !important;
  }

  .max-sm\:h-15\% {
    height: 15% !important;
  }

  .max-sm\:min-w-15\% {
    min-width: 15% !important;
  }

  .max-sm\:max-w-15\% {
    max-width: 15% !important;
  }

  .max-sm\:min-h-15\% {
    min-height: 15% !important;
  }

  .max-sm\:max-h-15\% {
    max-height: 15% !important;
  }

  .max-sm\:w-20\% {
    width: 20% !important;
  }

  .max-sm\:h-20\% {
    height: 20% !important;
  }

  .max-sm\:min-w-20\% {
    min-width: 20% !important;
  }

  .max-sm\:max-w-20\% {
    max-width: 20% !important;
  }

  .max-sm\:min-h-20\% {
    min-height: 20% !important;
  }

  .max-sm\:max-h-20\% {
    max-height: 20% !important;
  }

  .max-sm\:w-25\% {
    width: 25% !important;
  }

  .max-sm\:h-25\% {
    height: 25% !important;
  }

  .max-sm\:min-w-25\% {
    min-width: 25% !important;
  }

  .max-sm\:max-w-25\% {
    max-width: 25% !important;
  }

  .max-sm\:min-h-25\% {
    min-height: 25% !important;
  }

  .max-sm\:max-h-25\% {
    max-height: 25% !important;
  }

  .max-sm\:w-30\% {
    width: 30% !important;
  }

  .max-sm\:h-30\% {
    height: 30% !important;
  }

  .max-sm\:min-w-30\% {
    min-width: 30% !important;
  }

  .max-sm\:max-w-30\% {
    max-width: 30% !important;
  }

  .max-sm\:min-h-30\% {
    min-height: 30% !important;
  }

  .max-sm\:max-h-30\% {
    max-height: 30% !important;
  }

  .max-sm\:w-35\% {
    width: 35% !important;
  }

  .max-sm\:h-35\% {
    height: 35% !important;
  }

  .max-sm\:min-w-35\% {
    min-width: 35% !important;
  }

  .max-sm\:max-w-35\% {
    max-width: 35% !important;
  }

  .max-sm\:min-h-35\% {
    min-height: 35% !important;
  }

  .max-sm\:max-h-35\% {
    max-height: 35% !important;
  }

  .max-sm\:w-40\% {
    width: 40% !important;
  }

  .max-sm\:h-40\% {
    height: 40% !important;
  }

  .max-sm\:min-w-40\% {
    min-width: 40% !important;
  }

  .max-sm\:max-w-40\% {
    max-width: 40% !important;
  }

  .max-sm\:min-h-40\% {
    min-height: 40% !important;
  }

  .max-sm\:max-h-40\% {
    max-height: 40% !important;
  }

  .max-sm\:w-45\% {
    width: 45% !important;
  }

  .max-sm\:h-45\% {
    height: 45% !important;
  }

  .max-sm\:min-w-45\% {
    min-width: 45% !important;
  }

  .max-sm\:max-w-45\% {
    max-width: 45% !important;
  }

  .max-sm\:min-h-45\% {
    min-height: 45% !important;
  }

  .max-sm\:max-h-45\% {
    max-height: 45% !important;
  }

  .max-sm\:w-50\% {
    width: 50% !important;
  }

  .max-sm\:h-50\% {
    height: 50% !important;
  }

  .max-sm\:min-w-50\% {
    min-width: 50% !important;
  }

  .max-sm\:max-w-50\% {
    max-width: 50% !important;
  }

  .max-sm\:min-h-50\% {
    min-height: 50% !important;
  }

  .max-sm\:max-h-50\% {
    max-height: 50% !important;
  }

  .max-sm\:w-55\% {
    width: 55% !important;
  }

  .max-sm\:h-55\% {
    height: 55% !important;
  }

  .max-sm\:min-w-55\% {
    min-width: 55% !important;
  }

  .max-sm\:max-w-55\% {
    max-width: 55% !important;
  }

  .max-sm\:min-h-55\% {
    min-height: 55% !important;
  }

  .max-sm\:max-h-55\% {
    max-height: 55% !important;
  }

  .max-sm\:w-60\% {
    width: 60% !important;
  }

  .max-sm\:h-60\% {
    height: 60% !important;
  }

  .max-sm\:min-w-60\% {
    min-width: 60% !important;
  }

  .max-sm\:max-w-60\% {
    max-width: 60% !important;
  }

  .max-sm\:min-h-60\% {
    min-height: 60% !important;
  }

  .max-sm\:max-h-60\% {
    max-height: 60% !important;
  }

  .max-sm\:w-65\% {
    width: 65% !important;
  }

  .max-sm\:h-65\% {
    height: 65% !important;
  }

  .max-sm\:min-w-65\% {
    min-width: 65% !important;
  }

  .max-sm\:max-w-65\% {
    max-width: 65% !important;
  }

  .max-sm\:min-h-65\% {
    min-height: 65% !important;
  }

  .max-sm\:max-h-65\% {
    max-height: 65% !important;
  }

  .max-sm\:w-70\% {
    width: 70% !important;
  }

  .max-sm\:h-70\% {
    height: 70% !important;
  }

  .max-sm\:min-w-70\% {
    min-width: 70% !important;
  }

  .max-sm\:max-w-70\% {
    max-width: 70% !important;
  }

  .max-sm\:min-h-70\% {
    min-height: 70% !important;
  }

  .max-sm\:max-h-70\% {
    max-height: 70% !important;
  }

  .max-sm\:w-75\% {
    width: 75% !important;
  }

  .max-sm\:h-75\% {
    height: 75% !important;
  }

  .max-sm\:min-w-75\% {
    min-width: 75% !important;
  }

  .max-sm\:max-w-75\% {
    max-width: 75% !important;
  }

  .max-sm\:min-h-75\% {
    min-height: 75% !important;
  }

  .max-sm\:max-h-75\% {
    max-height: 75% !important;
  }

  .max-sm\:w-80\% {
    width: 80% !important;
  }

  .max-sm\:h-80\% {
    height: 80% !important;
  }

  .max-sm\:min-w-80\% {
    min-width: 80% !important;
  }

  .max-sm\:max-w-80\% {
    max-width: 80% !important;
  }

  .max-sm\:min-h-80\% {
    min-height: 80% !important;
  }

  .max-sm\:max-h-80\% {
    max-height: 80% !important;
  }

  .max-sm\:w-85\% {
    width: 85% !important;
  }

  .max-sm\:h-85\% {
    height: 85% !important;
  }

  .max-sm\:min-w-85\% {
    min-width: 85% !important;
  }

  .max-sm\:max-w-85\% {
    max-width: 85% !important;
  }

  .max-sm\:min-h-85\% {
    min-height: 85% !important;
  }

  .max-sm\:max-h-85\% {
    max-height: 85% !important;
  }

  .max-sm\:w-90\% {
    width: 90% !important;
  }

  .max-sm\:h-90\% {
    height: 90% !important;
  }

  .max-sm\:min-w-90\% {
    min-width: 90% !important;
  }

  .max-sm\:max-w-90\% {
    max-width: 90% !important;
  }

  .max-sm\:min-h-90\% {
    min-height: 90% !important;
  }

  .max-sm\:max-h-90\% {
    max-height: 90% !important;
  }

  .max-sm\:w-95\% {
    width: 95% !important;
  }

  .max-sm\:h-95\% {
    height: 95% !important;
  }

  .max-sm\:min-w-95\% {
    min-width: 95% !important;
  }

  .max-sm\:max-w-95\% {
    max-width: 95% !important;
  }

  .max-sm\:min-h-95\% {
    min-height: 95% !important;
  }

  .max-sm\:max-h-95\% {
    max-height: 95% !important;
  }

  .max-sm\:w-100\% {
    width: 100% !important;
  }

  .max-sm\:h-100\% {
    height: 100% !important;
  }

  .max-sm\:min-w-100\% {
    min-width: 100% !important;
  }

  .max-sm\:max-w-100\% {
    max-width: 100% !important;
  }

  .max-sm\:min-h-100\% {
    min-height: 100% !important;
  }

  .max-sm\:max-h-100\% {
    max-height: 100% !important;
  }

  .max-sm\:w-10vw {
    width: 10vw;
  }

  .max-sm\:min-w-10vw {
    min-width: 10vw;
  }

  .max-sm\:max-w-10vw {
    max-width: 10vw;
  }

  .max-sm\:w-20vw {
    width: 20vw;
  }

  .max-sm\:min-w-20vw {
    min-width: 20vw;
  }

  .max-sm\:max-w-20vw {
    max-width: 20vw;
  }

  .max-sm\:w-30vw {
    width: 30vw;
  }

  .max-sm\:min-w-30vw {
    min-width: 30vw;
  }

  .max-sm\:max-w-30vw {
    max-width: 30vw;
  }

  .max-sm\:w-40vw {
    width: 40vw;
  }

  .max-sm\:min-w-40vw {
    min-width: 40vw;
  }

  .max-sm\:max-w-40vw {
    max-width: 40vw;
  }

  .max-sm\:w-50vw {
    width: 50vw;
  }

  .max-sm\:min-w-50vw {
    min-width: 50vw;
  }

  .max-sm\:max-w-50vw {
    max-width: 50vw;
  }

  .max-sm\:w-60vw {
    width: 60vw;
  }

  .max-sm\:min-w-60vw {
    min-width: 60vw;
  }

  .max-sm\:max-w-60vw {
    max-width: 60vw;
  }

  .max-sm\:w-70vw {
    width: 70vw;
  }

  .max-sm\:min-w-70vw {
    min-width: 70vw;
  }

  .max-sm\:max-w-70vw {
    max-width: 70vw;
  }

  .max-sm\:w-80vw {
    width: 80vw;
  }

  .max-sm\:min-w-80vw {
    min-width: 80vw;
  }

  .max-sm\:max-w-80vw {
    max-width: 80vw;
  }

  .max-sm\:w-90vw {
    width: 90vw;
  }

  .max-sm\:min-w-90vw {
    min-width: 90vw;
  }

  .max-sm\:max-w-90vw {
    max-width: 90vw;
  }

  .max-sm\:w-100vw {
    width: 100vw;
  }

  .max-sm\:min-w-100vw {
    min-width: 100vw;
  }

  .max-sm\:max-w-100vw {
    max-width: 100vw;
  }

  .max-sm\:h-10vh {
    height: 10vh;
  }

  .max-sm\:min-h-10vh {
    min-height: 10vh;
  }

  .max-sm\:max-h-10vh {
    max-height: 10vh;
  }

  .max-sm\:h-20vh {
    height: 20vh;
  }

  .max-sm\:min-h-20vh {
    min-height: 20vh;
  }

  .max-sm\:max-h-20vh {
    max-height: 20vh;
  }

  .max-sm\:h-30vh {
    height: 30vh;
  }

  .max-sm\:min-h-30vh {
    min-height: 30vh;
  }

  .max-sm\:max-h-30vh {
    max-height: 30vh;
  }

  .max-sm\:h-40vh {
    height: 40vh;
  }

  .max-sm\:min-h-40vh {
    min-height: 40vh;
  }

  .max-sm\:max-h-40vh {
    max-height: 40vh;
  }

  .max-sm\:h-50vh {
    height: 50vh;
  }

  .max-sm\:min-h-50vh {
    min-height: 50vh;
  }

  .max-sm\:max-h-50vh {
    max-height: 50vh;
  }

  .max-sm\:h-60vh {
    height: 60vh;
  }

  .max-sm\:min-h-60vh {
    min-height: 60vh;
  }

  .max-sm\:max-h-60vh {
    max-height: 60vh;
  }

  .max-sm\:h-70vh {
    height: 70vh;
  }

  .max-sm\:min-h-70vh {
    min-height: 70vh;
  }

  .max-sm\:max-h-70vh {
    max-height: 70vh;
  }

  .max-sm\:h-80vh {
    height: 80vh;
  }

  .max-sm\:min-h-80vh {
    min-height: 80vh;
  }

  .max-sm\:max-h-80vh {
    max-height: 80vh;
  }

  .max-sm\:h-90vh {
    height: 90vh;
  }

  .max-sm\:min-h-90vh {
    min-height: 90vh;
  }

  .max-sm\:max-h-90vh {
    max-height: 90vh;
  }

  .max-sm\:h-100vh {
    height: 100vh;
  }

  .max-sm\:min-h-100vh {
    min-height: 100vh;
  }

  .max-sm\:max-h-100vh {
    max-height: 100vh;
  }
}

@media (min-width: 641px) {
  .sm\:w-unset {
    width: unset !important;
  }

  .sm\:h-unset {
    height: unset !important;
  }

  .sm\:min-w-unset {
    min-width: unset !important;
  }

  .sm\:max-w-unset {
    max-width: unset !important;
  }

  .sm\:min-h-unset {
    min-height: unset !important;
  }

  .sm\:max-h-unset {
    max-height: unset !important;
  }

  .sm\:w-initial {
    width: initial !important;
  }

  .sm\:h-initial {
    height: initial !important;
  }

  .sm\:min-w-initial {
    min-width: initial !important;
  }

  .sm\:max-w-initial {
    max-width: initial !important;
  }

  .sm\:min-h-initial {
    min-height: initial !important;
  }

  .sm\:max-h-initial {
    max-height: initial !important;
  }

  .sm\:w-auto {
    width: auto !important;
  }

  .sm\:h-auto {
    height: auto !important;
  }

  .sm\:min-w-auto {
    min-width: auto !important;
  }

  .sm\:max-w-auto {
    max-width: auto !important;
  }

  .sm\:min-h-auto {
    min-height: auto !important;
  }

  .sm\:max-h-auto {
    max-height: auto !important;
  }

  .sm\:w-0 {
    width: 0 !important;
  }

  .sm\:h-0 {
    height: 0 !important;
  }

  .sm\:min-w-0 {
    min-width: 0 !important;
  }

  .sm\:max-w-0 {
    max-width: 0 !important;
  }

  .sm\:min-h-0 {
    min-height: 0 !important;
  }

  .sm\:max-h-0 {
    max-height: 0 !important;
  }

  .sm\:w-1 {
    width: 4px !important;
  }

  .sm\:h-1 {
    height: 4px !important;
  }

  .sm\:min-w-1 {
    min-width: 4px !important;
  }

  .sm\:max-w-1 {
    max-width: 4px !important;
  }

  .sm\:min-h-1 {
    min-height: 4px !important;
  }

  .sm\:max-h-1 {
    max-height: 4px !important;
  }

  .sm\:w-2 {
    width: 8px !important;
  }

  .sm\:h-2 {
    height: 8px !important;
  }

  .sm\:min-w-2 {
    min-width: 8px !important;
  }

  .sm\:max-w-2 {
    max-width: 8px !important;
  }

  .sm\:min-h-2 {
    min-height: 8px !important;
  }

  .sm\:max-h-2 {
    max-height: 8px !important;
  }

  .sm\:w-3 {
    width: 12px !important;
  }

  .sm\:h-3 {
    height: 12px !important;
  }

  .sm\:min-w-3 {
    min-width: 12px !important;
  }

  .sm\:max-w-3 {
    max-width: 12px !important;
  }

  .sm\:min-h-3 {
    min-height: 12px !important;
  }

  .sm\:max-h-3 {
    max-height: 12px !important;
  }

  .sm\:w-4 {
    width: 16px !important;
  }

  .sm\:h-4 {
    height: 16px !important;
  }

  .sm\:min-w-4 {
    min-width: 16px !important;
  }

  .sm\:max-w-4 {
    max-width: 16px !important;
  }

  .sm\:min-h-4 {
    min-height: 16px !important;
  }

  .sm\:max-h-4 {
    max-height: 16px !important;
  }

  .sm\:w-5 {
    width: 20px !important;
  }

  .sm\:h-5 {
    height: 20px !important;
  }

  .sm\:min-w-5 {
    min-width: 20px !important;
  }

  .sm\:max-w-5 {
    max-width: 20px !important;
  }

  .sm\:min-h-5 {
    min-height: 20px !important;
  }

  .sm\:max-h-5 {
    max-height: 20px !important;
  }

  .sm\:w-6 {
    width: 24px !important;
  }

  .sm\:h-6 {
    height: 24px !important;
  }

  .sm\:min-w-6 {
    min-width: 24px !important;
  }

  .sm\:max-w-6 {
    max-width: 24px !important;
  }

  .sm\:min-h-6 {
    min-height: 24px !important;
  }

  .sm\:max-h-6 {
    max-height: 24px !important;
  }

  .sm\:w-7 {
    width: 28px !important;
  }

  .sm\:h-7 {
    height: 28px !important;
  }

  .sm\:min-w-7 {
    min-width: 28px !important;
  }

  .sm\:max-w-7 {
    max-width: 28px !important;
  }

  .sm\:min-h-7 {
    min-height: 28px !important;
  }

  .sm\:max-h-7 {
    max-height: 28px !important;
  }

  .sm\:w-8 {
    width: 32px !important;
  }

  .sm\:h-8 {
    height: 32px !important;
  }

  .sm\:min-w-8 {
    min-width: 32px !important;
  }

  .sm\:max-w-8 {
    max-width: 32px !important;
  }

  .sm\:min-h-8 {
    min-height: 32px !important;
  }

  .sm\:max-h-8 {
    max-height: 32px !important;
  }

  .sm\:w-9 {
    width: 36px !important;
  }

  .sm\:h-9 {
    height: 36px !important;
  }

  .sm\:min-w-9 {
    min-width: 36px !important;
  }

  .sm\:max-w-9 {
    max-width: 36px !important;
  }

  .sm\:min-h-9 {
    min-height: 36px !important;
  }

  .sm\:max-h-9 {
    max-height: 36px !important;
  }

  .sm\:w-10 {
    width: 40px !important;
  }

  .sm\:h-10 {
    height: 40px !important;
  }

  .sm\:min-w-10 {
    min-width: 40px !important;
  }

  .sm\:max-w-10 {
    max-width: 40px !important;
  }

  .sm\:min-h-10 {
    min-height: 40px !important;
  }

  .sm\:max-h-10 {
    max-height: 40px !important;
  }

  .sm\:w-11 {
    width: 44px !important;
  }

  .sm\:h-11 {
    height: 44px !important;
  }

  .sm\:min-w-11 {
    min-width: 44px !important;
  }

  .sm\:max-w-11 {
    max-width: 44px !important;
  }

  .sm\:min-h-11 {
    min-height: 44px !important;
  }

  .sm\:max-h-11 {
    max-height: 44px !important;
  }

  .sm\:w-12 {
    width: 48px !important;
  }

  .sm\:h-12 {
    height: 48px !important;
  }

  .sm\:min-w-12 {
    min-width: 48px !important;
  }

  .sm\:max-w-12 {
    max-width: 48px !important;
  }

  .sm\:min-h-12 {
    min-height: 48px !important;
  }

  .sm\:max-h-12 {
    max-height: 48px !important;
  }

  .sm\:w-14 {
    width: 56px !important;
  }

  .sm\:h-14 {
    height: 56px !important;
  }

  .sm\:min-w-14 {
    min-width: 56px !important;
  }

  .sm\:max-w-14 {
    max-width: 56px !important;
  }

  .sm\:min-h-14 {
    min-height: 56px !important;
  }

  .sm\:max-h-14 {
    max-height: 56px !important;
  }

  .sm\:w-15 {
    width: 60px !important;
  }

  .sm\:h-15 {
    height: 60px !important;
  }

  .sm\:min-w-15 {
    min-width: 60px !important;
  }

  .sm\:max-w-15 {
    max-width: 60px !important;
  }

  .sm\:min-h-15 {
    min-height: 60px !important;
  }

  .sm\:max-h-15 {
    max-height: 60px !important;
  }

  .sm\:w-16 {
    width: 64px !important;
  }

  .sm\:h-16 {
    height: 64px !important;
  }

  .sm\:min-w-16 {
    min-width: 64px !important;
  }

  .sm\:max-w-16 {
    max-width: 64px !important;
  }

  .sm\:min-h-16 {
    min-height: 64px !important;
  }

  .sm\:max-h-16 {
    max-height: 64px !important;
  }

  .sm\:w-18 {
    width: 72px !important;
  }

  .sm\:h-18 {
    height: 72px !important;
  }

  .sm\:min-w-18 {
    min-width: 72px !important;
  }

  .sm\:max-w-18 {
    max-width: 72px !important;
  }

  .sm\:min-h-18 {
    min-height: 72px !important;
  }

  .sm\:max-h-18 {
    max-height: 72px !important;
  }

  .sm\:w-20 {
    width: 80px !important;
  }

  .sm\:h-20 {
    height: 80px !important;
  }

  .sm\:min-w-20 {
    min-width: 80px !important;
  }

  .sm\:max-w-20 {
    max-width: 80px !important;
  }

  .sm\:min-h-20 {
    min-height: 80px !important;
  }

  .sm\:max-h-20 {
    max-height: 80px !important;
  }

  .sm\:w-25 {
    width: 100px !important;
  }

  .sm\:h-25 {
    height: 100px !important;
  }

  .sm\:min-w-25 {
    min-width: 100px !important;
  }

  .sm\:max-w-25 {
    max-width: 100px !important;
  }

  .sm\:min-h-25 {
    min-height: 100px !important;
  }

  .sm\:max-h-25 {
    max-height: 100px !important;
  }

  .sm\:w-30 {
    width: 120px !important;
  }

  .sm\:h-30 {
    height: 120px !important;
  }

  .sm\:min-w-30 {
    min-width: 120px !important;
  }

  .sm\:max-w-30 {
    max-width: 120px !important;
  }

  .sm\:min-h-30 {
    min-height: 120px !important;
  }

  .sm\:max-h-30 {
    max-height: 120px !important;
  }

  .sm\:w-35 {
    width: 140px !important;
  }

  .sm\:h-35 {
    height: 140px !important;
  }

  .sm\:min-w-35 {
    min-width: 140px !important;
  }

  .sm\:max-w-35 {
    max-width: 140px !important;
  }

  .sm\:min-h-35 {
    min-height: 140px !important;
  }

  .sm\:max-h-35 {
    max-height: 140px !important;
  }

  .sm\:w-40 {
    width: 160px !important;
  }

  .sm\:h-40 {
    height: 160px !important;
  }

  .sm\:min-w-40 {
    min-width: 160px !important;
  }

  .sm\:max-w-40 {
    max-width: 160px !important;
  }

  .sm\:min-h-40 {
    min-height: 160px !important;
  }

  .sm\:max-h-40 {
    max-height: 160px !important;
  }

  .sm\:w-45 {
    width: 180px !important;
  }

  .sm\:h-45 {
    height: 180px !important;
  }

  .sm\:min-w-45 {
    min-width: 180px !important;
  }

  .sm\:max-w-45 {
    max-width: 180px !important;
  }

  .sm\:min-h-45 {
    min-height: 180px !important;
  }

  .sm\:max-h-45 {
    max-height: 180px !important;
  }

  .sm\:w-50 {
    width: 200px !important;
  }

  .sm\:h-50 {
    height: 200px !important;
  }

  .sm\:min-w-50 {
    min-width: 200px !important;
  }

  .sm\:max-w-50 {
    max-width: 200px !important;
  }

  .sm\:min-h-50 {
    min-height: 200px !important;
  }

  .sm\:max-h-50 {
    max-height: 200px !important;
  }

  .sm\:w-55 {
    width: 220px !important;
  }

  .sm\:h-55 {
    height: 220px !important;
  }

  .sm\:min-w-55 {
    min-width: 220px !important;
  }

  .sm\:max-w-55 {
    max-width: 220px !important;
  }

  .sm\:min-h-55 {
    min-height: 220px !important;
  }

  .sm\:max-h-55 {
    max-height: 220px !important;
  }

  .sm\:w-60 {
    width: 240px !important;
  }

  .sm\:h-60 {
    height: 240px !important;
  }

  .sm\:min-w-60 {
    min-width: 240px !important;
  }

  .sm\:max-w-60 {
    max-width: 240px !important;
  }

  .sm\:min-h-60 {
    min-height: 240px !important;
  }

  .sm\:max-h-60 {
    max-height: 240px !important;
  }

  .sm\:w-65 {
    width: 260px !important;
  }

  .sm\:h-65 {
    height: 260px !important;
  }

  .sm\:min-w-65 {
    min-width: 260px !important;
  }

  .sm\:max-w-65 {
    max-width: 260px !important;
  }

  .sm\:min-h-65 {
    min-height: 260px !important;
  }

  .sm\:max-h-65 {
    max-height: 260px !important;
  }

  .sm\:w-70 {
    width: 280px !important;
  }

  .sm\:h-70 {
    height: 280px !important;
  }

  .sm\:min-w-70 {
    min-width: 280px !important;
  }

  .sm\:max-w-70 {
    max-width: 280px !important;
  }

  .sm\:min-h-70 {
    min-height: 280px !important;
  }

  .sm\:max-h-70 {
    max-height: 280px !important;
  }

  .sm\:w-75 {
    width: 300px !important;
  }

  .sm\:h-75 {
    height: 300px !important;
  }

  .sm\:min-w-75 {
    min-width: 300px !important;
  }

  .sm\:max-w-75 {
    max-width: 300px !important;
  }

  .sm\:min-h-75 {
    min-height: 300px !important;
  }

  .sm\:max-h-75 {
    max-height: 300px !important;
  }

  .sm\:w-80 {
    width: 320px !important;
  }

  .sm\:h-80 {
    height: 320px !important;
  }

  .sm\:min-w-80 {
    min-width: 320px !important;
  }

  .sm\:max-w-80 {
    max-width: 320px !important;
  }

  .sm\:min-h-80 {
    min-height: 320px !important;
  }

  .sm\:max-h-80 {
    max-height: 320px !important;
  }

  .sm\:w-85 {
    width: 340px !important;
  }

  .sm\:h-85 {
    height: 340px !important;
  }

  .sm\:min-w-85 {
    min-width: 340px !important;
  }

  .sm\:max-w-85 {
    max-width: 340px !important;
  }

  .sm\:min-h-85 {
    min-height: 340px !important;
  }

  .sm\:max-h-85 {
    max-height: 340px !important;
  }

  .sm\:w-90 {
    width: 360px !important;
  }

  .sm\:h-90 {
    height: 360px !important;
  }

  .sm\:min-w-90 {
    min-width: 360px !important;
  }

  .sm\:max-w-90 {
    max-width: 360px !important;
  }

  .sm\:min-h-90 {
    min-height: 360px !important;
  }

  .sm\:max-h-90 {
    max-height: 360px !important;
  }

  .sm\:w-95 {
    width: 380px !important;
  }

  .sm\:h-95 {
    height: 380px !important;
  }

  .sm\:min-w-95 {
    min-width: 380px !important;
  }

  .sm\:max-w-95 {
    max-width: 380px !important;
  }

  .sm\:min-h-95 {
    min-height: 380px !important;
  }

  .sm\:max-h-95 {
    max-height: 380px !important;
  }

  .sm\:w-100 {
    width: 400px !important;
  }

  .sm\:h-100 {
    height: 400px !important;
  }

  .sm\:min-w-100 {
    min-width: 400px !important;
  }

  .sm\:max-w-100 {
    max-width: 400px !important;
  }

  .sm\:min-h-100 {
    min-height: 400px !important;
  }

  .sm\:max-h-100 {
    max-height: 400px !important;
  }

  .sm\:w-110 {
    width: 440px !important;
  }

  .sm\:h-110 {
    height: 440px !important;
  }

  .sm\:min-w-110 {
    min-width: 440px !important;
  }

  .sm\:max-w-110 {
    max-width: 440px !important;
  }

  .sm\:min-h-110 {
    min-height: 440px !important;
  }

  .sm\:max-h-110 {
    max-height: 440px !important;
  }

  .sm\:w-120 {
    width: 480px !important;
  }

  .sm\:h-120 {
    height: 480px !important;
  }

  .sm\:min-w-120 {
    min-width: 480px !important;
  }

  .sm\:max-w-120 {
    max-width: 480px !important;
  }

  .sm\:min-h-120 {
    min-height: 480px !important;
  }

  .sm\:max-h-120 {
    max-height: 480px !important;
  }

  .sm\:w-130 {
    width: 520px !important;
  }

  .sm\:h-130 {
    height: 520px !important;
  }

  .sm\:min-w-130 {
    min-width: 520px !important;
  }

  .sm\:max-w-130 {
    max-width: 520px !important;
  }

  .sm\:min-h-130 {
    min-height: 520px !important;
  }

  .sm\:max-h-130 {
    max-height: 520px !important;
  }

  .sm\:w-140 {
    width: 560px !important;
  }

  .sm\:h-140 {
    height: 560px !important;
  }

  .sm\:min-w-140 {
    min-width: 560px !important;
  }

  .sm\:max-w-140 {
    max-width: 560px !important;
  }

  .sm\:min-h-140 {
    min-height: 560px !important;
  }

  .sm\:max-h-140 {
    max-height: 560px !important;
  }

  .sm\:w-150 {
    width: 600px !important;
  }

  .sm\:h-150 {
    height: 600px !important;
  }

  .sm\:min-w-150 {
    min-width: 600px !important;
  }

  .sm\:max-w-150 {
    max-width: 600px !important;
  }

  .sm\:min-h-150 {
    min-height: 600px !important;
  }

  .sm\:max-h-150 {
    max-height: 600px !important;
  }

  .sm\:w-full {
    width: 100% !important;
  }

  .sm\:h-full {
    height: 100% !important;
  }

  .sm\:min-w-full {
    min-width: 100% !important;
  }

  .sm\:max-w-full {
    max-width: 100% !important;
  }

  .sm\:min-h-full {
    min-height: 100% !important;
  }

  .sm\:max-h-full {
    max-height: 100% !important;
  }

  .sm\:w-10\% {
    width: 10% !important;
  }

  .sm\:h-10\% {
    height: 10% !important;
  }

  .sm\:min-w-10\% {
    min-width: 10% !important;
  }

  .sm\:max-w-10\% {
    max-width: 10% !important;
  }

  .sm\:min-h-10\% {
    min-height: 10% !important;
  }

  .sm\:max-h-10\% {
    max-height: 10% !important;
  }

  .sm\:w-15\% {
    width: 15% !important;
  }

  .sm\:h-15\% {
    height: 15% !important;
  }

  .sm\:min-w-15\% {
    min-width: 15% !important;
  }

  .sm\:max-w-15\% {
    max-width: 15% !important;
  }

  .sm\:min-h-15\% {
    min-height: 15% !important;
  }

  .sm\:max-h-15\% {
    max-height: 15% !important;
  }

  .sm\:w-20\% {
    width: 20% !important;
  }

  .sm\:h-20\% {
    height: 20% !important;
  }

  .sm\:min-w-20\% {
    min-width: 20% !important;
  }

  .sm\:max-w-20\% {
    max-width: 20% !important;
  }

  .sm\:min-h-20\% {
    min-height: 20% !important;
  }

  .sm\:max-h-20\% {
    max-height: 20% !important;
  }

  .sm\:w-25\% {
    width: 25% !important;
  }

  .sm\:h-25\% {
    height: 25% !important;
  }

  .sm\:min-w-25\% {
    min-width: 25% !important;
  }

  .sm\:max-w-25\% {
    max-width: 25% !important;
  }

  .sm\:min-h-25\% {
    min-height: 25% !important;
  }

  .sm\:max-h-25\% {
    max-height: 25% !important;
  }

  .sm\:w-30\% {
    width: 30% !important;
  }

  .sm\:h-30\% {
    height: 30% !important;
  }

  .sm\:min-w-30\% {
    min-width: 30% !important;
  }

  .sm\:max-w-30\% {
    max-width: 30% !important;
  }

  .sm\:min-h-30\% {
    min-height: 30% !important;
  }

  .sm\:max-h-30\% {
    max-height: 30% !important;
  }

  .sm\:w-35\% {
    width: 35% !important;
  }

  .sm\:h-35\% {
    height: 35% !important;
  }

  .sm\:min-w-35\% {
    min-width: 35% !important;
  }

  .sm\:max-w-35\% {
    max-width: 35% !important;
  }

  .sm\:min-h-35\% {
    min-height: 35% !important;
  }

  .sm\:max-h-35\% {
    max-height: 35% !important;
  }

  .sm\:w-40\% {
    width: 40% !important;
  }

  .sm\:h-40\% {
    height: 40% !important;
  }

  .sm\:min-w-40\% {
    min-width: 40% !important;
  }

  .sm\:max-w-40\% {
    max-width: 40% !important;
  }

  .sm\:min-h-40\% {
    min-height: 40% !important;
  }

  .sm\:max-h-40\% {
    max-height: 40% !important;
  }

  .sm\:w-45\% {
    width: 45% !important;
  }

  .sm\:h-45\% {
    height: 45% !important;
  }

  .sm\:min-w-45\% {
    min-width: 45% !important;
  }

  .sm\:max-w-45\% {
    max-width: 45% !important;
  }

  .sm\:min-h-45\% {
    min-height: 45% !important;
  }

  .sm\:max-h-45\% {
    max-height: 45% !important;
  }

  .sm\:w-50\% {
    width: 50% !important;
  }

  .sm\:h-50\% {
    height: 50% !important;
  }

  .sm\:min-w-50\% {
    min-width: 50% !important;
  }

  .sm\:max-w-50\% {
    max-width: 50% !important;
  }

  .sm\:min-h-50\% {
    min-height: 50% !important;
  }

  .sm\:max-h-50\% {
    max-height: 50% !important;
  }

  .sm\:w-55\% {
    width: 55% !important;
  }

  .sm\:h-55\% {
    height: 55% !important;
  }

  .sm\:min-w-55\% {
    min-width: 55% !important;
  }

  .sm\:max-w-55\% {
    max-width: 55% !important;
  }

  .sm\:min-h-55\% {
    min-height: 55% !important;
  }

  .sm\:max-h-55\% {
    max-height: 55% !important;
  }

  .sm\:w-60\% {
    width: 60% !important;
  }

  .sm\:h-60\% {
    height: 60% !important;
  }

  .sm\:min-w-60\% {
    min-width: 60% !important;
  }

  .sm\:max-w-60\% {
    max-width: 60% !important;
  }

  .sm\:min-h-60\% {
    min-height: 60% !important;
  }

  .sm\:max-h-60\% {
    max-height: 60% !important;
  }

  .sm\:w-65\% {
    width: 65% !important;
  }

  .sm\:h-65\% {
    height: 65% !important;
  }

  .sm\:min-w-65\% {
    min-width: 65% !important;
  }

  .sm\:max-w-65\% {
    max-width: 65% !important;
  }

  .sm\:min-h-65\% {
    min-height: 65% !important;
  }

  .sm\:max-h-65\% {
    max-height: 65% !important;
  }

  .sm\:w-70\% {
    width: 70% !important;
  }

  .sm\:h-70\% {
    height: 70% !important;
  }

  .sm\:min-w-70\% {
    min-width: 70% !important;
  }

  .sm\:max-w-70\% {
    max-width: 70% !important;
  }

  .sm\:min-h-70\% {
    min-height: 70% !important;
  }

  .sm\:max-h-70\% {
    max-height: 70% !important;
  }

  .sm\:w-75\% {
    width: 75% !important;
  }

  .sm\:h-75\% {
    height: 75% !important;
  }

  .sm\:min-w-75\% {
    min-width: 75% !important;
  }

  .sm\:max-w-75\% {
    max-width: 75% !important;
  }

  .sm\:min-h-75\% {
    min-height: 75% !important;
  }

  .sm\:max-h-75\% {
    max-height: 75% !important;
  }

  .sm\:w-80\% {
    width: 80% !important;
  }

  .sm\:h-80\% {
    height: 80% !important;
  }

  .sm\:min-w-80\% {
    min-width: 80% !important;
  }

  .sm\:max-w-80\% {
    max-width: 80% !important;
  }

  .sm\:min-h-80\% {
    min-height: 80% !important;
  }

  .sm\:max-h-80\% {
    max-height: 80% !important;
  }

  .sm\:w-85\% {
    width: 85% !important;
  }

  .sm\:h-85\% {
    height: 85% !important;
  }

  .sm\:min-w-85\% {
    min-width: 85% !important;
  }

  .sm\:max-w-85\% {
    max-width: 85% !important;
  }

  .sm\:min-h-85\% {
    min-height: 85% !important;
  }

  .sm\:max-h-85\% {
    max-height: 85% !important;
  }

  .sm\:w-90\% {
    width: 90% !important;
  }

  .sm\:h-90\% {
    height: 90% !important;
  }

  .sm\:min-w-90\% {
    min-width: 90% !important;
  }

  .sm\:max-w-90\% {
    max-width: 90% !important;
  }

  .sm\:min-h-90\% {
    min-height: 90% !important;
  }

  .sm\:max-h-90\% {
    max-height: 90% !important;
  }

  .sm\:w-95\% {
    width: 95% !important;
  }

  .sm\:h-95\% {
    height: 95% !important;
  }

  .sm\:min-w-95\% {
    min-width: 95% !important;
  }

  .sm\:max-w-95\% {
    max-width: 95% !important;
  }

  .sm\:min-h-95\% {
    min-height: 95% !important;
  }

  .sm\:max-h-95\% {
    max-height: 95% !important;
  }

  .sm\:w-100\% {
    width: 100% !important;
  }

  .sm\:h-100\% {
    height: 100% !important;
  }

  .sm\:min-w-100\% {
    min-width: 100% !important;
  }

  .sm\:max-w-100\% {
    max-width: 100% !important;
  }

  .sm\:min-h-100\% {
    min-height: 100% !important;
  }

  .sm\:max-h-100\% {
    max-height: 100% !important;
  }

  .sm\:w-10vw {
    width: 10vw;
  }

  .sm\:min-w-10vw {
    min-width: 10vw;
  }

  .sm\:max-w-10vw {
    max-width: 10vw;
  }

  .sm\:w-20vw {
    width: 20vw;
  }

  .sm\:min-w-20vw {
    min-width: 20vw;
  }

  .sm\:max-w-20vw {
    max-width: 20vw;
  }

  .sm\:w-30vw {
    width: 30vw;
  }

  .sm\:min-w-30vw {
    min-width: 30vw;
  }

  .sm\:max-w-30vw {
    max-width: 30vw;
  }

  .sm\:w-40vw {
    width: 40vw;
  }

  .sm\:min-w-40vw {
    min-width: 40vw;
  }

  .sm\:max-w-40vw {
    max-width: 40vw;
  }

  .sm\:w-50vw {
    width: 50vw;
  }

  .sm\:min-w-50vw {
    min-width: 50vw;
  }

  .sm\:max-w-50vw {
    max-width: 50vw;
  }

  .sm\:w-60vw {
    width: 60vw;
  }

  .sm\:min-w-60vw {
    min-width: 60vw;
  }

  .sm\:max-w-60vw {
    max-width: 60vw;
  }

  .sm\:w-70vw {
    width: 70vw;
  }

  .sm\:min-w-70vw {
    min-width: 70vw;
  }

  .sm\:max-w-70vw {
    max-width: 70vw;
  }

  .sm\:w-80vw {
    width: 80vw;
  }

  .sm\:min-w-80vw {
    min-width: 80vw;
  }

  .sm\:max-w-80vw {
    max-width: 80vw;
  }

  .sm\:w-90vw {
    width: 90vw;
  }

  .sm\:min-w-90vw {
    min-width: 90vw;
  }

  .sm\:max-w-90vw {
    max-width: 90vw;
  }

  .sm\:w-100vw {
    width: 100vw;
  }

  .sm\:min-w-100vw {
    min-width: 100vw;
  }

  .sm\:max-w-100vw {
    max-width: 100vw;
  }

  .sm\:h-10vh {
    height: 10vh;
  }

  .sm\:min-h-10vh {
    min-height: 10vh;
  }

  .sm\:max-h-10vh {
    max-height: 10vh;
  }

  .sm\:h-20vh {
    height: 20vh;
  }

  .sm\:min-h-20vh {
    min-height: 20vh;
  }

  .sm\:max-h-20vh {
    max-height: 20vh;
  }

  .sm\:h-30vh {
    height: 30vh;
  }

  .sm\:min-h-30vh {
    min-height: 30vh;
  }

  .sm\:max-h-30vh {
    max-height: 30vh;
  }

  .sm\:h-40vh {
    height: 40vh;
  }

  .sm\:min-h-40vh {
    min-height: 40vh;
  }

  .sm\:max-h-40vh {
    max-height: 40vh;
  }

  .sm\:h-50vh {
    height: 50vh;
  }

  .sm\:min-h-50vh {
    min-height: 50vh;
  }

  .sm\:max-h-50vh {
    max-height: 50vh;
  }

  .sm\:h-60vh {
    height: 60vh;
  }

  .sm\:min-h-60vh {
    min-height: 60vh;
  }

  .sm\:max-h-60vh {
    max-height: 60vh;
  }

  .sm\:h-70vh {
    height: 70vh;
  }

  .sm\:min-h-70vh {
    min-height: 70vh;
  }

  .sm\:max-h-70vh {
    max-height: 70vh;
  }

  .sm\:h-80vh {
    height: 80vh;
  }

  .sm\:min-h-80vh {
    min-height: 80vh;
  }

  .sm\:max-h-80vh {
    max-height: 80vh;
  }

  .sm\:h-90vh {
    height: 90vh;
  }

  .sm\:min-h-90vh {
    min-height: 90vh;
  }

  .sm\:max-h-90vh {
    max-height: 90vh;
  }

  .sm\:h-100vh {
    height: 100vh;
  }

  .sm\:min-h-100vh {
    min-height: 100vh;
  }

  .sm\:max-h-100vh {
    max-height: 100vh;
  }
}

@media (min-width: 921px) {
  .md\:w-unset {
    width: unset !important;
  }

  .md\:h-unset {
    height: unset !important;
  }

  .md\:min-w-unset {
    min-width: unset !important;
  }

  .md\:max-w-unset {
    max-width: unset !important;
  }

  .md\:min-h-unset {
    min-height: unset !important;
  }

  .md\:max-h-unset {
    max-height: unset !important;
  }

  .md\:w-initial {
    width: initial !important;
  }

  .md\:h-initial {
    height: initial !important;
  }

  .md\:min-w-initial {
    min-width: initial !important;
  }

  .md\:max-w-initial {
    max-width: initial !important;
  }

  .md\:min-h-initial {
    min-height: initial !important;
  }

  .md\:max-h-initial {
    max-height: initial !important;
  }

  .md\:w-auto {
    width: auto !important;
  }

  .md\:h-auto {
    height: auto !important;
  }

  .md\:min-w-auto {
    min-width: auto !important;
  }

  .md\:max-w-auto {
    max-width: auto !important;
  }

  .md\:min-h-auto {
    min-height: auto !important;
  }

  .md\:max-h-auto {
    max-height: auto !important;
  }

  .md\:w-0 {
    width: 0 !important;
  }

  .md\:h-0 {
    height: 0 !important;
  }

  .md\:min-w-0 {
    min-width: 0 !important;
  }

  .md\:max-w-0 {
    max-width: 0 !important;
  }

  .md\:min-h-0 {
    min-height: 0 !important;
  }

  .md\:max-h-0 {
    max-height: 0 !important;
  }

  .md\:w-1 {
    width: 4px !important;
  }

  .md\:h-1 {
    height: 4px !important;
  }

  .md\:min-w-1 {
    min-width: 4px !important;
  }

  .md\:max-w-1 {
    max-width: 4px !important;
  }

  .md\:min-h-1 {
    min-height: 4px !important;
  }

  .md\:max-h-1 {
    max-height: 4px !important;
  }

  .md\:w-2 {
    width: 8px !important;
  }

  .md\:h-2 {
    height: 8px !important;
  }

  .md\:min-w-2 {
    min-width: 8px !important;
  }

  .md\:max-w-2 {
    max-width: 8px !important;
  }

  .md\:min-h-2 {
    min-height: 8px !important;
  }

  .md\:max-h-2 {
    max-height: 8px !important;
  }

  .md\:w-3 {
    width: 12px !important;
  }

  .md\:h-3 {
    height: 12px !important;
  }

  .md\:min-w-3 {
    min-width: 12px !important;
  }

  .md\:max-w-3 {
    max-width: 12px !important;
  }

  .md\:min-h-3 {
    min-height: 12px !important;
  }

  .md\:max-h-3 {
    max-height: 12px !important;
  }

  .md\:w-4 {
    width: 16px !important;
  }

  .md\:h-4 {
    height: 16px !important;
  }

  .md\:min-w-4 {
    min-width: 16px !important;
  }

  .md\:max-w-4 {
    max-width: 16px !important;
  }

  .md\:min-h-4 {
    min-height: 16px !important;
  }

  .md\:max-h-4 {
    max-height: 16px !important;
  }

  .md\:w-5 {
    width: 20px !important;
  }

  .md\:h-5 {
    height: 20px !important;
  }

  .md\:min-w-5 {
    min-width: 20px !important;
  }

  .md\:max-w-5 {
    max-width: 20px !important;
  }

  .md\:min-h-5 {
    min-height: 20px !important;
  }

  .md\:max-h-5 {
    max-height: 20px !important;
  }

  .md\:w-6 {
    width: 24px !important;
  }

  .md\:h-6 {
    height: 24px !important;
  }

  .md\:min-w-6 {
    min-width: 24px !important;
  }

  .md\:max-w-6 {
    max-width: 24px !important;
  }

  .md\:min-h-6 {
    min-height: 24px !important;
  }

  .md\:max-h-6 {
    max-height: 24px !important;
  }

  .md\:w-7 {
    width: 28px !important;
  }

  .md\:h-7 {
    height: 28px !important;
  }

  .md\:min-w-7 {
    min-width: 28px !important;
  }

  .md\:max-w-7 {
    max-width: 28px !important;
  }

  .md\:min-h-7 {
    min-height: 28px !important;
  }

  .md\:max-h-7 {
    max-height: 28px !important;
  }

  .md\:w-8 {
    width: 32px !important;
  }

  .md\:h-8 {
    height: 32px !important;
  }

  .md\:min-w-8 {
    min-width: 32px !important;
  }

  .md\:max-w-8 {
    max-width: 32px !important;
  }

  .md\:min-h-8 {
    min-height: 32px !important;
  }

  .md\:max-h-8 {
    max-height: 32px !important;
  }

  .md\:w-9 {
    width: 36px !important;
  }

  .md\:h-9 {
    height: 36px !important;
  }

  .md\:min-w-9 {
    min-width: 36px !important;
  }

  .md\:max-w-9 {
    max-width: 36px !important;
  }

  .md\:min-h-9 {
    min-height: 36px !important;
  }

  .md\:max-h-9 {
    max-height: 36px !important;
  }

  .md\:w-10 {
    width: 40px !important;
  }

  .md\:h-10 {
    height: 40px !important;
  }

  .md\:min-w-10 {
    min-width: 40px !important;
  }

  .md\:max-w-10 {
    max-width: 40px !important;
  }

  .md\:min-h-10 {
    min-height: 40px !important;
  }

  .md\:max-h-10 {
    max-height: 40px !important;
  }

  .md\:w-11 {
    width: 44px !important;
  }

  .md\:h-11 {
    height: 44px !important;
  }

  .md\:min-w-11 {
    min-width: 44px !important;
  }

  .md\:max-w-11 {
    max-width: 44px !important;
  }

  .md\:min-h-11 {
    min-height: 44px !important;
  }

  .md\:max-h-11 {
    max-height: 44px !important;
  }

  .md\:w-12 {
    width: 48px !important;
  }

  .md\:h-12 {
    height: 48px !important;
  }

  .md\:min-w-12 {
    min-width: 48px !important;
  }

  .md\:max-w-12 {
    max-width: 48px !important;
  }

  .md\:min-h-12 {
    min-height: 48px !important;
  }

  .md\:max-h-12 {
    max-height: 48px !important;
  }

  .md\:w-14 {
    width: 56px !important;
  }

  .md\:h-14 {
    height: 56px !important;
  }

  .md\:min-w-14 {
    min-width: 56px !important;
  }

  .md\:max-w-14 {
    max-width: 56px !important;
  }

  .md\:min-h-14 {
    min-height: 56px !important;
  }

  .md\:max-h-14 {
    max-height: 56px !important;
  }

  .md\:w-15 {
    width: 60px !important;
  }

  .md\:h-15 {
    height: 60px !important;
  }

  .md\:min-w-15 {
    min-width: 60px !important;
  }

  .md\:max-w-15 {
    max-width: 60px !important;
  }

  .md\:min-h-15 {
    min-height: 60px !important;
  }

  .md\:max-h-15 {
    max-height: 60px !important;
  }

  .md\:w-16 {
    width: 64px !important;
  }

  .md\:h-16 {
    height: 64px !important;
  }

  .md\:min-w-16 {
    min-width: 64px !important;
  }

  .md\:max-w-16 {
    max-width: 64px !important;
  }

  .md\:min-h-16 {
    min-height: 64px !important;
  }

  .md\:max-h-16 {
    max-height: 64px !important;
  }

  .md\:w-18 {
    width: 72px !important;
  }

  .md\:h-18 {
    height: 72px !important;
  }

  .md\:min-w-18 {
    min-width: 72px !important;
  }

  .md\:max-w-18 {
    max-width: 72px !important;
  }

  .md\:min-h-18 {
    min-height: 72px !important;
  }

  .md\:max-h-18 {
    max-height: 72px !important;
  }

  .md\:w-20 {
    width: 80px !important;
  }

  .md\:h-20 {
    height: 80px !important;
  }

  .md\:min-w-20 {
    min-width: 80px !important;
  }

  .md\:max-w-20 {
    max-width: 80px !important;
  }

  .md\:min-h-20 {
    min-height: 80px !important;
  }

  .md\:max-h-20 {
    max-height: 80px !important;
  }

  .md\:w-25 {
    width: 100px !important;
  }

  .md\:h-25 {
    height: 100px !important;
  }

  .md\:min-w-25 {
    min-width: 100px !important;
  }

  .md\:max-w-25 {
    max-width: 100px !important;
  }

  .md\:min-h-25 {
    min-height: 100px !important;
  }

  .md\:max-h-25 {
    max-height: 100px !important;
  }

  .md\:w-30 {
    width: 120px !important;
  }

  .md\:h-30 {
    height: 120px !important;
  }

  .md\:min-w-30 {
    min-width: 120px !important;
  }

  .md\:max-w-30 {
    max-width: 120px !important;
  }

  .md\:min-h-30 {
    min-height: 120px !important;
  }

  .md\:max-h-30 {
    max-height: 120px !important;
  }

  .md\:w-35 {
    width: 140px !important;
  }

  .md\:h-35 {
    height: 140px !important;
  }

  .md\:min-w-35 {
    min-width: 140px !important;
  }

  .md\:max-w-35 {
    max-width: 140px !important;
  }

  .md\:min-h-35 {
    min-height: 140px !important;
  }

  .md\:max-h-35 {
    max-height: 140px !important;
  }

  .md\:w-40 {
    width: 160px !important;
  }

  .md\:h-40 {
    height: 160px !important;
  }

  .md\:min-w-40 {
    min-width: 160px !important;
  }

  .md\:max-w-40 {
    max-width: 160px !important;
  }

  .md\:min-h-40 {
    min-height: 160px !important;
  }

  .md\:max-h-40 {
    max-height: 160px !important;
  }

  .md\:w-45 {
    width: 180px !important;
  }

  .md\:h-45 {
    height: 180px !important;
  }

  .md\:min-w-45 {
    min-width: 180px !important;
  }

  .md\:max-w-45 {
    max-width: 180px !important;
  }

  .md\:min-h-45 {
    min-height: 180px !important;
  }

  .md\:max-h-45 {
    max-height: 180px !important;
  }

  .md\:w-50 {
    width: 200px !important;
  }

  .md\:h-50 {
    height: 200px !important;
  }

  .md\:min-w-50 {
    min-width: 200px !important;
  }

  .md\:max-w-50 {
    max-width: 200px !important;
  }

  .md\:min-h-50 {
    min-height: 200px !important;
  }

  .md\:max-h-50 {
    max-height: 200px !important;
  }

  .md\:w-55 {
    width: 220px !important;
  }

  .md\:h-55 {
    height: 220px !important;
  }

  .md\:min-w-55 {
    min-width: 220px !important;
  }

  .md\:max-w-55 {
    max-width: 220px !important;
  }

  .md\:min-h-55 {
    min-height: 220px !important;
  }

  .md\:max-h-55 {
    max-height: 220px !important;
  }

  .md\:w-60 {
    width: 240px !important;
  }

  .md\:h-60 {
    height: 240px !important;
  }

  .md\:min-w-60 {
    min-width: 240px !important;
  }

  .md\:max-w-60 {
    max-width: 240px !important;
  }

  .md\:min-h-60 {
    min-height: 240px !important;
  }

  .md\:max-h-60 {
    max-height: 240px !important;
  }

  .md\:w-65 {
    width: 260px !important;
  }

  .md\:h-65 {
    height: 260px !important;
  }

  .md\:min-w-65 {
    min-width: 260px !important;
  }

  .md\:max-w-65 {
    max-width: 260px !important;
  }

  .md\:min-h-65 {
    min-height: 260px !important;
  }

  .md\:max-h-65 {
    max-height: 260px !important;
  }

  .md\:w-70 {
    width: 280px !important;
  }

  .md\:h-70 {
    height: 280px !important;
  }

  .md\:min-w-70 {
    min-width: 280px !important;
  }

  .md\:max-w-70 {
    max-width: 280px !important;
  }

  .md\:min-h-70 {
    min-height: 280px !important;
  }

  .md\:max-h-70 {
    max-height: 280px !important;
  }

  .md\:w-75 {
    width: 300px !important;
  }

  .md\:h-75 {
    height: 300px !important;
  }

  .md\:min-w-75 {
    min-width: 300px !important;
  }

  .md\:max-w-75 {
    max-width: 300px !important;
  }

  .md\:min-h-75 {
    min-height: 300px !important;
  }

  .md\:max-h-75 {
    max-height: 300px !important;
  }

  .md\:w-80 {
    width: 320px !important;
  }

  .md\:h-80 {
    height: 320px !important;
  }

  .md\:min-w-80 {
    min-width: 320px !important;
  }

  .md\:max-w-80 {
    max-width: 320px !important;
  }

  .md\:min-h-80 {
    min-height: 320px !important;
  }

  .md\:max-h-80 {
    max-height: 320px !important;
  }

  .md\:w-85 {
    width: 340px !important;
  }

  .md\:h-85 {
    height: 340px !important;
  }

  .md\:min-w-85 {
    min-width: 340px !important;
  }

  .md\:max-w-85 {
    max-width: 340px !important;
  }

  .md\:min-h-85 {
    min-height: 340px !important;
  }

  .md\:max-h-85 {
    max-height: 340px !important;
  }

  .md\:w-90 {
    width: 360px !important;
  }

  .md\:h-90 {
    height: 360px !important;
  }

  .md\:min-w-90 {
    min-width: 360px !important;
  }

  .md\:max-w-90 {
    max-width: 360px !important;
  }

  .md\:min-h-90 {
    min-height: 360px !important;
  }

  .md\:max-h-90 {
    max-height: 360px !important;
  }

  .md\:w-95 {
    width: 380px !important;
  }

  .md\:h-95 {
    height: 380px !important;
  }

  .md\:min-w-95 {
    min-width: 380px !important;
  }

  .md\:max-w-95 {
    max-width: 380px !important;
  }

  .md\:min-h-95 {
    min-height: 380px !important;
  }

  .md\:max-h-95 {
    max-height: 380px !important;
  }

  .md\:w-100 {
    width: 400px !important;
  }

  .md\:h-100 {
    height: 400px !important;
  }

  .md\:min-w-100 {
    min-width: 400px !important;
  }

  .md\:max-w-100 {
    max-width: 400px !important;
  }

  .md\:min-h-100 {
    min-height: 400px !important;
  }

  .md\:max-h-100 {
    max-height: 400px !important;
  }

  .md\:w-110 {
    width: 440px !important;
  }

  .md\:h-110 {
    height: 440px !important;
  }

  .md\:min-w-110 {
    min-width: 440px !important;
  }

  .md\:max-w-110 {
    max-width: 440px !important;
  }

  .md\:min-h-110 {
    min-height: 440px !important;
  }

  .md\:max-h-110 {
    max-height: 440px !important;
  }

  .md\:w-120 {
    width: 480px !important;
  }

  .md\:h-120 {
    height: 480px !important;
  }

  .md\:min-w-120 {
    min-width: 480px !important;
  }

  .md\:max-w-120 {
    max-width: 480px !important;
  }

  .md\:min-h-120 {
    min-height: 480px !important;
  }

  .md\:max-h-120 {
    max-height: 480px !important;
  }

  .md\:w-130 {
    width: 520px !important;
  }

  .md\:h-130 {
    height: 520px !important;
  }

  .md\:min-w-130 {
    min-width: 520px !important;
  }

  .md\:max-w-130 {
    max-width: 520px !important;
  }

  .md\:min-h-130 {
    min-height: 520px !important;
  }

  .md\:max-h-130 {
    max-height: 520px !important;
  }

  .md\:w-140 {
    width: 560px !important;
  }

  .md\:h-140 {
    height: 560px !important;
  }

  .md\:min-w-140 {
    min-width: 560px !important;
  }

  .md\:max-w-140 {
    max-width: 560px !important;
  }

  .md\:min-h-140 {
    min-height: 560px !important;
  }

  .md\:max-h-140 {
    max-height: 560px !important;
  }

  .md\:w-150 {
    width: 600px !important;
  }

  .md\:h-150 {
    height: 600px !important;
  }

  .md\:min-w-150 {
    min-width: 600px !important;
  }

  .md\:max-w-150 {
    max-width: 600px !important;
  }

  .md\:min-h-150 {
    min-height: 600px !important;
  }

  .md\:max-h-150 {
    max-height: 600px !important;
  }

  .md\:w-full {
    width: 100% !important;
  }

  .md\:h-full {
    height: 100% !important;
  }

  .md\:min-w-full {
    min-width: 100% !important;
  }

  .md\:max-w-full {
    max-width: 100% !important;
  }

  .md\:min-h-full {
    min-height: 100% !important;
  }

  .md\:max-h-full {
    max-height: 100% !important;
  }

  .md\:w-10\% {
    width: 10% !important;
  }

  .md\:h-10\% {
    height: 10% !important;
  }

  .md\:min-w-10\% {
    min-width: 10% !important;
  }

  .md\:max-w-10\% {
    max-width: 10% !important;
  }

  .md\:min-h-10\% {
    min-height: 10% !important;
  }

  .md\:max-h-10\% {
    max-height: 10% !important;
  }

  .md\:w-15\% {
    width: 15% !important;
  }

  .md\:h-15\% {
    height: 15% !important;
  }

  .md\:min-w-15\% {
    min-width: 15% !important;
  }

  .md\:max-w-15\% {
    max-width: 15% !important;
  }

  .md\:min-h-15\% {
    min-height: 15% !important;
  }

  .md\:max-h-15\% {
    max-height: 15% !important;
  }

  .md\:w-20\% {
    width: 20% !important;
  }

  .md\:h-20\% {
    height: 20% !important;
  }

  .md\:min-w-20\% {
    min-width: 20% !important;
  }

  .md\:max-w-20\% {
    max-width: 20% !important;
  }

  .md\:min-h-20\% {
    min-height: 20% !important;
  }

  .md\:max-h-20\% {
    max-height: 20% !important;
  }

  .md\:w-25\% {
    width: 25% !important;
  }

  .md\:h-25\% {
    height: 25% !important;
  }

  .md\:min-w-25\% {
    min-width: 25% !important;
  }

  .md\:max-w-25\% {
    max-width: 25% !important;
  }

  .md\:min-h-25\% {
    min-height: 25% !important;
  }

  .md\:max-h-25\% {
    max-height: 25% !important;
  }

  .md\:w-30\% {
    width: 30% !important;
  }

  .md\:h-30\% {
    height: 30% !important;
  }

  .md\:min-w-30\% {
    min-width: 30% !important;
  }

  .md\:max-w-30\% {
    max-width: 30% !important;
  }

  .md\:min-h-30\% {
    min-height: 30% !important;
  }

  .md\:max-h-30\% {
    max-height: 30% !important;
  }

  .md\:w-35\% {
    width: 35% !important;
  }

  .md\:h-35\% {
    height: 35% !important;
  }

  .md\:min-w-35\% {
    min-width: 35% !important;
  }

  .md\:max-w-35\% {
    max-width: 35% !important;
  }

  .md\:min-h-35\% {
    min-height: 35% !important;
  }

  .md\:max-h-35\% {
    max-height: 35% !important;
  }

  .md\:w-40\% {
    width: 40% !important;
  }

  .md\:h-40\% {
    height: 40% !important;
  }

  .md\:min-w-40\% {
    min-width: 40% !important;
  }

  .md\:max-w-40\% {
    max-width: 40% !important;
  }

  .md\:min-h-40\% {
    min-height: 40% !important;
  }

  .md\:max-h-40\% {
    max-height: 40% !important;
  }

  .md\:w-45\% {
    width: 45% !important;
  }

  .md\:h-45\% {
    height: 45% !important;
  }

  .md\:min-w-45\% {
    min-width: 45% !important;
  }

  .md\:max-w-45\% {
    max-width: 45% !important;
  }

  .md\:min-h-45\% {
    min-height: 45% !important;
  }

  .md\:max-h-45\% {
    max-height: 45% !important;
  }

  .md\:w-50\% {
    width: 50% !important;
  }

  .md\:h-50\% {
    height: 50% !important;
  }

  .md\:min-w-50\% {
    min-width: 50% !important;
  }

  .md\:max-w-50\% {
    max-width: 50% !important;
  }

  .md\:min-h-50\% {
    min-height: 50% !important;
  }

  .md\:max-h-50\% {
    max-height: 50% !important;
  }

  .md\:w-55\% {
    width: 55% !important;
  }

  .md\:h-55\% {
    height: 55% !important;
  }

  .md\:min-w-55\% {
    min-width: 55% !important;
  }

  .md\:max-w-55\% {
    max-width: 55% !important;
  }

  .md\:min-h-55\% {
    min-height: 55% !important;
  }

  .md\:max-h-55\% {
    max-height: 55% !important;
  }

  .md\:w-60\% {
    width: 60% !important;
  }

  .md\:h-60\% {
    height: 60% !important;
  }

  .md\:min-w-60\% {
    min-width: 60% !important;
  }

  .md\:max-w-60\% {
    max-width: 60% !important;
  }

  .md\:min-h-60\% {
    min-height: 60% !important;
  }

  .md\:max-h-60\% {
    max-height: 60% !important;
  }

  .md\:w-65\% {
    width: 65% !important;
  }

  .md\:h-65\% {
    height: 65% !important;
  }

  .md\:min-w-65\% {
    min-width: 65% !important;
  }

  .md\:max-w-65\% {
    max-width: 65% !important;
  }

  .md\:min-h-65\% {
    min-height: 65% !important;
  }

  .md\:max-h-65\% {
    max-height: 65% !important;
  }

  .md\:w-70\% {
    width: 70% !important;
  }

  .md\:h-70\% {
    height: 70% !important;
  }

  .md\:min-w-70\% {
    min-width: 70% !important;
  }

  .md\:max-w-70\% {
    max-width: 70% !important;
  }

  .md\:min-h-70\% {
    min-height: 70% !important;
  }

  .md\:max-h-70\% {
    max-height: 70% !important;
  }

  .md\:w-75\% {
    width: 75% !important;
  }

  .md\:h-75\% {
    height: 75% !important;
  }

  .md\:min-w-75\% {
    min-width: 75% !important;
  }

  .md\:max-w-75\% {
    max-width: 75% !important;
  }

  .md\:min-h-75\% {
    min-height: 75% !important;
  }

  .md\:max-h-75\% {
    max-height: 75% !important;
  }

  .md\:w-80\% {
    width: 80% !important;
  }

  .md\:h-80\% {
    height: 80% !important;
  }

  .md\:min-w-80\% {
    min-width: 80% !important;
  }

  .md\:max-w-80\% {
    max-width: 80% !important;
  }

  .md\:min-h-80\% {
    min-height: 80% !important;
  }

  .md\:max-h-80\% {
    max-height: 80% !important;
  }

  .md\:w-85\% {
    width: 85% !important;
  }

  .md\:h-85\% {
    height: 85% !important;
  }

  .md\:min-w-85\% {
    min-width: 85% !important;
  }

  .md\:max-w-85\% {
    max-width: 85% !important;
  }

  .md\:min-h-85\% {
    min-height: 85% !important;
  }

  .md\:max-h-85\% {
    max-height: 85% !important;
  }

  .md\:w-90\% {
    width: 90% !important;
  }

  .md\:h-90\% {
    height: 90% !important;
  }

  .md\:min-w-90\% {
    min-width: 90% !important;
  }

  .md\:max-w-90\% {
    max-width: 90% !important;
  }

  .md\:min-h-90\% {
    min-height: 90% !important;
  }

  .md\:max-h-90\% {
    max-height: 90% !important;
  }

  .md\:w-95\% {
    width: 95% !important;
  }

  .md\:h-95\% {
    height: 95% !important;
  }

  .md\:min-w-95\% {
    min-width: 95% !important;
  }

  .md\:max-w-95\% {
    max-width: 95% !important;
  }

  .md\:min-h-95\% {
    min-height: 95% !important;
  }

  .md\:max-h-95\% {
    max-height: 95% !important;
  }

  .md\:w-100\% {
    width: 100% !important;
  }

  .md\:h-100\% {
    height: 100% !important;
  }

  .md\:min-w-100\% {
    min-width: 100% !important;
  }

  .md\:max-w-100\% {
    max-width: 100% !important;
  }

  .md\:min-h-100\% {
    min-height: 100% !important;
  }

  .md\:max-h-100\% {
    max-height: 100% !important;
  }

  .md\:w-10vw {
    width: 10vw;
  }

  .md\:min-w-10vw {
    min-width: 10vw;
  }

  .md\:max-w-10vw {
    max-width: 10vw;
  }

  .md\:w-20vw {
    width: 20vw;
  }

  .md\:min-w-20vw {
    min-width: 20vw;
  }

  .md\:max-w-20vw {
    max-width: 20vw;
  }

  .md\:w-30vw {
    width: 30vw;
  }

  .md\:min-w-30vw {
    min-width: 30vw;
  }

  .md\:max-w-30vw {
    max-width: 30vw;
  }

  .md\:w-40vw {
    width: 40vw;
  }

  .md\:min-w-40vw {
    min-width: 40vw;
  }

  .md\:max-w-40vw {
    max-width: 40vw;
  }

  .md\:w-50vw {
    width: 50vw;
  }

  .md\:min-w-50vw {
    min-width: 50vw;
  }

  .md\:max-w-50vw {
    max-width: 50vw;
  }

  .md\:w-60vw {
    width: 60vw;
  }

  .md\:min-w-60vw {
    min-width: 60vw;
  }

  .md\:max-w-60vw {
    max-width: 60vw;
  }

  .md\:w-70vw {
    width: 70vw;
  }

  .md\:min-w-70vw {
    min-width: 70vw;
  }

  .md\:max-w-70vw {
    max-width: 70vw;
  }

  .md\:w-80vw {
    width: 80vw;
  }

  .md\:min-w-80vw {
    min-width: 80vw;
  }

  .md\:max-w-80vw {
    max-width: 80vw;
  }

  .md\:w-90vw {
    width: 90vw;
  }

  .md\:min-w-90vw {
    min-width: 90vw;
  }

  .md\:max-w-90vw {
    max-width: 90vw;
  }

  .md\:w-100vw {
    width: 100vw;
  }

  .md\:min-w-100vw {
    min-width: 100vw;
  }

  .md\:max-w-100vw {
    max-width: 100vw;
  }

  .md\:h-10vh {
    height: 10vh;
  }

  .md\:min-h-10vh {
    min-height: 10vh;
  }

  .md\:max-h-10vh {
    max-height: 10vh;
  }

  .md\:h-20vh {
    height: 20vh;
  }

  .md\:min-h-20vh {
    min-height: 20vh;
  }

  .md\:max-h-20vh {
    max-height: 20vh;
  }

  .md\:h-30vh {
    height: 30vh;
  }

  .md\:min-h-30vh {
    min-height: 30vh;
  }

  .md\:max-h-30vh {
    max-height: 30vh;
  }

  .md\:h-40vh {
    height: 40vh;
  }

  .md\:min-h-40vh {
    min-height: 40vh;
  }

  .md\:max-h-40vh {
    max-height: 40vh;
  }

  .md\:h-50vh {
    height: 50vh;
  }

  .md\:min-h-50vh {
    min-height: 50vh;
  }

  .md\:max-h-50vh {
    max-height: 50vh;
  }

  .md\:h-60vh {
    height: 60vh;
  }

  .md\:min-h-60vh {
    min-height: 60vh;
  }

  .md\:max-h-60vh {
    max-height: 60vh;
  }

  .md\:h-70vh {
    height: 70vh;
  }

  .md\:min-h-70vh {
    min-height: 70vh;
  }

  .md\:max-h-70vh {
    max-height: 70vh;
  }

  .md\:h-80vh {
    height: 80vh;
  }

  .md\:min-h-80vh {
    min-height: 80vh;
  }

  .md\:max-h-80vh {
    max-height: 80vh;
  }

  .md\:h-90vh {
    height: 90vh;
  }

  .md\:min-h-90vh {
    min-height: 90vh;
  }

  .md\:max-h-90vh {
    max-height: 90vh;
  }

  .md\:h-100vh {
    height: 100vh;
  }

  .md\:min-h-100vh {
    min-height: 100vh;
  }

  .md\:max-h-100vh {
    max-height: 100vh;
  }
}

@media (min-width: 1201px) {
  .lg\:w-unset {
    width: unset !important;
  }

  .lg\:h-unset {
    height: unset !important;
  }

  .lg\:min-w-unset {
    min-width: unset !important;
  }

  .lg\:max-w-unset {
    max-width: unset !important;
  }

  .lg\:min-h-unset {
    min-height: unset !important;
  }

  .lg\:max-h-unset {
    max-height: unset !important;
  }

  .lg\:w-initial {
    width: initial !important;
  }

  .lg\:h-initial {
    height: initial !important;
  }

  .lg\:min-w-initial {
    min-width: initial !important;
  }

  .lg\:max-w-initial {
    max-width: initial !important;
  }

  .lg\:min-h-initial {
    min-height: initial !important;
  }

  .lg\:max-h-initial {
    max-height: initial !important;
  }

  .lg\:w-auto {
    width: auto !important;
  }

  .lg\:h-auto {
    height: auto !important;
  }

  .lg\:min-w-auto {
    min-width: auto !important;
  }

  .lg\:max-w-auto {
    max-width: auto !important;
  }

  .lg\:min-h-auto {
    min-height: auto !important;
  }

  .lg\:max-h-auto {
    max-height: auto !important;
  }

  .lg\:w-0 {
    width: 0 !important;
  }

  .lg\:h-0 {
    height: 0 !important;
  }

  .lg\:min-w-0 {
    min-width: 0 !important;
  }

  .lg\:max-w-0 {
    max-width: 0 !important;
  }

  .lg\:min-h-0 {
    min-height: 0 !important;
  }

  .lg\:max-h-0 {
    max-height: 0 !important;
  }

  .lg\:w-1 {
    width: 4px !important;
  }

  .lg\:h-1 {
    height: 4px !important;
  }

  .lg\:min-w-1 {
    min-width: 4px !important;
  }

  .lg\:max-w-1 {
    max-width: 4px !important;
  }

  .lg\:min-h-1 {
    min-height: 4px !important;
  }

  .lg\:max-h-1 {
    max-height: 4px !important;
  }

  .lg\:w-2 {
    width: 8px !important;
  }

  .lg\:h-2 {
    height: 8px !important;
  }

  .lg\:min-w-2 {
    min-width: 8px !important;
  }

  .lg\:max-w-2 {
    max-width: 8px !important;
  }

  .lg\:min-h-2 {
    min-height: 8px !important;
  }

  .lg\:max-h-2 {
    max-height: 8px !important;
  }

  .lg\:w-3 {
    width: 12px !important;
  }

  .lg\:h-3 {
    height: 12px !important;
  }

  .lg\:min-w-3 {
    min-width: 12px !important;
  }

  .lg\:max-w-3 {
    max-width: 12px !important;
  }

  .lg\:min-h-3 {
    min-height: 12px !important;
  }

  .lg\:max-h-3 {
    max-height: 12px !important;
  }

  .lg\:w-4 {
    width: 16px !important;
  }

  .lg\:h-4 {
    height: 16px !important;
  }

  .lg\:min-w-4 {
    min-width: 16px !important;
  }

  .lg\:max-w-4 {
    max-width: 16px !important;
  }

  .lg\:min-h-4 {
    min-height: 16px !important;
  }

  .lg\:max-h-4 {
    max-height: 16px !important;
  }

  .lg\:w-5 {
    width: 20px !important;
  }

  .lg\:h-5 {
    height: 20px !important;
  }

  .lg\:min-w-5 {
    min-width: 20px !important;
  }

  .lg\:max-w-5 {
    max-width: 20px !important;
  }

  .lg\:min-h-5 {
    min-height: 20px !important;
  }

  .lg\:max-h-5 {
    max-height: 20px !important;
  }

  .lg\:w-6 {
    width: 24px !important;
  }

  .lg\:h-6 {
    height: 24px !important;
  }

  .lg\:min-w-6 {
    min-width: 24px !important;
  }

  .lg\:max-w-6 {
    max-width: 24px !important;
  }

  .lg\:min-h-6 {
    min-height: 24px !important;
  }

  .lg\:max-h-6 {
    max-height: 24px !important;
  }

  .lg\:w-7 {
    width: 28px !important;
  }

  .lg\:h-7 {
    height: 28px !important;
  }

  .lg\:min-w-7 {
    min-width: 28px !important;
  }

  .lg\:max-w-7 {
    max-width: 28px !important;
  }

  .lg\:min-h-7 {
    min-height: 28px !important;
  }

  .lg\:max-h-7 {
    max-height: 28px !important;
  }

  .lg\:w-8 {
    width: 32px !important;
  }

  .lg\:h-8 {
    height: 32px !important;
  }

  .lg\:min-w-8 {
    min-width: 32px !important;
  }

  .lg\:max-w-8 {
    max-width: 32px !important;
  }

  .lg\:min-h-8 {
    min-height: 32px !important;
  }

  .lg\:max-h-8 {
    max-height: 32px !important;
  }

  .lg\:w-9 {
    width: 36px !important;
  }

  .lg\:h-9 {
    height: 36px !important;
  }

  .lg\:min-w-9 {
    min-width: 36px !important;
  }

  .lg\:max-w-9 {
    max-width: 36px !important;
  }

  .lg\:min-h-9 {
    min-height: 36px !important;
  }

  .lg\:max-h-9 {
    max-height: 36px !important;
  }

  .lg\:w-10 {
    width: 40px !important;
  }

  .lg\:h-10 {
    height: 40px !important;
  }

  .lg\:min-w-10 {
    min-width: 40px !important;
  }

  .lg\:max-w-10 {
    max-width: 40px !important;
  }

  .lg\:min-h-10 {
    min-height: 40px !important;
  }

  .lg\:max-h-10 {
    max-height: 40px !important;
  }

  .lg\:w-11 {
    width: 44px !important;
  }

  .lg\:h-11 {
    height: 44px !important;
  }

  .lg\:min-w-11 {
    min-width: 44px !important;
  }

  .lg\:max-w-11 {
    max-width: 44px !important;
  }

  .lg\:min-h-11 {
    min-height: 44px !important;
  }

  .lg\:max-h-11 {
    max-height: 44px !important;
  }

  .lg\:w-12 {
    width: 48px !important;
  }

  .lg\:h-12 {
    height: 48px !important;
  }

  .lg\:min-w-12 {
    min-width: 48px !important;
  }

  .lg\:max-w-12 {
    max-width: 48px !important;
  }

  .lg\:min-h-12 {
    min-height: 48px !important;
  }

  .lg\:max-h-12 {
    max-height: 48px !important;
  }

  .lg\:w-14 {
    width: 56px !important;
  }

  .lg\:h-14 {
    height: 56px !important;
  }

  .lg\:min-w-14 {
    min-width: 56px !important;
  }

  .lg\:max-w-14 {
    max-width: 56px !important;
  }

  .lg\:min-h-14 {
    min-height: 56px !important;
  }

  .lg\:max-h-14 {
    max-height: 56px !important;
  }

  .lg\:w-15 {
    width: 60px !important;
  }

  .lg\:h-15 {
    height: 60px !important;
  }

  .lg\:min-w-15 {
    min-width: 60px !important;
  }

  .lg\:max-w-15 {
    max-width: 60px !important;
  }

  .lg\:min-h-15 {
    min-height: 60px !important;
  }

  .lg\:max-h-15 {
    max-height: 60px !important;
  }

  .lg\:w-16 {
    width: 64px !important;
  }

  .lg\:h-16 {
    height: 64px !important;
  }

  .lg\:min-w-16 {
    min-width: 64px !important;
  }

  .lg\:max-w-16 {
    max-width: 64px !important;
  }

  .lg\:min-h-16 {
    min-height: 64px !important;
  }

  .lg\:max-h-16 {
    max-height: 64px !important;
  }

  .lg\:w-18 {
    width: 72px !important;
  }

  .lg\:h-18 {
    height: 72px !important;
  }

  .lg\:min-w-18 {
    min-width: 72px !important;
  }

  .lg\:max-w-18 {
    max-width: 72px !important;
  }

  .lg\:min-h-18 {
    min-height: 72px !important;
  }

  .lg\:max-h-18 {
    max-height: 72px !important;
  }

  .lg\:w-20 {
    width: 80px !important;
  }

  .lg\:h-20 {
    height: 80px !important;
  }

  .lg\:min-w-20 {
    min-width: 80px !important;
  }

  .lg\:max-w-20 {
    max-width: 80px !important;
  }

  .lg\:min-h-20 {
    min-height: 80px !important;
  }

  .lg\:max-h-20 {
    max-height: 80px !important;
  }

  .lg\:w-25 {
    width: 100px !important;
  }

  .lg\:h-25 {
    height: 100px !important;
  }

  .lg\:min-w-25 {
    min-width: 100px !important;
  }

  .lg\:max-w-25 {
    max-width: 100px !important;
  }

  .lg\:min-h-25 {
    min-height: 100px !important;
  }

  .lg\:max-h-25 {
    max-height: 100px !important;
  }

  .lg\:w-30 {
    width: 120px !important;
  }

  .lg\:h-30 {
    height: 120px !important;
  }

  .lg\:min-w-30 {
    min-width: 120px !important;
  }

  .lg\:max-w-30 {
    max-width: 120px !important;
  }

  .lg\:min-h-30 {
    min-height: 120px !important;
  }

  .lg\:max-h-30 {
    max-height: 120px !important;
  }

  .lg\:w-35 {
    width: 140px !important;
  }

  .lg\:h-35 {
    height: 140px !important;
  }

  .lg\:min-w-35 {
    min-width: 140px !important;
  }

  .lg\:max-w-35 {
    max-width: 140px !important;
  }

  .lg\:min-h-35 {
    min-height: 140px !important;
  }

  .lg\:max-h-35 {
    max-height: 140px !important;
  }

  .lg\:w-40 {
    width: 160px !important;
  }

  .lg\:h-40 {
    height: 160px !important;
  }

  .lg\:min-w-40 {
    min-width: 160px !important;
  }

  .lg\:max-w-40 {
    max-width: 160px !important;
  }

  .lg\:min-h-40 {
    min-height: 160px !important;
  }

  .lg\:max-h-40 {
    max-height: 160px !important;
  }

  .lg\:w-45 {
    width: 180px !important;
  }

  .lg\:h-45 {
    height: 180px !important;
  }

  .lg\:min-w-45 {
    min-width: 180px !important;
  }

  .lg\:max-w-45 {
    max-width: 180px !important;
  }

  .lg\:min-h-45 {
    min-height: 180px !important;
  }

  .lg\:max-h-45 {
    max-height: 180px !important;
  }

  .lg\:w-50 {
    width: 200px !important;
  }

  .lg\:h-50 {
    height: 200px !important;
  }

  .lg\:min-w-50 {
    min-width: 200px !important;
  }

  .lg\:max-w-50 {
    max-width: 200px !important;
  }

  .lg\:min-h-50 {
    min-height: 200px !important;
  }

  .lg\:max-h-50 {
    max-height: 200px !important;
  }

  .lg\:w-55 {
    width: 220px !important;
  }

  .lg\:h-55 {
    height: 220px !important;
  }

  .lg\:min-w-55 {
    min-width: 220px !important;
  }

  .lg\:max-w-55 {
    max-width: 220px !important;
  }

  .lg\:min-h-55 {
    min-height: 220px !important;
  }

  .lg\:max-h-55 {
    max-height: 220px !important;
  }

  .lg\:w-60 {
    width: 240px !important;
  }

  .lg\:h-60 {
    height: 240px !important;
  }

  .lg\:min-w-60 {
    min-width: 240px !important;
  }

  .lg\:max-w-60 {
    max-width: 240px !important;
  }

  .lg\:min-h-60 {
    min-height: 240px !important;
  }

  .lg\:max-h-60 {
    max-height: 240px !important;
  }

  .lg\:w-65 {
    width: 260px !important;
  }

  .lg\:h-65 {
    height: 260px !important;
  }

  .lg\:min-w-65 {
    min-width: 260px !important;
  }

  .lg\:max-w-65 {
    max-width: 260px !important;
  }

  .lg\:min-h-65 {
    min-height: 260px !important;
  }

  .lg\:max-h-65 {
    max-height: 260px !important;
  }

  .lg\:w-70 {
    width: 280px !important;
  }

  .lg\:h-70 {
    height: 280px !important;
  }

  .lg\:min-w-70 {
    min-width: 280px !important;
  }

  .lg\:max-w-70 {
    max-width: 280px !important;
  }

  .lg\:min-h-70 {
    min-height: 280px !important;
  }

  .lg\:max-h-70 {
    max-height: 280px !important;
  }

  .lg\:w-75 {
    width: 300px !important;
  }

  .lg\:h-75 {
    height: 300px !important;
  }

  .lg\:min-w-75 {
    min-width: 300px !important;
  }

  .lg\:max-w-75 {
    max-width: 300px !important;
  }

  .lg\:min-h-75 {
    min-height: 300px !important;
  }

  .lg\:max-h-75 {
    max-height: 300px !important;
  }

  .lg\:w-80 {
    width: 320px !important;
  }

  .lg\:h-80 {
    height: 320px !important;
  }

  .lg\:min-w-80 {
    min-width: 320px !important;
  }

  .lg\:max-w-80 {
    max-width: 320px !important;
  }

  .lg\:min-h-80 {
    min-height: 320px !important;
  }

  .lg\:max-h-80 {
    max-height: 320px !important;
  }

  .lg\:w-85 {
    width: 340px !important;
  }

  .lg\:h-85 {
    height: 340px !important;
  }

  .lg\:min-w-85 {
    min-width: 340px !important;
  }

  .lg\:max-w-85 {
    max-width: 340px !important;
  }

  .lg\:min-h-85 {
    min-height: 340px !important;
  }

  .lg\:max-h-85 {
    max-height: 340px !important;
  }

  .lg\:w-90 {
    width: 360px !important;
  }

  .lg\:h-90 {
    height: 360px !important;
  }

  .lg\:min-w-90 {
    min-width: 360px !important;
  }

  .lg\:max-w-90 {
    max-width: 360px !important;
  }

  .lg\:min-h-90 {
    min-height: 360px !important;
  }

  .lg\:max-h-90 {
    max-height: 360px !important;
  }

  .lg\:w-95 {
    width: 380px !important;
  }

  .lg\:h-95 {
    height: 380px !important;
  }

  .lg\:min-w-95 {
    min-width: 380px !important;
  }

  .lg\:max-w-95 {
    max-width: 380px !important;
  }

  .lg\:min-h-95 {
    min-height: 380px !important;
  }

  .lg\:max-h-95 {
    max-height: 380px !important;
  }

  .lg\:w-100 {
    width: 400px !important;
  }

  .lg\:h-100 {
    height: 400px !important;
  }

  .lg\:min-w-100 {
    min-width: 400px !important;
  }

  .lg\:max-w-100 {
    max-width: 400px !important;
  }

  .lg\:min-h-100 {
    min-height: 400px !important;
  }

  .lg\:max-h-100 {
    max-height: 400px !important;
  }

  .lg\:w-110 {
    width: 440px !important;
  }

  .lg\:h-110 {
    height: 440px !important;
  }

  .lg\:min-w-110 {
    min-width: 440px !important;
  }

  .lg\:max-w-110 {
    max-width: 440px !important;
  }

  .lg\:min-h-110 {
    min-height: 440px !important;
  }

  .lg\:max-h-110 {
    max-height: 440px !important;
  }

  .lg\:w-120 {
    width: 480px !important;
  }

  .lg\:h-120 {
    height: 480px !important;
  }

  .lg\:min-w-120 {
    min-width: 480px !important;
  }

  .lg\:max-w-120 {
    max-width: 480px !important;
  }

  .lg\:min-h-120 {
    min-height: 480px !important;
  }

  .lg\:max-h-120 {
    max-height: 480px !important;
  }

  .lg\:w-130 {
    width: 520px !important;
  }

  .lg\:h-130 {
    height: 520px !important;
  }

  .lg\:min-w-130 {
    min-width: 520px !important;
  }

  .lg\:max-w-130 {
    max-width: 520px !important;
  }

  .lg\:min-h-130 {
    min-height: 520px !important;
  }

  .lg\:max-h-130 {
    max-height: 520px !important;
  }

  .lg\:w-140 {
    width: 560px !important;
  }

  .lg\:h-140 {
    height: 560px !important;
  }

  .lg\:min-w-140 {
    min-width: 560px !important;
  }

  .lg\:max-w-140 {
    max-width: 560px !important;
  }

  .lg\:min-h-140 {
    min-height: 560px !important;
  }

  .lg\:max-h-140 {
    max-height: 560px !important;
  }

  .lg\:w-150 {
    width: 600px !important;
  }

  .lg\:h-150 {
    height: 600px !important;
  }

  .lg\:min-w-150 {
    min-width: 600px !important;
  }

  .lg\:max-w-150 {
    max-width: 600px !important;
  }

  .lg\:min-h-150 {
    min-height: 600px !important;
  }

  .lg\:max-h-150 {
    max-height: 600px !important;
  }

  .lg\:w-full {
    width: 100% !important;
  }

  .lg\:h-full {
    height: 100% !important;
  }

  .lg\:min-w-full {
    min-width: 100% !important;
  }

  .lg\:max-w-full {
    max-width: 100% !important;
  }

  .lg\:min-h-full {
    min-height: 100% !important;
  }

  .lg\:max-h-full {
    max-height: 100% !important;
  }

  .lg\:w-10\% {
    width: 10% !important;
  }

  .lg\:h-10\% {
    height: 10% !important;
  }

  .lg\:min-w-10\% {
    min-width: 10% !important;
  }

  .lg\:max-w-10\% {
    max-width: 10% !important;
  }

  .lg\:min-h-10\% {
    min-height: 10% !important;
  }

  .lg\:max-h-10\% {
    max-height: 10% !important;
  }

  .lg\:w-15\% {
    width: 15% !important;
  }

  .lg\:h-15\% {
    height: 15% !important;
  }

  .lg\:min-w-15\% {
    min-width: 15% !important;
  }

  .lg\:max-w-15\% {
    max-width: 15% !important;
  }

  .lg\:min-h-15\% {
    min-height: 15% !important;
  }

  .lg\:max-h-15\% {
    max-height: 15% !important;
  }

  .lg\:w-20\% {
    width: 20% !important;
  }

  .lg\:h-20\% {
    height: 20% !important;
  }

  .lg\:min-w-20\% {
    min-width: 20% !important;
  }

  .lg\:max-w-20\% {
    max-width: 20% !important;
  }

  .lg\:min-h-20\% {
    min-height: 20% !important;
  }

  .lg\:max-h-20\% {
    max-height: 20% !important;
  }

  .lg\:w-25\% {
    width: 25% !important;
  }

  .lg\:h-25\% {
    height: 25% !important;
  }

  .lg\:min-w-25\% {
    min-width: 25% !important;
  }

  .lg\:max-w-25\% {
    max-width: 25% !important;
  }

  .lg\:min-h-25\% {
    min-height: 25% !important;
  }

  .lg\:max-h-25\% {
    max-height: 25% !important;
  }

  .lg\:w-30\% {
    width: 30% !important;
  }

  .lg\:h-30\% {
    height: 30% !important;
  }

  .lg\:min-w-30\% {
    min-width: 30% !important;
  }

  .lg\:max-w-30\% {
    max-width: 30% !important;
  }

  .lg\:min-h-30\% {
    min-height: 30% !important;
  }

  .lg\:max-h-30\% {
    max-height: 30% !important;
  }

  .lg\:w-35\% {
    width: 35% !important;
  }

  .lg\:h-35\% {
    height: 35% !important;
  }

  .lg\:min-w-35\% {
    min-width: 35% !important;
  }

  .lg\:max-w-35\% {
    max-width: 35% !important;
  }

  .lg\:min-h-35\% {
    min-height: 35% !important;
  }

  .lg\:max-h-35\% {
    max-height: 35% !important;
  }

  .lg\:w-40\% {
    width: 40% !important;
  }

  .lg\:h-40\% {
    height: 40% !important;
  }

  .lg\:min-w-40\% {
    min-width: 40% !important;
  }

  .lg\:max-w-40\% {
    max-width: 40% !important;
  }

  .lg\:min-h-40\% {
    min-height: 40% !important;
  }

  .lg\:max-h-40\% {
    max-height: 40% !important;
  }

  .lg\:w-45\% {
    width: 45% !important;
  }

  .lg\:h-45\% {
    height: 45% !important;
  }

  .lg\:min-w-45\% {
    min-width: 45% !important;
  }

  .lg\:max-w-45\% {
    max-width: 45% !important;
  }

  .lg\:min-h-45\% {
    min-height: 45% !important;
  }

  .lg\:max-h-45\% {
    max-height: 45% !important;
  }

  .lg\:w-50\% {
    width: 50% !important;
  }

  .lg\:h-50\% {
    height: 50% !important;
  }

  .lg\:min-w-50\% {
    min-width: 50% !important;
  }

  .lg\:max-w-50\% {
    max-width: 50% !important;
  }

  .lg\:min-h-50\% {
    min-height: 50% !important;
  }

  .lg\:max-h-50\% {
    max-height: 50% !important;
  }

  .lg\:w-55\% {
    width: 55% !important;
  }

  .lg\:h-55\% {
    height: 55% !important;
  }

  .lg\:min-w-55\% {
    min-width: 55% !important;
  }

  .lg\:max-w-55\% {
    max-width: 55% !important;
  }

  .lg\:min-h-55\% {
    min-height: 55% !important;
  }

  .lg\:max-h-55\% {
    max-height: 55% !important;
  }

  .lg\:w-60\% {
    width: 60% !important;
  }

  .lg\:h-60\% {
    height: 60% !important;
  }

  .lg\:min-w-60\% {
    min-width: 60% !important;
  }

  .lg\:max-w-60\% {
    max-width: 60% !important;
  }

  .lg\:min-h-60\% {
    min-height: 60% !important;
  }

  .lg\:max-h-60\% {
    max-height: 60% !important;
  }

  .lg\:w-65\% {
    width: 65% !important;
  }

  .lg\:h-65\% {
    height: 65% !important;
  }

  .lg\:min-w-65\% {
    min-width: 65% !important;
  }

  .lg\:max-w-65\% {
    max-width: 65% !important;
  }

  .lg\:min-h-65\% {
    min-height: 65% !important;
  }

  .lg\:max-h-65\% {
    max-height: 65% !important;
  }

  .lg\:w-70\% {
    width: 70% !important;
  }

  .lg\:h-70\% {
    height: 70% !important;
  }

  .lg\:min-w-70\% {
    min-width: 70% !important;
  }

  .lg\:max-w-70\% {
    max-width: 70% !important;
  }

  .lg\:min-h-70\% {
    min-height: 70% !important;
  }

  .lg\:max-h-70\% {
    max-height: 70% !important;
  }

  .lg\:w-75\% {
    width: 75% !important;
  }

  .lg\:h-75\% {
    height: 75% !important;
  }

  .lg\:min-w-75\% {
    min-width: 75% !important;
  }

  .lg\:max-w-75\% {
    max-width: 75% !important;
  }

  .lg\:min-h-75\% {
    min-height: 75% !important;
  }

  .lg\:max-h-75\% {
    max-height: 75% !important;
  }

  .lg\:w-80\% {
    width: 80% !important;
  }

  .lg\:h-80\% {
    height: 80% !important;
  }

  .lg\:min-w-80\% {
    min-width: 80% !important;
  }

  .lg\:max-w-80\% {
    max-width: 80% !important;
  }

  .lg\:min-h-80\% {
    min-height: 80% !important;
  }

  .lg\:max-h-80\% {
    max-height: 80% !important;
  }

  .lg\:w-85\% {
    width: 85% !important;
  }

  .lg\:h-85\% {
    height: 85% !important;
  }

  .lg\:min-w-85\% {
    min-width: 85% !important;
  }

  .lg\:max-w-85\% {
    max-width: 85% !important;
  }

  .lg\:min-h-85\% {
    min-height: 85% !important;
  }

  .lg\:max-h-85\% {
    max-height: 85% !important;
  }

  .lg\:w-90\% {
    width: 90% !important;
  }

  .lg\:h-90\% {
    height: 90% !important;
  }

  .lg\:min-w-90\% {
    min-width: 90% !important;
  }

  .lg\:max-w-90\% {
    max-width: 90% !important;
  }

  .lg\:min-h-90\% {
    min-height: 90% !important;
  }

  .lg\:max-h-90\% {
    max-height: 90% !important;
  }

  .lg\:w-95\% {
    width: 95% !important;
  }

  .lg\:h-95\% {
    height: 95% !important;
  }

  .lg\:min-w-95\% {
    min-width: 95% !important;
  }

  .lg\:max-w-95\% {
    max-width: 95% !important;
  }

  .lg\:min-h-95\% {
    min-height: 95% !important;
  }

  .lg\:max-h-95\% {
    max-height: 95% !important;
  }

  .lg\:w-100\% {
    width: 100% !important;
  }

  .lg\:h-100\% {
    height: 100% !important;
  }

  .lg\:min-w-100\% {
    min-width: 100% !important;
  }

  .lg\:max-w-100\% {
    max-width: 100% !important;
  }

  .lg\:min-h-100\% {
    min-height: 100% !important;
  }

  .lg\:max-h-100\% {
    max-height: 100% !important;
  }

  .lg\:w-10vw {
    width: 10vw;
  }

  .lg\:min-w-10vw {
    min-width: 10vw;
  }

  .lg\:max-w-10vw {
    max-width: 10vw;
  }

  .lg\:w-20vw {
    width: 20vw;
  }

  .lg\:min-w-20vw {
    min-width: 20vw;
  }

  .lg\:max-w-20vw {
    max-width: 20vw;
  }

  .lg\:w-30vw {
    width: 30vw;
  }

  .lg\:min-w-30vw {
    min-width: 30vw;
  }

  .lg\:max-w-30vw {
    max-width: 30vw;
  }

  .lg\:w-40vw {
    width: 40vw;
  }

  .lg\:min-w-40vw {
    min-width: 40vw;
  }

  .lg\:max-w-40vw {
    max-width: 40vw;
  }

  .lg\:w-50vw {
    width: 50vw;
  }

  .lg\:min-w-50vw {
    min-width: 50vw;
  }

  .lg\:max-w-50vw {
    max-width: 50vw;
  }

  .lg\:w-60vw {
    width: 60vw;
  }

  .lg\:min-w-60vw {
    min-width: 60vw;
  }

  .lg\:max-w-60vw {
    max-width: 60vw;
  }

  .lg\:w-70vw {
    width: 70vw;
  }

  .lg\:min-w-70vw {
    min-width: 70vw;
  }

  .lg\:max-w-70vw {
    max-width: 70vw;
  }

  .lg\:w-80vw {
    width: 80vw;
  }

  .lg\:min-w-80vw {
    min-width: 80vw;
  }

  .lg\:max-w-80vw {
    max-width: 80vw;
  }

  .lg\:w-90vw {
    width: 90vw;
  }

  .lg\:min-w-90vw {
    min-width: 90vw;
  }

  .lg\:max-w-90vw {
    max-width: 90vw;
  }

  .lg\:w-100vw {
    width: 100vw;
  }

  .lg\:min-w-100vw {
    min-width: 100vw;
  }

  .lg\:max-w-100vw {
    max-width: 100vw;
  }

  .lg\:h-10vh {
    height: 10vh;
  }

  .lg\:min-h-10vh {
    min-height: 10vh;
  }

  .lg\:max-h-10vh {
    max-height: 10vh;
  }

  .lg\:h-20vh {
    height: 20vh;
  }

  .lg\:min-h-20vh {
    min-height: 20vh;
  }

  .lg\:max-h-20vh {
    max-height: 20vh;
  }

  .lg\:h-30vh {
    height: 30vh;
  }

  .lg\:min-h-30vh {
    min-height: 30vh;
  }

  .lg\:max-h-30vh {
    max-height: 30vh;
  }

  .lg\:h-40vh {
    height: 40vh;
  }

  .lg\:min-h-40vh {
    min-height: 40vh;
  }

  .lg\:max-h-40vh {
    max-height: 40vh;
  }

  .lg\:h-50vh {
    height: 50vh;
  }

  .lg\:min-h-50vh {
    min-height: 50vh;
  }

  .lg\:max-h-50vh {
    max-height: 50vh;
  }

  .lg\:h-60vh {
    height: 60vh;
  }

  .lg\:min-h-60vh {
    min-height: 60vh;
  }

  .lg\:max-h-60vh {
    max-height: 60vh;
  }

  .lg\:h-70vh {
    height: 70vh;
  }

  .lg\:min-h-70vh {
    min-height: 70vh;
  }

  .lg\:max-h-70vh {
    max-height: 70vh;
  }

  .lg\:h-80vh {
    height: 80vh;
  }

  .lg\:min-h-80vh {
    min-height: 80vh;
  }

  .lg\:max-h-80vh {
    max-height: 80vh;
  }

  .lg\:h-90vh {
    height: 90vh;
  }

  .lg\:min-h-90vh {
    min-height: 90vh;
  }

  .lg\:max-h-90vh {
    max-height: 90vh;
  }

  .lg\:h-100vh {
    height: 100vh;
  }

  .lg\:min-h-100vh {
    min-height: 100vh;
  }

  .lg\:max-h-100vh {
    max-height: 100vh;
  }
}

.m-unset {
  margin: unset;
}

.m-initial {
  margin: initial;
}

.m-auto {
  margin: auto;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 4px;
}

.m-2 {
  margin: 8px;
}

.m-3 {
  margin: 12px;
}

.m-4 {
  margin: 16px;
}

.m-5 {
  margin: 20px;
}

.m-6 {
  margin: 24px;
}

.m-7 {
  margin: 28px;
}

.m-8 {
  margin: 32px;
}

.m-9 {
  margin: 36px;
}

.m-10 {
  margin: 40px;
}

.m-11 {
  margin: 44px;
}

.m-12 {
  margin: 48px;
}

.m-14 {
  margin: 56px;
}

.m-16 {
  margin: 64px;
}

.m-18 {
  margin: 72px;
}

.m-20 {
  margin: 80px;
}

.m-25 {
  margin: 100px;
}

.m-30 {
  margin: 120px;
}

.m-35 {
  margin: 140px;
}

.m-40 {
  margin: 160px;
}

.m-45 {
  margin: 180px;
}

.m-50 {
  margin: 200px;
}

.m-55 {
  margin: 220px;
}

.m-60 {
  margin: 240px;
}

.m-65 {
  margin: 260px;
}

.m-70 {
  margin: 280px;
}

.m-75 {
  margin: 300px;
}

.m-80 {
  margin: 320px;
}

.m-85 {
  margin: 340px;
}

.m-90 {
  margin: 360px;
}

.m-95 {
  margin: 380px;
}

.m-100 {
  margin: 400px;
}

.my-unset {
  margin-top: unset !important;
  margin-bottom: unset !important;
}

.my-initial {
  margin-top: initial !important;
  margin-bottom: initial !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.my-3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.my-4 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.my-5 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.my-6 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.my-7 {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

.my-8 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.my-9 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}

.my-10 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-11 {
  margin-top: 44px !important;
  margin-bottom: 44px !important;
}

.my-12 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.my-14 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.my-16 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.my-18 {
  margin-top: 72px !important;
  margin-bottom: 72px !important;
}

.my-20 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.my-25 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.my-30 {
  margin-top: 120px !important;
  margin-bottom: 120px !important;
}

.my-35 {
  margin-top: 140px !important;
  margin-bottom: 140px !important;
}

.my-40 {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.my-45 {
  margin-top: 180px !important;
  margin-bottom: 180px !important;
}

.my-50 {
  margin-top: 200px !important;
  margin-bottom: 200px !important;
}

.my-55 {
  margin-top: 220px !important;
  margin-bottom: 220px !important;
}

.my-60 {
  margin-top: 240px !important;
  margin-bottom: 240px !important;
}

.my-65 {
  margin-top: 260px !important;
  margin-bottom: 260px !important;
}

.my-70 {
  margin-top: 280px !important;
  margin-bottom: 280px !important;
}

.my-75 {
  margin-top: 300px !important;
  margin-bottom: 300px !important;
}

.my-80 {
  margin-top: 320px !important;
  margin-bottom: 320px !important;
}

.my-85 {
  margin-top: 340px !important;
  margin-bottom: 340px !important;
}

.my-90 {
  margin-top: 360px !important;
  margin-bottom: 360px !important;
}

.my-95 {
  margin-top: 380px !important;
  margin-bottom: 380px !important;
}

.my-100 {
  margin-top: 400px !important;
  margin-bottom: 400px !important;
}

.mx-unset {
  margin-left: unset !important;
  margin-right: unset !important;
}

.mx-initial {
  margin-left: initial !important;
  margin-right: initial !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.mx-2 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.mx-3 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.mx-4 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.mx-5 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mx-6 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.mx-7 {
  margin-left: 28px !important;
  margin-right: 28px !important;
}

.mx-8 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.mx-9 {
  margin-left: 36px !important;
  margin-right: 36px !important;
}

.mx-10 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.mx-11 {
  margin-left: 44px !important;
  margin-right: 44px !important;
}

.mx-12 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.mx-14 {
  margin-left: 56px !important;
  margin-right: 56px !important;
}

.mx-16 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

.mx-18 {
  margin-left: 72px !important;
  margin-right: 72px !important;
}

.mx-20 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.mx-25 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

.mx-30 {
  margin-left: 120px !important;
  margin-right: 120px !important;
}

.mx-35 {
  margin-left: 140px !important;
  margin-right: 140px !important;
}

.mx-40 {
  margin-left: 160px !important;
  margin-right: 160px !important;
}

.mx-45 {
  margin-left: 180px !important;
  margin-right: 180px !important;
}

.mx-50 {
  margin-left: 200px !important;
  margin-right: 200px !important;
}

.mx-55 {
  margin-left: 220px !important;
  margin-right: 220px !important;
}

.mx-60 {
  margin-left: 240px !important;
  margin-right: 240px !important;
}

.mx-65 {
  margin-left: 260px !important;
  margin-right: 260px !important;
}

.mx-70 {
  margin-left: 280px !important;
  margin-right: 280px !important;
}

.mx-75 {
  margin-left: 300px !important;
  margin-right: 300px !important;
}

.mx-80 {
  margin-left: 320px !important;
  margin-right: 320px !important;
}

.mx-85 {
  margin-left: 340px !important;
  margin-right: 340px !important;
}

.mx-90 {
  margin-left: 360px !important;
  margin-right: 360px !important;
}

.mx-95 {
  margin-left: 380px !important;
  margin-right: 380px !important;
}

.mx-100 {
  margin-left: 400px !important;
  margin-right: 400px !important;
}

.mt-unset {
  margin-top: unset !important;
}

.mt-initial {
  margin-top: initial !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mt-3 {
  margin-top: 12px !important;
}

.mt-4 {
  margin-top: 16px !important;
}

.mt-5 {
  margin-top: 20px !important;
}

.mt-6 {
  margin-top: 24px !important;
}

.mt-7 {
  margin-top: 28px !important;
}

.mt-8 {
  margin-top: 32px !important;
}

.mt-9 {
  margin-top: 36px !important;
}

.mt-10 {
  margin-top: 40px !important;
}

.mt-11 {
  margin-top: 44px !important;
}

.mt-12 {
  margin-top: 48px !important;
}

.mt-14 {
  margin-top: 56px !important;
}

.mt-16 {
  margin-top: 64px !important;
}

.mt-18 {
  margin-top: 72px !important;
}

.mt-20 {
  margin-top: 80px !important;
}

.mt-25 {
  margin-top: 100px !important;
}

.mt-30 {
  margin-top: 120px !important;
}

.mt-35 {
  margin-top: 140px !important;
}

.mt-40 {
  margin-top: 160px !important;
}

.mt-45 {
  margin-top: 180px !important;
}

.mt-50 {
  margin-top: 200px !important;
}

.mt-55 {
  margin-top: 220px !important;
}

.mt-60 {
  margin-top: 240px !important;
}

.mt-65 {
  margin-top: 260px !important;
}

.mt-70 {
  margin-top: 280px !important;
}

.mt-75 {
  margin-top: 300px !important;
}

.mt-80 {
  margin-top: 320px !important;
}

.mt-85 {
  margin-top: 340px !important;
}

.mt-90 {
  margin-top: 360px !important;
}

.mt-95 {
  margin-top: 380px !important;
}

.mt-100 {
  margin-top: 400px !important;
}

.mb-unset {
  margin-bottom: unset !important;
}

.mb-initial {
  margin-bottom: initial !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mb-3 {
  margin-bottom: 12px !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}

.mb-5 {
  margin-bottom: 20px !important;
}

.mb-6 {
  margin-bottom: 24px !important;
}

.mb-7 {
  margin-bottom: 28px !important;
}

.mb-8 {
  margin-bottom: 32px !important;
}

.mb-9 {
  margin-bottom: 36px !important;
}

.mb-10 {
  margin-bottom: 40px !important;
}

.mb-11 {
  margin-bottom: 44px !important;
}

.mb-12 {
  margin-bottom: 48px !important;
}

.mb-14 {
  margin-bottom: 56px !important;
}

.mb-16 {
  margin-bottom: 64px !important;
}

.mb-18 {
  margin-bottom: 72px !important;
}

.mb-20 {
  margin-bottom: 80px !important;
}

.mb-25 {
  margin-bottom: 100px !important;
}

.mb-30 {
  margin-bottom: 120px !important;
}

.mb-35 {
  margin-bottom: 140px !important;
}

.mb-40 {
  margin-bottom: 160px !important;
}

.mb-45 {
  margin-bottom: 180px !important;
}

.mb-50 {
  margin-bottom: 200px !important;
}

.mb-55 {
  margin-bottom: 220px !important;
}

.mb-60 {
  margin-bottom: 240px !important;
}

.mb-65 {
  margin-bottom: 260px !important;
}

.mb-70 {
  margin-bottom: 280px !important;
}

.mb-75 {
  margin-bottom: 300px !important;
}

.mb-80 {
  margin-bottom: 320px !important;
}

.mb-85 {
  margin-bottom: 340px !important;
}

.mb-90 {
  margin-bottom: 360px !important;
}

.mb-95 {
  margin-bottom: 380px !important;
}

.mb-100 {
  margin-bottom: 400px !important;
}

.mr-unset {
  margin-right: unset !important;
}

.mr-initial {
  margin-right: initial !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 4px !important;
}

.mr-2 {
  margin-right: 8px !important;
}

.mr-3 {
  margin-right: 12px !important;
}

.mr-4 {
  margin-right: 16px !important;
}

.mr-5 {
  margin-right: 20px !important;
}

.mr-6 {
  margin-right: 24px !important;
}

.mr-7 {
  margin-right: 28px !important;
}

.mr-8 {
  margin-right: 32px !important;
}

.mr-9 {
  margin-right: 36px !important;
}

.mr-10 {
  margin-right: 40px !important;
}

.mr-11 {
  margin-right: 44px !important;
}

.mr-12 {
  margin-right: 48px !important;
}

.mr-14 {
  margin-right: 56px !important;
}

.mr-16 {
  margin-right: 64px !important;
}

.mr-18 {
  margin-right: 72px !important;
}

.mr-20 {
  margin-right: 80px !important;
}

.mr-25 {
  margin-right: 100px !important;
}

.mr-30 {
  margin-right: 120px !important;
}

.mr-35 {
  margin-right: 140px !important;
}

.mr-40 {
  margin-right: 160px !important;
}

.mr-45 {
  margin-right: 180px !important;
}

.mr-50 {
  margin-right: 200px !important;
}

.mr-55 {
  margin-right: 220px !important;
}

.mr-60 {
  margin-right: 240px !important;
}

.mr-65 {
  margin-right: 260px !important;
}

.mr-70 {
  margin-right: 280px !important;
}

.mr-75 {
  margin-right: 300px !important;
}

.mr-80 {
  margin-right: 320px !important;
}

.mr-85 {
  margin-right: 340px !important;
}

.mr-90 {
  margin-right: 360px !important;
}

.mr-95 {
  margin-right: 380px !important;
}

.mr-100 {
  margin-right: 400px !important;
}

.ml-unset {
  margin-left: unset !important;
}

.ml-initial {
  margin-left: initial !important;
}

.ml-auto {
  margin-left: auto !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 4px !important;
}

.ml-2 {
  margin-left: 8px !important;
}

.ml-3 {
  margin-left: 12px !important;
}

.ml-4 {
  margin-left: 16px !important;
}

.ml-5 {
  margin-left: 20px !important;
}

.ml-6 {
  margin-left: 24px !important;
}

.ml-7 {
  margin-left: 28px !important;
}

.ml-8 {
  margin-left: 32px !important;
}

.ml-9 {
  margin-left: 36px !important;
}

.ml-10 {
  margin-left: 40px !important;
}

.ml-11 {
  margin-left: 44px !important;
}

.ml-12 {
  margin-left: 48px !important;
}

.ml-14 {
  margin-left: 56px !important;
}

.ml-16 {
  margin-left: 64px !important;
}

.ml-18 {
  margin-left: 72px !important;
}

.ml-20 {
  margin-left: 80px !important;
}

.ml-25 {
  margin-left: 100px !important;
}

.ml-30 {
  margin-left: 120px !important;
}

.ml-35 {
  margin-left: 140px !important;
}

.ml-40 {
  margin-left: 160px !important;
}

.ml-45 {
  margin-left: 180px !important;
}

.ml-50 {
  margin-left: 200px !important;
}

.ml-55 {
  margin-left: 220px !important;
}

.ml-60 {
  margin-left: 240px !important;
}

.ml-65 {
  margin-left: 260px !important;
}

.ml-70 {
  margin-left: 280px !important;
}

.ml-75 {
  margin-left: 300px !important;
}

.ml-80 {
  margin-left: 320px !important;
}

.ml-85 {
  margin-left: 340px !important;
}

.ml-90 {
  margin-left: 360px !important;
}

.ml-95 {
  margin-left: 380px !important;
}

.ml-100 {
  margin-left: 400px !important;
}

@media (max-width: 1199px) {
  .max-lg\:m-unset {
    margin: unset;
  }

  .max-lg\:m-initial {
    margin: initial;
  }

  .max-lg\:m-auto {
    margin: auto;
  }

  .max-lg\:m-0 {
    margin: 0;
  }

  .max-lg\:m-1 {
    margin: 4px;
  }

  .max-lg\:m-2 {
    margin: 8px;
  }

  .max-lg\:m-3 {
    margin: 12px;
  }

  .max-lg\:m-4 {
    margin: 16px;
  }

  .max-lg\:m-5 {
    margin: 20px;
  }

  .max-lg\:m-6 {
    margin: 24px;
  }

  .max-lg\:m-7 {
    margin: 28px;
  }

  .max-lg\:m-8 {
    margin: 32px;
  }

  .max-lg\:m-9 {
    margin: 36px;
  }

  .max-lg\:m-10 {
    margin: 40px;
  }

  .max-lg\:m-11 {
    margin: 44px;
  }

  .max-lg\:m-12 {
    margin: 48px;
  }

  .max-lg\:m-14 {
    margin: 56px;
  }

  .max-lg\:m-16 {
    margin: 64px;
  }

  .max-lg\:m-18 {
    margin: 72px;
  }

  .max-lg\:m-20 {
    margin: 80px;
  }

  .max-lg\:m-25 {
    margin: 100px;
  }

  .max-lg\:m-30 {
    margin: 120px;
  }

  .max-lg\:m-35 {
    margin: 140px;
  }

  .max-lg\:m-40 {
    margin: 160px;
  }

  .max-lg\:m-45 {
    margin: 180px;
  }

  .max-lg\:m-50 {
    margin: 200px;
  }

  .max-lg\:m-55 {
    margin: 220px;
  }

  .max-lg\:m-60 {
    margin: 240px;
  }

  .max-lg\:m-65 {
    margin: 260px;
  }

  .max-lg\:m-70 {
    margin: 280px;
  }

  .max-lg\:m-75 {
    margin: 300px;
  }

  .max-lg\:m-80 {
    margin: 320px;
  }

  .max-lg\:m-85 {
    margin: 340px;
  }

  .max-lg\:m-90 {
    margin: 360px;
  }

  .max-lg\:m-95 {
    margin: 380px;
  }

  .max-lg\:m-100 {
    margin: 400px;
  }

  .max-lg\:my-unset {
    margin-top: unset !important;
    margin-bottom: unset !important;
  }

  .max-lg\:my-initial {
    margin-top: initial !important;
    margin-bottom: initial !important;
  }

  .max-lg\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .max-lg\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .max-lg\:my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .max-lg\:my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .max-lg\:my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .max-lg\:my-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .max-lg\:my-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .max-lg\:my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .max-lg\:my-7 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }

  .max-lg\:my-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .max-lg\:my-9 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }

  .max-lg\:my-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .max-lg\:my-11 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }

  .max-lg\:my-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .max-lg\:my-14 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }

  .max-lg\:my-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .max-lg\:my-18 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }

  .max-lg\:my-20 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .max-lg\:my-25 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .max-lg\:my-30 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .max-lg\:my-35 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }

  .max-lg\:my-40 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .max-lg\:my-45 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .max-lg\:my-50 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .max-lg\:my-55 {
    margin-top: 220px !important;
    margin-bottom: 220px !important;
  }

  .max-lg\:my-60 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .max-lg\:my-65 {
    margin-top: 260px !important;
    margin-bottom: 260px !important;
  }

  .max-lg\:my-70 {
    margin-top: 280px !important;
    margin-bottom: 280px !important;
  }

  .max-lg\:my-75 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .max-lg\:my-80 {
    margin-top: 320px !important;
    margin-bottom: 320px !important;
  }

  .max-lg\:my-85 {
    margin-top: 340px !important;
    margin-bottom: 340px !important;
  }

  .max-lg\:my-90 {
    margin-top: 360px !important;
    margin-bottom: 360px !important;
  }

  .max-lg\:my-95 {
    margin-top: 380px !important;
    margin-bottom: 380px !important;
  }

  .max-lg\:my-100 {
    margin-top: 400px !important;
    margin-bottom: 400px !important;
  }

  .max-lg\:mx-unset {
    margin-left: unset !important;
    margin-right: unset !important;
  }

  .max-lg\:mx-initial {
    margin-left: initial !important;
    margin-right: initial !important;
  }

  .max-lg\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .max-lg\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .max-lg\:mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .max-lg\:mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .max-lg\:mx-3 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .max-lg\:mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .max-lg\:mx-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .max-lg\:mx-6 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .max-lg\:mx-7 {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }

  .max-lg\:mx-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .max-lg\:mx-9 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }

  .max-lg\:mx-10 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .max-lg\:mx-11 {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }

  .max-lg\:mx-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .max-lg\:mx-14 {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }

  .max-lg\:mx-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .max-lg\:mx-18 {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }

  .max-lg\:mx-20 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .max-lg\:mx-25 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .max-lg\:mx-30 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }

  .max-lg\:mx-35 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }

  .max-lg\:mx-40 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .max-lg\:mx-45 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }

  .max-lg\:mx-50 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }

  .max-lg\:mx-55 {
    margin-left: 220px !important;
    margin-right: 220px !important;
  }

  .max-lg\:mx-60 {
    margin-left: 240px !important;
    margin-right: 240px !important;
  }

  .max-lg\:mx-65 {
    margin-left: 260px !important;
    margin-right: 260px !important;
  }

  .max-lg\:mx-70 {
    margin-left: 280px !important;
    margin-right: 280px !important;
  }

  .max-lg\:mx-75 {
    margin-left: 300px !important;
    margin-right: 300px !important;
  }

  .max-lg\:mx-80 {
    margin-left: 320px !important;
    margin-right: 320px !important;
  }

  .max-lg\:mx-85 {
    margin-left: 340px !important;
    margin-right: 340px !important;
  }

  .max-lg\:mx-90 {
    margin-left: 360px !important;
    margin-right: 360px !important;
  }

  .max-lg\:mx-95 {
    margin-left: 380px !important;
    margin-right: 380px !important;
  }

  .max-lg\:mx-100 {
    margin-left: 400px !important;
    margin-right: 400px !important;
  }

  .max-lg\:mt-unset {
    margin-top: unset !important;
  }

  .max-lg\:mt-initial {
    margin-top: initial !important;
  }

  .max-lg\:mt-auto {
    margin-top: auto !important;
  }

  .max-lg\:mt-0 {
    margin-top: 0 !important;
  }

  .max-lg\:mt-1 {
    margin-top: 4px !important;
  }

  .max-lg\:mt-2 {
    margin-top: 8px !important;
  }

  .max-lg\:mt-3 {
    margin-top: 12px !important;
  }

  .max-lg\:mt-4 {
    margin-top: 16px !important;
  }

  .max-lg\:mt-5 {
    margin-top: 20px !important;
  }

  .max-lg\:mt-6 {
    margin-top: 24px !important;
  }

  .max-lg\:mt-7 {
    margin-top: 28px !important;
  }

  .max-lg\:mt-8 {
    margin-top: 32px !important;
  }

  .max-lg\:mt-9 {
    margin-top: 36px !important;
  }

  .max-lg\:mt-10 {
    margin-top: 40px !important;
  }

  .max-lg\:mt-11 {
    margin-top: 44px !important;
  }

  .max-lg\:mt-12 {
    margin-top: 48px !important;
  }

  .max-lg\:mt-14 {
    margin-top: 56px !important;
  }

  .max-lg\:mt-16 {
    margin-top: 64px !important;
  }

  .max-lg\:mt-18 {
    margin-top: 72px !important;
  }

  .max-lg\:mt-20 {
    margin-top: 80px !important;
  }

  .max-lg\:mt-25 {
    margin-top: 100px !important;
  }

  .max-lg\:mt-30 {
    margin-top: 120px !important;
  }

  .max-lg\:mt-35 {
    margin-top: 140px !important;
  }

  .max-lg\:mt-40 {
    margin-top: 160px !important;
  }

  .max-lg\:mt-45 {
    margin-top: 180px !important;
  }

  .max-lg\:mt-50 {
    margin-top: 200px !important;
  }

  .max-lg\:mt-55 {
    margin-top: 220px !important;
  }

  .max-lg\:mt-60 {
    margin-top: 240px !important;
  }

  .max-lg\:mt-65 {
    margin-top: 260px !important;
  }

  .max-lg\:mt-70 {
    margin-top: 280px !important;
  }

  .max-lg\:mt-75 {
    margin-top: 300px !important;
  }

  .max-lg\:mt-80 {
    margin-top: 320px !important;
  }

  .max-lg\:mt-85 {
    margin-top: 340px !important;
  }

  .max-lg\:mt-90 {
    margin-top: 360px !important;
  }

  .max-lg\:mt-95 {
    margin-top: 380px !important;
  }

  .max-lg\:mt-100 {
    margin-top: 400px !important;
  }

  .max-lg\:mb-unset {
    margin-bottom: unset !important;
  }

  .max-lg\:mb-initial {
    margin-bottom: initial !important;
  }

  .max-lg\:mb-auto {
    margin-bottom: auto !important;
  }

  .max-lg\:mb-0 {
    margin-bottom: 0 !important;
  }

  .max-lg\:mb-1 {
    margin-bottom: 4px !important;
  }

  .max-lg\:mb-2 {
    margin-bottom: 8px !important;
  }

  .max-lg\:mb-3 {
    margin-bottom: 12px !important;
  }

  .max-lg\:mb-4 {
    margin-bottom: 16px !important;
  }

  .max-lg\:mb-5 {
    margin-bottom: 20px !important;
  }

  .max-lg\:mb-6 {
    margin-bottom: 24px !important;
  }

  .max-lg\:mb-7 {
    margin-bottom: 28px !important;
  }

  .max-lg\:mb-8 {
    margin-bottom: 32px !important;
  }

  .max-lg\:mb-9 {
    margin-bottom: 36px !important;
  }

  .max-lg\:mb-10 {
    margin-bottom: 40px !important;
  }

  .max-lg\:mb-11 {
    margin-bottom: 44px !important;
  }

  .max-lg\:mb-12 {
    margin-bottom: 48px !important;
  }

  .max-lg\:mb-14 {
    margin-bottom: 56px !important;
  }

  .max-lg\:mb-16 {
    margin-bottom: 64px !important;
  }

  .max-lg\:mb-18 {
    margin-bottom: 72px !important;
  }

  .max-lg\:mb-20 {
    margin-bottom: 80px !important;
  }

  .max-lg\:mb-25 {
    margin-bottom: 100px !important;
  }

  .max-lg\:mb-30 {
    margin-bottom: 120px !important;
  }

  .max-lg\:mb-35 {
    margin-bottom: 140px !important;
  }

  .max-lg\:mb-40 {
    margin-bottom: 160px !important;
  }

  .max-lg\:mb-45 {
    margin-bottom: 180px !important;
  }

  .max-lg\:mb-50 {
    margin-bottom: 200px !important;
  }

  .max-lg\:mb-55 {
    margin-bottom: 220px !important;
  }

  .max-lg\:mb-60 {
    margin-bottom: 240px !important;
  }

  .max-lg\:mb-65 {
    margin-bottom: 260px !important;
  }

  .max-lg\:mb-70 {
    margin-bottom: 280px !important;
  }

  .max-lg\:mb-75 {
    margin-bottom: 300px !important;
  }

  .max-lg\:mb-80 {
    margin-bottom: 320px !important;
  }

  .max-lg\:mb-85 {
    margin-bottom: 340px !important;
  }

  .max-lg\:mb-90 {
    margin-bottom: 360px !important;
  }

  .max-lg\:mb-95 {
    margin-bottom: 380px !important;
  }

  .max-lg\:mb-100 {
    margin-bottom: 400px !important;
  }

  .max-lg\:mr-unset {
    margin-right: unset !important;
  }

  .max-lg\:mr-initial {
    margin-right: initial !important;
  }

  .max-lg\:mr-auto {
    margin-right: auto !important;
  }

  .max-lg\:mr-0 {
    margin-right: 0 !important;
  }

  .max-lg\:mr-1 {
    margin-right: 4px !important;
  }

  .max-lg\:mr-2 {
    margin-right: 8px !important;
  }

  .max-lg\:mr-3 {
    margin-right: 12px !important;
  }

  .max-lg\:mr-4 {
    margin-right: 16px !important;
  }

  .max-lg\:mr-5 {
    margin-right: 20px !important;
  }

  .max-lg\:mr-6 {
    margin-right: 24px !important;
  }

  .max-lg\:mr-7 {
    margin-right: 28px !important;
  }

  .max-lg\:mr-8 {
    margin-right: 32px !important;
  }

  .max-lg\:mr-9 {
    margin-right: 36px !important;
  }

  .max-lg\:mr-10 {
    margin-right: 40px !important;
  }

  .max-lg\:mr-11 {
    margin-right: 44px !important;
  }

  .max-lg\:mr-12 {
    margin-right: 48px !important;
  }

  .max-lg\:mr-14 {
    margin-right: 56px !important;
  }

  .max-lg\:mr-16 {
    margin-right: 64px !important;
  }

  .max-lg\:mr-18 {
    margin-right: 72px !important;
  }

  .max-lg\:mr-20 {
    margin-right: 80px !important;
  }

  .max-lg\:mr-25 {
    margin-right: 100px !important;
  }

  .max-lg\:mr-30 {
    margin-right: 120px !important;
  }

  .max-lg\:mr-35 {
    margin-right: 140px !important;
  }

  .max-lg\:mr-40 {
    margin-right: 160px !important;
  }

  .max-lg\:mr-45 {
    margin-right: 180px !important;
  }

  .max-lg\:mr-50 {
    margin-right: 200px !important;
  }

  .max-lg\:mr-55 {
    margin-right: 220px !important;
  }

  .max-lg\:mr-60 {
    margin-right: 240px !important;
  }

  .max-lg\:mr-65 {
    margin-right: 260px !important;
  }

  .max-lg\:mr-70 {
    margin-right: 280px !important;
  }

  .max-lg\:mr-75 {
    margin-right: 300px !important;
  }

  .max-lg\:mr-80 {
    margin-right: 320px !important;
  }

  .max-lg\:mr-85 {
    margin-right: 340px !important;
  }

  .max-lg\:mr-90 {
    margin-right: 360px !important;
  }

  .max-lg\:mr-95 {
    margin-right: 380px !important;
  }

  .max-lg\:mr-100 {
    margin-right: 400px !important;
  }

  .max-lg\:ml-unset {
    margin-left: unset !important;
  }

  .max-lg\:ml-initial {
    margin-left: initial !important;
  }

  .max-lg\:ml-auto {
    margin-left: auto !important;
  }

  .max-lg\:ml-0 {
    margin-left: 0 !important;
  }

  .max-lg\:ml-1 {
    margin-left: 4px !important;
  }

  .max-lg\:ml-2 {
    margin-left: 8px !important;
  }

  .max-lg\:ml-3 {
    margin-left: 12px !important;
  }

  .max-lg\:ml-4 {
    margin-left: 16px !important;
  }

  .max-lg\:ml-5 {
    margin-left: 20px !important;
  }

  .max-lg\:ml-6 {
    margin-left: 24px !important;
  }

  .max-lg\:ml-7 {
    margin-left: 28px !important;
  }

  .max-lg\:ml-8 {
    margin-left: 32px !important;
  }

  .max-lg\:ml-9 {
    margin-left: 36px !important;
  }

  .max-lg\:ml-10 {
    margin-left: 40px !important;
  }

  .max-lg\:ml-11 {
    margin-left: 44px !important;
  }

  .max-lg\:ml-12 {
    margin-left: 48px !important;
  }

  .max-lg\:ml-14 {
    margin-left: 56px !important;
  }

  .max-lg\:ml-16 {
    margin-left: 64px !important;
  }

  .max-lg\:ml-18 {
    margin-left: 72px !important;
  }

  .max-lg\:ml-20 {
    margin-left: 80px !important;
  }

  .max-lg\:ml-25 {
    margin-left: 100px !important;
  }

  .max-lg\:ml-30 {
    margin-left: 120px !important;
  }

  .max-lg\:ml-35 {
    margin-left: 140px !important;
  }

  .max-lg\:ml-40 {
    margin-left: 160px !important;
  }

  .max-lg\:ml-45 {
    margin-left: 180px !important;
  }

  .max-lg\:ml-50 {
    margin-left: 200px !important;
  }

  .max-lg\:ml-55 {
    margin-left: 220px !important;
  }

  .max-lg\:ml-60 {
    margin-left: 240px !important;
  }

  .max-lg\:ml-65 {
    margin-left: 260px !important;
  }

  .max-lg\:ml-70 {
    margin-left: 280px !important;
  }

  .max-lg\:ml-75 {
    margin-left: 300px !important;
  }

  .max-lg\:ml-80 {
    margin-left: 320px !important;
  }

  .max-lg\:ml-85 {
    margin-left: 340px !important;
  }

  .max-lg\:ml-90 {
    margin-left: 360px !important;
  }

  .max-lg\:ml-95 {
    margin-left: 380px !important;
  }

  .max-lg\:ml-100 {
    margin-left: 400px !important;
  }
}

@media (max-width: 920px) {
  .max-md\:m-unset {
    margin: unset;
  }

  .max-md\:m-initial {
    margin: initial;
  }

  .max-md\:m-auto {
    margin: auto;
  }

  .max-md\:m-0 {
    margin: 0;
  }

  .max-md\:m-1 {
    margin: 4px;
  }

  .max-md\:m-2 {
    margin: 8px;
  }

  .max-md\:m-3 {
    margin: 12px;
  }

  .max-md\:m-4 {
    margin: 16px;
  }

  .max-md\:m-5 {
    margin: 20px;
  }

  .max-md\:m-6 {
    margin: 24px;
  }

  .max-md\:m-7 {
    margin: 28px;
  }

  .max-md\:m-8 {
    margin: 32px;
  }

  .max-md\:m-9 {
    margin: 36px;
  }

  .max-md\:m-10 {
    margin: 40px;
  }

  .max-md\:m-11 {
    margin: 44px;
  }

  .max-md\:m-12 {
    margin: 48px;
  }

  .max-md\:m-14 {
    margin: 56px;
  }

  .max-md\:m-16 {
    margin: 64px;
  }

  .max-md\:m-18 {
    margin: 72px;
  }

  .max-md\:m-20 {
    margin: 80px;
  }

  .max-md\:m-25 {
    margin: 100px;
  }

  .max-md\:m-30 {
    margin: 120px;
  }

  .max-md\:m-35 {
    margin: 140px;
  }

  .max-md\:m-40 {
    margin: 160px;
  }

  .max-md\:m-45 {
    margin: 180px;
  }

  .max-md\:m-50 {
    margin: 200px;
  }

  .max-md\:m-55 {
    margin: 220px;
  }

  .max-md\:m-60 {
    margin: 240px;
  }

  .max-md\:m-65 {
    margin: 260px;
  }

  .max-md\:m-70 {
    margin: 280px;
  }

  .max-md\:m-75 {
    margin: 300px;
  }

  .max-md\:m-80 {
    margin: 320px;
  }

  .max-md\:m-85 {
    margin: 340px;
  }

  .max-md\:m-90 {
    margin: 360px;
  }

  .max-md\:m-95 {
    margin: 380px;
  }

  .max-md\:m-100 {
    margin: 400px;
  }

  .max-md\:my-unset {
    margin-top: unset !important;
    margin-bottom: unset !important;
  }

  .max-md\:my-initial {
    margin-top: initial !important;
    margin-bottom: initial !important;
  }

  .max-md\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .max-md\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .max-md\:my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .max-md\:my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .max-md\:my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .max-md\:my-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .max-md\:my-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .max-md\:my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .max-md\:my-7 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }

  .max-md\:my-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .max-md\:my-9 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }

  .max-md\:my-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .max-md\:my-11 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }

  .max-md\:my-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .max-md\:my-14 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }

  .max-md\:my-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .max-md\:my-18 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }

  .max-md\:my-20 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .max-md\:my-25 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .max-md\:my-30 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .max-md\:my-35 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }

  .max-md\:my-40 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .max-md\:my-45 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .max-md\:my-50 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .max-md\:my-55 {
    margin-top: 220px !important;
    margin-bottom: 220px !important;
  }

  .max-md\:my-60 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .max-md\:my-65 {
    margin-top: 260px !important;
    margin-bottom: 260px !important;
  }

  .max-md\:my-70 {
    margin-top: 280px !important;
    margin-bottom: 280px !important;
  }

  .max-md\:my-75 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .max-md\:my-80 {
    margin-top: 320px !important;
    margin-bottom: 320px !important;
  }

  .max-md\:my-85 {
    margin-top: 340px !important;
    margin-bottom: 340px !important;
  }

  .max-md\:my-90 {
    margin-top: 360px !important;
    margin-bottom: 360px !important;
  }

  .max-md\:my-95 {
    margin-top: 380px !important;
    margin-bottom: 380px !important;
  }

  .max-md\:my-100 {
    margin-top: 400px !important;
    margin-bottom: 400px !important;
  }

  .max-md\:mx-unset {
    margin-left: unset !important;
    margin-right: unset !important;
  }

  .max-md\:mx-initial {
    margin-left: initial !important;
    margin-right: initial !important;
  }

  .max-md\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .max-md\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .max-md\:mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .max-md\:mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .max-md\:mx-3 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .max-md\:mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .max-md\:mx-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .max-md\:mx-6 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .max-md\:mx-7 {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }

  .max-md\:mx-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .max-md\:mx-9 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }

  .max-md\:mx-10 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .max-md\:mx-11 {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }

  .max-md\:mx-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .max-md\:mx-14 {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }

  .max-md\:mx-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .max-md\:mx-18 {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }

  .max-md\:mx-20 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .max-md\:mx-25 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .max-md\:mx-30 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }

  .max-md\:mx-35 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }

  .max-md\:mx-40 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .max-md\:mx-45 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }

  .max-md\:mx-50 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }

  .max-md\:mx-55 {
    margin-left: 220px !important;
    margin-right: 220px !important;
  }

  .max-md\:mx-60 {
    margin-left: 240px !important;
    margin-right: 240px !important;
  }

  .max-md\:mx-65 {
    margin-left: 260px !important;
    margin-right: 260px !important;
  }

  .max-md\:mx-70 {
    margin-left: 280px !important;
    margin-right: 280px !important;
  }

  .max-md\:mx-75 {
    margin-left: 300px !important;
    margin-right: 300px !important;
  }

  .max-md\:mx-80 {
    margin-left: 320px !important;
    margin-right: 320px !important;
  }

  .max-md\:mx-85 {
    margin-left: 340px !important;
    margin-right: 340px !important;
  }

  .max-md\:mx-90 {
    margin-left: 360px !important;
    margin-right: 360px !important;
  }

  .max-md\:mx-95 {
    margin-left: 380px !important;
    margin-right: 380px !important;
  }

  .max-md\:mx-100 {
    margin-left: 400px !important;
    margin-right: 400px !important;
  }

  .max-md\:mt-unset {
    margin-top: unset !important;
  }

  .max-md\:mt-initial {
    margin-top: initial !important;
  }

  .max-md\:mt-auto {
    margin-top: auto !important;
  }

  .max-md\:mt-0 {
    margin-top: 0 !important;
  }

  .max-md\:mt-1 {
    margin-top: 4px !important;
  }

  .max-md\:mt-2 {
    margin-top: 8px !important;
  }

  .max-md\:mt-3 {
    margin-top: 12px !important;
  }

  .max-md\:mt-4 {
    margin-top: 16px !important;
  }

  .max-md\:mt-5 {
    margin-top: 20px !important;
  }

  .max-md\:mt-6 {
    margin-top: 24px !important;
  }

  .max-md\:mt-7 {
    margin-top: 28px !important;
  }

  .max-md\:mt-8 {
    margin-top: 32px !important;
  }

  .max-md\:mt-9 {
    margin-top: 36px !important;
  }

  .max-md\:mt-10 {
    margin-top: 40px !important;
  }

  .max-md\:mt-11 {
    margin-top: 44px !important;
  }

  .max-md\:mt-12 {
    margin-top: 48px !important;
  }

  .max-md\:mt-14 {
    margin-top: 56px !important;
  }

  .max-md\:mt-16 {
    margin-top: 64px !important;
  }

  .max-md\:mt-18 {
    margin-top: 72px !important;
  }

  .max-md\:mt-20 {
    margin-top: 80px !important;
  }

  .max-md\:mt-25 {
    margin-top: 100px !important;
  }

  .max-md\:mt-30 {
    margin-top: 120px !important;
  }

  .max-md\:mt-35 {
    margin-top: 140px !important;
  }

  .max-md\:mt-40 {
    margin-top: 160px !important;
  }

  .max-md\:mt-45 {
    margin-top: 180px !important;
  }

  .max-md\:mt-50 {
    margin-top: 200px !important;
  }

  .max-md\:mt-55 {
    margin-top: 220px !important;
  }

  .max-md\:mt-60 {
    margin-top: 240px !important;
  }

  .max-md\:mt-65 {
    margin-top: 260px !important;
  }

  .max-md\:mt-70 {
    margin-top: 280px !important;
  }

  .max-md\:mt-75 {
    margin-top: 300px !important;
  }

  .max-md\:mt-80 {
    margin-top: 320px !important;
  }

  .max-md\:mt-85 {
    margin-top: 340px !important;
  }

  .max-md\:mt-90 {
    margin-top: 360px !important;
  }

  .max-md\:mt-95 {
    margin-top: 380px !important;
  }

  .max-md\:mt-100 {
    margin-top: 400px !important;
  }

  .max-md\:mb-unset {
    margin-bottom: unset !important;
  }

  .max-md\:mb-initial {
    margin-bottom: initial !important;
  }

  .max-md\:mb-auto {
    margin-bottom: auto !important;
  }

  .max-md\:mb-0 {
    margin-bottom: 0 !important;
  }

  .max-md\:mb-1 {
    margin-bottom: 4px !important;
  }

  .max-md\:mb-2 {
    margin-bottom: 8px !important;
  }

  .max-md\:mb-3 {
    margin-bottom: 12px !important;
  }

  .max-md\:mb-4 {
    margin-bottom: 16px !important;
  }

  .max-md\:mb-5 {
    margin-bottom: 20px !important;
  }

  .max-md\:mb-6 {
    margin-bottom: 24px !important;
  }

  .max-md\:mb-7 {
    margin-bottom: 28px !important;
  }

  .max-md\:mb-8 {
    margin-bottom: 32px !important;
  }

  .max-md\:mb-9 {
    margin-bottom: 36px !important;
  }

  .max-md\:mb-10 {
    margin-bottom: 40px !important;
  }

  .max-md\:mb-11 {
    margin-bottom: 44px !important;
  }

  .max-md\:mb-12 {
    margin-bottom: 48px !important;
  }

  .max-md\:mb-14 {
    margin-bottom: 56px !important;
  }

  .max-md\:mb-16 {
    margin-bottom: 64px !important;
  }

  .max-md\:mb-18 {
    margin-bottom: 72px !important;
  }

  .max-md\:mb-20 {
    margin-bottom: 80px !important;
  }

  .max-md\:mb-25 {
    margin-bottom: 100px !important;
  }

  .max-md\:mb-30 {
    margin-bottom: 120px !important;
  }

  .max-md\:mb-35 {
    margin-bottom: 140px !important;
  }

  .max-md\:mb-40 {
    margin-bottom: 160px !important;
  }

  .max-md\:mb-45 {
    margin-bottom: 180px !important;
  }

  .max-md\:mb-50 {
    margin-bottom: 200px !important;
  }

  .max-md\:mb-55 {
    margin-bottom: 220px !important;
  }

  .max-md\:mb-60 {
    margin-bottom: 240px !important;
  }

  .max-md\:mb-65 {
    margin-bottom: 260px !important;
  }

  .max-md\:mb-70 {
    margin-bottom: 280px !important;
  }

  .max-md\:mb-75 {
    margin-bottom: 300px !important;
  }

  .max-md\:mb-80 {
    margin-bottom: 320px !important;
  }

  .max-md\:mb-85 {
    margin-bottom: 340px !important;
  }

  .max-md\:mb-90 {
    margin-bottom: 360px !important;
  }

  .max-md\:mb-95 {
    margin-bottom: 380px !important;
  }

  .max-md\:mb-100 {
    margin-bottom: 400px !important;
  }

  .max-md\:mr-unset {
    margin-right: unset !important;
  }

  .max-md\:mr-initial {
    margin-right: initial !important;
  }

  .max-md\:mr-auto {
    margin-right: auto !important;
  }

  .max-md\:mr-0 {
    margin-right: 0 !important;
  }

  .max-md\:mr-1 {
    margin-right: 4px !important;
  }

  .max-md\:mr-2 {
    margin-right: 8px !important;
  }

  .max-md\:mr-3 {
    margin-right: 12px !important;
  }

  .max-md\:mr-4 {
    margin-right: 16px !important;
  }

  .max-md\:mr-5 {
    margin-right: 20px !important;
  }

  .max-md\:mr-6 {
    margin-right: 24px !important;
  }

  .max-md\:mr-7 {
    margin-right: 28px !important;
  }

  .max-md\:mr-8 {
    margin-right: 32px !important;
  }

  .max-md\:mr-9 {
    margin-right: 36px !important;
  }

  .max-md\:mr-10 {
    margin-right: 40px !important;
  }

  .max-md\:mr-11 {
    margin-right: 44px !important;
  }

  .max-md\:mr-12 {
    margin-right: 48px !important;
  }

  .max-md\:mr-14 {
    margin-right: 56px !important;
  }

  .max-md\:mr-16 {
    margin-right: 64px !important;
  }

  .max-md\:mr-18 {
    margin-right: 72px !important;
  }

  .max-md\:mr-20 {
    margin-right: 80px !important;
  }

  .max-md\:mr-25 {
    margin-right: 100px !important;
  }

  .max-md\:mr-30 {
    margin-right: 120px !important;
  }

  .max-md\:mr-35 {
    margin-right: 140px !important;
  }

  .max-md\:mr-40 {
    margin-right: 160px !important;
  }

  .max-md\:mr-45 {
    margin-right: 180px !important;
  }

  .max-md\:mr-50 {
    margin-right: 200px !important;
  }

  .max-md\:mr-55 {
    margin-right: 220px !important;
  }

  .max-md\:mr-60 {
    margin-right: 240px !important;
  }

  .max-md\:mr-65 {
    margin-right: 260px !important;
  }

  .max-md\:mr-70 {
    margin-right: 280px !important;
  }

  .max-md\:mr-75 {
    margin-right: 300px !important;
  }

  .max-md\:mr-80 {
    margin-right: 320px !important;
  }

  .max-md\:mr-85 {
    margin-right: 340px !important;
  }

  .max-md\:mr-90 {
    margin-right: 360px !important;
  }

  .max-md\:mr-95 {
    margin-right: 380px !important;
  }

  .max-md\:mr-100 {
    margin-right: 400px !important;
  }

  .max-md\:ml-unset {
    margin-left: unset !important;
  }

  .max-md\:ml-initial {
    margin-left: initial !important;
  }

  .max-md\:ml-auto {
    margin-left: auto !important;
  }

  .max-md\:ml-0 {
    margin-left: 0 !important;
  }

  .max-md\:ml-1 {
    margin-left: 4px !important;
  }

  .max-md\:ml-2 {
    margin-left: 8px !important;
  }

  .max-md\:ml-3 {
    margin-left: 12px !important;
  }

  .max-md\:ml-4 {
    margin-left: 16px !important;
  }

  .max-md\:ml-5 {
    margin-left: 20px !important;
  }

  .max-md\:ml-6 {
    margin-left: 24px !important;
  }

  .max-md\:ml-7 {
    margin-left: 28px !important;
  }

  .max-md\:ml-8 {
    margin-left: 32px !important;
  }

  .max-md\:ml-9 {
    margin-left: 36px !important;
  }

  .max-md\:ml-10 {
    margin-left: 40px !important;
  }

  .max-md\:ml-11 {
    margin-left: 44px !important;
  }

  .max-md\:ml-12 {
    margin-left: 48px !important;
  }

  .max-md\:ml-14 {
    margin-left: 56px !important;
  }

  .max-md\:ml-16 {
    margin-left: 64px !important;
  }

  .max-md\:ml-18 {
    margin-left: 72px !important;
  }

  .max-md\:ml-20 {
    margin-left: 80px !important;
  }

  .max-md\:ml-25 {
    margin-left: 100px !important;
  }

  .max-md\:ml-30 {
    margin-left: 120px !important;
  }

  .max-md\:ml-35 {
    margin-left: 140px !important;
  }

  .max-md\:ml-40 {
    margin-left: 160px !important;
  }

  .max-md\:ml-45 {
    margin-left: 180px !important;
  }

  .max-md\:ml-50 {
    margin-left: 200px !important;
  }

  .max-md\:ml-55 {
    margin-left: 220px !important;
  }

  .max-md\:ml-60 {
    margin-left: 240px !important;
  }

  .max-md\:ml-65 {
    margin-left: 260px !important;
  }

  .max-md\:ml-70 {
    margin-left: 280px !important;
  }

  .max-md\:ml-75 {
    margin-left: 300px !important;
  }

  .max-md\:ml-80 {
    margin-left: 320px !important;
  }

  .max-md\:ml-85 {
    margin-left: 340px !important;
  }

  .max-md\:ml-90 {
    margin-left: 360px !important;
  }

  .max-md\:ml-95 {
    margin-left: 380px !important;
  }

  .max-md\:ml-100 {
    margin-left: 400px !important;
  }
}

@media (max-width: 640px) {
  .max-sm\:m-unset {
    margin: unset;
  }

  .max-sm\:m-initial {
    margin: initial;
  }

  .max-sm\:m-auto {
    margin: auto;
  }

  .max-sm\:m-0 {
    margin: 0;
  }

  .max-sm\:m-1 {
    margin: 4px;
  }

  .max-sm\:m-2 {
    margin: 8px;
  }

  .max-sm\:m-3 {
    margin: 12px;
  }

  .max-sm\:m-4 {
    margin: 16px;
  }

  .max-sm\:m-5 {
    margin: 20px;
  }

  .max-sm\:m-6 {
    margin: 24px;
  }

  .max-sm\:m-7 {
    margin: 28px;
  }

  .max-sm\:m-8 {
    margin: 32px;
  }

  .max-sm\:m-9 {
    margin: 36px;
  }

  .max-sm\:m-10 {
    margin: 40px;
  }

  .max-sm\:m-11 {
    margin: 44px;
  }

  .max-sm\:m-12 {
    margin: 48px;
  }

  .max-sm\:m-14 {
    margin: 56px;
  }

  .max-sm\:m-16 {
    margin: 64px;
  }

  .max-sm\:m-18 {
    margin: 72px;
  }

  .max-sm\:m-20 {
    margin: 80px;
  }

  .max-sm\:m-25 {
    margin: 100px;
  }

  .max-sm\:m-30 {
    margin: 120px;
  }

  .max-sm\:m-35 {
    margin: 140px;
  }

  .max-sm\:m-40 {
    margin: 160px;
  }

  .max-sm\:m-45 {
    margin: 180px;
  }

  .max-sm\:m-50 {
    margin: 200px;
  }

  .max-sm\:m-55 {
    margin: 220px;
  }

  .max-sm\:m-60 {
    margin: 240px;
  }

  .max-sm\:m-65 {
    margin: 260px;
  }

  .max-sm\:m-70 {
    margin: 280px;
  }

  .max-sm\:m-75 {
    margin: 300px;
  }

  .max-sm\:m-80 {
    margin: 320px;
  }

  .max-sm\:m-85 {
    margin: 340px;
  }

  .max-sm\:m-90 {
    margin: 360px;
  }

  .max-sm\:m-95 {
    margin: 380px;
  }

  .max-sm\:m-100 {
    margin: 400px;
  }

  .max-sm\:my-unset {
    margin-top: unset !important;
    margin-bottom: unset !important;
  }

  .max-sm\:my-initial {
    margin-top: initial !important;
    margin-bottom: initial !important;
  }

  .max-sm\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .max-sm\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .max-sm\:my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .max-sm\:my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .max-sm\:my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .max-sm\:my-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .max-sm\:my-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .max-sm\:my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .max-sm\:my-7 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }

  .max-sm\:my-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .max-sm\:my-9 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }

  .max-sm\:my-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .max-sm\:my-11 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }

  .max-sm\:my-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .max-sm\:my-14 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }

  .max-sm\:my-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .max-sm\:my-18 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }

  .max-sm\:my-20 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .max-sm\:my-25 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .max-sm\:my-30 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .max-sm\:my-35 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }

  .max-sm\:my-40 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .max-sm\:my-45 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .max-sm\:my-50 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .max-sm\:my-55 {
    margin-top: 220px !important;
    margin-bottom: 220px !important;
  }

  .max-sm\:my-60 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .max-sm\:my-65 {
    margin-top: 260px !important;
    margin-bottom: 260px !important;
  }

  .max-sm\:my-70 {
    margin-top: 280px !important;
    margin-bottom: 280px !important;
  }

  .max-sm\:my-75 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .max-sm\:my-80 {
    margin-top: 320px !important;
    margin-bottom: 320px !important;
  }

  .max-sm\:my-85 {
    margin-top: 340px !important;
    margin-bottom: 340px !important;
  }

  .max-sm\:my-90 {
    margin-top: 360px !important;
    margin-bottom: 360px !important;
  }

  .max-sm\:my-95 {
    margin-top: 380px !important;
    margin-bottom: 380px !important;
  }

  .max-sm\:my-100 {
    margin-top: 400px !important;
    margin-bottom: 400px !important;
  }

  .max-sm\:mx-unset {
    margin-left: unset !important;
    margin-right: unset !important;
  }

  .max-sm\:mx-initial {
    margin-left: initial !important;
    margin-right: initial !important;
  }

  .max-sm\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .max-sm\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .max-sm\:mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .max-sm\:mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .max-sm\:mx-3 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .max-sm\:mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .max-sm\:mx-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .max-sm\:mx-6 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .max-sm\:mx-7 {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }

  .max-sm\:mx-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .max-sm\:mx-9 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }

  .max-sm\:mx-10 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .max-sm\:mx-11 {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }

  .max-sm\:mx-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .max-sm\:mx-14 {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }

  .max-sm\:mx-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .max-sm\:mx-18 {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }

  .max-sm\:mx-20 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .max-sm\:mx-25 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .max-sm\:mx-30 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }

  .max-sm\:mx-35 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }

  .max-sm\:mx-40 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .max-sm\:mx-45 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }

  .max-sm\:mx-50 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }

  .max-sm\:mx-55 {
    margin-left: 220px !important;
    margin-right: 220px !important;
  }

  .max-sm\:mx-60 {
    margin-left: 240px !important;
    margin-right: 240px !important;
  }

  .max-sm\:mx-65 {
    margin-left: 260px !important;
    margin-right: 260px !important;
  }

  .max-sm\:mx-70 {
    margin-left: 280px !important;
    margin-right: 280px !important;
  }

  .max-sm\:mx-75 {
    margin-left: 300px !important;
    margin-right: 300px !important;
  }

  .max-sm\:mx-80 {
    margin-left: 320px !important;
    margin-right: 320px !important;
  }

  .max-sm\:mx-85 {
    margin-left: 340px !important;
    margin-right: 340px !important;
  }

  .max-sm\:mx-90 {
    margin-left: 360px !important;
    margin-right: 360px !important;
  }

  .max-sm\:mx-95 {
    margin-left: 380px !important;
    margin-right: 380px !important;
  }

  .max-sm\:mx-100 {
    margin-left: 400px !important;
    margin-right: 400px !important;
  }

  .max-sm\:mt-unset {
    margin-top: unset !important;
  }

  .max-sm\:mt-initial {
    margin-top: initial !important;
  }

  .max-sm\:mt-auto {
    margin-top: auto !important;
  }

  .max-sm\:mt-0 {
    margin-top: 0 !important;
  }

  .max-sm\:mt-1 {
    margin-top: 4px !important;
  }

  .max-sm\:mt-2 {
    margin-top: 8px !important;
  }

  .max-sm\:mt-3 {
    margin-top: 12px !important;
  }

  .max-sm\:mt-4 {
    margin-top: 16px !important;
  }

  .max-sm\:mt-5 {
    margin-top: 20px !important;
  }

  .max-sm\:mt-6 {
    margin-top: 24px !important;
  }

  .max-sm\:mt-7 {
    margin-top: 28px !important;
  }

  .max-sm\:mt-8 {
    margin-top: 32px !important;
  }

  .max-sm\:mt-9 {
    margin-top: 36px !important;
  }

  .max-sm\:mt-10 {
    margin-top: 40px !important;
  }

  .max-sm\:mt-11 {
    margin-top: 44px !important;
  }

  .max-sm\:mt-12 {
    margin-top: 48px !important;
  }

  .max-sm\:mt-14 {
    margin-top: 56px !important;
  }

  .max-sm\:mt-16 {
    margin-top: 64px !important;
  }

  .max-sm\:mt-18 {
    margin-top: 72px !important;
  }

  .max-sm\:mt-20 {
    margin-top: 80px !important;
  }

  .max-sm\:mt-25 {
    margin-top: 100px !important;
  }

  .max-sm\:mt-30 {
    margin-top: 120px !important;
  }

  .max-sm\:mt-35 {
    margin-top: 140px !important;
  }

  .max-sm\:mt-40 {
    margin-top: 160px !important;
  }

  .max-sm\:mt-45 {
    margin-top: 180px !important;
  }

  .max-sm\:mt-50 {
    margin-top: 200px !important;
  }

  .max-sm\:mt-55 {
    margin-top: 220px !important;
  }

  .max-sm\:mt-60 {
    margin-top: 240px !important;
  }

  .max-sm\:mt-65 {
    margin-top: 260px !important;
  }

  .max-sm\:mt-70 {
    margin-top: 280px !important;
  }

  .max-sm\:mt-75 {
    margin-top: 300px !important;
  }

  .max-sm\:mt-80 {
    margin-top: 320px !important;
  }

  .max-sm\:mt-85 {
    margin-top: 340px !important;
  }

  .max-sm\:mt-90 {
    margin-top: 360px !important;
  }

  .max-sm\:mt-95 {
    margin-top: 380px !important;
  }

  .max-sm\:mt-100 {
    margin-top: 400px !important;
  }

  .max-sm\:mb-unset {
    margin-bottom: unset !important;
  }

  .max-sm\:mb-initial {
    margin-bottom: initial !important;
  }

  .max-sm\:mb-auto {
    margin-bottom: auto !important;
  }

  .max-sm\:mb-0 {
    margin-bottom: 0 !important;
  }

  .max-sm\:mb-1 {
    margin-bottom: 4px !important;
  }

  .max-sm\:mb-2 {
    margin-bottom: 8px !important;
  }

  .max-sm\:mb-3 {
    margin-bottom: 12px !important;
  }

  .max-sm\:mb-4 {
    margin-bottom: 16px !important;
  }

  .max-sm\:mb-5 {
    margin-bottom: 20px !important;
  }

  .max-sm\:mb-6 {
    margin-bottom: 24px !important;
  }

  .max-sm\:mb-7 {
    margin-bottom: 28px !important;
  }

  .max-sm\:mb-8 {
    margin-bottom: 32px !important;
  }

  .max-sm\:mb-9 {
    margin-bottom: 36px !important;
  }

  .max-sm\:mb-10 {
    margin-bottom: 40px !important;
  }

  .max-sm\:mb-11 {
    margin-bottom: 44px !important;
  }

  .max-sm\:mb-12 {
    margin-bottom: 48px !important;
  }

  .max-sm\:mb-14 {
    margin-bottom: 56px !important;
  }

  .max-sm\:mb-16 {
    margin-bottom: 64px !important;
  }

  .max-sm\:mb-18 {
    margin-bottom: 72px !important;
  }

  .max-sm\:mb-20 {
    margin-bottom: 80px !important;
  }

  .max-sm\:mb-25 {
    margin-bottom: 100px !important;
  }

  .max-sm\:mb-30 {
    margin-bottom: 120px !important;
  }

  .max-sm\:mb-35 {
    margin-bottom: 140px !important;
  }

  .max-sm\:mb-40 {
    margin-bottom: 160px !important;
  }

  .max-sm\:mb-45 {
    margin-bottom: 180px !important;
  }

  .max-sm\:mb-50 {
    margin-bottom: 200px !important;
  }

  .max-sm\:mb-55 {
    margin-bottom: 220px !important;
  }

  .max-sm\:mb-60 {
    margin-bottom: 240px !important;
  }

  .max-sm\:mb-65 {
    margin-bottom: 260px !important;
  }

  .max-sm\:mb-70 {
    margin-bottom: 280px !important;
  }

  .max-sm\:mb-75 {
    margin-bottom: 300px !important;
  }

  .max-sm\:mb-80 {
    margin-bottom: 320px !important;
  }

  .max-sm\:mb-85 {
    margin-bottom: 340px !important;
  }

  .max-sm\:mb-90 {
    margin-bottom: 360px !important;
  }

  .max-sm\:mb-95 {
    margin-bottom: 380px !important;
  }

  .max-sm\:mb-100 {
    margin-bottom: 400px !important;
  }

  .max-sm\:mr-unset {
    margin-right: unset !important;
  }

  .max-sm\:mr-initial {
    margin-right: initial !important;
  }

  .max-sm\:mr-auto {
    margin-right: auto !important;
  }

  .max-sm\:mr-0 {
    margin-right: 0 !important;
  }

  .max-sm\:mr-1 {
    margin-right: 4px !important;
  }

  .max-sm\:mr-2 {
    margin-right: 8px !important;
  }

  .max-sm\:mr-3 {
    margin-right: 12px !important;
  }

  .max-sm\:mr-4 {
    margin-right: 16px !important;
  }

  .max-sm\:mr-5 {
    margin-right: 20px !important;
  }

  .max-sm\:mr-6 {
    margin-right: 24px !important;
  }

  .max-sm\:mr-7 {
    margin-right: 28px !important;
  }

  .max-sm\:mr-8 {
    margin-right: 32px !important;
  }

  .max-sm\:mr-9 {
    margin-right: 36px !important;
  }

  .max-sm\:mr-10 {
    margin-right: 40px !important;
  }

  .max-sm\:mr-11 {
    margin-right: 44px !important;
  }

  .max-sm\:mr-12 {
    margin-right: 48px !important;
  }

  .max-sm\:mr-14 {
    margin-right: 56px !important;
  }

  .max-sm\:mr-16 {
    margin-right: 64px !important;
  }

  .max-sm\:mr-18 {
    margin-right: 72px !important;
  }

  .max-sm\:mr-20 {
    margin-right: 80px !important;
  }

  .max-sm\:mr-25 {
    margin-right: 100px !important;
  }

  .max-sm\:mr-30 {
    margin-right: 120px !important;
  }

  .max-sm\:mr-35 {
    margin-right: 140px !important;
  }

  .max-sm\:mr-40 {
    margin-right: 160px !important;
  }

  .max-sm\:mr-45 {
    margin-right: 180px !important;
  }

  .max-sm\:mr-50 {
    margin-right: 200px !important;
  }

  .max-sm\:mr-55 {
    margin-right: 220px !important;
  }

  .max-sm\:mr-60 {
    margin-right: 240px !important;
  }

  .max-sm\:mr-65 {
    margin-right: 260px !important;
  }

  .max-sm\:mr-70 {
    margin-right: 280px !important;
  }

  .max-sm\:mr-75 {
    margin-right: 300px !important;
  }

  .max-sm\:mr-80 {
    margin-right: 320px !important;
  }

  .max-sm\:mr-85 {
    margin-right: 340px !important;
  }

  .max-sm\:mr-90 {
    margin-right: 360px !important;
  }

  .max-sm\:mr-95 {
    margin-right: 380px !important;
  }

  .max-sm\:mr-100 {
    margin-right: 400px !important;
  }

  .max-sm\:ml-unset {
    margin-left: unset !important;
  }

  .max-sm\:ml-initial {
    margin-left: initial !important;
  }

  .max-sm\:ml-auto {
    margin-left: auto !important;
  }

  .max-sm\:ml-0 {
    margin-left: 0 !important;
  }

  .max-sm\:ml-1 {
    margin-left: 4px !important;
  }

  .max-sm\:ml-2 {
    margin-left: 8px !important;
  }

  .max-sm\:ml-3 {
    margin-left: 12px !important;
  }

  .max-sm\:ml-4 {
    margin-left: 16px !important;
  }

  .max-sm\:ml-5 {
    margin-left: 20px !important;
  }

  .max-sm\:ml-6 {
    margin-left: 24px !important;
  }

  .max-sm\:ml-7 {
    margin-left: 28px !important;
  }

  .max-sm\:ml-8 {
    margin-left: 32px !important;
  }

  .max-sm\:ml-9 {
    margin-left: 36px !important;
  }

  .max-sm\:ml-10 {
    margin-left: 40px !important;
  }

  .max-sm\:ml-11 {
    margin-left: 44px !important;
  }

  .max-sm\:ml-12 {
    margin-left: 48px !important;
  }

  .max-sm\:ml-14 {
    margin-left: 56px !important;
  }

  .max-sm\:ml-16 {
    margin-left: 64px !important;
  }

  .max-sm\:ml-18 {
    margin-left: 72px !important;
  }

  .max-sm\:ml-20 {
    margin-left: 80px !important;
  }

  .max-sm\:ml-25 {
    margin-left: 100px !important;
  }

  .max-sm\:ml-30 {
    margin-left: 120px !important;
  }

  .max-sm\:ml-35 {
    margin-left: 140px !important;
  }

  .max-sm\:ml-40 {
    margin-left: 160px !important;
  }

  .max-sm\:ml-45 {
    margin-left: 180px !important;
  }

  .max-sm\:ml-50 {
    margin-left: 200px !important;
  }

  .max-sm\:ml-55 {
    margin-left: 220px !important;
  }

  .max-sm\:ml-60 {
    margin-left: 240px !important;
  }

  .max-sm\:ml-65 {
    margin-left: 260px !important;
  }

  .max-sm\:ml-70 {
    margin-left: 280px !important;
  }

  .max-sm\:ml-75 {
    margin-left: 300px !important;
  }

  .max-sm\:ml-80 {
    margin-left: 320px !important;
  }

  .max-sm\:ml-85 {
    margin-left: 340px !important;
  }

  .max-sm\:ml-90 {
    margin-left: 360px !important;
  }

  .max-sm\:ml-95 {
    margin-left: 380px !important;
  }

  .max-sm\:ml-100 {
    margin-left: 400px !important;
  }
}

@media (min-width: 641px) {
  .sm\:m-unset {
    margin: unset;
  }

  .sm\:m-initial {
    margin: initial;
  }

  .sm\:m-auto {
    margin: auto;
  }

  .sm\:m-0 {
    margin: 0;
  }

  .sm\:m-1 {
    margin: 4px;
  }

  .sm\:m-2 {
    margin: 8px;
  }

  .sm\:m-3 {
    margin: 12px;
  }

  .sm\:m-4 {
    margin: 16px;
  }

  .sm\:m-5 {
    margin: 20px;
  }

  .sm\:m-6 {
    margin: 24px;
  }

  .sm\:m-7 {
    margin: 28px;
  }

  .sm\:m-8 {
    margin: 32px;
  }

  .sm\:m-9 {
    margin: 36px;
  }

  .sm\:m-10 {
    margin: 40px;
  }

  .sm\:m-11 {
    margin: 44px;
  }

  .sm\:m-12 {
    margin: 48px;
  }

  .sm\:m-14 {
    margin: 56px;
  }

  .sm\:m-16 {
    margin: 64px;
  }

  .sm\:m-18 {
    margin: 72px;
  }

  .sm\:m-20 {
    margin: 80px;
  }

  .sm\:m-25 {
    margin: 100px;
  }

  .sm\:m-30 {
    margin: 120px;
  }

  .sm\:m-35 {
    margin: 140px;
  }

  .sm\:m-40 {
    margin: 160px;
  }

  .sm\:m-45 {
    margin: 180px;
  }

  .sm\:m-50 {
    margin: 200px;
  }

  .sm\:m-55 {
    margin: 220px;
  }

  .sm\:m-60 {
    margin: 240px;
  }

  .sm\:m-65 {
    margin: 260px;
  }

  .sm\:m-70 {
    margin: 280px;
  }

  .sm\:m-75 {
    margin: 300px;
  }

  .sm\:m-80 {
    margin: 320px;
  }

  .sm\:m-85 {
    margin: 340px;
  }

  .sm\:m-90 {
    margin: 360px;
  }

  .sm\:m-95 {
    margin: 380px;
  }

  .sm\:m-100 {
    margin: 400px;
  }

  .sm\:my-unset {
    margin-top: unset !important;
    margin-bottom: unset !important;
  }

  .sm\:my-initial {
    margin-top: initial !important;
    margin-bottom: initial !important;
  }

  .sm\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .sm\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .sm\:my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .sm\:my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .sm\:my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .sm\:my-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .sm\:my-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .sm\:my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .sm\:my-7 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }

  .sm\:my-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .sm\:my-9 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }

  .sm\:my-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .sm\:my-11 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }

  .sm\:my-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .sm\:my-14 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }

  .sm\:my-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .sm\:my-18 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }

  .sm\:my-20 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .sm\:my-25 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .sm\:my-30 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .sm\:my-35 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }

  .sm\:my-40 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .sm\:my-45 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .sm\:my-50 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .sm\:my-55 {
    margin-top: 220px !important;
    margin-bottom: 220px !important;
  }

  .sm\:my-60 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .sm\:my-65 {
    margin-top: 260px !important;
    margin-bottom: 260px !important;
  }

  .sm\:my-70 {
    margin-top: 280px !important;
    margin-bottom: 280px !important;
  }

  .sm\:my-75 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .sm\:my-80 {
    margin-top: 320px !important;
    margin-bottom: 320px !important;
  }

  .sm\:my-85 {
    margin-top: 340px !important;
    margin-bottom: 340px !important;
  }

  .sm\:my-90 {
    margin-top: 360px !important;
    margin-bottom: 360px !important;
  }

  .sm\:my-95 {
    margin-top: 380px !important;
    margin-bottom: 380px !important;
  }

  .sm\:my-100 {
    margin-top: 400px !important;
    margin-bottom: 400px !important;
  }

  .sm\:mx-unset {
    margin-left: unset !important;
    margin-right: unset !important;
  }

  .sm\:mx-initial {
    margin-left: initial !important;
    margin-right: initial !important;
  }

  .sm\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .sm\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .sm\:mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .sm\:mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .sm\:mx-3 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .sm\:mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .sm\:mx-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .sm\:mx-6 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .sm\:mx-7 {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }

  .sm\:mx-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .sm\:mx-9 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }

  .sm\:mx-10 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .sm\:mx-11 {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }

  .sm\:mx-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .sm\:mx-14 {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }

  .sm\:mx-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .sm\:mx-18 {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }

  .sm\:mx-20 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .sm\:mx-25 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .sm\:mx-30 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }

  .sm\:mx-35 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }

  .sm\:mx-40 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .sm\:mx-45 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }

  .sm\:mx-50 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }

  .sm\:mx-55 {
    margin-left: 220px !important;
    margin-right: 220px !important;
  }

  .sm\:mx-60 {
    margin-left: 240px !important;
    margin-right: 240px !important;
  }

  .sm\:mx-65 {
    margin-left: 260px !important;
    margin-right: 260px !important;
  }

  .sm\:mx-70 {
    margin-left: 280px !important;
    margin-right: 280px !important;
  }

  .sm\:mx-75 {
    margin-left: 300px !important;
    margin-right: 300px !important;
  }

  .sm\:mx-80 {
    margin-left: 320px !important;
    margin-right: 320px !important;
  }

  .sm\:mx-85 {
    margin-left: 340px !important;
    margin-right: 340px !important;
  }

  .sm\:mx-90 {
    margin-left: 360px !important;
    margin-right: 360px !important;
  }

  .sm\:mx-95 {
    margin-left: 380px !important;
    margin-right: 380px !important;
  }

  .sm\:mx-100 {
    margin-left: 400px !important;
    margin-right: 400px !important;
  }

  .sm\:mt-unset {
    margin-top: unset !important;
  }

  .sm\:mt-initial {
    margin-top: initial !important;
  }

  .sm\:mt-auto {
    margin-top: auto !important;
  }

  .sm\:mt-0 {
    margin-top: 0 !important;
  }

  .sm\:mt-1 {
    margin-top: 4px !important;
  }

  .sm\:mt-2 {
    margin-top: 8px !important;
  }

  .sm\:mt-3 {
    margin-top: 12px !important;
  }

  .sm\:mt-4 {
    margin-top: 16px !important;
  }

  .sm\:mt-5 {
    margin-top: 20px !important;
  }

  .sm\:mt-6 {
    margin-top: 24px !important;
  }

  .sm\:mt-7 {
    margin-top: 28px !important;
  }

  .sm\:mt-8 {
    margin-top: 32px !important;
  }

  .sm\:mt-9 {
    margin-top: 36px !important;
  }

  .sm\:mt-10 {
    margin-top: 40px !important;
  }

  .sm\:mt-11 {
    margin-top: 44px !important;
  }

  .sm\:mt-12 {
    margin-top: 48px !important;
  }

  .sm\:mt-14 {
    margin-top: 56px !important;
  }

  .sm\:mt-16 {
    margin-top: 64px !important;
  }

  .sm\:mt-18 {
    margin-top: 72px !important;
  }

  .sm\:mt-20 {
    margin-top: 80px !important;
  }

  .sm\:mt-25 {
    margin-top: 100px !important;
  }

  .sm\:mt-30 {
    margin-top: 120px !important;
  }

  .sm\:mt-35 {
    margin-top: 140px !important;
  }

  .sm\:mt-40 {
    margin-top: 160px !important;
  }

  .sm\:mt-45 {
    margin-top: 180px !important;
  }

  .sm\:mt-50 {
    margin-top: 200px !important;
  }

  .sm\:mt-55 {
    margin-top: 220px !important;
  }

  .sm\:mt-60 {
    margin-top: 240px !important;
  }

  .sm\:mt-65 {
    margin-top: 260px !important;
  }

  .sm\:mt-70 {
    margin-top: 280px !important;
  }

  .sm\:mt-75 {
    margin-top: 300px !important;
  }

  .sm\:mt-80 {
    margin-top: 320px !important;
  }

  .sm\:mt-85 {
    margin-top: 340px !important;
  }

  .sm\:mt-90 {
    margin-top: 360px !important;
  }

  .sm\:mt-95 {
    margin-top: 380px !important;
  }

  .sm\:mt-100 {
    margin-top: 400px !important;
  }

  .sm\:mb-unset {
    margin-bottom: unset !important;
  }

  .sm\:mb-initial {
    margin-bottom: initial !important;
  }

  .sm\:mb-auto {
    margin-bottom: auto !important;
  }

  .sm\:mb-0 {
    margin-bottom: 0 !important;
  }

  .sm\:mb-1 {
    margin-bottom: 4px !important;
  }

  .sm\:mb-2 {
    margin-bottom: 8px !important;
  }

  .sm\:mb-3 {
    margin-bottom: 12px !important;
  }

  .sm\:mb-4 {
    margin-bottom: 16px !important;
  }

  .sm\:mb-5 {
    margin-bottom: 20px !important;
  }

  .sm\:mb-6 {
    margin-bottom: 24px !important;
  }

  .sm\:mb-7 {
    margin-bottom: 28px !important;
  }

  .sm\:mb-8 {
    margin-bottom: 32px !important;
  }

  .sm\:mb-9 {
    margin-bottom: 36px !important;
  }

  .sm\:mb-10 {
    margin-bottom: 40px !important;
  }

  .sm\:mb-11 {
    margin-bottom: 44px !important;
  }

  .sm\:mb-12 {
    margin-bottom: 48px !important;
  }

  .sm\:mb-14 {
    margin-bottom: 56px !important;
  }

  .sm\:mb-16 {
    margin-bottom: 64px !important;
  }

  .sm\:mb-18 {
    margin-bottom: 72px !important;
  }

  .sm\:mb-20 {
    margin-bottom: 80px !important;
  }

  .sm\:mb-25 {
    margin-bottom: 100px !important;
  }

  .sm\:mb-30 {
    margin-bottom: 120px !important;
  }

  .sm\:mb-35 {
    margin-bottom: 140px !important;
  }

  .sm\:mb-40 {
    margin-bottom: 160px !important;
  }

  .sm\:mb-45 {
    margin-bottom: 180px !important;
  }

  .sm\:mb-50 {
    margin-bottom: 200px !important;
  }

  .sm\:mb-55 {
    margin-bottom: 220px !important;
  }

  .sm\:mb-60 {
    margin-bottom: 240px !important;
  }

  .sm\:mb-65 {
    margin-bottom: 260px !important;
  }

  .sm\:mb-70 {
    margin-bottom: 280px !important;
  }

  .sm\:mb-75 {
    margin-bottom: 300px !important;
  }

  .sm\:mb-80 {
    margin-bottom: 320px !important;
  }

  .sm\:mb-85 {
    margin-bottom: 340px !important;
  }

  .sm\:mb-90 {
    margin-bottom: 360px !important;
  }

  .sm\:mb-95 {
    margin-bottom: 380px !important;
  }

  .sm\:mb-100 {
    margin-bottom: 400px !important;
  }

  .sm\:mr-unset {
    margin-right: unset !important;
  }

  .sm\:mr-initial {
    margin-right: initial !important;
  }

  .sm\:mr-auto {
    margin-right: auto !important;
  }

  .sm\:mr-0 {
    margin-right: 0 !important;
  }

  .sm\:mr-1 {
    margin-right: 4px !important;
  }

  .sm\:mr-2 {
    margin-right: 8px !important;
  }

  .sm\:mr-3 {
    margin-right: 12px !important;
  }

  .sm\:mr-4 {
    margin-right: 16px !important;
  }

  .sm\:mr-5 {
    margin-right: 20px !important;
  }

  .sm\:mr-6 {
    margin-right: 24px !important;
  }

  .sm\:mr-7 {
    margin-right: 28px !important;
  }

  .sm\:mr-8 {
    margin-right: 32px !important;
  }

  .sm\:mr-9 {
    margin-right: 36px !important;
  }

  .sm\:mr-10 {
    margin-right: 40px !important;
  }

  .sm\:mr-11 {
    margin-right: 44px !important;
  }

  .sm\:mr-12 {
    margin-right: 48px !important;
  }

  .sm\:mr-14 {
    margin-right: 56px !important;
  }

  .sm\:mr-16 {
    margin-right: 64px !important;
  }

  .sm\:mr-18 {
    margin-right: 72px !important;
  }

  .sm\:mr-20 {
    margin-right: 80px !important;
  }

  .sm\:mr-25 {
    margin-right: 100px !important;
  }

  .sm\:mr-30 {
    margin-right: 120px !important;
  }

  .sm\:mr-35 {
    margin-right: 140px !important;
  }

  .sm\:mr-40 {
    margin-right: 160px !important;
  }

  .sm\:mr-45 {
    margin-right: 180px !important;
  }

  .sm\:mr-50 {
    margin-right: 200px !important;
  }

  .sm\:mr-55 {
    margin-right: 220px !important;
  }

  .sm\:mr-60 {
    margin-right: 240px !important;
  }

  .sm\:mr-65 {
    margin-right: 260px !important;
  }

  .sm\:mr-70 {
    margin-right: 280px !important;
  }

  .sm\:mr-75 {
    margin-right: 300px !important;
  }

  .sm\:mr-80 {
    margin-right: 320px !important;
  }

  .sm\:mr-85 {
    margin-right: 340px !important;
  }

  .sm\:mr-90 {
    margin-right: 360px !important;
  }

  .sm\:mr-95 {
    margin-right: 380px !important;
  }

  .sm\:mr-100 {
    margin-right: 400px !important;
  }

  .sm\:ml-unset {
    margin-left: unset !important;
  }

  .sm\:ml-initial {
    margin-left: initial !important;
  }

  .sm\:ml-auto {
    margin-left: auto !important;
  }

  .sm\:ml-0 {
    margin-left: 0 !important;
  }

  .sm\:ml-1 {
    margin-left: 4px !important;
  }

  .sm\:ml-2 {
    margin-left: 8px !important;
  }

  .sm\:ml-3 {
    margin-left: 12px !important;
  }

  .sm\:ml-4 {
    margin-left: 16px !important;
  }

  .sm\:ml-5 {
    margin-left: 20px !important;
  }

  .sm\:ml-6 {
    margin-left: 24px !important;
  }

  .sm\:ml-7 {
    margin-left: 28px !important;
  }

  .sm\:ml-8 {
    margin-left: 32px !important;
  }

  .sm\:ml-9 {
    margin-left: 36px !important;
  }

  .sm\:ml-10 {
    margin-left: 40px !important;
  }

  .sm\:ml-11 {
    margin-left: 44px !important;
  }

  .sm\:ml-12 {
    margin-left: 48px !important;
  }

  .sm\:ml-14 {
    margin-left: 56px !important;
  }

  .sm\:ml-16 {
    margin-left: 64px !important;
  }

  .sm\:ml-18 {
    margin-left: 72px !important;
  }

  .sm\:ml-20 {
    margin-left: 80px !important;
  }

  .sm\:ml-25 {
    margin-left: 100px !important;
  }

  .sm\:ml-30 {
    margin-left: 120px !important;
  }

  .sm\:ml-35 {
    margin-left: 140px !important;
  }

  .sm\:ml-40 {
    margin-left: 160px !important;
  }

  .sm\:ml-45 {
    margin-left: 180px !important;
  }

  .sm\:ml-50 {
    margin-left: 200px !important;
  }

  .sm\:ml-55 {
    margin-left: 220px !important;
  }

  .sm\:ml-60 {
    margin-left: 240px !important;
  }

  .sm\:ml-65 {
    margin-left: 260px !important;
  }

  .sm\:ml-70 {
    margin-left: 280px !important;
  }

  .sm\:ml-75 {
    margin-left: 300px !important;
  }

  .sm\:ml-80 {
    margin-left: 320px !important;
  }

  .sm\:ml-85 {
    margin-left: 340px !important;
  }

  .sm\:ml-90 {
    margin-left: 360px !important;
  }

  .sm\:ml-95 {
    margin-left: 380px !important;
  }

  .sm\:ml-100 {
    margin-left: 400px !important;
  }
}

@media (min-width: 921px) {
  .md\:m-unset {
    margin: unset;
  }

  .md\:m-initial {
    margin: initial;
  }

  .md\:m-auto {
    margin: auto;
  }

  .md\:m-0 {
    margin: 0;
  }

  .md\:m-1 {
    margin: 4px;
  }

  .md\:m-2 {
    margin: 8px;
  }

  .md\:m-3 {
    margin: 12px;
  }

  .md\:m-4 {
    margin: 16px;
  }

  .md\:m-5 {
    margin: 20px;
  }

  .md\:m-6 {
    margin: 24px;
  }

  .md\:m-7 {
    margin: 28px;
  }

  .md\:m-8 {
    margin: 32px;
  }

  .md\:m-9 {
    margin: 36px;
  }

  .md\:m-10 {
    margin: 40px;
  }

  .md\:m-11 {
    margin: 44px;
  }

  .md\:m-12 {
    margin: 48px;
  }

  .md\:m-14 {
    margin: 56px;
  }

  .md\:m-16 {
    margin: 64px;
  }

  .md\:m-18 {
    margin: 72px;
  }

  .md\:m-20 {
    margin: 80px;
  }

  .md\:m-25 {
    margin: 100px;
  }

  .md\:m-30 {
    margin: 120px;
  }

  .md\:m-35 {
    margin: 140px;
  }

  .md\:m-40 {
    margin: 160px;
  }

  .md\:m-45 {
    margin: 180px;
  }

  .md\:m-50 {
    margin: 200px;
  }

  .md\:m-55 {
    margin: 220px;
  }

  .md\:m-60 {
    margin: 240px;
  }

  .md\:m-65 {
    margin: 260px;
  }

  .md\:m-70 {
    margin: 280px;
  }

  .md\:m-75 {
    margin: 300px;
  }

  .md\:m-80 {
    margin: 320px;
  }

  .md\:m-85 {
    margin: 340px;
  }

  .md\:m-90 {
    margin: 360px;
  }

  .md\:m-95 {
    margin: 380px;
  }

  .md\:m-100 {
    margin: 400px;
  }

  .md\:my-unset {
    margin-top: unset !important;
    margin-bottom: unset !important;
  }

  .md\:my-initial {
    margin-top: initial !important;
    margin-bottom: initial !important;
  }

  .md\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .md\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .md\:my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .md\:my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .md\:my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .md\:my-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .md\:my-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .md\:my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .md\:my-7 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }

  .md\:my-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .md\:my-9 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }

  .md\:my-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .md\:my-11 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }

  .md\:my-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .md\:my-14 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }

  .md\:my-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .md\:my-18 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }

  .md\:my-20 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .md\:my-25 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .md\:my-30 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .md\:my-35 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }

  .md\:my-40 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .md\:my-45 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .md\:my-50 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .md\:my-55 {
    margin-top: 220px !important;
    margin-bottom: 220px !important;
  }

  .md\:my-60 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .md\:my-65 {
    margin-top: 260px !important;
    margin-bottom: 260px !important;
  }

  .md\:my-70 {
    margin-top: 280px !important;
    margin-bottom: 280px !important;
  }

  .md\:my-75 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .md\:my-80 {
    margin-top: 320px !important;
    margin-bottom: 320px !important;
  }

  .md\:my-85 {
    margin-top: 340px !important;
    margin-bottom: 340px !important;
  }

  .md\:my-90 {
    margin-top: 360px !important;
    margin-bottom: 360px !important;
  }

  .md\:my-95 {
    margin-top: 380px !important;
    margin-bottom: 380px !important;
  }

  .md\:my-100 {
    margin-top: 400px !important;
    margin-bottom: 400px !important;
  }

  .md\:mx-unset {
    margin-left: unset !important;
    margin-right: unset !important;
  }

  .md\:mx-initial {
    margin-left: initial !important;
    margin-right: initial !important;
  }

  .md\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .md\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .md\:mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .md\:mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .md\:mx-3 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .md\:mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .md\:mx-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .md\:mx-6 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .md\:mx-7 {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }

  .md\:mx-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .md\:mx-9 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }

  .md\:mx-10 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .md\:mx-11 {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }

  .md\:mx-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .md\:mx-14 {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }

  .md\:mx-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .md\:mx-18 {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }

  .md\:mx-20 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .md\:mx-25 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .md\:mx-30 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }

  .md\:mx-35 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }

  .md\:mx-40 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .md\:mx-45 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }

  .md\:mx-50 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }

  .md\:mx-55 {
    margin-left: 220px !important;
    margin-right: 220px !important;
  }

  .md\:mx-60 {
    margin-left: 240px !important;
    margin-right: 240px !important;
  }

  .md\:mx-65 {
    margin-left: 260px !important;
    margin-right: 260px !important;
  }

  .md\:mx-70 {
    margin-left: 280px !important;
    margin-right: 280px !important;
  }

  .md\:mx-75 {
    margin-left: 300px !important;
    margin-right: 300px !important;
  }

  .md\:mx-80 {
    margin-left: 320px !important;
    margin-right: 320px !important;
  }

  .md\:mx-85 {
    margin-left: 340px !important;
    margin-right: 340px !important;
  }

  .md\:mx-90 {
    margin-left: 360px !important;
    margin-right: 360px !important;
  }

  .md\:mx-95 {
    margin-left: 380px !important;
    margin-right: 380px !important;
  }

  .md\:mx-100 {
    margin-left: 400px !important;
    margin-right: 400px !important;
  }

  .md\:mt-unset {
    margin-top: unset !important;
  }

  .md\:mt-initial {
    margin-top: initial !important;
  }

  .md\:mt-auto {
    margin-top: auto !important;
  }

  .md\:mt-0 {
    margin-top: 0 !important;
  }

  .md\:mt-1 {
    margin-top: 4px !important;
  }

  .md\:mt-2 {
    margin-top: 8px !important;
  }

  .md\:mt-3 {
    margin-top: 12px !important;
  }

  .md\:mt-4 {
    margin-top: 16px !important;
  }

  .md\:mt-5 {
    margin-top: 20px !important;
  }

  .md\:mt-6 {
    margin-top: 24px !important;
  }

  .md\:mt-7 {
    margin-top: 28px !important;
  }

  .md\:mt-8 {
    margin-top: 32px !important;
  }

  .md\:mt-9 {
    margin-top: 36px !important;
  }

  .md\:mt-10 {
    margin-top: 40px !important;
  }

  .md\:mt-11 {
    margin-top: 44px !important;
  }

  .md\:mt-12 {
    margin-top: 48px !important;
  }

  .md\:mt-14 {
    margin-top: 56px !important;
  }

  .md\:mt-16 {
    margin-top: 64px !important;
  }

  .md\:mt-18 {
    margin-top: 72px !important;
  }

  .md\:mt-20 {
    margin-top: 80px !important;
  }

  .md\:mt-25 {
    margin-top: 100px !important;
  }

  .md\:mt-30 {
    margin-top: 120px !important;
  }

  .md\:mt-35 {
    margin-top: 140px !important;
  }

  .md\:mt-40 {
    margin-top: 160px !important;
  }

  .md\:mt-45 {
    margin-top: 180px !important;
  }

  .md\:mt-50 {
    margin-top: 200px !important;
  }

  .md\:mt-55 {
    margin-top: 220px !important;
  }

  .md\:mt-60 {
    margin-top: 240px !important;
  }

  .md\:mt-65 {
    margin-top: 260px !important;
  }

  .md\:mt-70 {
    margin-top: 280px !important;
  }

  .md\:mt-75 {
    margin-top: 300px !important;
  }

  .md\:mt-80 {
    margin-top: 320px !important;
  }

  .md\:mt-85 {
    margin-top: 340px !important;
  }

  .md\:mt-90 {
    margin-top: 360px !important;
  }

  .md\:mt-95 {
    margin-top: 380px !important;
  }

  .md\:mt-100 {
    margin-top: 400px !important;
  }

  .md\:mb-unset {
    margin-bottom: unset !important;
  }

  .md\:mb-initial {
    margin-bottom: initial !important;
  }

  .md\:mb-auto {
    margin-bottom: auto !important;
  }

  .md\:mb-0 {
    margin-bottom: 0 !important;
  }

  .md\:mb-1 {
    margin-bottom: 4px !important;
  }

  .md\:mb-2 {
    margin-bottom: 8px !important;
  }

  .md\:mb-3 {
    margin-bottom: 12px !important;
  }

  .md\:mb-4 {
    margin-bottom: 16px !important;
  }

  .md\:mb-5 {
    margin-bottom: 20px !important;
  }

  .md\:mb-6 {
    margin-bottom: 24px !important;
  }

  .md\:mb-7 {
    margin-bottom: 28px !important;
  }

  .md\:mb-8 {
    margin-bottom: 32px !important;
  }

  .md\:mb-9 {
    margin-bottom: 36px !important;
  }

  .md\:mb-10 {
    margin-bottom: 40px !important;
  }

  .md\:mb-11 {
    margin-bottom: 44px !important;
  }

  .md\:mb-12 {
    margin-bottom: 48px !important;
  }

  .md\:mb-14 {
    margin-bottom: 56px !important;
  }

  .md\:mb-16 {
    margin-bottom: 64px !important;
  }

  .md\:mb-18 {
    margin-bottom: 72px !important;
  }

  .md\:mb-20 {
    margin-bottom: 80px !important;
  }

  .md\:mb-25 {
    margin-bottom: 100px !important;
  }

  .md\:mb-30 {
    margin-bottom: 120px !important;
  }

  .md\:mb-35 {
    margin-bottom: 140px !important;
  }

  .md\:mb-40 {
    margin-bottom: 160px !important;
  }

  .md\:mb-45 {
    margin-bottom: 180px !important;
  }

  .md\:mb-50 {
    margin-bottom: 200px !important;
  }

  .md\:mb-55 {
    margin-bottom: 220px !important;
  }

  .md\:mb-60 {
    margin-bottom: 240px !important;
  }

  .md\:mb-65 {
    margin-bottom: 260px !important;
  }

  .md\:mb-70 {
    margin-bottom: 280px !important;
  }

  .md\:mb-75 {
    margin-bottom: 300px !important;
  }

  .md\:mb-80 {
    margin-bottom: 320px !important;
  }

  .md\:mb-85 {
    margin-bottom: 340px !important;
  }

  .md\:mb-90 {
    margin-bottom: 360px !important;
  }

  .md\:mb-95 {
    margin-bottom: 380px !important;
  }

  .md\:mb-100 {
    margin-bottom: 400px !important;
  }

  .md\:mr-unset {
    margin-right: unset !important;
  }

  .md\:mr-initial {
    margin-right: initial !important;
  }

  .md\:mr-auto {
    margin-right: auto !important;
  }

  .md\:mr-0 {
    margin-right: 0 !important;
  }

  .md\:mr-1 {
    margin-right: 4px !important;
  }

  .md\:mr-2 {
    margin-right: 8px !important;
  }

  .md\:mr-3 {
    margin-right: 12px !important;
  }

  .md\:mr-4 {
    margin-right: 16px !important;
  }

  .md\:mr-5 {
    margin-right: 20px !important;
  }

  .md\:mr-6 {
    margin-right: 24px !important;
  }

  .md\:mr-7 {
    margin-right: 28px !important;
  }

  .md\:mr-8 {
    margin-right: 32px !important;
  }

  .md\:mr-9 {
    margin-right: 36px !important;
  }

  .md\:mr-10 {
    margin-right: 40px !important;
  }

  .md\:mr-11 {
    margin-right: 44px !important;
  }

  .md\:mr-12 {
    margin-right: 48px !important;
  }

  .md\:mr-14 {
    margin-right: 56px !important;
  }

  .md\:mr-16 {
    margin-right: 64px !important;
  }

  .md\:mr-18 {
    margin-right: 72px !important;
  }

  .md\:mr-20 {
    margin-right: 80px !important;
  }

  .md\:mr-25 {
    margin-right: 100px !important;
  }

  .md\:mr-30 {
    margin-right: 120px !important;
  }

  .md\:mr-35 {
    margin-right: 140px !important;
  }

  .md\:mr-40 {
    margin-right: 160px !important;
  }

  .md\:mr-45 {
    margin-right: 180px !important;
  }

  .md\:mr-50 {
    margin-right: 200px !important;
  }

  .md\:mr-55 {
    margin-right: 220px !important;
  }

  .md\:mr-60 {
    margin-right: 240px !important;
  }

  .md\:mr-65 {
    margin-right: 260px !important;
  }

  .md\:mr-70 {
    margin-right: 280px !important;
  }

  .md\:mr-75 {
    margin-right: 300px !important;
  }

  .md\:mr-80 {
    margin-right: 320px !important;
  }

  .md\:mr-85 {
    margin-right: 340px !important;
  }

  .md\:mr-90 {
    margin-right: 360px !important;
  }

  .md\:mr-95 {
    margin-right: 380px !important;
  }

  .md\:mr-100 {
    margin-right: 400px !important;
  }

  .md\:ml-unset {
    margin-left: unset !important;
  }

  .md\:ml-initial {
    margin-left: initial !important;
  }

  .md\:ml-auto {
    margin-left: auto !important;
  }

  .md\:ml-0 {
    margin-left: 0 !important;
  }

  .md\:ml-1 {
    margin-left: 4px !important;
  }

  .md\:ml-2 {
    margin-left: 8px !important;
  }

  .md\:ml-3 {
    margin-left: 12px !important;
  }

  .md\:ml-4 {
    margin-left: 16px !important;
  }

  .md\:ml-5 {
    margin-left: 20px !important;
  }

  .md\:ml-6 {
    margin-left: 24px !important;
  }

  .md\:ml-7 {
    margin-left: 28px !important;
  }

  .md\:ml-8 {
    margin-left: 32px !important;
  }

  .md\:ml-9 {
    margin-left: 36px !important;
  }

  .md\:ml-10 {
    margin-left: 40px !important;
  }

  .md\:ml-11 {
    margin-left: 44px !important;
  }

  .md\:ml-12 {
    margin-left: 48px !important;
  }

  .md\:ml-14 {
    margin-left: 56px !important;
  }

  .md\:ml-16 {
    margin-left: 64px !important;
  }

  .md\:ml-18 {
    margin-left: 72px !important;
  }

  .md\:ml-20 {
    margin-left: 80px !important;
  }

  .md\:ml-25 {
    margin-left: 100px !important;
  }

  .md\:ml-30 {
    margin-left: 120px !important;
  }

  .md\:ml-35 {
    margin-left: 140px !important;
  }

  .md\:ml-40 {
    margin-left: 160px !important;
  }

  .md\:ml-45 {
    margin-left: 180px !important;
  }

  .md\:ml-50 {
    margin-left: 200px !important;
  }

  .md\:ml-55 {
    margin-left: 220px !important;
  }

  .md\:ml-60 {
    margin-left: 240px !important;
  }

  .md\:ml-65 {
    margin-left: 260px !important;
  }

  .md\:ml-70 {
    margin-left: 280px !important;
  }

  .md\:ml-75 {
    margin-left: 300px !important;
  }

  .md\:ml-80 {
    margin-left: 320px !important;
  }

  .md\:ml-85 {
    margin-left: 340px !important;
  }

  .md\:ml-90 {
    margin-left: 360px !important;
  }

  .md\:ml-95 {
    margin-left: 380px !important;
  }

  .md\:ml-100 {
    margin-left: 400px !important;
  }
}

@media (min-width: 1201px) {
  .lg\:m-unset {
    margin: unset;
  }

  .lg\:m-initial {
    margin: initial;
  }

  .lg\:m-auto {
    margin: auto;
  }

  .lg\:m-0 {
    margin: 0;
  }

  .lg\:m-1 {
    margin: 4px;
  }

  .lg\:m-2 {
    margin: 8px;
  }

  .lg\:m-3 {
    margin: 12px;
  }

  .lg\:m-4 {
    margin: 16px;
  }

  .lg\:m-5 {
    margin: 20px;
  }

  .lg\:m-6 {
    margin: 24px;
  }

  .lg\:m-7 {
    margin: 28px;
  }

  .lg\:m-8 {
    margin: 32px;
  }

  .lg\:m-9 {
    margin: 36px;
  }

  .lg\:m-10 {
    margin: 40px;
  }

  .lg\:m-11 {
    margin: 44px;
  }

  .lg\:m-12 {
    margin: 48px;
  }

  .lg\:m-14 {
    margin: 56px;
  }

  .lg\:m-16 {
    margin: 64px;
  }

  .lg\:m-18 {
    margin: 72px;
  }

  .lg\:m-20 {
    margin: 80px;
  }

  .lg\:m-25 {
    margin: 100px;
  }

  .lg\:m-30 {
    margin: 120px;
  }

  .lg\:m-35 {
    margin: 140px;
  }

  .lg\:m-40 {
    margin: 160px;
  }

  .lg\:m-45 {
    margin: 180px;
  }

  .lg\:m-50 {
    margin: 200px;
  }

  .lg\:m-55 {
    margin: 220px;
  }

  .lg\:m-60 {
    margin: 240px;
  }

  .lg\:m-65 {
    margin: 260px;
  }

  .lg\:m-70 {
    margin: 280px;
  }

  .lg\:m-75 {
    margin: 300px;
  }

  .lg\:m-80 {
    margin: 320px;
  }

  .lg\:m-85 {
    margin: 340px;
  }

  .lg\:m-90 {
    margin: 360px;
  }

  .lg\:m-95 {
    margin: 380px;
  }

  .lg\:m-100 {
    margin: 400px;
  }

  .lg\:my-unset {
    margin-top: unset !important;
    margin-bottom: unset !important;
  }

  .lg\:my-initial {
    margin-top: initial !important;
    margin-bottom: initial !important;
  }

  .lg\:my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .lg\:my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .lg\:my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .lg\:my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .lg\:my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .lg\:my-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }

  .lg\:my-5 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .lg\:my-6 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .lg\:my-7 {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
  }

  .lg\:my-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }

  .lg\:my-9 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }

  .lg\:my-10 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .lg\:my-11 {
    margin-top: 44px !important;
    margin-bottom: 44px !important;
  }

  .lg\:my-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }

  .lg\:my-14 {
    margin-top: 56px !important;
    margin-bottom: 56px !important;
  }

  .lg\:my-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }

  .lg\:my-18 {
    margin-top: 72px !important;
    margin-bottom: 72px !important;
  }

  .lg\:my-20 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .lg\:my-25 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .lg\:my-30 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .lg\:my-35 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }

  .lg\:my-40 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .lg\:my-45 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .lg\:my-50 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .lg\:my-55 {
    margin-top: 220px !important;
    margin-bottom: 220px !important;
  }

  .lg\:my-60 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .lg\:my-65 {
    margin-top: 260px !important;
    margin-bottom: 260px !important;
  }

  .lg\:my-70 {
    margin-top: 280px !important;
    margin-bottom: 280px !important;
  }

  .lg\:my-75 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .lg\:my-80 {
    margin-top: 320px !important;
    margin-bottom: 320px !important;
  }

  .lg\:my-85 {
    margin-top: 340px !important;
    margin-bottom: 340px !important;
  }

  .lg\:my-90 {
    margin-top: 360px !important;
    margin-bottom: 360px !important;
  }

  .lg\:my-95 {
    margin-top: 380px !important;
    margin-bottom: 380px !important;
  }

  .lg\:my-100 {
    margin-top: 400px !important;
    margin-bottom: 400px !important;
  }

  .lg\:mx-unset {
    margin-left: unset !important;
    margin-right: unset !important;
  }

  .lg\:mx-initial {
    margin-left: initial !important;
    margin-right: initial !important;
  }

  .lg\:mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .lg\:mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .lg\:mx-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }

  .lg\:mx-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .lg\:mx-3 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  .lg\:mx-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .lg\:mx-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .lg\:mx-6 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }

  .lg\:mx-7 {
    margin-left: 28px !important;
    margin-right: 28px !important;
  }

  .lg\:mx-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }

  .lg\:mx-9 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }

  .lg\:mx-10 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }

  .lg\:mx-11 {
    margin-left: 44px !important;
    margin-right: 44px !important;
  }

  .lg\:mx-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }

  .lg\:mx-14 {
    margin-left: 56px !important;
    margin-right: 56px !important;
  }

  .lg\:mx-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }

  .lg\:mx-18 {
    margin-left: 72px !important;
    margin-right: 72px !important;
  }

  .lg\:mx-20 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }

  .lg\:mx-25 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }

  .lg\:mx-30 {
    margin-left: 120px !important;
    margin-right: 120px !important;
  }

  .lg\:mx-35 {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }

  .lg\:mx-40 {
    margin-left: 160px !important;
    margin-right: 160px !important;
  }

  .lg\:mx-45 {
    margin-left: 180px !important;
    margin-right: 180px !important;
  }

  .lg\:mx-50 {
    margin-left: 200px !important;
    margin-right: 200px !important;
  }

  .lg\:mx-55 {
    margin-left: 220px !important;
    margin-right: 220px !important;
  }

  .lg\:mx-60 {
    margin-left: 240px !important;
    margin-right: 240px !important;
  }

  .lg\:mx-65 {
    margin-left: 260px !important;
    margin-right: 260px !important;
  }

  .lg\:mx-70 {
    margin-left: 280px !important;
    margin-right: 280px !important;
  }

  .lg\:mx-75 {
    margin-left: 300px !important;
    margin-right: 300px !important;
  }

  .lg\:mx-80 {
    margin-left: 320px !important;
    margin-right: 320px !important;
  }

  .lg\:mx-85 {
    margin-left: 340px !important;
    margin-right: 340px !important;
  }

  .lg\:mx-90 {
    margin-left: 360px !important;
    margin-right: 360px !important;
  }

  .lg\:mx-95 {
    margin-left: 380px !important;
    margin-right: 380px !important;
  }

  .lg\:mx-100 {
    margin-left: 400px !important;
    margin-right: 400px !important;
  }

  .lg\:mt-unset {
    margin-top: unset !important;
  }

  .lg\:mt-initial {
    margin-top: initial !important;
  }

  .lg\:mt-auto {
    margin-top: auto !important;
  }

  .lg\:mt-0 {
    margin-top: 0 !important;
  }

  .lg\:mt-1 {
    margin-top: 4px !important;
  }

  .lg\:mt-2 {
    margin-top: 8px !important;
  }

  .lg\:mt-3 {
    margin-top: 12px !important;
  }

  .lg\:mt-4 {
    margin-top: 16px !important;
  }

  .lg\:mt-5 {
    margin-top: 20px !important;
  }

  .lg\:mt-6 {
    margin-top: 24px !important;
  }

  .lg\:mt-7 {
    margin-top: 28px !important;
  }

  .lg\:mt-8 {
    margin-top: 32px !important;
  }

  .lg\:mt-9 {
    margin-top: 36px !important;
  }

  .lg\:mt-10 {
    margin-top: 40px !important;
  }

  .lg\:mt-11 {
    margin-top: 44px !important;
  }

  .lg\:mt-12 {
    margin-top: 48px !important;
  }

  .lg\:mt-14 {
    margin-top: 56px !important;
  }

  .lg\:mt-16 {
    margin-top: 64px !important;
  }

  .lg\:mt-18 {
    margin-top: 72px !important;
  }

  .lg\:mt-20 {
    margin-top: 80px !important;
  }

  .lg\:mt-25 {
    margin-top: 100px !important;
  }

  .lg\:mt-30 {
    margin-top: 120px !important;
  }

  .lg\:mt-35 {
    margin-top: 140px !important;
  }

  .lg\:mt-40 {
    margin-top: 160px !important;
  }

  .lg\:mt-45 {
    margin-top: 180px !important;
  }

  .lg\:mt-50 {
    margin-top: 200px !important;
  }

  .lg\:mt-55 {
    margin-top: 220px !important;
  }

  .lg\:mt-60 {
    margin-top: 240px !important;
  }

  .lg\:mt-65 {
    margin-top: 260px !important;
  }

  .lg\:mt-70 {
    margin-top: 280px !important;
  }

  .lg\:mt-75 {
    margin-top: 300px !important;
  }

  .lg\:mt-80 {
    margin-top: 320px !important;
  }

  .lg\:mt-85 {
    margin-top: 340px !important;
  }

  .lg\:mt-90 {
    margin-top: 360px !important;
  }

  .lg\:mt-95 {
    margin-top: 380px !important;
  }

  .lg\:mt-100 {
    margin-top: 400px !important;
  }

  .lg\:mb-unset {
    margin-bottom: unset !important;
  }

  .lg\:mb-initial {
    margin-bottom: initial !important;
  }

  .lg\:mb-auto {
    margin-bottom: auto !important;
  }

  .lg\:mb-0 {
    margin-bottom: 0 !important;
  }

  .lg\:mb-1 {
    margin-bottom: 4px !important;
  }

  .lg\:mb-2 {
    margin-bottom: 8px !important;
  }

  .lg\:mb-3 {
    margin-bottom: 12px !important;
  }

  .lg\:mb-4 {
    margin-bottom: 16px !important;
  }

  .lg\:mb-5 {
    margin-bottom: 20px !important;
  }

  .lg\:mb-6 {
    margin-bottom: 24px !important;
  }

  .lg\:mb-7 {
    margin-bottom: 28px !important;
  }

  .lg\:mb-8 {
    margin-bottom: 32px !important;
  }

  .lg\:mb-9 {
    margin-bottom: 36px !important;
  }

  .lg\:mb-10 {
    margin-bottom: 40px !important;
  }

  .lg\:mb-11 {
    margin-bottom: 44px !important;
  }

  .lg\:mb-12 {
    margin-bottom: 48px !important;
  }

  .lg\:mb-14 {
    margin-bottom: 56px !important;
  }

  .lg\:mb-16 {
    margin-bottom: 64px !important;
  }

  .lg\:mb-18 {
    margin-bottom: 72px !important;
  }

  .lg\:mb-20 {
    margin-bottom: 80px !important;
  }

  .lg\:mb-25 {
    margin-bottom: 100px !important;
  }

  .lg\:mb-30 {
    margin-bottom: 120px !important;
  }

  .lg\:mb-35 {
    margin-bottom: 140px !important;
  }

  .lg\:mb-40 {
    margin-bottom: 160px !important;
  }

  .lg\:mb-45 {
    margin-bottom: 180px !important;
  }

  .lg\:mb-50 {
    margin-bottom: 200px !important;
  }

  .lg\:mb-55 {
    margin-bottom: 220px !important;
  }

  .lg\:mb-60 {
    margin-bottom: 240px !important;
  }

  .lg\:mb-65 {
    margin-bottom: 260px !important;
  }

  .lg\:mb-70 {
    margin-bottom: 280px !important;
  }

  .lg\:mb-75 {
    margin-bottom: 300px !important;
  }

  .lg\:mb-80 {
    margin-bottom: 320px !important;
  }

  .lg\:mb-85 {
    margin-bottom: 340px !important;
  }

  .lg\:mb-90 {
    margin-bottom: 360px !important;
  }

  .lg\:mb-95 {
    margin-bottom: 380px !important;
  }

  .lg\:mb-100 {
    margin-bottom: 400px !important;
  }

  .lg\:mr-unset {
    margin-right: unset !important;
  }

  .lg\:mr-initial {
    margin-right: initial !important;
  }

  .lg\:mr-auto {
    margin-right: auto !important;
  }

  .lg\:mr-0 {
    margin-right: 0 !important;
  }

  .lg\:mr-1 {
    margin-right: 4px !important;
  }

  .lg\:mr-2 {
    margin-right: 8px !important;
  }

  .lg\:mr-3 {
    margin-right: 12px !important;
  }

  .lg\:mr-4 {
    margin-right: 16px !important;
  }

  .lg\:mr-5 {
    margin-right: 20px !important;
  }

  .lg\:mr-6 {
    margin-right: 24px !important;
  }

  .lg\:mr-7 {
    margin-right: 28px !important;
  }

  .lg\:mr-8 {
    margin-right: 32px !important;
  }

  .lg\:mr-9 {
    margin-right: 36px !important;
  }

  .lg\:mr-10 {
    margin-right: 40px !important;
  }

  .lg\:mr-11 {
    margin-right: 44px !important;
  }

  .lg\:mr-12 {
    margin-right: 48px !important;
  }

  .lg\:mr-14 {
    margin-right: 56px !important;
  }

  .lg\:mr-16 {
    margin-right: 64px !important;
  }

  .lg\:mr-18 {
    margin-right: 72px !important;
  }

  .lg\:mr-20 {
    margin-right: 80px !important;
  }

  .lg\:mr-25 {
    margin-right: 100px !important;
  }

  .lg\:mr-30 {
    margin-right: 120px !important;
  }

  .lg\:mr-35 {
    margin-right: 140px !important;
  }

  .lg\:mr-40 {
    margin-right: 160px !important;
  }

  .lg\:mr-45 {
    margin-right: 180px !important;
  }

  .lg\:mr-50 {
    margin-right: 200px !important;
  }

  .lg\:mr-55 {
    margin-right: 220px !important;
  }

  .lg\:mr-60 {
    margin-right: 240px !important;
  }

  .lg\:mr-65 {
    margin-right: 260px !important;
  }

  .lg\:mr-70 {
    margin-right: 280px !important;
  }

  .lg\:mr-75 {
    margin-right: 300px !important;
  }

  .lg\:mr-80 {
    margin-right: 320px !important;
  }

  .lg\:mr-85 {
    margin-right: 340px !important;
  }

  .lg\:mr-90 {
    margin-right: 360px !important;
  }

  .lg\:mr-95 {
    margin-right: 380px !important;
  }

  .lg\:mr-100 {
    margin-right: 400px !important;
  }

  .lg\:ml-unset {
    margin-left: unset !important;
  }

  .lg\:ml-initial {
    margin-left: initial !important;
  }

  .lg\:ml-auto {
    margin-left: auto !important;
  }

  .lg\:ml-0 {
    margin-left: 0 !important;
  }

  .lg\:ml-1 {
    margin-left: 4px !important;
  }

  .lg\:ml-2 {
    margin-left: 8px !important;
  }

  .lg\:ml-3 {
    margin-left: 12px !important;
  }

  .lg\:ml-4 {
    margin-left: 16px !important;
  }

  .lg\:ml-5 {
    margin-left: 20px !important;
  }

  .lg\:ml-6 {
    margin-left: 24px !important;
  }

  .lg\:ml-7 {
    margin-left: 28px !important;
  }

  .lg\:ml-8 {
    margin-left: 32px !important;
  }

  .lg\:ml-9 {
    margin-left: 36px !important;
  }

  .lg\:ml-10 {
    margin-left: 40px !important;
  }

  .lg\:ml-11 {
    margin-left: 44px !important;
  }

  .lg\:ml-12 {
    margin-left: 48px !important;
  }

  .lg\:ml-14 {
    margin-left: 56px !important;
  }

  .lg\:ml-16 {
    margin-left: 64px !important;
  }

  .lg\:ml-18 {
    margin-left: 72px !important;
  }

  .lg\:ml-20 {
    margin-left: 80px !important;
  }

  .lg\:ml-25 {
    margin-left: 100px !important;
  }

  .lg\:ml-30 {
    margin-left: 120px !important;
  }

  .lg\:ml-35 {
    margin-left: 140px !important;
  }

  .lg\:ml-40 {
    margin-left: 160px !important;
  }

  .lg\:ml-45 {
    margin-left: 180px !important;
  }

  .lg\:ml-50 {
    margin-left: 200px !important;
  }

  .lg\:ml-55 {
    margin-left: 220px !important;
  }

  .lg\:ml-60 {
    margin-left: 240px !important;
  }

  .lg\:ml-65 {
    margin-left: 260px !important;
  }

  .lg\:ml-70 {
    margin-left: 280px !important;
  }

  .lg\:ml-75 {
    margin-left: 300px !important;
  }

  .lg\:ml-80 {
    margin-left: 320px !important;
  }

  .lg\:ml-85 {
    margin-left: 340px !important;
  }

  .lg\:ml-90 {
    margin-left: 360px !important;
  }

  .lg\:ml-95 {
    margin-left: 380px !important;
  }

  .lg\:ml-100 {
    margin-left: 400px !important;
  }
}

.p-unset {
  padding: unset;
}

.p-initial {
  padding: initial;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 4px;
}

.p-2 {
  padding: 8px;
}

.p-3 {
  padding: 12px;
}

.p-4 {
  padding: 16px;
}

.p-5 {
  padding: 20px;
}

.p-6 {
  padding: 24px;
}

.p-7 {
  padding: 28px;
}

.p-8 {
  padding: 32px;
}

.p-9 {
  padding: 36px;
}

.p-10 {
  padding: 40px;
}

.p-11 {
  padding: 44px;
}

.p-12 {
  padding: 48px;
}

.p-14 {
  padding: 56px;
}

.p-16 {
  padding: 64px;
}

.p-18 {
  padding: 72px;
}

.p-20 {
  padding: 80px;
}

.p-25 {
  padding: 100px;
}

.p-30 {
  padding: 120px;
}

.p-35 {
  padding: 140px;
}

.p-40 {
  padding: 160px;
}

.p-45 {
  padding: 180px;
}

.p-50 {
  padding: 200px;
}

.p-55 {
  padding: 220px;
}

.p-60 {
  padding: 240px;
}

.p-65 {
  padding: 260px;
}

.p-70 {
  padding: 280px;
}

.p-75 {
  padding: 300px;
}

.p-80 {
  padding: 320px;
}

.p-85 {
  padding: 340px;
}

.p-90 {
  padding: 360px;
}

.p-95 {
  padding: 380px;
}

.p-100 {
  padding: 400px;
}

.py-unset {
  padding-top: unset;
  padding-bottom: unset;
}

.py-initial {
  padding-top: initial;
  padding-bottom: initial;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-7 {
  padding-top: 28px;
  padding-bottom: 28px;
}

.py-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-9 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.py-10 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-11 {
  padding-top: 44px;
  padding-bottom: 44px;
}

.py-12 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py-14 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.py-16 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.py-18 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.py-20 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-25 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.py-30 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.py-35 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.py-40 {
  padding-top: 160px;
  padding-bottom: 160px;
}

.py-45 {
  padding-top: 180px;
  padding-bottom: 180px;
}

.py-50 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.py-55 {
  padding-top: 220px;
  padding-bottom: 220px;
}

.py-60 {
  padding-top: 240px;
  padding-bottom: 240px;
}

.py-65 {
  padding-top: 260px;
  padding-bottom: 260px;
}

.py-70 {
  padding-top: 280px;
  padding-bottom: 280px;
}

.py-75 {
  padding-top: 300px;
  padding-bottom: 300px;
}

.py-80 {
  padding-top: 320px;
  padding-bottom: 320px;
}

.py-85 {
  padding-top: 340px;
  padding-bottom: 340px;
}

.py-90 {
  padding-top: 360px;
  padding-bottom: 360px;
}

.py-95 {
  padding-top: 380px;
  padding-bottom: 380px;
}

.py-100 {
  padding-top: 400px;
  padding-bottom: 400px;
}

.px-unset {
  padding-left: unset;
  padding-right: unset;
}

.px-initial {
  padding-left: initial;
  padding-right: initial;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 4px;
  padding-right: 4px;
}

.px-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-5 {
  padding-left: 20px;
  padding-right: 20px;
}

.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}

.px-7 {
  padding-left: 28px;
  padding-right: 28px;
}

.px-8 {
  padding-left: 32px;
  padding-right: 32px;
}

.px-9 {
  padding-left: 36px;
  padding-right: 36px;
}

.px-10 {
  padding-left: 40px;
  padding-right: 40px;
}

.px-11 {
  padding-left: 44px;
  padding-right: 44px;
}

.px-12 {
  padding-left: 48px;
  padding-right: 48px;
}

.px-14 {
  padding-left: 56px;
  padding-right: 56px;
}

.px-16 {
  padding-left: 64px;
  padding-right: 64px;
}

.px-18 {
  padding-left: 72px;
  padding-right: 72px;
}

.px-20 {
  padding-left: 80px;
  padding-right: 80px;
}

.px-25 {
  padding-left: 100px;
  padding-right: 100px;
}

.px-30 {
  padding-left: 120px;
  padding-right: 120px;
}

.px-35 {
  padding-left: 140px;
  padding-right: 140px;
}

.px-40 {
  padding-left: 160px;
  padding-right: 160px;
}

.px-45 {
  padding-left: 180px;
  padding-right: 180px;
}

.px-50 {
  padding-left: 200px;
  padding-right: 200px;
}

.px-55 {
  padding-left: 220px;
  padding-right: 220px;
}

.px-60 {
  padding-left: 240px;
  padding-right: 240px;
}

.px-65 {
  padding-left: 260px;
  padding-right: 260px;
}

.px-70 {
  padding-left: 280px;
  padding-right: 280px;
}

.px-75 {
  padding-left: 300px;
  padding-right: 300px;
}

.px-80 {
  padding-left: 320px;
  padding-right: 320px;
}

.px-85 {
  padding-left: 340px;
  padding-right: 340px;
}

.px-90 {
  padding-left: 360px;
  padding-right: 360px;
}

.px-95 {
  padding-left: 380px;
  padding-right: 380px;
}

.px-100 {
  padding-left: 400px;
  padding-right: 400px;
}

.pt-unset {
  padding-top: unset !important;
}

.pt-initial {
  padding-top: initial !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pt-3 {
  padding-top: 12px !important;
}

.pt-4 {
  padding-top: 16px !important;
}

.pt-5 {
  padding-top: 20px !important;
}

.pt-6 {
  padding-top: 24px !important;
}

.pt-7 {
  padding-top: 28px !important;
}

.pt-8 {
  padding-top: 32px !important;
}

.pt-9 {
  padding-top: 36px !important;
}

.pt-10 {
  padding-top: 40px !important;
}

.pt-11 {
  padding-top: 44px !important;
}

.pt-12 {
  padding-top: 48px !important;
}

.pt-14 {
  padding-top: 56px !important;
}

.pt-16 {
  padding-top: 64px !important;
}

.pt-18 {
  padding-top: 72px !important;
}

.pt-20 {
  padding-top: 80px !important;
}

.pt-25 {
  padding-top: 100px !important;
}

.pt-30 {
  padding-top: 120px !important;
}

.pt-35 {
  padding-top: 140px !important;
}

.pt-40 {
  padding-top: 160px !important;
}

.pt-45 {
  padding-top: 180px !important;
}

.pt-50 {
  padding-top: 200px !important;
}

.pt-55 {
  padding-top: 220px !important;
}

.pt-60 {
  padding-top: 240px !important;
}

.pt-65 {
  padding-top: 260px !important;
}

.pt-70 {
  padding-top: 280px !important;
}

.pt-75 {
  padding-top: 300px !important;
}

.pt-80 {
  padding-top: 320px !important;
}

.pt-85 {
  padding-top: 340px !important;
}

.pt-90 {
  padding-top: 360px !important;
}

.pt-95 {
  padding-top: 380px !important;
}

.pt-100 {
  padding-top: 400px !important;
}

.pb-unset {
  padding-bottom: unset !important;
}

.pb-initial {
  padding-bottom: initial !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.pb-3 {
  padding-bottom: 12px !important;
}

.pb-4 {
  padding-bottom: 16px !important;
}

.pb-5 {
  padding-bottom: 20px !important;
}

.pb-6 {
  padding-bottom: 24px !important;
}

.pb-7 {
  padding-bottom: 28px !important;
}

.pb-8 {
  padding-bottom: 32px !important;
}

.pb-9 {
  padding-bottom: 36px !important;
}

.pb-10 {
  padding-bottom: 40px !important;
}

.pb-11 {
  padding-bottom: 44px !important;
}

.pb-12 {
  padding-bottom: 48px !important;
}

.pb-14 {
  padding-bottom: 56px !important;
}

.pb-16 {
  padding-bottom: 64px !important;
}

.pb-18 {
  padding-bottom: 72px !important;
}

.pb-20 {
  padding-bottom: 80px !important;
}

.pb-25 {
  padding-bottom: 100px !important;
}

.pb-30 {
  padding-bottom: 120px !important;
}

.pb-35 {
  padding-bottom: 140px !important;
}

.pb-40 {
  padding-bottom: 160px !important;
}

.pb-45 {
  padding-bottom: 180px !important;
}

.pb-50 {
  padding-bottom: 200px !important;
}

.pb-55 {
  padding-bottom: 220px !important;
}

.pb-60 {
  padding-bottom: 240px !important;
}

.pb-65 {
  padding-bottom: 260px !important;
}

.pb-70 {
  padding-bottom: 280px !important;
}

.pb-75 {
  padding-bottom: 300px !important;
}

.pb-80 {
  padding-bottom: 320px !important;
}

.pb-85 {
  padding-bottom: 340px !important;
}

.pb-90 {
  padding-bottom: 360px !important;
}

.pb-95 {
  padding-bottom: 380px !important;
}

.pb-100 {
  padding-bottom: 400px !important;
}

.pr-unset {
  padding-right: unset !important;
}

.pr-initial {
  padding-right: initial !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 4px !important;
}

.pr-2 {
  padding-right: 8px !important;
}

.pr-3 {
  padding-right: 12px !important;
}

.pr-4 {
  padding-right: 16px !important;
}

.pr-5 {
  padding-right: 20px !important;
}

.pr-6 {
  padding-right: 24px !important;
}

.pr-7 {
  padding-right: 28px !important;
}

.pr-8 {
  padding-right: 32px !important;
}

.pr-9 {
  padding-right: 36px !important;
}

.pr-10 {
  padding-right: 40px !important;
}

.pr-11 {
  padding-right: 44px !important;
}

.pr-12 {
  padding-right: 48px !important;
}

.pr-14 {
  padding-right: 56px !important;
}

.pr-16 {
  padding-right: 64px !important;
}

.pr-18 {
  padding-right: 72px !important;
}

.pr-20 {
  padding-right: 80px !important;
}

.pr-25 {
  padding-right: 100px !important;
}

.pr-30 {
  padding-right: 120px !important;
}

.pr-35 {
  padding-right: 140px !important;
}

.pr-40 {
  padding-right: 160px !important;
}

.pr-45 {
  padding-right: 180px !important;
}

.pr-50 {
  padding-right: 200px !important;
}

.pr-55 {
  padding-right: 220px !important;
}

.pr-60 {
  padding-right: 240px !important;
}

.pr-65 {
  padding-right: 260px !important;
}

.pr-70 {
  padding-right: 280px !important;
}

.pr-75 {
  padding-right: 300px !important;
}

.pr-80 {
  padding-right: 320px !important;
}

.pr-85 {
  padding-right: 340px !important;
}

.pr-90 {
  padding-right: 360px !important;
}

.pr-95 {
  padding-right: 380px !important;
}

.pr-100 {
  padding-right: 400px !important;
}

.pl-unset {
  padding-left: unset !important;
}

.pl-initial {
  padding-left: initial !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 4px !important;
}

.pl-2 {
  padding-left: 8px !important;
}

.pl-3 {
  padding-left: 12px !important;
}

.pl-4 {
  padding-left: 16px !important;
}

.pl-5 {
  padding-left: 20px !important;
}

.pl-6 {
  padding-left: 24px !important;
}

.pl-7 {
  padding-left: 28px !important;
}

.pl-8 {
  padding-left: 32px !important;
}

.pl-9 {
  padding-left: 36px !important;
}

.pl-10 {
  padding-left: 40px !important;
}

.pl-11 {
  padding-left: 44px !important;
}

.pl-12 {
  padding-left: 48px !important;
}

.pl-14 {
  padding-left: 56px !important;
}

.pl-16 {
  padding-left: 64px !important;
}

.pl-18 {
  padding-left: 72px !important;
}

.pl-20 {
  padding-left: 80px !important;
}

.pl-25 {
  padding-left: 100px !important;
}

.pl-30 {
  padding-left: 120px !important;
}

.pl-35 {
  padding-left: 140px !important;
}

.pl-40 {
  padding-left: 160px !important;
}

.pl-45 {
  padding-left: 180px !important;
}

.pl-50 {
  padding-left: 200px !important;
}

.pl-55 {
  padding-left: 220px !important;
}

.pl-60 {
  padding-left: 240px !important;
}

.pl-65 {
  padding-left: 260px !important;
}

.pl-70 {
  padding-left: 280px !important;
}

.pl-75 {
  padding-left: 300px !important;
}

.pl-80 {
  padding-left: 320px !important;
}

.pl-85 {
  padding-left: 340px !important;
}

.pl-90 {
  padding-left: 360px !important;
}

.pl-95 {
  padding-left: 380px !important;
}

.pl-100 {
  padding-left: 400px !important;
}

@media (max-width: 1199px) {
  .max-lg\:p-unset {
    padding: unset;
  }

  .max-lg\:p-initial {
    padding: initial;
  }

  .max-lg\:p-0 {
    padding: 0;
  }

  .max-lg\:p-1 {
    padding: 4px;
  }

  .max-lg\:p-2 {
    padding: 8px;
  }

  .max-lg\:p-3 {
    padding: 12px;
  }

  .max-lg\:p-4 {
    padding: 16px;
  }

  .max-lg\:p-5 {
    padding: 20px;
  }

  .max-lg\:p-6 {
    padding: 24px;
  }

  .max-lg\:p-7 {
    padding: 28px;
  }

  .max-lg\:p-8 {
    padding: 32px;
  }

  .max-lg\:p-9 {
    padding: 36px;
  }

  .max-lg\:p-10 {
    padding: 40px;
  }

  .max-lg\:p-11 {
    padding: 44px;
  }

  .max-lg\:p-12 {
    padding: 48px;
  }

  .max-lg\:p-14 {
    padding: 56px;
  }

  .max-lg\:p-16 {
    padding: 64px;
  }

  .max-lg\:p-18 {
    padding: 72px;
  }

  .max-lg\:p-20 {
    padding: 80px;
  }

  .max-lg\:p-25 {
    padding: 100px;
  }

  .max-lg\:p-30 {
    padding: 120px;
  }

  .max-lg\:p-35 {
    padding: 140px;
  }

  .max-lg\:p-40 {
    padding: 160px;
  }

  .max-lg\:p-45 {
    padding: 180px;
  }

  .max-lg\:p-50 {
    padding: 200px;
  }

  .max-lg\:p-55 {
    padding: 220px;
  }

  .max-lg\:p-60 {
    padding: 240px;
  }

  .max-lg\:p-65 {
    padding: 260px;
  }

  .max-lg\:p-70 {
    padding: 280px;
  }

  .max-lg\:p-75 {
    padding: 300px;
  }

  .max-lg\:p-80 {
    padding: 320px;
  }

  .max-lg\:p-85 {
    padding: 340px;
  }

  .max-lg\:p-90 {
    padding: 360px;
  }

  .max-lg\:p-95 {
    padding: 380px;
  }

  .max-lg\:p-100 {
    padding: 400px;
  }

  .max-lg\:px-unset {
    padding-left: unset;
    padding-right: unset;
  }

  .max-lg\:px-initial {
    padding-left: initial;
    padding-right: initial;
  }

  .max-lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .max-lg\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .max-lg\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .max-lg\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .max-lg\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .max-lg\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .max-lg\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .max-lg\:px-7 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .max-lg\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .max-lg\:px-9 {
    padding-left: 36px;
    padding-right: 36px;
  }

  .max-lg\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .max-lg\:px-11 {
    padding-left: 44px;
    padding-right: 44px;
  }

  .max-lg\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .max-lg\:px-14 {
    padding-left: 56px;
    padding-right: 56px;
  }

  .max-lg\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .max-lg\:px-18 {
    padding-left: 72px;
    padding-right: 72px;
  }

  .max-lg\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .max-lg\:px-25 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .max-lg\:px-30 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .max-lg\:px-35 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .max-lg\:px-40 {
    padding-left: 160px;
    padding-right: 160px;
  }

  .max-lg\:px-45 {
    padding-left: 180px;
    padding-right: 180px;
  }

  .max-lg\:px-50 {
    padding-left: 200px;
    padding-right: 200px;
  }

  .max-lg\:px-55 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .max-lg\:px-60 {
    padding-left: 240px;
    padding-right: 240px;
  }

  .max-lg\:px-65 {
    padding-left: 260px;
    padding-right: 260px;
  }

  .max-lg\:px-70 {
    padding-left: 280px;
    padding-right: 280px;
  }

  .max-lg\:px-75 {
    padding-left: 300px;
    padding-right: 300px;
  }

  .max-lg\:px-80 {
    padding-left: 320px;
    padding-right: 320px;
  }

  .max-lg\:px-85 {
    padding-left: 340px;
    padding-right: 340px;
  }

  .max-lg\:px-90 {
    padding-left: 360px;
    padding-right: 360px;
  }

  .max-lg\:px-95 {
    padding-left: 380px;
    padding-right: 380px;
  }

  .max-lg\:px-100 {
    padding-left: 400px;
    padding-right: 400px;
  }

  .max-lg\:py-unset {
    padding-top: unset;
    padding-bottom: unset;
  }

  .max-lg\:py-initial {
    padding-top: initial;
    padding-bottom: initial;
  }

  .max-lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-lg\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .max-lg\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .max-lg\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .max-lg\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .max-lg\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .max-lg\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .max-lg\:py-7 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .max-lg\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .max-lg\:py-9 {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .max-lg\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .max-lg\:py-11 {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .max-lg\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .max-lg\:py-14 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .max-lg\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .max-lg\:py-18 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .max-lg\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .max-lg\:py-25 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .max-lg\:py-30 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .max-lg\:py-35 {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .max-lg\:py-40 {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .max-lg\:py-45 {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .max-lg\:py-50 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .max-lg\:py-55 {
    padding-top: 220px;
    padding-bottom: 220px;
  }

  .max-lg\:py-60 {
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .max-lg\:py-65 {
    padding-top: 260px;
    padding-bottom: 260px;
  }

  .max-lg\:py-70 {
    padding-top: 280px;
    padding-bottom: 280px;
  }

  .max-lg\:py-75 {
    padding-top: 300px;
    padding-bottom: 300px;
  }

  .max-lg\:py-80 {
    padding-top: 320px;
    padding-bottom: 320px;
  }

  .max-lg\:py-85 {
    padding-top: 340px;
    padding-bottom: 340px;
  }

  .max-lg\:py-90 {
    padding-top: 360px;
    padding-bottom: 360px;
  }

  .max-lg\:py-95 {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .max-lg\:py-100 {
    padding-top: 400px;
    padding-bottom: 400px;
  }

  .max-lg\:pt-unset {
    padding-top: unset !important;
  }

  .max-lg\:pt-initial {
    padding-top: initial !important;
  }

  .max-lg\:pt-0 {
    padding-top: 0 !important;
  }

  .max-lg\:pt-1 {
    padding-top: 4px !important;
  }

  .max-lg\:pt-2 {
    padding-top: 8px !important;
  }

  .max-lg\:pt-3 {
    padding-top: 12px !important;
  }

  .max-lg\:pt-4 {
    padding-top: 16px !important;
  }

  .max-lg\:pt-5 {
    padding-top: 20px !important;
  }

  .max-lg\:pt-6 {
    padding-top: 24px !important;
  }

  .max-lg\:pt-7 {
    padding-top: 28px !important;
  }

  .max-lg\:pt-8 {
    padding-top: 32px !important;
  }

  .max-lg\:pt-9 {
    padding-top: 36px !important;
  }

  .max-lg\:pt-10 {
    padding-top: 40px !important;
  }

  .max-lg\:pt-11 {
    padding-top: 44px !important;
  }

  .max-lg\:pt-12 {
    padding-top: 48px !important;
  }

  .max-lg\:pt-14 {
    padding-top: 56px !important;
  }

  .max-lg\:pt-16 {
    padding-top: 64px !important;
  }

  .max-lg\:pt-18 {
    padding-top: 72px !important;
  }

  .max-lg\:pt-20 {
    padding-top: 80px !important;
  }

  .max-lg\:pt-25 {
    padding-top: 100px !important;
  }

  .max-lg\:pt-30 {
    padding-top: 120px !important;
  }

  .max-lg\:pt-35 {
    padding-top: 140px !important;
  }

  .max-lg\:pt-40 {
    padding-top: 160px !important;
  }

  .max-lg\:pt-45 {
    padding-top: 180px !important;
  }

  .max-lg\:pt-50 {
    padding-top: 200px !important;
  }

  .max-lg\:pt-55 {
    padding-top: 220px !important;
  }

  .max-lg\:pt-60 {
    padding-top: 240px !important;
  }

  .max-lg\:pt-65 {
    padding-top: 260px !important;
  }

  .max-lg\:pt-70 {
    padding-top: 280px !important;
  }

  .max-lg\:pt-75 {
    padding-top: 300px !important;
  }

  .max-lg\:pt-80 {
    padding-top: 320px !important;
  }

  .max-lg\:pt-85 {
    padding-top: 340px !important;
  }

  .max-lg\:pt-90 {
    padding-top: 360px !important;
  }

  .max-lg\:pt-95 {
    padding-top: 380px !important;
  }

  .max-lg\:pt-100 {
    padding-top: 400px !important;
  }

  .max-lg\:pb-unset {
    padding-bottom: unset !important;
  }

  .max-lg\:pb-initial {
    padding-bottom: initial !important;
  }

  .max-lg\:pb-0 {
    padding-bottom: 0 !important;
  }

  .max-lg\:pb-1 {
    padding-bottom: 4px !important;
  }

  .max-lg\:pb-2 {
    padding-bottom: 8px !important;
  }

  .max-lg\:pb-3 {
    padding-bottom: 12px !important;
  }

  .max-lg\:pb-4 {
    padding-bottom: 16px !important;
  }

  .max-lg\:pb-5 {
    padding-bottom: 20px !important;
  }

  .max-lg\:pb-6 {
    padding-bottom: 24px !important;
  }

  .max-lg\:pb-7 {
    padding-bottom: 28px !important;
  }

  .max-lg\:pb-8 {
    padding-bottom: 32px !important;
  }

  .max-lg\:pb-9 {
    padding-bottom: 36px !important;
  }

  .max-lg\:pb-10 {
    padding-bottom: 40px !important;
  }

  .max-lg\:pb-11 {
    padding-bottom: 44px !important;
  }

  .max-lg\:pb-12 {
    padding-bottom: 48px !important;
  }

  .max-lg\:pb-14 {
    padding-bottom: 56px !important;
  }

  .max-lg\:pb-16 {
    padding-bottom: 64px !important;
  }

  .max-lg\:pb-18 {
    padding-bottom: 72px !important;
  }

  .max-lg\:pb-20 {
    padding-bottom: 80px !important;
  }

  .max-lg\:pb-25 {
    padding-bottom: 100px !important;
  }

  .max-lg\:pb-30 {
    padding-bottom: 120px !important;
  }

  .max-lg\:pb-35 {
    padding-bottom: 140px !important;
  }

  .max-lg\:pb-40 {
    padding-bottom: 160px !important;
  }

  .max-lg\:pb-45 {
    padding-bottom: 180px !important;
  }

  .max-lg\:pb-50 {
    padding-bottom: 200px !important;
  }

  .max-lg\:pb-55 {
    padding-bottom: 220px !important;
  }

  .max-lg\:pb-60 {
    padding-bottom: 240px !important;
  }

  .max-lg\:pb-65 {
    padding-bottom: 260px !important;
  }

  .max-lg\:pb-70 {
    padding-bottom: 280px !important;
  }

  .max-lg\:pb-75 {
    padding-bottom: 300px !important;
  }

  .max-lg\:pb-80 {
    padding-bottom: 320px !important;
  }

  .max-lg\:pb-85 {
    padding-bottom: 340px !important;
  }

  .max-lg\:pb-90 {
    padding-bottom: 360px !important;
  }

  .max-lg\:pb-95 {
    padding-bottom: 380px !important;
  }

  .max-lg\:pb-100 {
    padding-bottom: 400px !important;
  }

  .max-lg\:pr-unset {
    padding-right: unset !important;
  }

  .max-lg\:pr-initial {
    padding-right: initial !important;
  }

  .max-lg\:pr-0 {
    padding-right: 0 !important;
  }

  .max-lg\:pr-1 {
    padding-right: 4px !important;
  }

  .max-lg\:pr-2 {
    padding-right: 8px !important;
  }

  .max-lg\:pr-3 {
    padding-right: 12px !important;
  }

  .max-lg\:pr-4 {
    padding-right: 16px !important;
  }

  .max-lg\:pr-5 {
    padding-right: 20px !important;
  }

  .max-lg\:pr-6 {
    padding-right: 24px !important;
  }

  .max-lg\:pr-7 {
    padding-right: 28px !important;
  }

  .max-lg\:pr-8 {
    padding-right: 32px !important;
  }

  .max-lg\:pr-9 {
    padding-right: 36px !important;
  }

  .max-lg\:pr-10 {
    padding-right: 40px !important;
  }

  .max-lg\:pr-11 {
    padding-right: 44px !important;
  }

  .max-lg\:pr-12 {
    padding-right: 48px !important;
  }

  .max-lg\:pr-14 {
    padding-right: 56px !important;
  }

  .max-lg\:pr-16 {
    padding-right: 64px !important;
  }

  .max-lg\:pr-18 {
    padding-right: 72px !important;
  }

  .max-lg\:pr-20 {
    padding-right: 80px !important;
  }

  .max-lg\:pr-25 {
    padding-right: 100px !important;
  }

  .max-lg\:pr-30 {
    padding-right: 120px !important;
  }

  .max-lg\:pr-35 {
    padding-right: 140px !important;
  }

  .max-lg\:pr-40 {
    padding-right: 160px !important;
  }

  .max-lg\:pr-45 {
    padding-right: 180px !important;
  }

  .max-lg\:pr-50 {
    padding-right: 200px !important;
  }

  .max-lg\:pr-55 {
    padding-right: 220px !important;
  }

  .max-lg\:pr-60 {
    padding-right: 240px !important;
  }

  .max-lg\:pr-65 {
    padding-right: 260px !important;
  }

  .max-lg\:pr-70 {
    padding-right: 280px !important;
  }

  .max-lg\:pr-75 {
    padding-right: 300px !important;
  }

  .max-lg\:pr-80 {
    padding-right: 320px !important;
  }

  .max-lg\:pr-85 {
    padding-right: 340px !important;
  }

  .max-lg\:pr-90 {
    padding-right: 360px !important;
  }

  .max-lg\:pr-95 {
    padding-right: 380px !important;
  }

  .max-lg\:pr-100 {
    padding-right: 400px !important;
  }

  .max-lg\:pl-unset {
    padding-left: unset !important;
  }

  .max-lg\:pl-initial {
    padding-left: initial !important;
  }

  .max-lg\:pl-0 {
    padding-left: 0 !important;
  }

  .max-lg\:pl-1 {
    padding-left: 4px !important;
  }

  .max-lg\:pl-2 {
    padding-left: 8px !important;
  }

  .max-lg\:pl-3 {
    padding-left: 12px !important;
  }

  .max-lg\:pl-4 {
    padding-left: 16px !important;
  }

  .max-lg\:pl-5 {
    padding-left: 20px !important;
  }

  .max-lg\:pl-6 {
    padding-left: 24px !important;
  }

  .max-lg\:pl-7 {
    padding-left: 28px !important;
  }

  .max-lg\:pl-8 {
    padding-left: 32px !important;
  }

  .max-lg\:pl-9 {
    padding-left: 36px !important;
  }

  .max-lg\:pl-10 {
    padding-left: 40px !important;
  }

  .max-lg\:pl-11 {
    padding-left: 44px !important;
  }

  .max-lg\:pl-12 {
    padding-left: 48px !important;
  }

  .max-lg\:pl-14 {
    padding-left: 56px !important;
  }

  .max-lg\:pl-16 {
    padding-left: 64px !important;
  }

  .max-lg\:pl-18 {
    padding-left: 72px !important;
  }

  .max-lg\:pl-20 {
    padding-left: 80px !important;
  }

  .max-lg\:pl-25 {
    padding-left: 100px !important;
  }

  .max-lg\:pl-30 {
    padding-left: 120px !important;
  }

  .max-lg\:pl-35 {
    padding-left: 140px !important;
  }

  .max-lg\:pl-40 {
    padding-left: 160px !important;
  }

  .max-lg\:pl-45 {
    padding-left: 180px !important;
  }

  .max-lg\:pl-50 {
    padding-left: 200px !important;
  }

  .max-lg\:pl-55 {
    padding-left: 220px !important;
  }

  .max-lg\:pl-60 {
    padding-left: 240px !important;
  }

  .max-lg\:pl-65 {
    padding-left: 260px !important;
  }

  .max-lg\:pl-70 {
    padding-left: 280px !important;
  }

  .max-lg\:pl-75 {
    padding-left: 300px !important;
  }

  .max-lg\:pl-80 {
    padding-left: 320px !important;
  }

  .max-lg\:pl-85 {
    padding-left: 340px !important;
  }

  .max-lg\:pl-90 {
    padding-left: 360px !important;
  }

  .max-lg\:pl-95 {
    padding-left: 380px !important;
  }

  .max-lg\:pl-100 {
    padding-left: 400px !important;
  }
}

@media (max-width: 920px) {
  .max-md\:p-unset {
    padding: unset;
  }

  .max-md\:p-initial {
    padding: initial;
  }

  .max-md\:p-0 {
    padding: 0;
  }

  .max-md\:p-1 {
    padding: 4px;
  }

  .max-md\:p-2 {
    padding: 8px;
  }

  .max-md\:p-3 {
    padding: 12px;
  }

  .max-md\:p-4 {
    padding: 16px;
  }

  .max-md\:p-5 {
    padding: 20px;
  }

  .max-md\:p-6 {
    padding: 24px;
  }

  .max-md\:p-7 {
    padding: 28px;
  }

  .max-md\:p-8 {
    padding: 32px;
  }

  .max-md\:p-9 {
    padding: 36px;
  }

  .max-md\:p-10 {
    padding: 40px;
  }

  .max-md\:p-11 {
    padding: 44px;
  }

  .max-md\:p-12 {
    padding: 48px;
  }

  .max-md\:p-14 {
    padding: 56px;
  }

  .max-md\:p-16 {
    padding: 64px;
  }

  .max-md\:p-18 {
    padding: 72px;
  }

  .max-md\:p-20 {
    padding: 80px;
  }

  .max-md\:p-25 {
    padding: 100px;
  }

  .max-md\:p-30 {
    padding: 120px;
  }

  .max-md\:p-35 {
    padding: 140px;
  }

  .max-md\:p-40 {
    padding: 160px;
  }

  .max-md\:p-45 {
    padding: 180px;
  }

  .max-md\:p-50 {
    padding: 200px;
  }

  .max-md\:p-55 {
    padding: 220px;
  }

  .max-md\:p-60 {
    padding: 240px;
  }

  .max-md\:p-65 {
    padding: 260px;
  }

  .max-md\:p-70 {
    padding: 280px;
  }

  .max-md\:p-75 {
    padding: 300px;
  }

  .max-md\:p-80 {
    padding: 320px;
  }

  .max-md\:p-85 {
    padding: 340px;
  }

  .max-md\:p-90 {
    padding: 360px;
  }

  .max-md\:p-95 {
    padding: 380px;
  }

  .max-md\:p-100 {
    padding: 400px;
  }

  .max-md\:px-unset {
    padding-left: unset;
    padding-right: unset;
  }

  .max-md\:px-initial {
    padding-left: initial;
    padding-right: initial;
  }

  .max-md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .max-md\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .max-md\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .max-md\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .max-md\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .max-md\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .max-md\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .max-md\:px-7 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .max-md\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .max-md\:px-9 {
    padding-left: 36px;
    padding-right: 36px;
  }

  .max-md\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .max-md\:px-11 {
    padding-left: 44px;
    padding-right: 44px;
  }

  .max-md\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .max-md\:px-14 {
    padding-left: 56px;
    padding-right: 56px;
  }

  .max-md\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .max-md\:px-18 {
    padding-left: 72px;
    padding-right: 72px;
  }

  .max-md\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .max-md\:px-25 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .max-md\:px-30 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .max-md\:px-35 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .max-md\:px-40 {
    padding-left: 160px;
    padding-right: 160px;
  }

  .max-md\:px-45 {
    padding-left: 180px;
    padding-right: 180px;
  }

  .max-md\:px-50 {
    padding-left: 200px;
    padding-right: 200px;
  }

  .max-md\:px-55 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .max-md\:px-60 {
    padding-left: 240px;
    padding-right: 240px;
  }

  .max-md\:px-65 {
    padding-left: 260px;
    padding-right: 260px;
  }

  .max-md\:px-70 {
    padding-left: 280px;
    padding-right: 280px;
  }

  .max-md\:px-75 {
    padding-left: 300px;
    padding-right: 300px;
  }

  .max-md\:px-80 {
    padding-left: 320px;
    padding-right: 320px;
  }

  .max-md\:px-85 {
    padding-left: 340px;
    padding-right: 340px;
  }

  .max-md\:px-90 {
    padding-left: 360px;
    padding-right: 360px;
  }

  .max-md\:px-95 {
    padding-left: 380px;
    padding-right: 380px;
  }

  .max-md\:px-100 {
    padding-left: 400px;
    padding-right: 400px;
  }

  .max-md\:py-unset {
    padding-top: unset;
    padding-bottom: unset;
  }

  .max-md\:py-initial {
    padding-top: initial;
    padding-bottom: initial;
  }

  .max-md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-md\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .max-md\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .max-md\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .max-md\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .max-md\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .max-md\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .max-md\:py-7 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .max-md\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .max-md\:py-9 {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .max-md\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .max-md\:py-11 {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .max-md\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .max-md\:py-14 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .max-md\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .max-md\:py-18 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .max-md\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .max-md\:py-25 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .max-md\:py-30 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .max-md\:py-35 {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .max-md\:py-40 {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .max-md\:py-45 {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .max-md\:py-50 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .max-md\:py-55 {
    padding-top: 220px;
    padding-bottom: 220px;
  }

  .max-md\:py-60 {
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .max-md\:py-65 {
    padding-top: 260px;
    padding-bottom: 260px;
  }

  .max-md\:py-70 {
    padding-top: 280px;
    padding-bottom: 280px;
  }

  .max-md\:py-75 {
    padding-top: 300px;
    padding-bottom: 300px;
  }

  .max-md\:py-80 {
    padding-top: 320px;
    padding-bottom: 320px;
  }

  .max-md\:py-85 {
    padding-top: 340px;
    padding-bottom: 340px;
  }

  .max-md\:py-90 {
    padding-top: 360px;
    padding-bottom: 360px;
  }

  .max-md\:py-95 {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .max-md\:py-100 {
    padding-top: 400px;
    padding-bottom: 400px;
  }

  .max-md\:pt-unset {
    padding-top: unset !important;
  }

  .max-md\:pt-initial {
    padding-top: initial !important;
  }

  .max-md\:pt-0 {
    padding-top: 0 !important;
  }

  .max-md\:pt-1 {
    padding-top: 4px !important;
  }

  .max-md\:pt-2 {
    padding-top: 8px !important;
  }

  .max-md\:pt-3 {
    padding-top: 12px !important;
  }

  .max-md\:pt-4 {
    padding-top: 16px !important;
  }

  .max-md\:pt-5 {
    padding-top: 20px !important;
  }

  .max-md\:pt-6 {
    padding-top: 24px !important;
  }

  .max-md\:pt-7 {
    padding-top: 28px !important;
  }

  .max-md\:pt-8 {
    padding-top: 32px !important;
  }

  .max-md\:pt-9 {
    padding-top: 36px !important;
  }

  .max-md\:pt-10 {
    padding-top: 40px !important;
  }

  .max-md\:pt-11 {
    padding-top: 44px !important;
  }

  .max-md\:pt-12 {
    padding-top: 48px !important;
  }

  .max-md\:pt-14 {
    padding-top: 56px !important;
  }

  .max-md\:pt-16 {
    padding-top: 64px !important;
  }

  .max-md\:pt-18 {
    padding-top: 72px !important;
  }

  .max-md\:pt-20 {
    padding-top: 80px !important;
  }

  .max-md\:pt-25 {
    padding-top: 100px !important;
  }

  .max-md\:pt-30 {
    padding-top: 120px !important;
  }

  .max-md\:pt-35 {
    padding-top: 140px !important;
  }

  .max-md\:pt-40 {
    padding-top: 160px !important;
  }

  .max-md\:pt-45 {
    padding-top: 180px !important;
  }

  .max-md\:pt-50 {
    padding-top: 200px !important;
  }

  .max-md\:pt-55 {
    padding-top: 220px !important;
  }

  .max-md\:pt-60 {
    padding-top: 240px !important;
  }

  .max-md\:pt-65 {
    padding-top: 260px !important;
  }

  .max-md\:pt-70 {
    padding-top: 280px !important;
  }

  .max-md\:pt-75 {
    padding-top: 300px !important;
  }

  .max-md\:pt-80 {
    padding-top: 320px !important;
  }

  .max-md\:pt-85 {
    padding-top: 340px !important;
  }

  .max-md\:pt-90 {
    padding-top: 360px !important;
  }

  .max-md\:pt-95 {
    padding-top: 380px !important;
  }

  .max-md\:pt-100 {
    padding-top: 400px !important;
  }

  .max-md\:pb-unset {
    padding-bottom: unset !important;
  }

  .max-md\:pb-initial {
    padding-bottom: initial !important;
  }

  .max-md\:pb-0 {
    padding-bottom: 0 !important;
  }

  .max-md\:pb-1 {
    padding-bottom: 4px !important;
  }

  .max-md\:pb-2 {
    padding-bottom: 8px !important;
  }

  .max-md\:pb-3 {
    padding-bottom: 12px !important;
  }

  .max-md\:pb-4 {
    padding-bottom: 16px !important;
  }

  .max-md\:pb-5 {
    padding-bottom: 20px !important;
  }

  .max-md\:pb-6 {
    padding-bottom: 24px !important;
  }

  .max-md\:pb-7 {
    padding-bottom: 28px !important;
  }

  .max-md\:pb-8 {
    padding-bottom: 32px !important;
  }

  .max-md\:pb-9 {
    padding-bottom: 36px !important;
  }

  .max-md\:pb-10 {
    padding-bottom: 40px !important;
  }

  .max-md\:pb-11 {
    padding-bottom: 44px !important;
  }

  .max-md\:pb-12 {
    padding-bottom: 48px !important;
  }

  .max-md\:pb-14 {
    padding-bottom: 56px !important;
  }

  .max-md\:pb-16 {
    padding-bottom: 64px !important;
  }

  .max-md\:pb-18 {
    padding-bottom: 72px !important;
  }

  .max-md\:pb-20 {
    padding-bottom: 80px !important;
  }

  .max-md\:pb-25 {
    padding-bottom: 100px !important;
  }

  .max-md\:pb-30 {
    padding-bottom: 120px !important;
  }

  .max-md\:pb-35 {
    padding-bottom: 140px !important;
  }

  .max-md\:pb-40 {
    padding-bottom: 160px !important;
  }

  .max-md\:pb-45 {
    padding-bottom: 180px !important;
  }

  .max-md\:pb-50 {
    padding-bottom: 200px !important;
  }

  .max-md\:pb-55 {
    padding-bottom: 220px !important;
  }

  .max-md\:pb-60 {
    padding-bottom: 240px !important;
  }

  .max-md\:pb-65 {
    padding-bottom: 260px !important;
  }

  .max-md\:pb-70 {
    padding-bottom: 280px !important;
  }

  .max-md\:pb-75 {
    padding-bottom: 300px !important;
  }

  .max-md\:pb-80 {
    padding-bottom: 320px !important;
  }

  .max-md\:pb-85 {
    padding-bottom: 340px !important;
  }

  .max-md\:pb-90 {
    padding-bottom: 360px !important;
  }

  .max-md\:pb-95 {
    padding-bottom: 380px !important;
  }

  .max-md\:pb-100 {
    padding-bottom: 400px !important;
  }

  .max-md\:pr-unset {
    padding-right: unset !important;
  }

  .max-md\:pr-initial {
    padding-right: initial !important;
  }

  .max-md\:pr-0 {
    padding-right: 0 !important;
  }

  .max-md\:pr-1 {
    padding-right: 4px !important;
  }

  .max-md\:pr-2 {
    padding-right: 8px !important;
  }

  .max-md\:pr-3 {
    padding-right: 12px !important;
  }

  .max-md\:pr-4 {
    padding-right: 16px !important;
  }

  .max-md\:pr-5 {
    padding-right: 20px !important;
  }

  .max-md\:pr-6 {
    padding-right: 24px !important;
  }

  .max-md\:pr-7 {
    padding-right: 28px !important;
  }

  .max-md\:pr-8 {
    padding-right: 32px !important;
  }

  .max-md\:pr-9 {
    padding-right: 36px !important;
  }

  .max-md\:pr-10 {
    padding-right: 40px !important;
  }

  .max-md\:pr-11 {
    padding-right: 44px !important;
  }

  .max-md\:pr-12 {
    padding-right: 48px !important;
  }

  .max-md\:pr-14 {
    padding-right: 56px !important;
  }

  .max-md\:pr-16 {
    padding-right: 64px !important;
  }

  .max-md\:pr-18 {
    padding-right: 72px !important;
  }

  .max-md\:pr-20 {
    padding-right: 80px !important;
  }

  .max-md\:pr-25 {
    padding-right: 100px !important;
  }

  .max-md\:pr-30 {
    padding-right: 120px !important;
  }

  .max-md\:pr-35 {
    padding-right: 140px !important;
  }

  .max-md\:pr-40 {
    padding-right: 160px !important;
  }

  .max-md\:pr-45 {
    padding-right: 180px !important;
  }

  .max-md\:pr-50 {
    padding-right: 200px !important;
  }

  .max-md\:pr-55 {
    padding-right: 220px !important;
  }

  .max-md\:pr-60 {
    padding-right: 240px !important;
  }

  .max-md\:pr-65 {
    padding-right: 260px !important;
  }

  .max-md\:pr-70 {
    padding-right: 280px !important;
  }

  .max-md\:pr-75 {
    padding-right: 300px !important;
  }

  .max-md\:pr-80 {
    padding-right: 320px !important;
  }

  .max-md\:pr-85 {
    padding-right: 340px !important;
  }

  .max-md\:pr-90 {
    padding-right: 360px !important;
  }

  .max-md\:pr-95 {
    padding-right: 380px !important;
  }

  .max-md\:pr-100 {
    padding-right: 400px !important;
  }

  .max-md\:pl-unset {
    padding-left: unset !important;
  }

  .max-md\:pl-initial {
    padding-left: initial !important;
  }

  .max-md\:pl-0 {
    padding-left: 0 !important;
  }

  .max-md\:pl-1 {
    padding-left: 4px !important;
  }

  .max-md\:pl-2 {
    padding-left: 8px !important;
  }

  .max-md\:pl-3 {
    padding-left: 12px !important;
  }

  .max-md\:pl-4 {
    padding-left: 16px !important;
  }

  .max-md\:pl-5 {
    padding-left: 20px !important;
  }

  .max-md\:pl-6 {
    padding-left: 24px !important;
  }

  .max-md\:pl-7 {
    padding-left: 28px !important;
  }

  .max-md\:pl-8 {
    padding-left: 32px !important;
  }

  .max-md\:pl-9 {
    padding-left: 36px !important;
  }

  .max-md\:pl-10 {
    padding-left: 40px !important;
  }

  .max-md\:pl-11 {
    padding-left: 44px !important;
  }

  .max-md\:pl-12 {
    padding-left: 48px !important;
  }

  .max-md\:pl-14 {
    padding-left: 56px !important;
  }

  .max-md\:pl-16 {
    padding-left: 64px !important;
  }

  .max-md\:pl-18 {
    padding-left: 72px !important;
  }

  .max-md\:pl-20 {
    padding-left: 80px !important;
  }

  .max-md\:pl-25 {
    padding-left: 100px !important;
  }

  .max-md\:pl-30 {
    padding-left: 120px !important;
  }

  .max-md\:pl-35 {
    padding-left: 140px !important;
  }

  .max-md\:pl-40 {
    padding-left: 160px !important;
  }

  .max-md\:pl-45 {
    padding-left: 180px !important;
  }

  .max-md\:pl-50 {
    padding-left: 200px !important;
  }

  .max-md\:pl-55 {
    padding-left: 220px !important;
  }

  .max-md\:pl-60 {
    padding-left: 240px !important;
  }

  .max-md\:pl-65 {
    padding-left: 260px !important;
  }

  .max-md\:pl-70 {
    padding-left: 280px !important;
  }

  .max-md\:pl-75 {
    padding-left: 300px !important;
  }

  .max-md\:pl-80 {
    padding-left: 320px !important;
  }

  .max-md\:pl-85 {
    padding-left: 340px !important;
  }

  .max-md\:pl-90 {
    padding-left: 360px !important;
  }

  .max-md\:pl-95 {
    padding-left: 380px !important;
  }

  .max-md\:pl-100 {
    padding-left: 400px !important;
  }
}

@media (max-width: 640px) {
  .max-sm\:p-unset {
    padding: unset;
  }

  .max-sm\:p-initial {
    padding: initial;
  }

  .max-sm\:p-0 {
    padding: 0;
  }

  .max-sm\:p-1 {
    padding: 4px;
  }

  .max-sm\:p-2 {
    padding: 8px;
  }

  .max-sm\:p-3 {
    padding: 12px;
  }

  .max-sm\:p-4 {
    padding: 16px;
  }

  .max-sm\:p-5 {
    padding: 20px;
  }

  .max-sm\:p-6 {
    padding: 24px;
  }

  .max-sm\:p-7 {
    padding: 28px;
  }

  .max-sm\:p-8 {
    padding: 32px;
  }

  .max-sm\:p-9 {
    padding: 36px;
  }

  .max-sm\:p-10 {
    padding: 40px;
  }

  .max-sm\:p-11 {
    padding: 44px;
  }

  .max-sm\:p-12 {
    padding: 48px;
  }

  .max-sm\:p-14 {
    padding: 56px;
  }

  .max-sm\:p-16 {
    padding: 64px;
  }

  .max-sm\:p-18 {
    padding: 72px;
  }

  .max-sm\:p-20 {
    padding: 80px;
  }

  .max-sm\:p-25 {
    padding: 100px;
  }

  .max-sm\:p-30 {
    padding: 120px;
  }

  .max-sm\:p-35 {
    padding: 140px;
  }

  .max-sm\:p-40 {
    padding: 160px;
  }

  .max-sm\:p-45 {
    padding: 180px;
  }

  .max-sm\:p-50 {
    padding: 200px;
  }

  .max-sm\:p-55 {
    padding: 220px;
  }

  .max-sm\:p-60 {
    padding: 240px;
  }

  .max-sm\:p-65 {
    padding: 260px;
  }

  .max-sm\:p-70 {
    padding: 280px;
  }

  .max-sm\:p-75 {
    padding: 300px;
  }

  .max-sm\:p-80 {
    padding: 320px;
  }

  .max-sm\:p-85 {
    padding: 340px;
  }

  .max-sm\:p-90 {
    padding: 360px;
  }

  .max-sm\:p-95 {
    padding: 380px;
  }

  .max-sm\:p-100 {
    padding: 400px;
  }

  .max-sm\:px-unset {
    padding-left: unset;
    padding-right: unset;
  }

  .max-sm\:px-initial {
    padding-left: initial;
    padding-right: initial;
  }

  .max-sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .max-sm\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .max-sm\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .max-sm\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .max-sm\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .max-sm\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .max-sm\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .max-sm\:px-7 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .max-sm\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .max-sm\:px-9 {
    padding-left: 36px;
    padding-right: 36px;
  }

  .max-sm\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .max-sm\:px-11 {
    padding-left: 44px;
    padding-right: 44px;
  }

  .max-sm\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .max-sm\:px-14 {
    padding-left: 56px;
    padding-right: 56px;
  }

  .max-sm\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .max-sm\:px-18 {
    padding-left: 72px;
    padding-right: 72px;
  }

  .max-sm\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .max-sm\:px-25 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .max-sm\:px-30 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .max-sm\:px-35 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .max-sm\:px-40 {
    padding-left: 160px;
    padding-right: 160px;
  }

  .max-sm\:px-45 {
    padding-left: 180px;
    padding-right: 180px;
  }

  .max-sm\:px-50 {
    padding-left: 200px;
    padding-right: 200px;
  }

  .max-sm\:px-55 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .max-sm\:px-60 {
    padding-left: 240px;
    padding-right: 240px;
  }

  .max-sm\:px-65 {
    padding-left: 260px;
    padding-right: 260px;
  }

  .max-sm\:px-70 {
    padding-left: 280px;
    padding-right: 280px;
  }

  .max-sm\:px-75 {
    padding-left: 300px;
    padding-right: 300px;
  }

  .max-sm\:px-80 {
    padding-left: 320px;
    padding-right: 320px;
  }

  .max-sm\:px-85 {
    padding-left: 340px;
    padding-right: 340px;
  }

  .max-sm\:px-90 {
    padding-left: 360px;
    padding-right: 360px;
  }

  .max-sm\:px-95 {
    padding-left: 380px;
    padding-right: 380px;
  }

  .max-sm\:px-100 {
    padding-left: 400px;
    padding-right: 400px;
  }

  .max-sm\:py-unset {
    padding-top: unset;
    padding-bottom: unset;
  }

  .max-sm\:py-initial {
    padding-top: initial;
    padding-bottom: initial;
  }

  .max-sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-sm\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .max-sm\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .max-sm\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .max-sm\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .max-sm\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .max-sm\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .max-sm\:py-7 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .max-sm\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .max-sm\:py-9 {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .max-sm\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .max-sm\:py-11 {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .max-sm\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .max-sm\:py-14 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .max-sm\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .max-sm\:py-18 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .max-sm\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .max-sm\:py-25 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .max-sm\:py-30 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .max-sm\:py-35 {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .max-sm\:py-40 {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .max-sm\:py-45 {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .max-sm\:py-50 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .max-sm\:py-55 {
    padding-top: 220px;
    padding-bottom: 220px;
  }

  .max-sm\:py-60 {
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .max-sm\:py-65 {
    padding-top: 260px;
    padding-bottom: 260px;
  }

  .max-sm\:py-70 {
    padding-top: 280px;
    padding-bottom: 280px;
  }

  .max-sm\:py-75 {
    padding-top: 300px;
    padding-bottom: 300px;
  }

  .max-sm\:py-80 {
    padding-top: 320px;
    padding-bottom: 320px;
  }

  .max-sm\:py-85 {
    padding-top: 340px;
    padding-bottom: 340px;
  }

  .max-sm\:py-90 {
    padding-top: 360px;
    padding-bottom: 360px;
  }

  .max-sm\:py-95 {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .max-sm\:py-100 {
    padding-top: 400px;
    padding-bottom: 400px;
  }

  .max-sm\:pt-unset {
    padding-top: unset !important;
  }

  .max-sm\:pt-initial {
    padding-top: initial !important;
  }

  .max-sm\:pt-0 {
    padding-top: 0 !important;
  }

  .max-sm\:pt-1 {
    padding-top: 4px !important;
  }

  .max-sm\:pt-2 {
    padding-top: 8px !important;
  }

  .max-sm\:pt-3 {
    padding-top: 12px !important;
  }

  .max-sm\:pt-4 {
    padding-top: 16px !important;
  }

  .max-sm\:pt-5 {
    padding-top: 20px !important;
  }

  .max-sm\:pt-6 {
    padding-top: 24px !important;
  }

  .max-sm\:pt-7 {
    padding-top: 28px !important;
  }

  .max-sm\:pt-8 {
    padding-top: 32px !important;
  }

  .max-sm\:pt-9 {
    padding-top: 36px !important;
  }

  .max-sm\:pt-10 {
    padding-top: 40px !important;
  }

  .max-sm\:pt-11 {
    padding-top: 44px !important;
  }

  .max-sm\:pt-12 {
    padding-top: 48px !important;
  }

  .max-sm\:pt-14 {
    padding-top: 56px !important;
  }

  .max-sm\:pt-16 {
    padding-top: 64px !important;
  }

  .max-sm\:pt-18 {
    padding-top: 72px !important;
  }

  .max-sm\:pt-20 {
    padding-top: 80px !important;
  }

  .max-sm\:pt-25 {
    padding-top: 100px !important;
  }

  .max-sm\:pt-30 {
    padding-top: 120px !important;
  }

  .max-sm\:pt-35 {
    padding-top: 140px !important;
  }

  .max-sm\:pt-40 {
    padding-top: 160px !important;
  }

  .max-sm\:pt-45 {
    padding-top: 180px !important;
  }

  .max-sm\:pt-50 {
    padding-top: 200px !important;
  }

  .max-sm\:pt-55 {
    padding-top: 220px !important;
  }

  .max-sm\:pt-60 {
    padding-top: 240px !important;
  }

  .max-sm\:pt-65 {
    padding-top: 260px !important;
  }

  .max-sm\:pt-70 {
    padding-top: 280px !important;
  }

  .max-sm\:pt-75 {
    padding-top: 300px !important;
  }

  .max-sm\:pt-80 {
    padding-top: 320px !important;
  }

  .max-sm\:pt-85 {
    padding-top: 340px !important;
  }

  .max-sm\:pt-90 {
    padding-top: 360px !important;
  }

  .max-sm\:pt-95 {
    padding-top: 380px !important;
  }

  .max-sm\:pt-100 {
    padding-top: 400px !important;
  }

  .max-sm\:pb-unset {
    padding-bottom: unset !important;
  }

  .max-sm\:pb-initial {
    padding-bottom: initial !important;
  }

  .max-sm\:pb-0 {
    padding-bottom: 0 !important;
  }

  .max-sm\:pb-1 {
    padding-bottom: 4px !important;
  }

  .max-sm\:pb-2 {
    padding-bottom: 8px !important;
  }

  .max-sm\:pb-3 {
    padding-bottom: 12px !important;
  }

  .max-sm\:pb-4 {
    padding-bottom: 16px !important;
  }

  .max-sm\:pb-5 {
    padding-bottom: 20px !important;
  }

  .max-sm\:pb-6 {
    padding-bottom: 24px !important;
  }

  .max-sm\:pb-7 {
    padding-bottom: 28px !important;
  }

  .max-sm\:pb-8 {
    padding-bottom: 32px !important;
  }

  .max-sm\:pb-9 {
    padding-bottom: 36px !important;
  }

  .max-sm\:pb-10 {
    padding-bottom: 40px !important;
  }

  .max-sm\:pb-11 {
    padding-bottom: 44px !important;
  }

  .max-sm\:pb-12 {
    padding-bottom: 48px !important;
  }

  .max-sm\:pb-14 {
    padding-bottom: 56px !important;
  }

  .max-sm\:pb-16 {
    padding-bottom: 64px !important;
  }

  .max-sm\:pb-18 {
    padding-bottom: 72px !important;
  }

  .max-sm\:pb-20 {
    padding-bottom: 80px !important;
  }

  .max-sm\:pb-25 {
    padding-bottom: 100px !important;
  }

  .max-sm\:pb-30 {
    padding-bottom: 120px !important;
  }

  .max-sm\:pb-35 {
    padding-bottom: 140px !important;
  }

  .max-sm\:pb-40 {
    padding-bottom: 160px !important;
  }

  .max-sm\:pb-45 {
    padding-bottom: 180px !important;
  }

  .max-sm\:pb-50 {
    padding-bottom: 200px !important;
  }

  .max-sm\:pb-55 {
    padding-bottom: 220px !important;
  }

  .max-sm\:pb-60 {
    padding-bottom: 240px !important;
  }

  .max-sm\:pb-65 {
    padding-bottom: 260px !important;
  }

  .max-sm\:pb-70 {
    padding-bottom: 280px !important;
  }

  .max-sm\:pb-75 {
    padding-bottom: 300px !important;
  }

  .max-sm\:pb-80 {
    padding-bottom: 320px !important;
  }

  .max-sm\:pb-85 {
    padding-bottom: 340px !important;
  }

  .max-sm\:pb-90 {
    padding-bottom: 360px !important;
  }

  .max-sm\:pb-95 {
    padding-bottom: 380px !important;
  }

  .max-sm\:pb-100 {
    padding-bottom: 400px !important;
  }

  .max-sm\:pr-unset {
    padding-right: unset !important;
  }

  .max-sm\:pr-initial {
    padding-right: initial !important;
  }

  .max-sm\:pr-0 {
    padding-right: 0 !important;
  }

  .max-sm\:pr-1 {
    padding-right: 4px !important;
  }

  .max-sm\:pr-2 {
    padding-right: 8px !important;
  }

  .max-sm\:pr-3 {
    padding-right: 12px !important;
  }

  .max-sm\:pr-4 {
    padding-right: 16px !important;
  }

  .max-sm\:pr-5 {
    padding-right: 20px !important;
  }

  .max-sm\:pr-6 {
    padding-right: 24px !important;
  }

  .max-sm\:pr-7 {
    padding-right: 28px !important;
  }

  .max-sm\:pr-8 {
    padding-right: 32px !important;
  }

  .max-sm\:pr-9 {
    padding-right: 36px !important;
  }

  .max-sm\:pr-10 {
    padding-right: 40px !important;
  }

  .max-sm\:pr-11 {
    padding-right: 44px !important;
  }

  .max-sm\:pr-12 {
    padding-right: 48px !important;
  }

  .max-sm\:pr-14 {
    padding-right: 56px !important;
  }

  .max-sm\:pr-16 {
    padding-right: 64px !important;
  }

  .max-sm\:pr-18 {
    padding-right: 72px !important;
  }

  .max-sm\:pr-20 {
    padding-right: 80px !important;
  }

  .max-sm\:pr-25 {
    padding-right: 100px !important;
  }

  .max-sm\:pr-30 {
    padding-right: 120px !important;
  }

  .max-sm\:pr-35 {
    padding-right: 140px !important;
  }

  .max-sm\:pr-40 {
    padding-right: 160px !important;
  }

  .max-sm\:pr-45 {
    padding-right: 180px !important;
  }

  .max-sm\:pr-50 {
    padding-right: 200px !important;
  }

  .max-sm\:pr-55 {
    padding-right: 220px !important;
  }

  .max-sm\:pr-60 {
    padding-right: 240px !important;
  }

  .max-sm\:pr-65 {
    padding-right: 260px !important;
  }

  .max-sm\:pr-70 {
    padding-right: 280px !important;
  }

  .max-sm\:pr-75 {
    padding-right: 300px !important;
  }

  .max-sm\:pr-80 {
    padding-right: 320px !important;
  }

  .max-sm\:pr-85 {
    padding-right: 340px !important;
  }

  .max-sm\:pr-90 {
    padding-right: 360px !important;
  }

  .max-sm\:pr-95 {
    padding-right: 380px !important;
  }

  .max-sm\:pr-100 {
    padding-right: 400px !important;
  }

  .max-sm\:pl-unset {
    padding-left: unset !important;
  }

  .max-sm\:pl-initial {
    padding-left: initial !important;
  }

  .max-sm\:pl-0 {
    padding-left: 0 !important;
  }

  .max-sm\:pl-1 {
    padding-left: 4px !important;
  }

  .max-sm\:pl-2 {
    padding-left: 8px !important;
  }

  .max-sm\:pl-3 {
    padding-left: 12px !important;
  }

  .max-sm\:pl-4 {
    padding-left: 16px !important;
  }

  .max-sm\:pl-5 {
    padding-left: 20px !important;
  }

  .max-sm\:pl-6 {
    padding-left: 24px !important;
  }

  .max-sm\:pl-7 {
    padding-left: 28px !important;
  }

  .max-sm\:pl-8 {
    padding-left: 32px !important;
  }

  .max-sm\:pl-9 {
    padding-left: 36px !important;
  }

  .max-sm\:pl-10 {
    padding-left: 40px !important;
  }

  .max-sm\:pl-11 {
    padding-left: 44px !important;
  }

  .max-sm\:pl-12 {
    padding-left: 48px !important;
  }

  .max-sm\:pl-14 {
    padding-left: 56px !important;
  }

  .max-sm\:pl-16 {
    padding-left: 64px !important;
  }

  .max-sm\:pl-18 {
    padding-left: 72px !important;
  }

  .max-sm\:pl-20 {
    padding-left: 80px !important;
  }

  .max-sm\:pl-25 {
    padding-left: 100px !important;
  }

  .max-sm\:pl-30 {
    padding-left: 120px !important;
  }

  .max-sm\:pl-35 {
    padding-left: 140px !important;
  }

  .max-sm\:pl-40 {
    padding-left: 160px !important;
  }

  .max-sm\:pl-45 {
    padding-left: 180px !important;
  }

  .max-sm\:pl-50 {
    padding-left: 200px !important;
  }

  .max-sm\:pl-55 {
    padding-left: 220px !important;
  }

  .max-sm\:pl-60 {
    padding-left: 240px !important;
  }

  .max-sm\:pl-65 {
    padding-left: 260px !important;
  }

  .max-sm\:pl-70 {
    padding-left: 280px !important;
  }

  .max-sm\:pl-75 {
    padding-left: 300px !important;
  }

  .max-sm\:pl-80 {
    padding-left: 320px !important;
  }

  .max-sm\:pl-85 {
    padding-left: 340px !important;
  }

  .max-sm\:pl-90 {
    padding-left: 360px !important;
  }

  .max-sm\:pl-95 {
    padding-left: 380px !important;
  }

  .max-sm\:pl-100 {
    padding-left: 400px !important;
  }
}

@media (min-width: 641px) {
  .sm\:p-unset {
    padding: unset;
  }

  .sm\:p-initial {
    padding: initial;
  }

  .sm\:p-0 {
    padding: 0;
  }

  .sm\:p-1 {
    padding: 4px;
  }

  .sm\:p-2 {
    padding: 8px;
  }

  .sm\:p-3 {
    padding: 12px;
  }

  .sm\:p-4 {
    padding: 16px;
  }

  .sm\:p-5 {
    padding: 20px;
  }

  .sm\:p-6 {
    padding: 24px;
  }

  .sm\:p-7 {
    padding: 28px;
  }

  .sm\:p-8 {
    padding: 32px;
  }

  .sm\:p-9 {
    padding: 36px;
  }

  .sm\:p-10 {
    padding: 40px;
  }

  .sm\:p-11 {
    padding: 44px;
  }

  .sm\:p-12 {
    padding: 48px;
  }

  .sm\:p-14 {
    padding: 56px;
  }

  .sm\:p-16 {
    padding: 64px;
  }

  .sm\:p-18 {
    padding: 72px;
  }

  .sm\:p-20 {
    padding: 80px;
  }

  .sm\:p-25 {
    padding: 100px;
  }

  .sm\:p-30 {
    padding: 120px;
  }

  .sm\:p-35 {
    padding: 140px;
  }

  .sm\:p-40 {
    padding: 160px;
  }

  .sm\:p-45 {
    padding: 180px;
  }

  .sm\:p-50 {
    padding: 200px;
  }

  .sm\:p-55 {
    padding: 220px;
  }

  .sm\:p-60 {
    padding: 240px;
  }

  .sm\:p-65 {
    padding: 260px;
  }

  .sm\:p-70 {
    padding: 280px;
  }

  .sm\:p-75 {
    padding: 300px;
  }

  .sm\:p-80 {
    padding: 320px;
  }

  .sm\:p-85 {
    padding: 340px;
  }

  .sm\:p-90 {
    padding: 360px;
  }

  .sm\:p-95 {
    padding: 380px;
  }

  .sm\:p-100 {
    padding: 400px;
  }

  .sm\:px-unset {
    padding-left: unset;
    padding-right: unset;
  }

  .sm\:px-initial {
    padding-left: initial;
    padding-right: initial;
  }

  .sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .sm\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .sm\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sm\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sm\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sm\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sm\:px-7 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .sm\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .sm\:px-9 {
    padding-left: 36px;
    padding-right: 36px;
  }

  .sm\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sm\:px-11 {
    padding-left: 44px;
    padding-right: 44px;
  }

  .sm\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .sm\:px-14 {
    padding-left: 56px;
    padding-right: 56px;
  }

  .sm\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .sm\:px-18 {
    padding-left: 72px;
    padding-right: 72px;
  }

  .sm\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .sm\:px-25 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .sm\:px-30 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .sm\:px-35 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .sm\:px-40 {
    padding-left: 160px;
    padding-right: 160px;
  }

  .sm\:px-45 {
    padding-left: 180px;
    padding-right: 180px;
  }

  .sm\:px-50 {
    padding-left: 200px;
    padding-right: 200px;
  }

  .sm\:px-55 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .sm\:px-60 {
    padding-left: 240px;
    padding-right: 240px;
  }

  .sm\:px-65 {
    padding-left: 260px;
    padding-right: 260px;
  }

  .sm\:px-70 {
    padding-left: 280px;
    padding-right: 280px;
  }

  .sm\:px-75 {
    padding-left: 300px;
    padding-right: 300px;
  }

  .sm\:px-80 {
    padding-left: 320px;
    padding-right: 320px;
  }

  .sm\:px-85 {
    padding-left: 340px;
    padding-right: 340px;
  }

  .sm\:px-90 {
    padding-left: 360px;
    padding-right: 360px;
  }

  .sm\:px-95 {
    padding-left: 380px;
    padding-right: 380px;
  }

  .sm\:px-100 {
    padding-left: 400px;
    padding-right: 400px;
  }

  .sm\:py-unset {
    padding-top: unset;
    padding-bottom: unset;
  }

  .sm\:py-initial {
    padding-top: initial;
    padding-bottom: initial;
  }

  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .sm\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .sm\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .sm\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .sm\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .sm\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sm\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .sm\:py-7 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .sm\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .sm\:py-9 {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .sm\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sm\:py-11 {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .sm\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .sm\:py-14 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .sm\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .sm\:py-18 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .sm\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sm\:py-25 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sm\:py-30 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .sm\:py-35 {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .sm\:py-40 {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .sm\:py-45 {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .sm\:py-50 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .sm\:py-55 {
    padding-top: 220px;
    padding-bottom: 220px;
  }

  .sm\:py-60 {
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .sm\:py-65 {
    padding-top: 260px;
    padding-bottom: 260px;
  }

  .sm\:py-70 {
    padding-top: 280px;
    padding-bottom: 280px;
  }

  .sm\:py-75 {
    padding-top: 300px;
    padding-bottom: 300px;
  }

  .sm\:py-80 {
    padding-top: 320px;
    padding-bottom: 320px;
  }

  .sm\:py-85 {
    padding-top: 340px;
    padding-bottom: 340px;
  }

  .sm\:py-90 {
    padding-top: 360px;
    padding-bottom: 360px;
  }

  .sm\:py-95 {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .sm\:py-100 {
    padding-top: 400px;
    padding-bottom: 400px;
  }

  .sm\:pt-unset {
    padding-top: unset !important;
  }

  .sm\:pt-initial {
    padding-top: initial !important;
  }

  .sm\:pt-0 {
    padding-top: 0 !important;
  }

  .sm\:pt-1 {
    padding-top: 4px !important;
  }

  .sm\:pt-2 {
    padding-top: 8px !important;
  }

  .sm\:pt-3 {
    padding-top: 12px !important;
  }

  .sm\:pt-4 {
    padding-top: 16px !important;
  }

  .sm\:pt-5 {
    padding-top: 20px !important;
  }

  .sm\:pt-6 {
    padding-top: 24px !important;
  }

  .sm\:pt-7 {
    padding-top: 28px !important;
  }

  .sm\:pt-8 {
    padding-top: 32px !important;
  }

  .sm\:pt-9 {
    padding-top: 36px !important;
  }

  .sm\:pt-10 {
    padding-top: 40px !important;
  }

  .sm\:pt-11 {
    padding-top: 44px !important;
  }

  .sm\:pt-12 {
    padding-top: 48px !important;
  }

  .sm\:pt-14 {
    padding-top: 56px !important;
  }

  .sm\:pt-16 {
    padding-top: 64px !important;
  }

  .sm\:pt-18 {
    padding-top: 72px !important;
  }

  .sm\:pt-20 {
    padding-top: 80px !important;
  }

  .sm\:pt-25 {
    padding-top: 100px !important;
  }

  .sm\:pt-30 {
    padding-top: 120px !important;
  }

  .sm\:pt-35 {
    padding-top: 140px !important;
  }

  .sm\:pt-40 {
    padding-top: 160px !important;
  }

  .sm\:pt-45 {
    padding-top: 180px !important;
  }

  .sm\:pt-50 {
    padding-top: 200px !important;
  }

  .sm\:pt-55 {
    padding-top: 220px !important;
  }

  .sm\:pt-60 {
    padding-top: 240px !important;
  }

  .sm\:pt-65 {
    padding-top: 260px !important;
  }

  .sm\:pt-70 {
    padding-top: 280px !important;
  }

  .sm\:pt-75 {
    padding-top: 300px !important;
  }

  .sm\:pt-80 {
    padding-top: 320px !important;
  }

  .sm\:pt-85 {
    padding-top: 340px !important;
  }

  .sm\:pt-90 {
    padding-top: 360px !important;
  }

  .sm\:pt-95 {
    padding-top: 380px !important;
  }

  .sm\:pt-100 {
    padding-top: 400px !important;
  }

  .sm\:pb-unset {
    padding-bottom: unset !important;
  }

  .sm\:pb-initial {
    padding-bottom: initial !important;
  }

  .sm\:pb-0 {
    padding-bottom: 0 !important;
  }

  .sm\:pb-1 {
    padding-bottom: 4px !important;
  }

  .sm\:pb-2 {
    padding-bottom: 8px !important;
  }

  .sm\:pb-3 {
    padding-bottom: 12px !important;
  }

  .sm\:pb-4 {
    padding-bottom: 16px !important;
  }

  .sm\:pb-5 {
    padding-bottom: 20px !important;
  }

  .sm\:pb-6 {
    padding-bottom: 24px !important;
  }

  .sm\:pb-7 {
    padding-bottom: 28px !important;
  }

  .sm\:pb-8 {
    padding-bottom: 32px !important;
  }

  .sm\:pb-9 {
    padding-bottom: 36px !important;
  }

  .sm\:pb-10 {
    padding-bottom: 40px !important;
  }

  .sm\:pb-11 {
    padding-bottom: 44px !important;
  }

  .sm\:pb-12 {
    padding-bottom: 48px !important;
  }

  .sm\:pb-14 {
    padding-bottom: 56px !important;
  }

  .sm\:pb-16 {
    padding-bottom: 64px !important;
  }

  .sm\:pb-18 {
    padding-bottom: 72px !important;
  }

  .sm\:pb-20 {
    padding-bottom: 80px !important;
  }

  .sm\:pb-25 {
    padding-bottom: 100px !important;
  }

  .sm\:pb-30 {
    padding-bottom: 120px !important;
  }

  .sm\:pb-35 {
    padding-bottom: 140px !important;
  }

  .sm\:pb-40 {
    padding-bottom: 160px !important;
  }

  .sm\:pb-45 {
    padding-bottom: 180px !important;
  }

  .sm\:pb-50 {
    padding-bottom: 200px !important;
  }

  .sm\:pb-55 {
    padding-bottom: 220px !important;
  }

  .sm\:pb-60 {
    padding-bottom: 240px !important;
  }

  .sm\:pb-65 {
    padding-bottom: 260px !important;
  }

  .sm\:pb-70 {
    padding-bottom: 280px !important;
  }

  .sm\:pb-75 {
    padding-bottom: 300px !important;
  }

  .sm\:pb-80 {
    padding-bottom: 320px !important;
  }

  .sm\:pb-85 {
    padding-bottom: 340px !important;
  }

  .sm\:pb-90 {
    padding-bottom: 360px !important;
  }

  .sm\:pb-95 {
    padding-bottom: 380px !important;
  }

  .sm\:pb-100 {
    padding-bottom: 400px !important;
  }

  .sm\:pr-unset {
    padding-right: unset !important;
  }

  .sm\:pr-initial {
    padding-right: initial !important;
  }

  .sm\:pr-0 {
    padding-right: 0 !important;
  }

  .sm\:pr-1 {
    padding-right: 4px !important;
  }

  .sm\:pr-2 {
    padding-right: 8px !important;
  }

  .sm\:pr-3 {
    padding-right: 12px !important;
  }

  .sm\:pr-4 {
    padding-right: 16px !important;
  }

  .sm\:pr-5 {
    padding-right: 20px !important;
  }

  .sm\:pr-6 {
    padding-right: 24px !important;
  }

  .sm\:pr-7 {
    padding-right: 28px !important;
  }

  .sm\:pr-8 {
    padding-right: 32px !important;
  }

  .sm\:pr-9 {
    padding-right: 36px !important;
  }

  .sm\:pr-10 {
    padding-right: 40px !important;
  }

  .sm\:pr-11 {
    padding-right: 44px !important;
  }

  .sm\:pr-12 {
    padding-right: 48px !important;
  }

  .sm\:pr-14 {
    padding-right: 56px !important;
  }

  .sm\:pr-16 {
    padding-right: 64px !important;
  }

  .sm\:pr-18 {
    padding-right: 72px !important;
  }

  .sm\:pr-20 {
    padding-right: 80px !important;
  }

  .sm\:pr-25 {
    padding-right: 100px !important;
  }

  .sm\:pr-30 {
    padding-right: 120px !important;
  }

  .sm\:pr-35 {
    padding-right: 140px !important;
  }

  .sm\:pr-40 {
    padding-right: 160px !important;
  }

  .sm\:pr-45 {
    padding-right: 180px !important;
  }

  .sm\:pr-50 {
    padding-right: 200px !important;
  }

  .sm\:pr-55 {
    padding-right: 220px !important;
  }

  .sm\:pr-60 {
    padding-right: 240px !important;
  }

  .sm\:pr-65 {
    padding-right: 260px !important;
  }

  .sm\:pr-70 {
    padding-right: 280px !important;
  }

  .sm\:pr-75 {
    padding-right: 300px !important;
  }

  .sm\:pr-80 {
    padding-right: 320px !important;
  }

  .sm\:pr-85 {
    padding-right: 340px !important;
  }

  .sm\:pr-90 {
    padding-right: 360px !important;
  }

  .sm\:pr-95 {
    padding-right: 380px !important;
  }

  .sm\:pr-100 {
    padding-right: 400px !important;
  }

  .sm\:pl-unset {
    padding-left: unset !important;
  }

  .sm\:pl-initial {
    padding-left: initial !important;
  }

  .sm\:pl-0 {
    padding-left: 0 !important;
  }

  .sm\:pl-1 {
    padding-left: 4px !important;
  }

  .sm\:pl-2 {
    padding-left: 8px !important;
  }

  .sm\:pl-3 {
    padding-left: 12px !important;
  }

  .sm\:pl-4 {
    padding-left: 16px !important;
  }

  .sm\:pl-5 {
    padding-left: 20px !important;
  }

  .sm\:pl-6 {
    padding-left: 24px !important;
  }

  .sm\:pl-7 {
    padding-left: 28px !important;
  }

  .sm\:pl-8 {
    padding-left: 32px !important;
  }

  .sm\:pl-9 {
    padding-left: 36px !important;
  }

  .sm\:pl-10 {
    padding-left: 40px !important;
  }

  .sm\:pl-11 {
    padding-left: 44px !important;
  }

  .sm\:pl-12 {
    padding-left: 48px !important;
  }

  .sm\:pl-14 {
    padding-left: 56px !important;
  }

  .sm\:pl-16 {
    padding-left: 64px !important;
  }

  .sm\:pl-18 {
    padding-left: 72px !important;
  }

  .sm\:pl-20 {
    padding-left: 80px !important;
  }

  .sm\:pl-25 {
    padding-left: 100px !important;
  }

  .sm\:pl-30 {
    padding-left: 120px !important;
  }

  .sm\:pl-35 {
    padding-left: 140px !important;
  }

  .sm\:pl-40 {
    padding-left: 160px !important;
  }

  .sm\:pl-45 {
    padding-left: 180px !important;
  }

  .sm\:pl-50 {
    padding-left: 200px !important;
  }

  .sm\:pl-55 {
    padding-left: 220px !important;
  }

  .sm\:pl-60 {
    padding-left: 240px !important;
  }

  .sm\:pl-65 {
    padding-left: 260px !important;
  }

  .sm\:pl-70 {
    padding-left: 280px !important;
  }

  .sm\:pl-75 {
    padding-left: 300px !important;
  }

  .sm\:pl-80 {
    padding-left: 320px !important;
  }

  .sm\:pl-85 {
    padding-left: 340px !important;
  }

  .sm\:pl-90 {
    padding-left: 360px !important;
  }

  .sm\:pl-95 {
    padding-left: 380px !important;
  }

  .sm\:pl-100 {
    padding-left: 400px !important;
  }
}

@media (min-width: 921px) {
  .md\:p-unset {
    padding: unset;
  }

  .md\:p-initial {
    padding: initial;
  }

  .md\:p-0 {
    padding: 0;
  }

  .md\:p-1 {
    padding: 4px;
  }

  .md\:p-2 {
    padding: 8px;
  }

  .md\:p-3 {
    padding: 12px;
  }

  .md\:p-4 {
    padding: 16px;
  }

  .md\:p-5 {
    padding: 20px;
  }

  .md\:p-6 {
    padding: 24px;
  }

  .md\:p-7 {
    padding: 28px;
  }

  .md\:p-8 {
    padding: 32px;
  }

  .md\:p-9 {
    padding: 36px;
  }

  .md\:p-10 {
    padding: 40px;
  }

  .md\:p-11 {
    padding: 44px;
  }

  .md\:p-12 {
    padding: 48px;
  }

  .md\:p-14 {
    padding: 56px;
  }

  .md\:p-16 {
    padding: 64px;
  }

  .md\:p-18 {
    padding: 72px;
  }

  .md\:p-20 {
    padding: 80px;
  }

  .md\:p-25 {
    padding: 100px;
  }

  .md\:p-30 {
    padding: 120px;
  }

  .md\:p-35 {
    padding: 140px;
  }

  .md\:p-40 {
    padding: 160px;
  }

  .md\:p-45 {
    padding: 180px;
  }

  .md\:p-50 {
    padding: 200px;
  }

  .md\:p-55 {
    padding: 220px;
  }

  .md\:p-60 {
    padding: 240px;
  }

  .md\:p-65 {
    padding: 260px;
  }

  .md\:p-70 {
    padding: 280px;
  }

  .md\:p-75 {
    padding: 300px;
  }

  .md\:p-80 {
    padding: 320px;
  }

  .md\:p-85 {
    padding: 340px;
  }

  .md\:p-90 {
    padding: 360px;
  }

  .md\:p-95 {
    padding: 380px;
  }

  .md\:p-100 {
    padding: 400px;
  }

  .md\:px-unset {
    padding-left: unset;
    padding-right: unset;
  }

  .md\:px-initial {
    padding-left: initial;
    padding-right: initial;
  }

  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .md\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .md\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .md\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .md\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .md\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .md\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .md\:px-7 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .md\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .md\:px-9 {
    padding-left: 36px;
    padding-right: 36px;
  }

  .md\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .md\:px-11 {
    padding-left: 44px;
    padding-right: 44px;
  }

  .md\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .md\:px-14 {
    padding-left: 56px;
    padding-right: 56px;
  }

  .md\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .md\:px-18 {
    padding-left: 72px;
    padding-right: 72px;
  }

  .md\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .md\:px-25 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .md\:px-30 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .md\:px-35 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .md\:px-40 {
    padding-left: 160px;
    padding-right: 160px;
  }

  .md\:px-45 {
    padding-left: 180px;
    padding-right: 180px;
  }

  .md\:px-50 {
    padding-left: 200px;
    padding-right: 200px;
  }

  .md\:px-55 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .md\:px-60 {
    padding-left: 240px;
    padding-right: 240px;
  }

  .md\:px-65 {
    padding-left: 260px;
    padding-right: 260px;
  }

  .md\:px-70 {
    padding-left: 280px;
    padding-right: 280px;
  }

  .md\:px-75 {
    padding-left: 300px;
    padding-right: 300px;
  }

  .md\:px-80 {
    padding-left: 320px;
    padding-right: 320px;
  }

  .md\:px-85 {
    padding-left: 340px;
    padding-right: 340px;
  }

  .md\:px-90 {
    padding-left: 360px;
    padding-right: 360px;
  }

  .md\:px-95 {
    padding-left: 380px;
    padding-right: 380px;
  }

  .md\:px-100 {
    padding-left: 400px;
    padding-right: 400px;
  }

  .md\:py-unset {
    padding-top: unset;
    padding-bottom: unset;
  }

  .md\:py-initial {
    padding-top: initial;
    padding-bottom: initial;
  }

  .md\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .md\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .md\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .md\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .md\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .md\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .md\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .md\:py-7 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .md\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .md\:py-9 {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .md\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .md\:py-11 {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .md\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .md\:py-14 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .md\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .md\:py-18 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .md\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .md\:py-25 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .md\:py-30 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .md\:py-35 {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .md\:py-40 {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .md\:py-45 {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .md\:py-50 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .md\:py-55 {
    padding-top: 220px;
    padding-bottom: 220px;
  }

  .md\:py-60 {
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .md\:py-65 {
    padding-top: 260px;
    padding-bottom: 260px;
  }

  .md\:py-70 {
    padding-top: 280px;
    padding-bottom: 280px;
  }

  .md\:py-75 {
    padding-top: 300px;
    padding-bottom: 300px;
  }

  .md\:py-80 {
    padding-top: 320px;
    padding-bottom: 320px;
  }

  .md\:py-85 {
    padding-top: 340px;
    padding-bottom: 340px;
  }

  .md\:py-90 {
    padding-top: 360px;
    padding-bottom: 360px;
  }

  .md\:py-95 {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .md\:py-100 {
    padding-top: 400px;
    padding-bottom: 400px;
  }

  .md\:pt-unset {
    padding-top: unset !important;
  }

  .md\:pt-initial {
    padding-top: initial !important;
  }

  .md\:pt-0 {
    padding-top: 0 !important;
  }

  .md\:pt-1 {
    padding-top: 4px !important;
  }

  .md\:pt-2 {
    padding-top: 8px !important;
  }

  .md\:pt-3 {
    padding-top: 12px !important;
  }

  .md\:pt-4 {
    padding-top: 16px !important;
  }

  .md\:pt-5 {
    padding-top: 20px !important;
  }

  .md\:pt-6 {
    padding-top: 24px !important;
  }

  .md\:pt-7 {
    padding-top: 28px !important;
  }

  .md\:pt-8 {
    padding-top: 32px !important;
  }

  .md\:pt-9 {
    padding-top: 36px !important;
  }

  .md\:pt-10 {
    padding-top: 40px !important;
  }

  .md\:pt-11 {
    padding-top: 44px !important;
  }

  .md\:pt-12 {
    padding-top: 48px !important;
  }

  .md\:pt-14 {
    padding-top: 56px !important;
  }

  .md\:pt-16 {
    padding-top: 64px !important;
  }

  .md\:pt-18 {
    padding-top: 72px !important;
  }

  .md\:pt-20 {
    padding-top: 80px !important;
  }

  .md\:pt-25 {
    padding-top: 100px !important;
  }

  .md\:pt-30 {
    padding-top: 120px !important;
  }

  .md\:pt-35 {
    padding-top: 140px !important;
  }

  .md\:pt-40 {
    padding-top: 160px !important;
  }

  .md\:pt-45 {
    padding-top: 180px !important;
  }

  .md\:pt-50 {
    padding-top: 200px !important;
  }

  .md\:pt-55 {
    padding-top: 220px !important;
  }

  .md\:pt-60 {
    padding-top: 240px !important;
  }

  .md\:pt-65 {
    padding-top: 260px !important;
  }

  .md\:pt-70 {
    padding-top: 280px !important;
  }

  .md\:pt-75 {
    padding-top: 300px !important;
  }

  .md\:pt-80 {
    padding-top: 320px !important;
  }

  .md\:pt-85 {
    padding-top: 340px !important;
  }

  .md\:pt-90 {
    padding-top: 360px !important;
  }

  .md\:pt-95 {
    padding-top: 380px !important;
  }

  .md\:pt-100 {
    padding-top: 400px !important;
  }

  .md\:pb-unset {
    padding-bottom: unset !important;
  }

  .md\:pb-initial {
    padding-bottom: initial !important;
  }

  .md\:pb-0 {
    padding-bottom: 0 !important;
  }

  .md\:pb-1 {
    padding-bottom: 4px !important;
  }

  .md\:pb-2 {
    padding-bottom: 8px !important;
  }

  .md\:pb-3 {
    padding-bottom: 12px !important;
  }

  .md\:pb-4 {
    padding-bottom: 16px !important;
  }

  .md\:pb-5 {
    padding-bottom: 20px !important;
  }

  .md\:pb-6 {
    padding-bottom: 24px !important;
  }

  .md\:pb-7 {
    padding-bottom: 28px !important;
  }

  .md\:pb-8 {
    padding-bottom: 32px !important;
  }

  .md\:pb-9 {
    padding-bottom: 36px !important;
  }

  .md\:pb-10 {
    padding-bottom: 40px !important;
  }

  .md\:pb-11 {
    padding-bottom: 44px !important;
  }

  .md\:pb-12 {
    padding-bottom: 48px !important;
  }

  .md\:pb-14 {
    padding-bottom: 56px !important;
  }

  .md\:pb-16 {
    padding-bottom: 64px !important;
  }

  .md\:pb-18 {
    padding-bottom: 72px !important;
  }

  .md\:pb-20 {
    padding-bottom: 80px !important;
  }

  .md\:pb-25 {
    padding-bottom: 100px !important;
  }

  .md\:pb-30 {
    padding-bottom: 120px !important;
  }

  .md\:pb-35 {
    padding-bottom: 140px !important;
  }

  .md\:pb-40 {
    padding-bottom: 160px !important;
  }

  .md\:pb-45 {
    padding-bottom: 180px !important;
  }

  .md\:pb-50 {
    padding-bottom: 200px !important;
  }

  .md\:pb-55 {
    padding-bottom: 220px !important;
  }

  .md\:pb-60 {
    padding-bottom: 240px !important;
  }

  .md\:pb-65 {
    padding-bottom: 260px !important;
  }

  .md\:pb-70 {
    padding-bottom: 280px !important;
  }

  .md\:pb-75 {
    padding-bottom: 300px !important;
  }

  .md\:pb-80 {
    padding-bottom: 320px !important;
  }

  .md\:pb-85 {
    padding-bottom: 340px !important;
  }

  .md\:pb-90 {
    padding-bottom: 360px !important;
  }

  .md\:pb-95 {
    padding-bottom: 380px !important;
  }

  .md\:pb-100 {
    padding-bottom: 400px !important;
  }

  .md\:pr-unset {
    padding-right: unset !important;
  }

  .md\:pr-initial {
    padding-right: initial !important;
  }

  .md\:pr-0 {
    padding-right: 0 !important;
  }

  .md\:pr-1 {
    padding-right: 4px !important;
  }

  .md\:pr-2 {
    padding-right: 8px !important;
  }

  .md\:pr-3 {
    padding-right: 12px !important;
  }

  .md\:pr-4 {
    padding-right: 16px !important;
  }

  .md\:pr-5 {
    padding-right: 20px !important;
  }

  .md\:pr-6 {
    padding-right: 24px !important;
  }

  .md\:pr-7 {
    padding-right: 28px !important;
  }

  .md\:pr-8 {
    padding-right: 32px !important;
  }

  .md\:pr-9 {
    padding-right: 36px !important;
  }

  .md\:pr-10 {
    padding-right: 40px !important;
  }

  .md\:pr-11 {
    padding-right: 44px !important;
  }

  .md\:pr-12 {
    padding-right: 48px !important;
  }

  .md\:pr-14 {
    padding-right: 56px !important;
  }

  .md\:pr-16 {
    padding-right: 64px !important;
  }

  .md\:pr-18 {
    padding-right: 72px !important;
  }

  .md\:pr-20 {
    padding-right: 80px !important;
  }

  .md\:pr-25 {
    padding-right: 100px !important;
  }

  .md\:pr-30 {
    padding-right: 120px !important;
  }

  .md\:pr-35 {
    padding-right: 140px !important;
  }

  .md\:pr-40 {
    padding-right: 160px !important;
  }

  .md\:pr-45 {
    padding-right: 180px !important;
  }

  .md\:pr-50 {
    padding-right: 200px !important;
  }

  .md\:pr-55 {
    padding-right: 220px !important;
  }

  .md\:pr-60 {
    padding-right: 240px !important;
  }

  .md\:pr-65 {
    padding-right: 260px !important;
  }

  .md\:pr-70 {
    padding-right: 280px !important;
  }

  .md\:pr-75 {
    padding-right: 300px !important;
  }

  .md\:pr-80 {
    padding-right: 320px !important;
  }

  .md\:pr-85 {
    padding-right: 340px !important;
  }

  .md\:pr-90 {
    padding-right: 360px !important;
  }

  .md\:pr-95 {
    padding-right: 380px !important;
  }

  .md\:pr-100 {
    padding-right: 400px !important;
  }

  .md\:pl-unset {
    padding-left: unset !important;
  }

  .md\:pl-initial {
    padding-left: initial !important;
  }

  .md\:pl-0 {
    padding-left: 0 !important;
  }

  .md\:pl-1 {
    padding-left: 4px !important;
  }

  .md\:pl-2 {
    padding-left: 8px !important;
  }

  .md\:pl-3 {
    padding-left: 12px !important;
  }

  .md\:pl-4 {
    padding-left: 16px !important;
  }

  .md\:pl-5 {
    padding-left: 20px !important;
  }

  .md\:pl-6 {
    padding-left: 24px !important;
  }

  .md\:pl-7 {
    padding-left: 28px !important;
  }

  .md\:pl-8 {
    padding-left: 32px !important;
  }

  .md\:pl-9 {
    padding-left: 36px !important;
  }

  .md\:pl-10 {
    padding-left: 40px !important;
  }

  .md\:pl-11 {
    padding-left: 44px !important;
  }

  .md\:pl-12 {
    padding-left: 48px !important;
  }

  .md\:pl-14 {
    padding-left: 56px !important;
  }

  .md\:pl-16 {
    padding-left: 64px !important;
  }

  .md\:pl-18 {
    padding-left: 72px !important;
  }

  .md\:pl-20 {
    padding-left: 80px !important;
  }

  .md\:pl-25 {
    padding-left: 100px !important;
  }

  .md\:pl-30 {
    padding-left: 120px !important;
  }

  .md\:pl-35 {
    padding-left: 140px !important;
  }

  .md\:pl-40 {
    padding-left: 160px !important;
  }

  .md\:pl-45 {
    padding-left: 180px !important;
  }

  .md\:pl-50 {
    padding-left: 200px !important;
  }

  .md\:pl-55 {
    padding-left: 220px !important;
  }

  .md\:pl-60 {
    padding-left: 240px !important;
  }

  .md\:pl-65 {
    padding-left: 260px !important;
  }

  .md\:pl-70 {
    padding-left: 280px !important;
  }

  .md\:pl-75 {
    padding-left: 300px !important;
  }

  .md\:pl-80 {
    padding-left: 320px !important;
  }

  .md\:pl-85 {
    padding-left: 340px !important;
  }

  .md\:pl-90 {
    padding-left: 360px !important;
  }

  .md\:pl-95 {
    padding-left: 380px !important;
  }

  .md\:pl-100 {
    padding-left: 400px !important;
  }
}

@media (min-width: 1201px) {
  .lg\:p-unset {
    padding: unset;
  }

  .lg\:p-initial {
    padding: initial;
  }

  .lg\:p-0 {
    padding: 0;
  }

  .lg\:p-1 {
    padding: 4px;
  }

  .lg\:p-2 {
    padding: 8px;
  }

  .lg\:p-3 {
    padding: 12px;
  }

  .lg\:p-4 {
    padding: 16px;
  }

  .lg\:p-5 {
    padding: 20px;
  }

  .lg\:p-6 {
    padding: 24px;
  }

  .lg\:p-7 {
    padding: 28px;
  }

  .lg\:p-8 {
    padding: 32px;
  }

  .lg\:p-9 {
    padding: 36px;
  }

  .lg\:p-10 {
    padding: 40px;
  }

  .lg\:p-11 {
    padding: 44px;
  }

  .lg\:p-12 {
    padding: 48px;
  }

  .lg\:p-14 {
    padding: 56px;
  }

  .lg\:p-16 {
    padding: 64px;
  }

  .lg\:p-18 {
    padding: 72px;
  }

  .lg\:p-20 {
    padding: 80px;
  }

  .lg\:p-25 {
    padding: 100px;
  }

  .lg\:p-30 {
    padding: 120px;
  }

  .lg\:p-35 {
    padding: 140px;
  }

  .lg\:p-40 {
    padding: 160px;
  }

  .lg\:p-45 {
    padding: 180px;
  }

  .lg\:p-50 {
    padding: 200px;
  }

  .lg\:p-55 {
    padding: 220px;
  }

  .lg\:p-60 {
    padding: 240px;
  }

  .lg\:p-65 {
    padding: 260px;
  }

  .lg\:p-70 {
    padding: 280px;
  }

  .lg\:p-75 {
    padding: 300px;
  }

  .lg\:p-80 {
    padding: 320px;
  }

  .lg\:p-85 {
    padding: 340px;
  }

  .lg\:p-90 {
    padding: 360px;
  }

  .lg\:p-95 {
    padding: 380px;
  }

  .lg\:p-100 {
    padding: 400px;
  }

  .lg\:px-unset {
    padding-left: unset;
    padding-right: unset;
  }

  .lg\:px-initial {
    padding-left: initial;
    padding-right: initial;
  }

  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .lg\:px-1 {
    padding-left: 4px;
    padding-right: 4px;
  }

  .lg\:px-2 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .lg\:px-3 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .lg\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lg\:px-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lg\:px-6 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .lg\:px-7 {
    padding-left: 28px;
    padding-right: 28px;
  }

  .lg\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .lg\:px-9 {
    padding-left: 36px;
    padding-right: 36px;
  }

  .lg\:px-10 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .lg\:px-11 {
    padding-left: 44px;
    padding-right: 44px;
  }

  .lg\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }

  .lg\:px-14 {
    padding-left: 56px;
    padding-right: 56px;
  }

  .lg\:px-16 {
    padding-left: 64px;
    padding-right: 64px;
  }

  .lg\:px-18 {
    padding-left: 72px;
    padding-right: 72px;
  }

  .lg\:px-20 {
    padding-left: 80px;
    padding-right: 80px;
  }

  .lg\:px-25 {
    padding-left: 100px;
    padding-right: 100px;
  }

  .lg\:px-30 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .lg\:px-35 {
    padding-left: 140px;
    padding-right: 140px;
  }

  .lg\:px-40 {
    padding-left: 160px;
    padding-right: 160px;
  }

  .lg\:px-45 {
    padding-left: 180px;
    padding-right: 180px;
  }

  .lg\:px-50 {
    padding-left: 200px;
    padding-right: 200px;
  }

  .lg\:px-55 {
    padding-left: 220px;
    padding-right: 220px;
  }

  .lg\:px-60 {
    padding-left: 240px;
    padding-right: 240px;
  }

  .lg\:px-65 {
    padding-left: 260px;
    padding-right: 260px;
  }

  .lg\:px-70 {
    padding-left: 280px;
    padding-right: 280px;
  }

  .lg\:px-75 {
    padding-left: 300px;
    padding-right: 300px;
  }

  .lg\:px-80 {
    padding-left: 320px;
    padding-right: 320px;
  }

  .lg\:px-85 {
    padding-left: 340px;
    padding-right: 340px;
  }

  .lg\:px-90 {
    padding-left: 360px;
    padding-right: 360px;
  }

  .lg\:px-95 {
    padding-left: 380px;
    padding-right: 380px;
  }

  .lg\:px-100 {
    padding-left: 400px;
    padding-right: 400px;
  }

  .lg\:py-unset {
    padding-top: unset;
    padding-bottom: unset;
  }

  .lg\:py-initial {
    padding-top: initial;
    padding-bottom: initial;
  }

  .lg\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lg\:py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .lg\:py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .lg\:py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .lg\:py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .lg\:py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lg\:py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .lg\:py-7 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .lg\:py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .lg\:py-9 {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .lg\:py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .lg\:py-11 {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .lg\:py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .lg\:py-14 {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .lg\:py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .lg\:py-18 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .lg\:py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .lg\:py-25 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lg\:py-30 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .lg\:py-35 {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .lg\:py-40 {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .lg\:py-45 {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .lg\:py-50 {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .lg\:py-55 {
    padding-top: 220px;
    padding-bottom: 220px;
  }

  .lg\:py-60 {
    padding-top: 240px;
    padding-bottom: 240px;
  }

  .lg\:py-65 {
    padding-top: 260px;
    padding-bottom: 260px;
  }

  .lg\:py-70 {
    padding-top: 280px;
    padding-bottom: 280px;
  }

  .lg\:py-75 {
    padding-top: 300px;
    padding-bottom: 300px;
  }

  .lg\:py-80 {
    padding-top: 320px;
    padding-bottom: 320px;
  }

  .lg\:py-85 {
    padding-top: 340px;
    padding-bottom: 340px;
  }

  .lg\:py-90 {
    padding-top: 360px;
    padding-bottom: 360px;
  }

  .lg\:py-95 {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .lg\:py-100 {
    padding-top: 400px;
    padding-bottom: 400px;
  }

  .lg\:pt-unset {
    padding-top: unset !important;
  }

  .lg\:pt-initial {
    padding-top: initial !important;
  }

  .lg\:pt-0 {
    padding-top: 0 !important;
  }

  .lg\:pt-1 {
    padding-top: 4px !important;
  }

  .lg\:pt-2 {
    padding-top: 8px !important;
  }

  .lg\:pt-3 {
    padding-top: 12px !important;
  }

  .lg\:pt-4 {
    padding-top: 16px !important;
  }

  .lg\:pt-5 {
    padding-top: 20px !important;
  }

  .lg\:pt-6 {
    padding-top: 24px !important;
  }

  .lg\:pt-7 {
    padding-top: 28px !important;
  }

  .lg\:pt-8 {
    padding-top: 32px !important;
  }

  .lg\:pt-9 {
    padding-top: 36px !important;
  }

  .lg\:pt-10 {
    padding-top: 40px !important;
  }

  .lg\:pt-11 {
    padding-top: 44px !important;
  }

  .lg\:pt-12 {
    padding-top: 48px !important;
  }

  .lg\:pt-14 {
    padding-top: 56px !important;
  }

  .lg\:pt-16 {
    padding-top: 64px !important;
  }

  .lg\:pt-18 {
    padding-top: 72px !important;
  }

  .lg\:pt-20 {
    padding-top: 80px !important;
  }

  .lg\:pt-25 {
    padding-top: 100px !important;
  }

  .lg\:pt-30 {
    padding-top: 120px !important;
  }

  .lg\:pt-35 {
    padding-top: 140px !important;
  }

  .lg\:pt-40 {
    padding-top: 160px !important;
  }

  .lg\:pt-45 {
    padding-top: 180px !important;
  }

  .lg\:pt-50 {
    padding-top: 200px !important;
  }

  .lg\:pt-55 {
    padding-top: 220px !important;
  }

  .lg\:pt-60 {
    padding-top: 240px !important;
  }

  .lg\:pt-65 {
    padding-top: 260px !important;
  }

  .lg\:pt-70 {
    padding-top: 280px !important;
  }

  .lg\:pt-75 {
    padding-top: 300px !important;
  }

  .lg\:pt-80 {
    padding-top: 320px !important;
  }

  .lg\:pt-85 {
    padding-top: 340px !important;
  }

  .lg\:pt-90 {
    padding-top: 360px !important;
  }

  .lg\:pt-95 {
    padding-top: 380px !important;
  }

  .lg\:pt-100 {
    padding-top: 400px !important;
  }

  .lg\:pb-unset {
    padding-bottom: unset !important;
  }

  .lg\:pb-initial {
    padding-bottom: initial !important;
  }

  .lg\:pb-0 {
    padding-bottom: 0 !important;
  }

  .lg\:pb-1 {
    padding-bottom: 4px !important;
  }

  .lg\:pb-2 {
    padding-bottom: 8px !important;
  }

  .lg\:pb-3 {
    padding-bottom: 12px !important;
  }

  .lg\:pb-4 {
    padding-bottom: 16px !important;
  }

  .lg\:pb-5 {
    padding-bottom: 20px !important;
  }

  .lg\:pb-6 {
    padding-bottom: 24px !important;
  }

  .lg\:pb-7 {
    padding-bottom: 28px !important;
  }

  .lg\:pb-8 {
    padding-bottom: 32px !important;
  }

  .lg\:pb-9 {
    padding-bottom: 36px !important;
  }

  .lg\:pb-10 {
    padding-bottom: 40px !important;
  }

  .lg\:pb-11 {
    padding-bottom: 44px !important;
  }

  .lg\:pb-12 {
    padding-bottom: 48px !important;
  }

  .lg\:pb-14 {
    padding-bottom: 56px !important;
  }

  .lg\:pb-16 {
    padding-bottom: 64px !important;
  }

  .lg\:pb-18 {
    padding-bottom: 72px !important;
  }

  .lg\:pb-20 {
    padding-bottom: 80px !important;
  }

  .lg\:pb-25 {
    padding-bottom: 100px !important;
  }

  .lg\:pb-30 {
    padding-bottom: 120px !important;
  }

  .lg\:pb-35 {
    padding-bottom: 140px !important;
  }

  .lg\:pb-40 {
    padding-bottom: 160px !important;
  }

  .lg\:pb-45 {
    padding-bottom: 180px !important;
  }

  .lg\:pb-50 {
    padding-bottom: 200px !important;
  }

  .lg\:pb-55 {
    padding-bottom: 220px !important;
  }

  .lg\:pb-60 {
    padding-bottom: 240px !important;
  }

  .lg\:pb-65 {
    padding-bottom: 260px !important;
  }

  .lg\:pb-70 {
    padding-bottom: 280px !important;
  }

  .lg\:pb-75 {
    padding-bottom: 300px !important;
  }

  .lg\:pb-80 {
    padding-bottom: 320px !important;
  }

  .lg\:pb-85 {
    padding-bottom: 340px !important;
  }

  .lg\:pb-90 {
    padding-bottom: 360px !important;
  }

  .lg\:pb-95 {
    padding-bottom: 380px !important;
  }

  .lg\:pb-100 {
    padding-bottom: 400px !important;
  }

  .lg\:pr-unset {
    padding-right: unset !important;
  }

  .lg\:pr-initial {
    padding-right: initial !important;
  }

  .lg\:pr-0 {
    padding-right: 0 !important;
  }

  .lg\:pr-1 {
    padding-right: 4px !important;
  }

  .lg\:pr-2 {
    padding-right: 8px !important;
  }

  .lg\:pr-3 {
    padding-right: 12px !important;
  }

  .lg\:pr-4 {
    padding-right: 16px !important;
  }

  .lg\:pr-5 {
    padding-right: 20px !important;
  }

  .lg\:pr-6 {
    padding-right: 24px !important;
  }

  .lg\:pr-7 {
    padding-right: 28px !important;
  }

  .lg\:pr-8 {
    padding-right: 32px !important;
  }

  .lg\:pr-9 {
    padding-right: 36px !important;
  }

  .lg\:pr-10 {
    padding-right: 40px !important;
  }

  .lg\:pr-11 {
    padding-right: 44px !important;
  }

  .lg\:pr-12 {
    padding-right: 48px !important;
  }

  .lg\:pr-14 {
    padding-right: 56px !important;
  }

  .lg\:pr-16 {
    padding-right: 64px !important;
  }

  .lg\:pr-18 {
    padding-right: 72px !important;
  }

  .lg\:pr-20 {
    padding-right: 80px !important;
  }

  .lg\:pr-25 {
    padding-right: 100px !important;
  }

  .lg\:pr-30 {
    padding-right: 120px !important;
  }

  .lg\:pr-35 {
    padding-right: 140px !important;
  }

  .lg\:pr-40 {
    padding-right: 160px !important;
  }

  .lg\:pr-45 {
    padding-right: 180px !important;
  }

  .lg\:pr-50 {
    padding-right: 200px !important;
  }

  .lg\:pr-55 {
    padding-right: 220px !important;
  }

  .lg\:pr-60 {
    padding-right: 240px !important;
  }

  .lg\:pr-65 {
    padding-right: 260px !important;
  }

  .lg\:pr-70 {
    padding-right: 280px !important;
  }

  .lg\:pr-75 {
    padding-right: 300px !important;
  }

  .lg\:pr-80 {
    padding-right: 320px !important;
  }

  .lg\:pr-85 {
    padding-right: 340px !important;
  }

  .lg\:pr-90 {
    padding-right: 360px !important;
  }

  .lg\:pr-95 {
    padding-right: 380px !important;
  }

  .lg\:pr-100 {
    padding-right: 400px !important;
  }

  .lg\:pl-unset {
    padding-left: unset !important;
  }

  .lg\:pl-initial {
    padding-left: initial !important;
  }

  .lg\:pl-0 {
    padding-left: 0 !important;
  }

  .lg\:pl-1 {
    padding-left: 4px !important;
  }

  .lg\:pl-2 {
    padding-left: 8px !important;
  }

  .lg\:pl-3 {
    padding-left: 12px !important;
  }

  .lg\:pl-4 {
    padding-left: 16px !important;
  }

  .lg\:pl-5 {
    padding-left: 20px !important;
  }

  .lg\:pl-6 {
    padding-left: 24px !important;
  }

  .lg\:pl-7 {
    padding-left: 28px !important;
  }

  .lg\:pl-8 {
    padding-left: 32px !important;
  }

  .lg\:pl-9 {
    padding-left: 36px !important;
  }

  .lg\:pl-10 {
    padding-left: 40px !important;
  }

  .lg\:pl-11 {
    padding-left: 44px !important;
  }

  .lg\:pl-12 {
    padding-left: 48px !important;
  }

  .lg\:pl-14 {
    padding-left: 56px !important;
  }

  .lg\:pl-16 {
    padding-left: 64px !important;
  }

  .lg\:pl-18 {
    padding-left: 72px !important;
  }

  .lg\:pl-20 {
    padding-left: 80px !important;
  }

  .lg\:pl-25 {
    padding-left: 100px !important;
  }

  .lg\:pl-30 {
    padding-left: 120px !important;
  }

  .lg\:pl-35 {
    padding-left: 140px !important;
  }

  .lg\:pl-40 {
    padding-left: 160px !important;
  }

  .lg\:pl-45 {
    padding-left: 180px !important;
  }

  .lg\:pl-50 {
    padding-left: 200px !important;
  }

  .lg\:pl-55 {
    padding-left: 220px !important;
  }

  .lg\:pl-60 {
    padding-left: 240px !important;
  }

  .lg\:pl-65 {
    padding-left: 260px !important;
  }

  .lg\:pl-70 {
    padding-left: 280px !important;
  }

  .lg\:pl-75 {
    padding-left: 300px !important;
  }

  .lg\:pl-80 {
    padding-left: 320px !important;
  }

  .lg\:pl-85 {
    padding-left: 340px !important;
  }

  .lg\:pl-90 {
    padding-left: 360px !important;
  }

  .lg\:pl-95 {
    padding-left: 380px !important;
  }

  .lg\:pl-100 {
    padding-left: 400px !important;
  }
}

.timer>* {
  display: inline-block;
  text-align: center;
  margin-right: 2px;
}

.timer .num {
  padding: 7px 3px;
  display: block;
  background-color: #444565;
  min-width: 44px;
  color: #fff;
  font-size: 22px;
  border-radius: 6px;
  line-height: 1.2;
}

.links-secondary a {
  color: var(--text-color-secondary) !important;
}

.links-base a {
  color: var(--text-color-base) !important;
}

.links-primary a {
  color: var(--primary-600) !important;
}

.links-initial a {
  color: initial !important;
}

.links-inherit a {
  color: inherit !important;
}

.img-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.mix-blend-mode-multiply {
  mix-blend-mode: multiply;
}

.banner {
  position: relative;
  overflow: hidden;
  background: var(--primary-200);
}

.banner .caption {
  padding: 24px;
  position: relative;
  z-index: 10;
}

.cover-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.gallery-wrap .item-thumb {
  width: 80px;
  height: 80px;
  border: 1px solid var(--border-color-default);
  border-radius: var(--border-radius-base);
  margin: 2px;
  display: inline-block;
  overflow: hidden;
  flex-shrink: 0;
}

.gallery-wrap .item-thumb:hover {
  border-color: var(--neutral-400);
}

/* Reset/boxes */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.site-header {
  background: #fff;
}

.logo-wrap img {
  display: block;
}

.brand-title {
  margin-left: 8px;
  font-weight: 600;
  color: #111827;
  /* neutral-900 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52vw;
  /* kiçik ekranda loqoya bitişik responsiv başlıq */
}

/* Search input/button daha sabit ölçülü olsun */
.search-input {
  border: 2px solid #6366f1;
  /* primary */
  border-radius: 10px;
  height: 48px;

  padding: 0 14px;
  width: 100%;
  background: #f3f4f6;
  /* neutral-100 */
}

.search-btn {
  margin-left: 5px;
  height: 48px;
}

/* ===== Bottom nav fix ===== */
:root {
  --mbnav-h: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

.mobile-bottom-nav {
  position: fixed;
  inset: auto 0 0 0;
  /* left:0; right:0; bottom:0; top:auto */
  /* width:100%;  <-- SİL (left/right verildiyi üçün artıqdır və 1px daşma yarada bilər) */
  padding: 6px max(8px, var(--safe-left)) calc(6px + var(--safe-bottom)) max(8px, var(--safe-right));
  height: calc(var(--mbnav-h) + var(--safe-bottom));
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .08);
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-sizing: border-box;
  /* padding daxil olsun */
}

.mobile-bottom-nav * {
  min-width: 0;
  box-sizing: border-box;
}

/* uşaqlarda da daşmanı bağla */

.mobile-nav-item {
  flex: 1 1 20%;
  min-width: 0;
  text-align: center;
  text-decoration: none;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 2px;
  border-radius: 10px;
}

.mobile-nav-item:hover,
.mobile-nav-item.is-active {
  color: var(--primary-600);
  background: rgba(37, 99, 235, .06);
}

.mobile-nav-item svg {
  display: block;
}

/* Off-canvas panel */
.panel {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
}

.panel[aria-hidden="false"] {
  display: block;
}

.panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  transition: opacity .2s;
}

.panel[aria-hidden="false"] .panel-backdrop {
  opacity: 1;
}

.panel-sheet {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(92vw, 380px);
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, .08);
  transform: translateX(100%);
  transition: transform .25s ease;
  padding-bottom: calc(16px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
}

.panel[aria-hidden="false"] .panel-sheet {
  transform: translateX(0);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.panel-body {
  padding: 16px;
  overflow: auto;
}

.panel-close {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px;
}

.panel-label {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #111827;
}

.lang-grid {
  display: flex;
  gap: 8px;
}

.lang-btn {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-weight: 600;
}

.auth-grid {
  display: grid;
  gap: 10px;
}

/* Desktop: axtarışın eni və mərkəzlənməsi */
@media (min-width: 768px) {
  .brand-title {
    font-size: 22px;
  }

  .header-search {
    flex: 0 1 680px;
    /* maksimum en */
    max-width: 680px;
    /* mərkəzlə */
  }

  .header-search .search-input {
    height: 44px;
  }

  /* bir az yığcam */
  .header-search .search-btn {
    height: 44px;
    margin-left: 5px;
  }
}

/* ===== Mobil breakpoint ===== */
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: calc(var(--mbnav-h) + var(--safe-bottom));
  }

  /* alt bar üçün yer saxla */

  .header-left {
    gap: 8px;
  }

  .brand-title {
    font-size: 16px;
  }

  .header-search {
    order: 3;
    width: 100%;
  }
}

/* Desktop sağdakı actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 12px;
  /* axtarışdan azca məsafə */
  white-space: nowrap;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1f2937;
  /* neutral-800 */
  font-weight: 600;
  line-height: 1;
}

.header-action:hover {
  color: var(--primary-600);
}

.header-action svg {
  display: block;
  color: currentColor;
}

/* Mobil ölçüdə gizlət */
@media (max-width: 767px) {
  .header-actions {
    display: none;
  }
}

/* Default: mobil kateqoriya gizli */
.mobile-cats {
  display: none;
}

@media (max-width: 767px) {

  /* Sol aside tam gizlənsin */
  aside.lg:w-65 {
    display: none;
  }

  /* Mobil kateqoriya barı görünür */
  .mobile-cats {
    display: block;
    margin-top: 12px;
  }

  .cats-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 2px;
    scroll-snap-type: x proximity;

    /* SCROLLBAR GÖRÜNMƏSİN */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge köhnə */
  }

  .cats-scroll::-webkit-scrollbar {
    display: none;
  }

  /* WebKit */

  /* Kiçik, çox sığışan kvadrat karteçkalar */
  .cat-tile {
    flex: 0 0 auto;
    width: 100px;
    /* balaca olsun, ekrana çoxu sığsın */
    padding: 10px 6px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    color: #111827;
    display: flex;
    flex-direction: column;
    /* ikon yuxarı, title aşağı */
    align-items: center;
    justify-content: center;
    gap: 6px;
    scroll-snap-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  }

  .cat-tile img {
    width: 24px;
    height: 24px;
    display: block;
    /* ikon yuxarıda */
  }

  .cat-tile span {
    font-size: 12px;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }

  .cat-tile:active,
  .cat-tile:hover {
    border-color: #6366f1;
    color: #2563eb;
    background: rgba(37, 99, 235, .04);
  }
}

.product-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  /* kvadrat şəkillər üçün */
  object-fit: contain;
}

/* Mobil üçün düzəlişlər (desktop dəyişməz) */
.hero-wrap {
  gap: 16px;
}

/* Kartdakı miqdar + vahid sətiri mobilə uyğun */
.qty-row {
  max-width: 250px;
}

@media (max-width: 767px) {
  .hero-wrap {
    flex-direction: column;
    /* alt-alta düzülüş */
    align-items: stretch;
  }

  .hero-text {
    padding: 16px !important;
  }

  .hero-form {
    width: 100%;
    max-width: 100%;
  }

  .qty-row {
    max-width: 100%;
    /* sahə tam genişlik */
  }

  .qty-row .form-control,
  .qty-row .form-select {
    min-width: 0;
  }

  .hero-form .btn {
    width: 100%;
    /* düymə full-width */
  }

  /* Banner fonunun mobil davranışı */
  .bg-size-cover {
    background-size: cover;
    background-position: center;
  }
}

footer h6 {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}

footer .nav a {
  color: #374151;
  font-size: 14px;
  text-decoration: none;
}

footer .nav a:hover {
  color: #2563eb;
  text-decoration: underline;
}

footer .fs-sm {
  font-size: 13px;
}

.prod-logo {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* kənara daşma olmasın */
  background: #f3f4f6;
  /* istəyə görə: neytral fon */
}

.prod-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* bütöv görünsün, kəsilməsin */
  object-position: center;
  /* mərkəzdə dursun */
}

/* ===== Footer layout ===== */
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer .footer-title {
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 20px;
}

.site-footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer .footer-list a {
  color: #111827;
  text-decoration: none;
}

.site-footer .footer-list a:hover {
  color: #2563eb;
}

.site-footer .fi {
  width: 22px;
  display: inline-block;
}

/* brand + socials */
.footer-brand p {
  max-width: 520px;
}

/* Responsive */
@media (max-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand p {
    max-width: none;
  }
}

.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  text-decoration: none;
  height: 40px;
  border-radius: 50%;
  background: #e9e9e9;
  /* açıq boz */
  color: #000;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
  background: #2563eb;
  /* mavi hover */
  color: #fff;
}

.hero-row {
  display: flex;
  gap: 20px;
}

.banners-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ------ Layout ------ */
.hero-grid{
  display:grid;
  grid-template-columns:1fr;   /* mobil: tək sütun */
  gap:12px;
  align-items:stretch;
}

/* ------ Slider ------ */
.slider{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  isolation:isolate;
  background:#f6f6f6;
  /* MOBİL HÜNDÜRLÜK: 16:9 yerinə bir az hündür eləyək (məs: 5/3) */
  aspect-ratio: 5/3;          /* istəsən 4/3 də yaza bilərsən */
}

.slides{ display:flex; transition:transform .45s ease; height:100%; }
.slider.dragging .slides{ transition:none; }
.slide{ min-width:100%; height:100%; display:block; }
.slide img{
  width:100%; height:100%;
  object-fit: cover;          /* boşluq olmasın deyə */
  object-position: 35% center;/* fokus bir az sola – mobil üçün kəsilməni azaldır */
  display:block;
  -webkit-user-drag:none; user-select:none; pointer-events:none;
}

/* Dots */
.slider .dots{
  position:absolute; left:0; right:0; bottom:10px;
  display:flex; gap:8px; justify-content:center;
}
.slider .dots button{
  width:10px;height:10px;border-radius:9999px;
  border:2px solid #fff8;background:#fff6; box-shadow:0 1px 3px rgba(0,0,0,.15);
}
.slider .dots button.active{ background:#fff;border-color:#fff; }

/* ------ Right banners (mobil: sliderin altında yan-yana) ------ */
.right-banners{ display:flex; gap:12px; }
.right-banners .banner{
  flex:1 1 50%;
  border-radius:12px; overflow:hidden; aspect-ratio:16/9;
}
.right-banners .banner img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ------ Desktop ------ */
@media (min-width:992px){
  .hero-grid{ grid-template-columns:2fr 1fr; gap:16px; }

  .slider{
    aspect-ratio:auto;  /* ratio-nu söndürürük */
    height:460px;       /* sabit hündürlük desktop üçün */
  }

  .right-banners{
    display:grid; grid-template-rows:repeat(2,1fr);
    gap:16px; height:460px; margin-top:0;
  }
  .right-banners .banner{ aspect-ratio:auto; }
  .right-banners .banner img{ height:100%; }
}


.header-action {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.theme-toggle {
  background: none;
  border: 0;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
}

body.dark-mode .theme-toggle {
  background: #222;
  color: #fff;
  border-color: #444;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 50/50 */
}

/* Card */
.product-card .card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

/* Şəkil sahəsi – tam ört */
.prod-logo {
  width: 100%;
  height: 160px;
  background: #f3f3f3;
}

.prod-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 14px;
}

.rating span {
  color: #333;
  margin-left: 4px;
}

/* Səbətə at düyməsi */
.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--primary-500);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background .25s ease;
}

.btn-cart:hover {
  background: var(--primary-600);
}

/* Başlıq */
.deals-head h3 {
  color: #222;
  margin: 0 0 6px;
  font-weight: 700;
}

.deals-head p {
  color: #555;
  margin: 0;
  font-size: 14px;
}

/* Grid */
.deals-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width:768px) {
  .deals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width:1200px) {
  .deals-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Kart */
.deal-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
}

.deal-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Şəkil */
.img-wrap {
  position: relative;
  height: 170px;
  background: #f3f4f6;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Endirim badge */
.badge-off {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4444;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
}

/* Məzmun */
.deal-title {
  color: #111;
  font-size: 14px;
  font-weight: 600;
  margin: 12px 12px 6px;
  min-height: 38px;
}

/* Qiymət */
.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price .new {
  color: #eab308;
  font-size: 16px;
  font-weight: 800;
}

.price .old {
  color: #9ca3af;
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 500;
}

/* Button */
.btn-deal {
  margin: 0 12px 14px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  background: var(--primary-500);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background .2s ease;
}

.btn-deal:hover {
  background: var(--primary-600);
}

/* Bölmə */
.deals {
  background: #fafafa;
  /* açıq fon */
  border-radius: 16px;
}

.tos-hero {
  background: var(--brand-50, #EEF2FF);
  border-bottom: 1px solid var(--line, #E5E7EB);
  padding: 40px 0 28px;
}

.tos-breadcrumb {
  font-size: 14px;
  color: var(--muted, #6B7280);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.tos-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.tos-breadcrumb a:hover {
  text-decoration: underline;
}

.tos-title {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--text, #1F2937);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tos-sub {
  margin: 0 0 8px;
  color: var(--muted, #6B7280);
  max-width: 900px;
}

.tos-meta {
  font-size: 13px;
  color: var(--muted, #6B7280);
}

.tos-content {
  padding: 32px 0 60px;
}

.tos-card {
  background: var(--surface, #fff);
  border: 1px solid var(--line, #E5E7EB);
  border-radius: 16px;
  padding: clamp(16px, 2.5vw, 28px);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.04);
}

.tos-list {
  counter-reset: sec;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tos-list>li {
  padding: 10px 0 4px;
  border-bottom: 1px dashed var(--line, #E5E7EB);
}

.tos-list>li:last-child {
  border-bottom: none;
}

.tos-list h2 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 20px);
  color: var(--text, #1F2937);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.tos-list p {
  margin: 0;
  color: var(--text, #1F2937);
  line-height: 1.7;
}

.tos-cta {
  margin-top: 26px;
  padding: 16px;
  background: var(--brand-50, #EEF2FF);
  border: 1px dashed var(--brand-100, #E8EDFF);
  border-radius: 14px;
}

.tos-cta h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--text, #1F2937);
}

.tos-cta p {
  margin: 0 0 12px;
  color: var(--muted, #6B7280);
}

.tos-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  text-decoration: none;
}

/* Qaranlıq rejim üçün az fərqli tonlar (əgər body.dark-mode var idisə) */
body.dark-mode .tos-card {
  background: #0f1220;
  border-color: #1f2540;
}

body.dark-mode .tos-hero {
  background: rgba(54, 92, 255, 0.1);
  border-color: #1f2540;
}

body.dark-mode .tos-sub,
body.dark-mode .tos-meta,
body.dark-mode .tos-breadcrumb {
  color: #9aa3b2;
}

body.dark-mode .tos-list p {
  color: #e5e7eb;
}

body.dark-mode .tos-cta {
  background: rgba(54, 92, 255, 0.12);
  border-color: rgba(54, 92, 255, 0.22);
}

/* ====== Layout base ====== */
.site-header.sticky {
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header.glass {
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(255, 255, 255, .75);
  border-bottom: 1px solid #E5E7EB;
}

.hdr-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111827;
}

.brand img {
  width: 150px;
  display: block;
}

.brand span {
  font-weight: 600
}

.brand b {
  color: #f97316;
  font-weight: 700
}

.hdr-search {
  flex: 1;
  display: flex;

  margin-left: 20px;
  align-items: center;
  gap: 10px;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 8px 10px;
  background: #fff;
}

.hdr-search i {
  opacity: .7
}

.hdr-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
}

.hdr-search .btn {
  border-radius: 999px;
  padding: 10px 16px
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.topnav {
  display: flex;
  gap: 12px;
  margin-right: 6px
}

.topnav-link {
  color: #4B5563;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px
}

.topnav-link:hover {
  background: #F3F4F6
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.icon-btn .mBadge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  /* eyni en + hündürlük */
  height: 20px;
  background: #EF4444;
  color: #fff;
  border-radius: 50%;
  /* tam yumru */
  display: grid;
  /* mərkəzləşdirmə */
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  /* padding sil */
}

/* Mobile */
.mobile-only {
  display: none
}

@media (max-width: 992px) {
  .topnav {
    display: none
  }

  .mobile-only {
    display: inline-grid
  }
}

/* Offcanvas */
.offcanvas {
  position: fixed;
  inset: 0;
  display: none
}

.offcanvas[aria-hidden="false"] {
  display: block
}

.offcanvas__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45)
}

.offcanvas__sheet {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(380px, 92vw);
  background: #fff;
  padding: 16px;
  border-left: 1px solid #E5E7EB;
  animation: slideIn .2s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(20px);
    opacity: 0
  }

  to {
    transform: none;
    opacity: 1
  }
}

.offcanvas__head .row {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.m-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 10px;
  margin: 14px 0
}

.m-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent
}

.m-nav {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.m-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #111827
}

.m-nav a:hover {
  background: #F3F4F6
}

.m-quick {
  display: grid;
  gap: 10px;
  margin-top: 16px
}

.w-100 {
  width: 100%
}

/* ======= MOBILE HEADER FIX ======= */
@media (max-width: 768px) {

  /* final.css-i üstələmək üçün daha spesifik + !important */
  .site-header .hdr-row {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand actions"
      "search search";
    align-items: center;
    gap: 10px;
  }

  /* ucların yerləri */
  .site-header .brand {
    grid-area: brand;
  }

  .site-header .hdr-actions {
    grid-area: actions;
    justify-self: end;
    display: flex;
    gap: 8px;
  }

  .site-header .hdr-search {
    margin-left: 0px;
    grid-area: search;
    width: 100%;
    padding: 6px 8px;
    border-radius: 14px;
    gap: 8px;
  }

  .site-header .hdr-search input {
    min-width: 0;
    width: 100%;
    font-size: 14px;
  }

  .site-header .hdr-search .btn {
    padding: 6px 12px;
    font-size: 14px;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  /* loqo ölçüsü */
  .site-header .brand img {
    width: 120px;
    margin-top: 5px;
    height: 32px;
  }

  /* mətn linkləri mobil-də gizlət (yer açmaq üçün) */
  .site-header .topnav,
  .site-header .desktop-only {
    display: none !important;
  }

  /* səbət ikonunu da gizlətmək istəyirsinizsə */
  .site-header .hdr-actions a[href*="sebet"],
  .site-header .hdr-actions a[href*="cart"],
  .site-header .hdr-actions .icon-btn[data-role="cart"] {
    display: none !important;
  }

  /* menyu düyməsi (mobil) */
  .menu-btn {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #fff;
  }
}

/* Header qatında dropdown kəsilməsin */
.site-header,
.site-header .container,
.hdr-row,
.hdr-actions {
  position: relative;
  overflow: visible !important;
  /* başqa stylesheet-ləri üstələ */
  z-index: 1000;
}

/* Dropdown anchor */
.dropdown {
  position: relative !important;
  display: inline-block;
  vertical-align: middle;
  z-index: 1001;
  /* parent-dən yuxarı */
}

/* Menyu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  padding: 8px;
  display: none;
  z-index: 9999;
  /* ən üstdə qalsın */
}

/* Item-lar */
.site-header .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .dropdown-menu .dropdown-item:hover {
  background: #f3f4f6;
}

.site-header .dropdown-menu .text-danger {
  color: #dc2626;
}

.site-header .dropdown-menu .text-danger:hover {
  background: #fee2e2;
}

/* -- Balans chip (klik: balans-artir.php) -- */
.balance-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  transition: transform .05s ease, background .2s;
}

.balance-chip i {
  font-size: 16px;
}

.balance-chip:hover {
  background: #f9fafb;
}

.balance-chip:active {
  transform: translateY(1px);
}

/* Mobil panel m-nav içində balans pilli */
.m-nav .m-nav-balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* sağda pill */
  gap: 10px;
}

.m-nav .balance-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.banners-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== eStock Pass header CTA ===== */
.btn-pass-cta {
  --c1: #111827;
  /* black */
  --c2: #dc2626;
  /* red */
  --ring: rgba(220, 38, 38, .35);

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  border: 1px solid rgba(17, 24, 39, .15);
  background: linear-gradient(135deg, var(--c2) 0%, #ef4444 45%, var(--c1) 120%);
  color: #fff;
  font-weight: 800;
  letter-spacing: .3px;
  box-shadow: 0 6px 18px rgba(220, 38, 38, .18);
  transform: translateZ(0);
}

.btn-pass-cta i {
  font-size: 16px;
}

.btn-pass-cta .txt {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.btn-pass-cta .badge {
  font-size: 11px;
  font-weight: 900;
  background: #fff;
  color: #dc2626;
  padding: 4px 6px;
  border-radius: 8px;
  border: 2px solid #fecaca;
  line-height: 1;
}

.btn-pass-cta:hover {
  box-shadow: 0 10px 26px rgba(220, 38, 38, .28);
  filter: saturate(1.1);
}

.btn-pass-cta:active {
  transform: translateY(1px);
}

@media (prefers-reduced-motion:no-preference) {
  .btn-pass-cta {
    transition: box-shadow .2s ease, filter .2s ease, transform .1s ease;
  }
}

/* Tablet və mobil: topnav sıx olanda gizlətmək istəsən */
@media (max-width: 992px) {
  .btn-pass-cta {
    display: none;
  }
}

/* ===================== CART MODAL CSS ===================== */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none
}

.cart-modal.is-open {
  display: block
}

.cart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(2px)
}

.cart-modal__sheet {
  position: relative;
  margin: 24px auto;
  background: #fff;
  width: min(680px, 92vw);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  padding: 16px 16px 18px;
}

.cart-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: #f3f4f6;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer
}

.cm-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 8px 6px;
  border-radius: 12px;
  background: #fff
}

.cm-head__logo {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #f3f4f6;
  display: grid;
  place-items: center;
  overflow: hidden
}

.cm-head__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover
}

.cm-head__meta {
  min-width: 0
}

.cm-head__meta h3 {
  margin: 0 0 4px;
  font: 800 20px/1.2 "Inter", system-ui, sans-serif
}

.cm-head__rows {
  display: grid;
  gap: 4px;
  color: #374151;
  font: 600 14px/1.35 "Inter", system-ui, sans-serif
}

.cm-k {
  color: #6b7280;
  font-weight: 700
}

.cm-sep {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 14px 0
}

.cm-form {
  display: grid;
  gap: 12px
}

.cm-field {
  display: grid;
  gap: 6px
}

.cm-label {
  font: 700 14px/1 "Inter", system-ui, sans-serif;
  color: #111827
}

.cm-input,
.cm-select select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  font: 600 14px/1.2 "Inter", system-ui, sans-serif;
  background: #f9fafb;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}

.cm-input:focus,
.cm-select select:focus {
  border-color: #111827;
  background: #fff
}

.cm-select {
  position: relative
}

.cm-select i {
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0 -50%;
  pointer-events: none;
  color: #6b7280
}

.cm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px
}

.cm-btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font: 800 14px/1 "Inter", system-ui, sans-serif;
  cursor: pointer
}

.cm-btn--primary {
  background: var(--primary-500);
  color: #fff
}

.cm-btn--primary:hover {
  filter: brightness(1.06)
}

/* ===== Bütün ekran ölçüləri üçün hündürlük sabit olsun ===== */
.product-card {
  height: 100%;
}

.product-card .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Şəkil sabit nisbətdə (hər ölçüdə bərabər görünüş üçün) */
.product-card .prod-logo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f3f4f6;
  overflow: hidden;
}

.product-card .prod-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* İç hissə (description və düymə düzülməsi) */
.product-card .p-4 {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

/* Description bərabərləşməsi */
.product-card .text-secondary {
  overflow: hidden;
  display: -webkit-box;
}

/* Düymə həmişə ən altda */
.product-card .btn-cart {
  margin-top: auto;
}

/* ===== Mobil ölçülər üçün xüsusi düzəliş ===== */
@media (max-width: 768px) {
  .product-card .prod-logo {
    aspect-ratio: 1 / 1;
    /* kvadrat şəkil mobil üçün daha uyğun olur */
  }

  .product-card .p-4 {
    padding: 12px;
    gap: 6px;
  }

  .product-card .btn-cart {
    height: 42px;
    font-size: 0.9rem;
  }
}

.product-card .prod-desc {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* Yalnız mobil ekranlar üçün (768px və daha kiçik) */
@media (max-width: 768px) {

  #tawkchat-container,
  #tawkchat-minified-wrapper {
    bottom: 120px !important;
    /* nə qədər yuxarı qaldırmaq istəyirsənsə, o qədər px yaz */
    right: 10px !important;
    /* istəsən, sağ məsafəni də dəyişə bilərsən */
  }
}

/* DARK MODE */

/* =======================
   DARK MODE — PALETTRA
   ======================= */
body.dark-mode {
  /* rəng dəyişənləri */
  --bg: #0b0f13;
  --surface: #11161d;
  --surface-2: #161b22;
  --text: #e6edf3;
  --text-muted: #9aa7b2;
  --line: rgba(230, 237, 243, 0.08);

  --primary: #ff7a1a;
  /* linklər, ikonlar */
  --primary-600: #d14f09;
  --accent: #ff7a1a;
  /* "Axtar" kimi CTA */
  --accent-600: #e86808;

  --success: #22c55e;
  --danger: #ef4444;

  --shadow-1: 0 8px 24px rgba(0, 0, 0, .35);

  background-color: var(--bg);
  color: var(--text);
  color-scheme: dark;
}

/* =======================
   HEADER + NAV (dark)
   ======================= */
body.dark-mode .site-header.glass.sticky {
  background: rgba(12, 16, 22, .85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

/* topnav linkləri (mavi) */
body.dark-mode .topnav-link {
  color: var(--primary);
}

body.dark-mode .topnav-link:hover,
body.dark-mode .topnav-link:focus-visible {
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
}

/* sağ hissədəki icon düymələr */
body.dark-mode .icon-btn {
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow-1);
}

body.dark-mode .icon-btn:hover {
  background: var(--surface);
}

/* balans chip (ağ pill light-dan qalırsa tünd elə) */
body.dark-mode .balance-chip {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}

/* Cart badge qırmızı qalsın */
body.dark-mode .mBadge {
  background: var(--danger);
  color: #fff;
}

/* ESTOCK PASS düyməsi tünd fonda parlaq görünsün */
body.dark-mode .btn-pass-cta {
  color: #fff;
  box-shadow: 0 8px 28px rgba(6, 182, 212, .25);
  border: 1px solid rgba(255, 255, 255, .06);
}

/* =======================
   AXTARIŞ INPUTU (dark)
   ======================= */
body.dark-mode .hdr-search {
  background: var(--surface-2);
  /* ağ kapsulu tünd edirik */
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}

body.dark-mode .hdr-search i.fa-magnifying-glass {
  color: var(--text-muted);
}

body.dark-mode .hdr-search input {
  color: var(--text);
}

body.dark-mode .hdr-search input::placeholder {
  color: var(--text-muted);
}

/* "Axtar" düyməsi — narıncı CTA */
body.dark-mode .hdr-search .btn.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 0;
}

body.dark-mode .hdr-search .btn.btn-primary:hover {
  background: var(--accent-600);
}

/* =======================
   DROPDOWN + PANEL (dark)
   ======================= */
body.dark-mode .dropdown-menu {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}

body.dark-mode .dropdown-item {
  color: var(--text);
}

body.dark-mode .dropdown-item:hover {
  background: var(--surface-2);
}

body.dark-mode .panel-sheet {
  background: var(--surface);
  color: var(--text);
  border-left: 1px solid var(--line);
}

body.dark-mode .panel-backdrop {
  background: rgba(0, 0, 0, .5);
}

/* mobil alt naviqasiya */
body.dark-mode .mobile-bottom-nav {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}

body.dark-mode .mobile-bottom-nav .mobile-nav-item {
  color: var(--text);
}

body.dark-mode .mobile-bottom-nav .mobile-nav-item.is-active {
  color: var(--primary);
}

/* linklər */
body.dark-mode a {
  color: #fff;
}

body.dark-mode a:hover {
  color: var(--primary-600);
}

body.dark-mode .brand img {
  filter: brightness(10) contrast(1.1);
}

body.dark-mode .panel-block .panel-label {
  color: #FFF;
}

body.dark-mode .panel .panel-close {
  background: #000;
}

body.dark-mode .menu-btn {
  background: #000;
}

body.dark-mode .card {
  background-color: #000;
}

body.dark-mode .deals {
  background: #000;
}

body.dark-mode .deals-head p {
  color: #fff;
}

body.dark-mode .deals-head h3 {
  color: #fff;
}

body.dark-mode .rating span {
  color: #ff7a1a;
}

/* =========================
   FOOTER — DARK MODE ONLY
   ========================= */
body.dark-mode .site-footer {
  background: var(--surface-2);
  color: var(--text);
  border-top: 1px solid var(--line);
}

body.dark-mode .site-footer.bg-neutral-100 {
  /* light class-ı override edirik */
  background: var(--surface-2);
}

body.dark-mode .site-footer .text-secondary {
  color: var(--text-muted);
}

/* grid və bloklar */
body.dark-mode .site-footer .footer-title {
  color: var(--text);
}

body.dark-mode .site-footer .footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.dark-mode .site-footer .footer-list li {
  color: var(--text);
}

body.dark-mode .site-footer .footer-list .fi {
  width: 1.25rem;
  flex: 0 0 1.25rem;
  opacity: .8;
}

/* linklər */
body.dark-mode .site-footer a {
  color: var(--primary);
  text-decoration: none;
}

body.dark-mode .site-footer a:hover,
body.dark-mode .site-footer a:focus-visible {
  color: var(--primary-600);
}

/* sosial ikonlar */
body.dark-mode .site-footer .social-icon {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
}

body.dark-mode .site-footer .social-icon:hover {
  background: var(--surface-2);
}

/* ayırıcı xətt və alt hissə */
body.dark-mode .site-footer hr {
  border-color: var(--line);
  opacity: 1;
}

body.dark-mode .site-footer .fs-sm {
  color: var(--text-muted);
}

body.dark-mode .site-footer .brand img {
  filter: brightness(10) contrast(1.05);
}

body.dark-mode .text-secondary {
  color: #fff;
}

/* =========================
   CATEGORY PILL — rənglər (dark)
   ========================= */
body.dark-mode .cat-pill {
  background-color: var(--surface-2);
  color: var(--text);
  border-color: var(--line);
}

body.dark-mode .cat-pill:hover {
  background: linear-gradient(180deg, #3d4301, #e47e00);
  background-color: var(--surface);
  color: var(--primary);
  border-color: var(--primary);
}

body.dark-mode .cat-pill.is-active {
  background-color: var(--primary);
  color: #000;
  border-color: var(--primary);
}

body.dark-mode .cat-pill .cat-ico {
  background: #000;
  color: #fff;
}

body.dark-mode .digital-catalog {
  background: #1d1d1d;
}

body.dark-mode .bg-neutral-50 {
  background-color: #181818;
}

body.dark-mode .form-control {
  background-color: #010101;
}

/* =========================
   CART MODAL — rənglər (dark)
   ========================= */
body.dark-mode .cart-modal__backdrop {
  background-color: rgba(0, 0, 0, 0.6);
}

body.dark-mode .cart-modal__sheet {
  background-color: var(--surface-2);
  color: var(--text);
  border-color: var(--line);
}

body.dark-mode .cart-modal__close {
  color: var(--text);
}

body.dark-mode .cm-head {
  background: #010101;
}

body.dark-mode .cm-head__meta h3 {
  color: var(--text);
}

body.dark-mode .cm-head__rows {
  color: var(--text-muted);
}

body.dark-mode .cm-k {
  color: var(--text);
}

body.dark-mode .cm-sep {
  border-color: var(--line);
}

body.dark-mode .cm-label {
  color: var(--text);
}

body.dark-mode .cm-input,
body.dark-mode select {
  background-color: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

body.dark-mode .cm-input::placeholder {
  color: var(--text-muted);
}

body.dark-mode .cm-select i {
  color: var(--text-muted);
}

body.dark-mode .cm-btn--primary {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

body.dark-mode .cm-btn--primary:hover {
  background-color: var(--primary-600);
}

body.dark-mode .cart-modal__close {
  background: #2e2e2e;
}

/* ==============================
   eStock Pass – Dark Mode rəngləri
   ============================== */
body.dark-mode .hero-pass {
  background: #0f1216;
  /* ümumi fon */
  color: #e6edf3;
}

body.dark-mode .hero-pass .hero-title {
  color: #f1f5f9;
}

body.dark-mode .hero-pass .hero-kicker {
  color: #facc15;
}

body.dark-mode .hero-pass .hero-text {
  color: #cbd5e1;
}

body.dark-mode .hero-pass .feature-grid .feature {
  background: #1a1f25;
  border: 1px solid #2c323a;
  color: #e2e8f0;
}

body.dark-mode .hero-pass .feature h4 {
  color: #f9fafb;
}

body.dark-mode .hero-pass .hero-card {
  background: #1b2027;
  border: 1px solid #2c323a;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

body.dark-mode .hero-pass .badge-pass {
  background: #dc2626;
  color: #fff;
}

body.dark-mode .hero-pass .badge-discount {
  background: #334155;
  color: #f1f5f9;
}

body.dark-mode .hero-pass .price-big {
  color: #f9fafb;
}

body.dark-mode .hero-pass .price-sub {
  color: #cbd5e1;
}

body.dark-mode .hero-pass .btn-pass {
  background: #dc2626;
  color: #fff;
}

body.dark-mode .hero-pass .btn-pass:hover {
  background: #ef4444;
}

body.dark-mode .hero-pass .btn-ghost {
  background: transparent;
  border: 1px solid #475569;
  color: #f1f5f9;
}

body.dark-mode .hero-pass .btn-ghost:hover {
  background: #1e293b;
}

body.dark-mode .hero-pass .text-secondary {
  color: #9ca3af;
}

body.dark-mode .hero-pass .card.card-body {
  background: #1a1f25;
  border: 1px solid #2c323a;
  color: #e2e8f0;
}

body.dark-mode .hero-pass .faq-item {
  background: #1a1f25;
  border: 1px solid #2c323a;
  color: #e6edf3;
}

body.dark-mode .hero-pass .faq-item summary {
  color: #f9fafb;
}

body.dark-mode .hero-pass .faq-item p {
  color: #cbd5e1;
}

body.dark-mode .hero-pass .save-chip {
  background: #dc2626;
  color: #fff;
}

body.dark-mode .hero-pass .pass-badge {
  background: #334155;
  color: #e6edf3;
}

.estockPassTitle {
  margin: 0 0 8px;
  font-weight: 900;
  color: #111
}

body.dark-mode .estockPassTitle {
  color: #fff
}

body.dark-mode .feature p {
  color: #fff;
}

/* ==============================
   CART PAGE — Dark mode rəngləri
   ============================== */

/* ümumi bölmə */
body.dark-mode #cartSection {
  color: #e6edf3;
}

/* sol kart (məhsul siyahısı) */
body.dark-mode #cartSection .card {
  background-color: #11161d;
  border-color: rgba(230, 237, 243, 0.08);
  color: #e6edf3;
}

/* “Səbəti təmizlə” linki */
body.dark-mode #cartSection a {
  color: #fff;
}

body.dark-mode #cartSection a:hover {
  color: #2563eb;
}

/* cart item */
body.dark-mode #cartSection .cart-item {
  border-color: rgba(230, 237, 243, 0.08);
  color: #e6edf3;
}

/* başlıq linki */
body.dark-mode #cartSection .ci-title a,
body.dark-mode #cartSection .ci-title .text-dark {
  color: #f1f5f9;
}

/* pill-lər və meta */
body.dark-mode #cartSection .pill {
  background-color: #161b22;
  color: #e6edf3;
  border-color: rgba(230, 237, 243, 0.08);
}

/* əlavə field-lərin mətni (inline light rəngi override) */
body.dark-mode #cartSection .ci-fields {
  color: #9aa7b2 !important;
}

/* seçimlər (label + select) */
body.dark-mode #cartSection .ci-options .opt {
  color: #e6edf3;
}

body.dark-mode #cartSection .ci-qty,
body.dark-mode #cartSection .ci-duration,
body.dark-mode #cartSection select.ci-qty,
body.dark-mode #cartSection select.ci-duration {
  background-color: #161b22;
  color: #e6edf3;
  border-color: rgba(230, 237, 243, 0.12);
}

/* qiymət bloku */
body.dark-mode #cartSection .ci-price .per {
  color: #9aa7b2;
}

body.dark-mode #cartSection .ci-price .val {
  color: #f9fafb;
}

body.dark-mode #cartSection .ci-price .old {
  color: #94a3b8;
}

/* ümumi cəm */
body.dark-mode #cartSection .ci-total small {
  color: #9aa7b2;
}

body.dark-mode #cartSection .ci-total .sum {
  color: #f9fafb;
}

/* Sil düyməsi (btn-neutral) */
body.dark-mode #cartSection .btn.btn-neutral {
  background-color: #161b22;
  color: #e6edf3;
  border-color: rgba(230, 237, 243, 0.12);
}

body.dark-mode #cartSection .btn.btn-neutral:hover {
  background-color: #1d2430;
  color: #fff;
  border-color: rgba(230, 237, 243, 0.2);
}

/* sağ xülasə qutusu */
body.dark-mode #cartSection .bg-neutral-100 {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(230, 237, 243, 0.08);
}

body.dark-mode #cartSection .summary-list label {
  color: #cbd5e1;
}

body.dark-mode #cartSection #s_count,
body.dark-mode #cartSection #s_subtotal,
body.dark-mode #cartSection #s_total {
  color: #f9fafb;
}

/* ayırıcı xətt */
body.dark-mode #cartSection hr {
  border-color: rgba(230, 237, 243, 0.08);
}

/* “Ödənişə keç” (btn-green) */
body.dark-mode #cartSection .btn.btn-green {
  background-color: #22c55e;
  color: #0b0f13;
  border-color: #22c55e;
}

body.dark-mode #cartSection .btn.btn-green:hover {
  background-color: #16a34a;
  border-color: #16a34a;
}

/* ==============================
   PAY MODAL — Dark mode düzəliş
   ============================== */
body.dark-mode #payModal .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

body.dark-mode #payModal .modal-sheet,
body.dark-mode #payModal .modal-sheet.modal-sheet--light {
  background-color: #0d1117;
  color: #e6edf3;
  border: 1px solid rgba(240, 246, 252, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* başlıq */
body.dark-mode #payModal .modal-header,
body.dark-mode #payModal .modal-header.modal-header--light {
  background-color: #0d1117;
  border-bottom: 1px solid rgba(240, 246, 252, 0.08);
}

body.dark-mode #payModal #payTitle {
  color: #f1f5f9;
  font-weight: 700;
}

body.dark-mode #payModal .modal-close {
  color: #9ca3af;
}

body.dark-mode #payModal .modal-close:hover {
  color: #f9fafb;
}

/* əsas bədən */
body.dark-mode #payModal .modal-body {
  background-color: #0d1117;
  color: #e6edf3;
}

/* payment tile-lar */
body.dark-mode #payModal .pay-tile {
  background-color: #11161d;
  border: 1px solid rgba(240, 246, 252, 0.1);
  color: #e6edf3;
}

body.dark-mode #payModal .pay-tile:hover {
  background-color: #161b22;
  border-color: rgba(240, 246, 252, 0.2);
}

body.dark-mode #payModal .pay-tile.is-active {
  background-color: #161b22;
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}

body.dark-mode #payModal .pay-tile .pay-icon {
  background: #000;
}

body.dark-mode #payModal .pay-tile .pay-icon i {
  color: #cbd5e1;
}

body.dark-mode #payModal .pay-tile .pay-title {
  color: #f9fafb;
  font-weight: 600;
}

body.dark-mode #payModal .pay-tile .pay-desc {
  color: #9aa7b2;
}

body.dark-mode #payModal .pay-tile .pay-check i {
  color: #22c55e;
}

/* alt hissə */
body.dark-mode #payModal .modal-footer,
body.dark-mode #payModal .modal-footer.modal-footer--light {
  background-color: #0d1117;
  border-top: 1px solid rgba(240, 246, 252, 0.08);
}

/* təsdiq düyməsi */
body.dark-mode #payModal #confirmPayBtn.btn.btn-green {
  background-color: #22c55e;
  color: #0d1117;
  border-color: #22c55e;
}

body.dark-mode #payModal #confirmPayBtn.btn.btn-green:hover {
  background-color: #16a34a;
  border-color: #16a34a;
}

/* focus və keyboard naviqasiyası */
body.dark-mode #payModal .pay-tile:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* scrollbar (əgər modal overflow edirsə) */
body.dark-mode #payModal .modal-body::-webkit-scrollbar {
  width: 6px;
}

body.dark-mode #payModal .modal-body::-webkit-scrollbar-thumb {
  background-color: rgba(240, 246, 252, 0.15);
  border-radius: 3px;
}

body.dark-mode #payModal .modal-body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(240, 246, 252, 0.3);
}

/* ==============================
   BALANS ARTIR — Dark mode rəngləri
   ============================== */
body.dark-mode .topup-wrap {
  color: #e6edf3;
}

body.dark-mode .topup-wrap h2 {
  color: #f1f5f9;
}

body.dark-mode .topup-wrap .cardx {
  background-color: #0d1117;
  border: 1px solid rgba(240, 246, 252, 0.08);
  color: #e6edf3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .topup-wrap .note {
  color: #9aa7b2;
}

body.dark-mode .topup-wrap .note b {
  color: #f9fafb;
}

body.dark-mode .topup-wrap label {
  color: #cbd5e1;
}

body.dark-mode .topup-wrap .amount-grid .chip {
  background-color: #11161d;
  border: 1px solid rgba(240, 246, 252, 0.12);
  color: #e6edf3;
}

body.dark-mode .topup-wrap .amount-grid .chip:hover {
  background-color: #161b22;
  border-color: rgba(240, 246, 252, 0.2);
}

body.dark-mode .topup-wrap .amount-grid .chip.is-active,
body.dark-mode .topup-wrap .amount-grid .chip.active {
  background-color: #1e293b;
  border-color: #fff;
  color: #f9fafb;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}

body.dark-mode .topup-wrap .inp {
  background-color: #11161d;
  border: 1px solid rgba(240, 246, 252, 0.12);
  color: #e6edf3;
}

body.dark-mode .topup-wrap .inp::placeholder {
  color: #64748b;
}

body.dark-mode .topup-wrap .inp:focus {
  border-color: #fff;
  outline: none;
}

body.dark-mode .topup-wrap .btn-main {
  background-color: #22c55e;
  color: #0d1117;
  border-color: #22c55e;
}

body.dark-mode .topup-wrap .btn-main:hover {
  background-color: #16a34a;
  border-color: #16a34a;
}

/* ikonlar */
body.dark-mode .topup-wrap i {
  color: inherit;
}

body.dark-mode .site-header .dropdown-menu .dropdown-item {
  color: #fff;
}

/* ==============================
   PRODUCT PAGE — Dark mode rəngləri
   ============================== */

/* ümumi */
body.dark-mode .product-wrap,
body.dark-mode .article-wrap {
  color: #e6edf3;
}

/* qalereya */
body.dark-mode .gallery-wrap {
  background-color: #0f1318;
  border-color: rgba(240, 246, 252, .08);
}

/* başlıq və meta */
body.dark-mode .product-wrap h4 {
  color: #f1f5f9;
}

body.dark-mode .text-secondary {
  color: #9aa7b2;
}

body.dark-mode .text-muted {
  color: #9aa7b2;
}

/* separator */
body.dark-mode .product-wrap hr {
  border-color: rgba(240, 246, 252, .08);
}

/* linklər */
body.dark-mode .product-wrap a {
  color: #fff;
}

body.dark-mode .product-wrap a:hover {
  color: #2563eb;
}

/* PLAN BOX */
body.dark-mode .plan-box {
  color: #e6edf3;
}

body.dark-mode .plan-box .plan-option {
  background-color: #10161d;
  border-color: rgba(240, 246, 252, .12);
  color: #e6edf3;
}

body.dark-mode .plan-box .plan-option .plan-title {
  color: #f9fafb;
}

body.dark-mode .plan-box .plan-option .text-secondary {
  color: #9aa7b2;
}

body.dark-mode .plan-box .plan-option .price-big {
  color: #f9fafb;
}

body.dark-mode .plan-box .plan-option .per {
  color: #9aa7b2;
}

body.dark-mode .plan-box .plan-option .strike {
  color: #94a3b8;
}

body.dark-mode .plan-box .plan-option .dot {
  background-color: #fff;
}

body.dark-mode .plan-box .plan-option.is-active {
  background-color: #141b22;
  border-color: #fff;
  color: #e6edf3;
}

body.dark-mode .plan-box .pass-note .pass-badge {
  background-color: #334155;
  color: #e6edf3;
}

body.dark-mode .plan-box .pass-note .save-chip {
  background-color: #dc2626;
  color: #fff;
}

/* müddət seçimi */
body.dark-mode .select {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .12);
}

body.dark-mode .tab-link.active {
  background: #303030;
}

body.dark-mode .select:focus {
  border-color: #fff;
  outline-color: #fff;
}

/* yekun qiymət */
body.dark-mode #priceTotal {
  color: #f9fafb;
}

/* actions buttons */
body.dark-mode .btn.btn-cart {
  background-color: #161b22;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .12);
}

body.dark-mode .btn.btn-cart:hover {
  background-color: #1b2230;
  color: #fff;
}

body.dark-mode .btn.btn-primary-subtle {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .12);
}

body.dark-mode .btn.btn-primary-subtle:hover {
  background-color: #15202b;
}

body.dark-mode .btn.btn-sub {
  background-color: #dc2626;
  color: #fff;
  border-color: #dc2626;
}

body.dark-mode .btn.btn-sub:hover {
  background-color: #ef4444;
}

/* CHECKOUT MODAL (ck-modal) */
body.dark-mode .ck-backdrop {
  background-color: rgba(0, 0, 0, .65);
}

body.dark-mode .ck-sheet {
  background-color: #0d1117;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .08);
}

body.dark-mode .ck-hd {
  background-color: #0d1117;
  color: #f1f5f9;
  border-bottom-color: rgba(240, 246, 252, .08);
}

body.dark-mode .ck-x {
  color: #9aa3af;
}

body.dark-mode .ck-x:hover {
  color: #f9fafb;
}

/* ck product xülasə */
body.dark-mode .ck-product {
  background-color: #10161d;
  border-color: rgba(240, 246, 252, .08);
  color: #e6edf3;
}

body.dark-mode .ck-name {
  color: #f9fafb;
}

body.dark-mode .ck-meta {
  color: #9aa7b2;
}

body.dark-mode .ck-total__label {
  color: #9aa7b2;
}

body.dark-mode .ck-total__price {
  color: #f9fafb;
}

/* ck pay tiles */
body.dark-mode .ck-paygrid .pay-tile {
  background-color: #11161d;
  border-color: rgba(240, 246, 252, .12);
  color: #e6edf3;
}

body.dark-mode .ck-paygrid .pay-tile:hover {
  background-color: #161b22;
  border-color: rgba(240, 246, 252, .2);
}

body.dark-mode .ck-paygrid .pay-tile.is-active {
  background-color: #161b22;
  border-color: #fff;
  outline-color: #fff;
}

body.dark-mode .ck-paygrid .pay-title {
  color: #f9fafb;
}

body.dark-mode .ck-paygrid .pay-desc {
  color: #9aa7b2;
}

body.dark-mode .ck-paygrid .pay-icon i {
  color: #cbd5e1;
}

body.dark-mode .ck-paygrid .pay-check i {
  color: #22c55e;
}

/* ck form */
body.dark-mode .ck-form {
  color: #e6edf3;
}

body.dark-mode .ck-fields input,
body.dark-mode .ck-fields select,
body.dark-mode .ck-fields textarea {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .12);
}

body.dark-mode .ck-fields input::placeholder,
body.dark-mode .ck-fields textarea::placeholder {
  color: #64748b;
}

/* ck footer */
body.dark-mode .ck-ft {
  background-color: #0d1117;
  border-top-color: rgba(240, 246, 252, .08);
}

body.dark-mode .ck-cta {
  background-color: #22c55e;
  color: #0d1117;
  border-color: #22c55e;
}

body.dark-mode .ck-cta:hover {
  background-color: #16a34a;
  border-color: #16a34a;
}

/* CART MODAL (bu səhifədə də var) — yalnız rənglər */
body.dark-mode .cart-modal__backdrop {
  background-color: rgba(0, 0, 0, .6);
}

body.dark-mode .cart-modal__sheet {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .08);
}

body.dark-mode .cm-head__meta h3 {
  color: #f1f5f9;
}

body.dark-mode .cm-head__rows {
  color: #9aa7b2;
}

body.dark-mode .cm-k {
  color: #e6edf3;
}

body.dark-mode .cm-sep {
  border-color: rgba(240, 246, 252, .08);
}

body.dark-mode .cm-label {
  color: #e6edf3;
}

body.dark-mode .cm-input,
body.dark-mode .cm-select select {
  background-color: #161b22;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .12);
}

body.dark-mode .cm-select i {
  color: #9aa7b2;
}

/* TABLAR */
body.dark-mode .tabs {
  border-top-color: rgba(240, 246, 252, .08);
}

body.dark-mode .tab-link {
  color: #9aa7b2;
  border-color: transparent;
}

body.dark-mode .tab-link:hover {
  color: #e6edf3;
}

body.dark-mode .tab-link.active {
  color: #fff;
  border-color: #fff;
}

body.dark-mode .tab-pane {
  color: #e6edf3;
}

body.dark-mode .article-wrap p {
  color: #e6edf3;
}

/* REYTLƏR paneli sağda */
body.dark-mode #ratingSummary {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .08);
}

body.dark-mode #sideHistogram {
  color: #e6edf3;
}

/* ALERT-lər */
body.dark-mode .alert.alert-soft {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .12);
}

/* ikonlar – rəngi mətndən miras alsın */
body.dark-mode .product-wrap i {
  color: inherit;
}

body.dark-mode .review-item {
  background: #000000;
}

body.dark-mode #durationSelect {
  background: #000000;
}

/* ==============================
   PROFILE PAGE — Dark mode rəngləri
   ============================== */

/* ümumi başlıq */
body.dark-mode h2.text-3xl {
  color: #f1f5f9;
}

/* ASIDE: hesab kartı */
body.dark-mode .account-card {
  background-color: #0d1117;
  border-color: rgba(240, 246, 252, .08);
  color: #e6edf3;
}

body.dark-mode .account-card .avatar {
  background-color: #11161d;
  color: #f9fafb;
}

body.dark-mode .account-card .meta small {
  color: #9aa7b2;
}

/* ASIDE: yan naviqasiya */
body.dark-mode .nav.nav-col .nav-link {
  color: #cbd5e1;
  border-color: transparent;
}

body.dark-mode .nav.nav-col .nav-link:hover {
  color: #e6edf3;
}

body.dark-mode .nav.nav-col .nav-link.active,
body.dark-mode .nav.nav-col .nav-link[aria-current="page"] {
  color: #f97316;
  background-color: #11161d;
  border-color: #f97316;
}

body.dark-mode .nav.nav-col hr {
  border-color: rgba(240, 246, 252, .08);
}

body.dark-mode .nav.nav-col .text-danger {
  color: #f87171;
}

body.dark-mode .nav.nav-col .text-danger:hover {
  color: #ef4444;
}

/* MAIN: route section-lar */
body.dark-mode .route-section {
  color: #e6edf3;
}

body.dark-mode .route-section h5 {
  color: #f1f5f9;
}

/* form kartı */
body.dark-mode .card {
  background-color: #0f1318;
  border-color: rgba(240, 246, 252, .08);
  color: #e6edf3;
}

body.dark-mode .card .text-secondary,
body.dark-mode .text-secondary {
  color: #9aa7b2;
}

body.dark-mode .text-muted {
  color: #9aa7b2;
}

body.dark-mode .shadow-sm {
  /* kölgəni saxla, rəng dəyişməyəcək */
}

/* form elementləri */
body.dark-mode .form-label {
  color: #cbd5e1;
}

body.dark-mode .form-control,
body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode input[type="tel"],
body.dark-mode input[type="password"],
body.dark-mode select,
body.dark-mode textarea {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .12);
}

body.dark-mode .form-control::placeholder {
  color: #64748b;
}

body.dark-mode .form-control:focus {
  border-color: #f97316;
  outline-color: #f97316;
}

/* düymələr */
body.dark-mode .btn.btn-primary {
  background-color: #f97316;
  color: #fff;
  border-color: #f97316;
}

body.dark-mode .btn.btn-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
}

body.dark-mode .btn.btn-outline-primary {
  color: #f97316;
  border-color: #f97316;
  background-color: transparent;
}

body.dark-mode .btn.btn-outline-primary:hover {
  background-color: #0f172a;
}

body.dark-mode .btn.btn-light {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .12);
}

body.dark-mode .btn.btn-light:hover {
  background-color: #15202b;
}

/* alerts */
body.dark-mode .alert-success {
  background-color: #052e16;
  color: #bbf7d0;
  border-color: #14532d;
}

body.dark-mode .alert-danger {
  background-color: #2f1515;
  color: #fecaca;
  border-color: #7f1d1d;
}

body.dark-mode .alert.alert-soft {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, .12);
}

/* sifariş kartları / payment kartları */
body.dark-mode .card .badge.bg-success,
body.dark-mode .badge.success {
  background-color: #16a34a;
  color: #0b0f13;
}

body.dark-mode .card .badge.bg-warning,
body.dark-mode .badge.warning {
  background-color: #f59e0b;
  color: #111827;
}

body.dark-mode .card .badge.bg-danger,
body.dark-mode .badge.danger {
  background-color: #dc2626;
  color: #fff;
}

body.dark-mode .card .badge.bg-secondary,
body.dark-mode .badge.secondary {
  background-color: #334155;
  color: #e6edf3;
}

/* separatorlar və xətlər */
body.dark-mode hr,
body.dark-mode .border-bottom {
  border-color: rgba(240, 246, 252, .08) !important;
}

/* --- Sifarişlər bölməsində inline light stilləri override etmək üçün --- */
/* alloc-box və içindəkilər (inline style-ları üstələmək üçün !important) */
body.dark-mode .alloc-box {
  background-color: #0f1318 !important;
  border-color: rgba(240, 246, 252, .12) !important;
  color: #e6edf3 !important;
}

body.dark-mode .alloc-box .small {
  color: #9aa7b2 !important;
}

body.dark-mode .alloc-item {
  background-color: #11161d !important;
  border-color: #94a3b8 !important;
  color: #e6edf3 !important;
}

body.dark-mode .alloc-title {
  color: #f9fafb !important;
}

body.dark-mode .alloc-row {
  color: #cbd5e1 !important;
}

/* məhsul siyahısındakı border-bottom (inline) */
body.dark-mode .border-bottom {
  border-color: rgba(240, 246, 252, .08) !important;
}

/* linklər */
body.dark-mode a {
  color: #f97316;
}

body.dark-mode a:hover {
  color: #2563eb;
}

/* WhatsApp düymələri */
body.dark-mode .btn.btn-sm.btn-warning {
  background-color: #f59e0b;
  color: #111827;
  border-color: #f59e0b;
}

body.dark-mode .btn.btn-sm.btn-success {
  background-color: #16a34a;
  color: #0b0f13;
  border-color: #16a34a;
}

/* focus görünürlüğü */
body.dark-mode .nav.nav-col .nav-link:focus-visible,
body.dark-mode .form-control:focus-visible,
body.dark-mode .btn:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

/* ==============================
   AUTH — rənglər (dark mode)
   ============================== */

body.dark-mode .auth-wrap {
  background: #1c1c1c;
}

body.dark-mode .auth-header img {
  filter: brightness(10) contrast(1.1);
}

body.dark-mode .auth-card {
  background-color: #0d1117;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, 0.08);
}

body.dark-mode .auth-header .title {
  color: #f1f5f9;
}

body.dark-mode .auth-header .subtitle {
  color: #9aa7b2;
}

body.dark-mode .auth-card .form-label {
  color: #cbd5e1;
}

body.dark-mode .auth-card .form-control {
  background-color: #11161d;
  color: #e6edf3;
  border-color: rgba(240, 246, 252, 0.12);
}

body.dark-mode .auth-card .form-control::placeholder {
  color: #64748b;
}

body.dark-mode .auth-card .form-control:focus {
  border-color: #f97316;
  /* NEW primary */
  outline-color: #f97316;
}

/* linklər və vurğular */
body.dark-mode .auth-card .link,
body.dark-mode .auth-card .link-sm,
body.dark-mode .auth-footer a {
  color: #f97316;
  /* NEW primary */
}

body.dark-mode .auth-card .link:hover,
body.dark-mode .auth-card .link-sm:hover,
body.dark-mode .auth-footer a:hover {
  color: #ea580c;
  /* hover */
}

/* düymə */
body.dark-mode .auth-card .btn-primary,
body.dark-mode .auth-card .btn-login {
  background-color: #f97316;
  /* NEW primary */
  border-color: #f97316;
  color: #0b0f13;
}

body.dark-mode .auth-card .btn-primary:hover,
body.dark-mode .auth-card .btn-login:hover {
  background-color: #ea580c;
  /* hover */
  border-color: #ea580c;
}

/* separator və alert */
body.dark-mode .auth-card hr {
  border-color: rgba(240, 246, 252, 0.08);
}

body.dark-mode .auth-card .alert-danger {
  background-color: #2f1515;
  color: #fecaca;
  border-color: #7f1d1d;
}

