/* =========================
   Base & Globals
   ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent;
}

.scroll-container {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

div, span, p {
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, img {
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-font-smoothing: antialiased;
}

:not(input):not(select):not(textarea):not(button):focus {
  outline: none;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

input#rememberme[type="checkbox"] {
  accent-color: #1A3B57;
}

input.notification-checkbox[type="checkbox"] {
  accent-color: #1A3B57;
}

input[type="checkbox"] {
  accent-color: #1B2B12;
}

input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #EBE0C5 inset;
  -webkit-text-fill-color: #000;
  /* Set desired text color */
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input,
textarea,
select {
  transition: background-color 9999s ease-in-out 0s, color 9999s ease-in-out 0s;
}

/* Chrome, Safari */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-internal-autofill-selected {
  box-shadow: 0 0 0px 1000px #EBE0C5 inset !important;
  -webkit-text-fill-color: #000 !important;
  -webkit-transition: background-color 9999s ease-in-out 0s, color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s, color 9999s ease-in-out 0s;
}

/* Firefox */

input:-moz-autofill {
  box-shadow: 0 0 0px 1000px #EBE0C5 inset !important;
  -moz-text-fill-color: #000 !important;
}

/* =========================
   Scrollbars
   ========================= */

.search-results::-webkit-scrollbar,
#product-description-container::-webkit-scrollbar,
.similar-products::-webkit-scrollbar,
#checkout-sidebar-previous-order-details::-webkit-scrollbar,
.carousel-content-container::-webkit-scrollbar,
.carousel-content::-webkit-scrollbar,
.scroll-container::-webkit-scrollbar,
#mobile-product-details-container > div::-webkit-scrollbar,
#mobile-orders-container::-webkit-scrollbar,
#mobile-cart-container::-webkit-scrollbar,
#mobile-shop::-webkit-scrollbar,
#mobile-order-details::-webkit-scrollbar,
.overflow-x-scroll::-webkit-scrollbar,
.overflow-y-scroll::-webkit-scrollbar {
  display: none;
  width: 0px;
  height: 0px;
  background: transparent;
}

/* =========================
   Search Results
   ========================= */

.search-results {
  opacity: 0;
  max-height: 0px;
  transition: opacity 0.5s ease, max-height 0.5s ease !important;
}

.search-results.expanded {
  opacity: 1;
  max-height: 460px;
}

/* =========================
   Input Number
   ========================= */

/* Chrome, Safari, Edge, Opera */

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type='number'] {
  -moz-appearance: textfield;
}

/* =========================
   Prevents double-tapping on increment / decrement button from zooming in
   ========================= */

html {
  touch-action: manipulation;
  /* Hints at no double-tap */
}

button:focus {
  outline: none;
  box-shadow: none;
}

button,
a,
input,
label,
textarea {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* =========================
   Mobile Header
   ========================= */

#mobile-header {
  /* Don't relow whole page when header is expanded or collapsed */
  contain: layout style;
  background-color: #00000000;
  transition: background-color 0.5s ease;
}

#mobile-header.collapsed {
  background-color: #AE252A;
}

#mobile-header .light-icon {
  opacity: 1;
  display: block;
  transition: opacity 0.5s ease;
}

#mobile-header .dark-icon {
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
}

#mobile-header.collapsed .light-icon {
  opacity: 0;
  display: none;
}

#mobile-header.collapsed .dark-icon {
  opacity: 1;
  display: block;
}

#mobile-header #mobile-sidebar-menu-button {
  opacity: 1;
  display: block;
  transition: opacity 0.5s ease;
}

#mobile-header.collapsed #mobile-sidebar-menu-button {
  opacity: 0;
  display: none;
}

#mobile-header #mobile-sidebar-back-button {
  display: none;
}

#mobile-header.collapsed #mobile-sidebar-back-button {
  display: block;
}

#mobile-header #mobile-header-content {
  top: 40px;
  transition: top 0.5s ease, row-gap 0.5s ease;
  pointer-events: auto;
}

#mobile-header.collapsed #mobile-header-content {
  top: 0px;
  row-gap: 0px;
  pointer-events: none;
}

#mobile-header #mobile-header-logo {
  opacity: 1;
  transform: scale(1);
  transform-origin: center center;
  will-change: opacity, transform;
  transition: opacity 0.3s ease, transform 0.5s ease;
  display: block;
}

#mobile-header.collapsed #mobile-header-logo {
  opacity: 0;
  transform: scale(0);
}

#mobile-header #mobile-header-search-bar form {
  border-radius: 100px;
  width: 85vw;
  padding: 10px 14px;
  transform: translate(0%, 0px);
  will-change: transform;
  transition: border-radius 0.5s ease, width 0.5s ease, padding 0.5s ease, transform 0.5s ease;
  pointer-events: auto;
}

#mobile-header.collapsed #mobile-header-search-bar form {
  border-radius: 6px;
  width: 65vw;
  padding: 6px 0px;
  transform: translate(-5%, -78px);
}

#mobile-header #mobile-header-search-bar form input {
  transform: scale(1.05);
  transform-origin: left;
  padding: 0px 16px;
  will-change: transform;
  transition: transform 0.5s ease;
}

#mobile-header.collapsed #mobile-header-search-bar form input {
  transform: scale(0.95);
}

/* =========================
   Mobile Sidebar
   ========================= */

#mobile-sidebar-menu {
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

#mobile-sidebar-menu.expanded {
  transform: translateX(0%);
}

/* =========================
   Header Menus
   ========================= */

header #account-dropdown-menu {
  max-height: 0px;
  padding: 0px 0px;
  opacity: 0;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
}

header #account-dropdown-menu.expanded {
  max-height: 120px;
  opacity: 1;
}

header #language-dropdown-menu {
  max-height: 0px;
  padding: 0px 0px;
  opacity: 0;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
}

header #language-dropdown-menu.expanded {
  max-height: 120px;
  padding : 10px 0px;
  opacity: 1;
}

/* =========================
   Breadcrumb Delivery & Pickup
   ========================= */

.breadcrumb-times-option {
  border-bottom: 0px solid #AE252A00;
  transition: border-bottom 0.5s ease;
}

.breadcrumb-times-option.selected {
  border-bottom: 2px solid #AE252A;
}

#breadcrumb-delivery-and-pickup-times-dropdown {
  max-height: 0px;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

#breadcrumb-delivery-and-pickup-times-dropdown.expanded {
  max-height: 400px;
  opacity: 1;
}

#breadcrumb-delivery-times-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#breadcrumb-delivery-times-menu.selected {
  display: flex;
  opacity: 1;
}

#breadcrumb-pickup-times-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#breadcrumb-pickup-times-menu.selected {
  display: flex;
  opacity: 1;
}

/* =========================
   Footer Graphics
   ========================= */

#footer-graphics-one {
  filter: drop-shadow(-6px 6px 5px #00000022);
}

#footer-graphics-two {
  filter: drop-shadow(-6px 6px 5px #00000022);
}

#footer-graphics-three {
  filter: drop-shadow(6px 6px 5px #00000022);
}

#footer-graphics-four {
  filter: drop-shadow(6px 6px 5px #00000022);
}

/* =========================
   WooCommerce Notices
   ========================= */

.woocommerce-notices-wrapper {
  display: none;
}

/* =========================
   Checkout Sidebar
   ========================= */

#checkout-sidebar {
  pointer-events: none;
  max-height: 0px;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease !important;
}

#checkout-sidebar.expanded {
  pointer-events: all;
  max-height: 700px;
  opacity: 1;
}

#checkout-sidebar-previous-orders-container {
  max-height: 60px;
  opacity: 0;
}

#checkout-sidebar-previous-orders-container.expanded {
  max-height: 700px;
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

#checkout-sidebar-previous-orders-dropdown {
  max-height: 0px;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

#checkout-sidebar-previous-orders-dropdown.expanded {
  max-height: 100vh;
  opacity: 1;
}

/* =========================
   Desktop Breadcrumb Category
   ========================= */

#desktop-breadcrumb #category-menu > div {
  background-color: #FFFFFF;
  transition: background-color 0.5s ease;
}

#desktop-breadcrumb #category-menu > div > div > span {
  color: #000000;
  transition: color 0.5s ease;
}

#desktop-breadcrumb #category-menu > div .inactive-icon {
  display: block;
  opacity: 1;
  transform: rotate(90deg);
  transition: opacity 1.5s ease 0.5s, transform 1.5s ease 0.5s;
}

#desktop-breadcrumb #category-menu > div .active-icon {
  display: none;
  opacity: 0;
  transform: rotate(00deg);
  transition: opacity 1.5s ease 0.5s, transform 1.5s ease 0.5s;
}

#desktop-breadcrumb #category-menu > div.active {
  background-color: #AE252A;
}

#desktop-breadcrumb #category-menu > div.active > div > span {
  color: #FFFFFF;
}

#desktop-breadcrumb #category-menu > div.active .inactive-icon {
  display: none;
  opacity: 0;
  transform: rotate(0deg);
}

#desktop-breadcrumb #category-menu > div.active .active-icon {
  display: block;
  opacity: 1;
  transform: rotate(0deg);
}

/* =========================
   Desktop Breadcrumb Start Shopping
   ========================= */

#start-shopping > span {
  animation: textWiggle 1.5s infinite;
  transform-origin: center center;
}

@keyframes textWiggle {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(1.5deg);
  }

  20% {
    transform: rotate(-1.5deg);
  }

  30% {
    transform: rotate(1.5deg);
  }

  40% {
    transform: rotate(-1.5deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#start-shopping > img {
  animation: wiggle 1.5s infinite;
  transform-origin: center center;
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(10deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(10deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#desktop-breadcrumb #start-shopping-sidebar {
  opacity: 0;
  max-height: 0px;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

#desktop-breadcrumb #start-shopping-sidebar * {
  opacity: 0;
  transition: opacity 0.5s ease;
}

#desktop-breadcrumb #start-shopping-sidebar.expanded {
  opacity: 1;
  max-height: 1400px;
}

#desktop-breadcrumb #start-shopping-sidebar.expanded * {
  opacity: 1;
}

/* =========================
   Desktop Breadcrumb Checkout
   ========================= */

#desktop-breadcrumb #checkout-sidebar {
  max-height: 0px;
  transition: max-height 0.5s ease;
}

#desktop-breadcrumb #checkout-sidebar * {
  opacity: 0;
  transition: all 0.5s ease;
}

#desktop-breadcrumb #checkout-sidebar.expanded {
  max-height: 1400px;
}

#desktop-breadcrumb #checkout-sidebar.expanded * {
  opacity: 1;
}

#checkout-sidebar-previous-order-details {
  z-index: -10;
  opacity: 0;
  transform: translateX(0%);
  transition: transform 0.5s ease, opacity 0.5s ease, z-index 0.0s ease;
}

#checkout-sidebar-previous-order-details.expanded {
  z-index: 10;
  opacity: 1;
  transform: translateX(-100%);
}

/* =========================
   Animations & Highlights
   ========================= */

.fade-in-highlight {
  animation: fadeInHighlight 1s ease forwards;
}

@keyframes fadeInHighlight {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* =========================
   Shopping List
   ========================= */

.shopping-list-item .shopping-list-options {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.shopping-list-item:hover .shopping-list-options {
  opacity: 1;
  pointer-events: all;
}

/* =========================
   Payment Method
   ========================= */

.default-payment-method-label {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.default-payment-method-label.default-payment-method {
  opacity: 1;
}

/* =========================
   Shipping Address
   ========================= */

.default-shipping-address-label {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.default-shipping-address-label.default-shipping-address {
  opacity: 1;
}

/* =========================
   Saved Address Card
   ========================= */

.saved-address-card {
  outline: 1px solid #EAEAEA;
}

.saved-address-card .selected-label {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.saved-address-card.selected .selected-label {
  opacity: 1;
}

.shopper-details-container {
  transition: row-gap 0.5s ease;
}

.new-address-fields-container {
  max-height: 0px;
  transition: max-height 0.5s ease;
}

.new-address-fields-container.expanded {
  max-height: 360px;
}

.shipping-option .selected-label {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.shipping-option.selected .selected-label {
  opacity: 1;
}

/* =========================
   Substitution Option
   ========================= */

.substitution-option {
  background-color: #FFFFFF;
  color: #000000;
  transition: background 0.5s ease, color 0.5s ease;
}

.substitution-option > img {
  filter: brightness(1) saturate(1);
}

.substitution-option.selected {
  background-color: #AE252A;
  color: #FFFFFF;
}

.substitution-option.selected > img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

/* =========================
   Media Queries
   ========================= */

@media screen and (max-width: 769px) {
  #desktop-sidebar-menu {
    display: none;
  }

  .search-results {
    max-height: unset !important;
    pointer-events: none;
  }

  .search-results.expanded {
    pointer-events: all;
  }
}

/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 400.0;
*
* available axes:
'wght' (range from 100.0 to 900.0
*/

@font-face {
  font-family: 'Switzer-Variable';

  src: url('../fonts/Switzer-Variable.woff2') format('woff2'),
        url('../fonts/Switzer-Variable.woff') format('woff'),
        url('../fonts/Switzer-Variable.ttf') format('truetype');

  font-weight: 100 900;

  font-display: swap;

  font-style: normal;
}

/**
  * This is a variable font
  * You can control variable axes as shown below:
  * font-variation-settings: wght 400.0;
  *
  * available axes:
  'wght' (range from 100.0 to 900.0
  */

@font-face {
  font-family: 'Switzer-VariableItalic';

  src: url('../fonts/Switzer-VariableItalic.woff2') format('woff2'),
        url('../fonts/Switzer-VariableItalic.woff') format('woff'),
        url('../fonts/Switzer-VariableItalic.ttf') format('truetype');

  font-weight: 100 900;

  font-display: swap;

  font-style: italic;
}

@font-face {
  font-family: 'FamiljenGrotesk-Variable';

  src: url('../fonts/FamiljenGrotesk-Variable.woff2') format('woff2'),
        url('../fonts/FamiljenGrotesk-Variable.woff') format('woff'),
        url('../fonts/FamiljenGrotesk-Variable.ttf') format('truetype');

  font-weight: 400 700;

  font-display: swap;

  font-style: normal;
}

@font-face {
  font-family: 'FamiljenGrotesk-Variable';

  src: url('../fonts/FamiljenGrotesk-VariableItalic.woff2') format('woff2'),
    url('../fonts/FamiljenGrotesk-VariableItalic.woff') format('woff'),
    url('../fonts/FamiljenGrotesk-VariableItalic.ttf') format('truetype');

  font-weight: 400 700;

  font-display: swap;

  font-style: italic;
}

@font-face {
  font-family: 'Kalam-Variable';

  src: url('../fonts/Kalam-Variable.woff2') format('woff2'),
        url('../fonts/Kalam-Variable.woff') format('woff'),
        url('../fonts/Kalam-Variable.ttf') format('truetype');

  font-weight: 100 900;

  font-display: swap;

  font-style: normal;
}

@font-face {
  font-family: 'Bilcase';

  src: url('../fonts/Bilcase.otf') format('opentype'),
        url('../fonts/Bilcase.ttf') format('truetype');

  font-weight: normal;

  font-display: swap;

  font-style: normal;
}

@font-face {
  font-family: 'Nord';

  src: url('../fonts/Nord.otf') format('opentype');

  font-weight: normal;

  font-display: swap;

  font-style: normal;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-Extralight.otf') format('opentype');

  font-weight: 200;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-ExtralightItalic.otf') format('opentype');

  font-weight: 200;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-Light.otf') format('opentype');

  font-weight: 300;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-LightItalic.otf') format('opentype');

  font-weight: 300;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-Book.otf') format('opentype');

  font-weight: 400;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-BookItalic.otf') format('opentype');

  font-weight: 400;

  font-style: italic;

  font-display: swap;
}

/* Kräftig → Strong mapped to 500 */

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-Strong.otf') format('opentype');

  font-weight: 500;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-StrongItalic.otf') format('opentype');

  font-weight: 500;

  font-style: italic;

  font-display: swap;
}

/* Halbfett → Semibold → 600 */

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-Semibold.otf') format('opentype');

  font-weight: 600;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-SemiboldItalic.otf') format('opentype');

  font-weight: 600;

  font-style: italic;

  font-display: swap;
}

/* Dreiviertelfett → ThreeQuarterBold → 700 */

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-ThreeQuarterBold.otf') format('opentype');

  font-weight: 700;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-ThreeQuarterBoldItalic.otf') format('opentype');

  font-weight: 700;

  font-style: italic;

  font-display: swap;
}

/* Fett → Bold → 800 */

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-Bold.otf') format('opentype');

  font-weight: 800;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-BoldItalic.otf') format('opentype');

  font-weight: 800;

  font-style: italic;

  font-display: swap;
}

/* Extrafett → ExtraBold → 900 */

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-Extrabold.otf') format('opentype');

  font-weight: 900;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: 'SohneMono';

  src: url('../fonts/SohneMono/SohneMono-ExtraboldItalic.otf') format('opentype');

  font-weight: 900;

  font-style: italic;

  font-display: swap;
}

@font-face {
  font-family: 'Midstar';

  src: url('../fonts/Midstar.otf') format('opentype');

  font-weight: normal;

  font-display: swap;

  font-style: normal;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

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

progress {
  vertical-align: baseline;
}

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

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

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

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

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

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

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

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.\!container {
  width: 100% !important;
}

.container {
  width: 100%;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.visible {
  visibility: visible;
}

.collapse {
  visibility: collapse;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.-bottom-\[120px\] {
  bottom: -120px;
}

.-bottom-\[12px\] {
  bottom: -12px;
}

.-bottom-\[140px\] {
  bottom: -140px;
}

.-bottom-\[4\.5px\] {
  bottom: -4.5px;
}

.-bottom-\[40px\] {
  bottom: -40px;
}

.-left-\[140px\] {
  left: -140px;
}

.-left-\[32px\] {
  left: -32px;
}

.-top-\[32px\] {
  top: -32px;
}

.-top-\[50vh\] {
  top: -50vh;
}

.-top-\[64px\] {
  top: -64px;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-6 {
  bottom: 1.5rem;
}

.bottom-8 {
  bottom: 2rem;
}

.bottom-\[0px\] {
  bottom: 0px;
}

.bottom-\[10px\] {
  bottom: 10px;
}

.bottom-\[12px\] {
  bottom: 12px;
}

.bottom-\[16px\] {
  bottom: 16px;
}

.bottom-\[20px\] {
  bottom: 20px;
}

.bottom-\[24px\] {
  bottom: 24px;
}

.bottom-\[28px\] {
  bottom: 28px;
}

.bottom-\[64px\] {
  bottom: 64px;
}

.bottom-\[6vh\] {
  bottom: 6vh;
}

.left-0 {
  left: 0px;
}

.left-1\/2 {
  left: 50%;
}

.left-7 {
  left: 1.75rem;
}

.left-8 {
  left: 2rem;
}

.left-\[0px\] {
  left: 0px;
}

.left-\[248px\] {
  left: 248px;
}

.left-\[24px\] {
  left: 24px;
}

.left-\[28px\] {
  left: 28px;
}

.left-\[32px\] {
  left: 32px;
}

.left-\[4px\] {
  left: 4px;
}

.left-\[50\%\] {
  left: 50%;
}

.left-\[56px\] {
  left: 56px;
}

.left-\[5px\] {
  left: 5px;
}

.left-\[6px\] {
  left: 6px;
}

.left-\[7\.5\%\] {
  left: 7.5%;
}

.left-\[72\.5\%\] {
  left: 72.5%;
}

.left-\[80\%\] {
  left: 80%;
}

.left-\[80px\] {
  left: 80px;
}

.right-0 {
  right: 0px;
}

.right-4 {
  right: 1rem;
}

.right-\[0px\] {
  right: 0px;
}

.right-\[10\%\] {
  right: 10%;
}

.right-\[10px\] {
  right: 10px;
}

.right-\[12px\] {
  right: 12px;
}

.right-\[16px\] {
  right: 16px;
}

.right-\[18px\] {
  right: 18px;
}

.right-\[20px\] {
  right: 20px;
}

.right-\[32px\] {
  right: 32px;
}

.right-\[4px\] {
  right: 4px;
}

.right-\[6px\] {
  right: 6px;
}

.right-\[6vh\] {
  right: 6vh;
}

.right-\[80px\] {
  right: 80px;
}

.right-\[8px\] {
  right: 8px;
}

.top-0 {
  top: 0px;
}

.top-1\/2 {
  top: 50%;
}

.top-\[0\.3px\] {
  top: 0.3px;
}

.top-\[126px\] {
  top: 126px;
}

.top-\[162px\] {
  top: 162px;
}

.top-\[16px\] {
  top: 16px;
}

.top-\[27\.5\%\] {
  top: 27.5%;
}

.top-\[40\%\] {
  top: 40%;
}

.top-\[40px\] {
  top: 40px;
}

.top-\[48px\] {
  top: 48px;
}

.top-\[52px\] {
  top: 52px;
}

.top-\[56px\] {
  top: 56px;
}

.top-\[60\%\] {
  top: 60%;
}

.top-\[60px\] {
  top: 60px;
}

.top-\[6px\] {
  top: 6px;
}

.top-\[70px\] {
  top: 70px;
}

.top-\[78px\] {
  top: 78px;
}

.top-\[86px\] {
  top: 86px;
}

.top-\[8px\] {
  top: 8px;
}

.top-\[calc\(86px\+32px\)\] {
  top: calc(86px + 32px);
}

.-z-10 {
  z-index: -10;
}

.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-\[60\] {
  z-index: 60;
}

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

.m-4 {
  margin: 1rem;
}

.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mr-\[16px\] {
  margin-right: 16px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

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

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-\[0\.5px\] {
  height: 0.5px;
}

.h-\[104px\] {
  height: 104px;
}

.h-\[10px\] {
  height: 10px;
}

.h-\[112px\] {
  height: 112px;
}

.h-\[120px\] {
  height: 120px;
}

.h-\[12px\] {
  height: 12px;
}

.h-\[130\%\] {
  height: 130%;
}

.h-\[132px\] {
  height: 132px;
}

.h-\[13px\] {
  height: 13px;
}

.h-\[14px\] {
  height: 14px;
}

.h-\[15px\] {
  height: 15px;
}

.h-\[160px\] {
  height: 160px;
}

.h-\[16px\] {
  height: 16px;
}

.h-\[17px\] {
  height: 17px;
}

.h-\[180px\] {
  height: 180px;
}

.h-\[18px\] {
  height: 18px;
}

.h-\[19px\] {
  height: 19px;
}

.h-\[1px\] {
  height: 1px;
}

.h-\[200px\] {
  height: 200px;
}

.h-\[20px\] {
  height: 20px;
}

.h-\[21px\] {
  height: 21px;
}

.h-\[22px\] {
  height: 22px;
}

.h-\[24px\] {
  height: 24px;
}

.h-\[26px\] {
  height: 26px;
}

.h-\[28px\] {
  height: 28px;
}

.h-\[32px\] {
  height: 32px;
}

.h-\[348px\] {
  height: 348px;
}

.h-\[360px\] {
  height: 360px;
}

.h-\[36px\] {
  height: 36px;
}

.h-\[38px\] {
  height: 38px;
}

.h-\[3px\] {
  height: 3px;
}

.h-\[400px\] {
  height: 400px;
}

.h-\[40px\] {
  height: 40px;
}

.h-\[44px\] {
  height: 44px;
}

.h-\[45\%\] {
  height: 45%;
}

.h-\[46px\] {
  height: 46px;
}

.h-\[48px\] {
  height: 48px;
}

.h-\[52px\] {
  height: 52px;
}

.h-\[54px\] {
  height: 54px;
}

.h-\[55\%\] {
  height: 55%;
}

.h-\[56px\] {
  height: 56px;
}

.h-\[60\%\] {
  height: 60%;
}

.h-\[600px\] {
  height: 600px;
}

.h-\[60px\] {
  height: 60px;
}

.h-\[64px\] {
  height: 64px;
}

.h-\[70vh\] {
  height: 70vh;
}

.h-\[72px\] {
  height: 72px;
}

.h-\[75\%\] {
  height: 75%;
}

.h-\[7px\] {
  height: 7px;
}

.h-\[80px\] {
  height: 80px;
}

.h-\[8px\] {
  height: 8px;
}

.h-\[90\%\] {
  height: 90%;
}

.h-\[92px\] {
  height: 92px;
}

.h-\[96px\] {
  height: 96px;
}

.h-\[calc\(100\%-10px\)\] {
  height: calc(100% - 10px);
}

.h-\[calc\(100\%-8px\)\] {
  height: calc(100% - 8px);
}

.h-\[calc\(100dvh-134px\)\] {
  height: calc(100dvh - 134px);
}

.h-\[calc\(100dvh-294px\)\] {
  height: calc(100dvh - 294px);
}

.h-\[calc\(100dvh-345\.5px\)\] {
  height: calc(100dvh - 345.5px);
}

.h-\[calc\(100dvh-64px\)\] {
  height: calc(100dvh - 64px);
}

.h-\[calc\(100vh-100px\)\] {
  height: calc(100vh - 100px);
}

.h-\[calc\(100vh-124px\)\] {
  height: calc(100vh - 124px);
}

.h-\[calc\(100vh-126px\)\] {
  height: calc(100vh - 126px);
}

.h-\[calc\(100vh-186px\)\] {
  height: calc(100vh - 186px);
}

.h-\[calc\(100vh-243\.4px\)\] {
  height: calc(100vh - 243.4px);
}

.h-\[calc\(100vh-294px\)\] {
  height: calc(100vh - 294px);
}

.h-auto {
  height: auto;
}

.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.max-h-\[156px\] {
  max-height: 156px;
}

.max-h-\[160px\] {
  max-height: 160px;
}

.max-h-\[180px\] {
  max-height: 180px;
}

.max-h-\[340px\] {
  max-height: 340px;
}

.max-h-\[34px\] {
  max-height: 34px;
}

.max-h-\[44px\] {
  max-height: 44px;
}

.max-h-\[56px\] {
  max-height: 56px;
}

.max-h-\[calc\(100dvh-170px\)\] {
  max-height: calc(100dvh - 170px);
}

.max-h-\[44x\] {
  max-height: 44x;
}

.max-h-\[px\] {
  max-height: px;
}

.min-h-\[116px\] {
  min-height: 116px;
}

.min-h-\[34px\] {
  min-height: 34px;
}

.min-h-\[56px\] {
  min-height: 56px;
}

.min-h-\[70px\] {
  min-height: 70px;
}

.min-h-\[72px\] {
  min-height: 72px;
}

.min-h-\[80px\] {
  min-height: 80px;
}

.min-h-\[calc\(100dvh-170px\)\] {
  min-height: calc(100dvh - 170px);
}

.min-h-\[calc\(100vh-148px\)\] {
  min-height: calc(100vh - 148px);
}

.min-h-screen {
  min-height: 100vh;
}

.w-\[1\.5px\] {
  width: 1.5px;
}

.w-\[10\.5px\] {
  width: 10.5px;
}

.w-\[100px\] {
  width: 100px;
}

.w-\[104px\] {
  width: 104px;
}

.w-\[1080px\] {
  width: 1080px;
}

.w-\[11\.5px\] {
  width: 11.5px;
}

.w-\[1120px\] {
  width: 1120px;
}

.w-\[112px\] {
  width: 112px;
}

.w-\[1160px\] {
  width: 1160px;
}

.w-\[120px\] {
  width: 120px;
}

.w-\[13px\] {
  width: 13px;
}

.w-\[140px\] {
  width: 140px;
}

.w-\[14px\] {
  width: 14px;
}

.w-\[15\.5px\] {
  width: 15.5px;
}

.w-\[150px\] {
  width: 150px;
}

.w-\[15px\] {
  width: 15px;
}

.w-\[16\.5px\] {
  width: 16.5px;
}

.w-\[160px\] {
  width: 160px;
}

.w-\[16px\] {
  width: 16px;
}

.w-\[17px\] {
  width: 17px;
}

.w-\[18\.5px\] {
  width: 18.5px;
}

.w-\[180px\] {
  width: 180px;
}

.w-\[18px\] {
  width: 18px;
}

.w-\[19px\] {
  width: 19px;
}

.w-\[1px\] {
  width: 1px;
}

.w-\[2\.5px\] {
  width: 2.5px;
}

.w-\[200px\] {
  width: 200px;
}

.w-\[208px\] {
  width: 208px;
}

.w-\[20px\] {
  width: 20px;
}

.w-\[21px\] {
  width: 21px;
}

.w-\[220px\] {
  width: 220px;
}

.w-\[22px\] {
  width: 22px;
}

.w-\[230px\] {
  width: 230px;
}

.w-\[23px\] {
  width: 23px;
}

.w-\[240px\] {
  width: 240px;
}

.w-\[248px\] {
  width: 248px;
}

.w-\[24px\] {
  width: 24px;
}

.w-\[260px\] {
  width: 260px;
}

.w-\[26px\] {
  width: 26px;
}

.w-\[28px\] {
  width: 28px;
}

.w-\[2px\] {
  width: 2px;
}

.w-\[320px\] {
  width: 320px;
}

.w-\[32px\] {
  width: 32px;
}

.w-\[340px\] {
  width: 340px;
}

.w-\[360px\] {
  width: 360px;
}

.w-\[36px\] {
  width: 36px;
}

.w-\[380px\] {
  width: 380px;
}

.w-\[38px\] {
  width: 38px;
}

.w-\[390px\] {
  width: 390px;
}

.w-\[400px\] {
  width: 400px;
}

.w-\[40px\] {
  width: 40px;
}

.w-\[420px\] {
  width: 420px;
}

.w-\[440px\] {
  width: 440px;
}

.w-\[44px\] {
  width: 44px;
}

.w-\[480px\] {
  width: 480px;
}

.w-\[48px\] {
  width: 48px;
}

.w-\[520px\] {
  width: 520px;
}

.w-\[52px\] {
  width: 52px;
}

.w-\[560px\] {
  width: 560px;
}

.w-\[56px\] {
  width: 56px;
}

.w-\[580px\] {
  width: 580px;
}

.w-\[600px\] {
  width: 600px;
}

.w-\[60px\] {
  width: 60px;
}

.w-\[640px\] {
  width: 640px;
}

.w-\[64px\] {
  width: 64px;
}

.w-\[680px\] {
  width: 680px;
}

.w-\[68px\] {
  width: 68px;
}

.w-\[6px\] {
  width: 6px;
}

.w-\[72\.5vw\] {
  width: 72.5vw;
}

.w-\[72px\] {
  width: 72px;
}

.w-\[75\%\] {
  width: 75%;
}

.w-\[7px\] {
  width: 7px;
}

.w-\[80\%\] {
  width: 80%;
}

.w-\[800px\] {
  width: 800px;
}

.w-\[80px\] {
  width: 80px;
}

.w-\[820px\] {
  width: 820px;
}

.w-\[84px\] {
  width: 84px;
}

.w-\[85\%\] {
  width: 85%;
}

.w-\[85px\] {
  width: 85px;
}

.w-\[85vw\] {
  width: 85vw;
}

.w-\[8px\] {
  width: 8px;
}

.w-\[90\%\] {
  width: 90%;
}

.w-\[92\.5\%\] {
  width: 92.5%;
}

.w-\[95\%\] {
  width: 95%;
}

.w-\[95vw\] {
  width: 95vw;
}

.w-\[960px\] {
  width: 960px;
}

.w-\[9px\] {
  width: 9px;
}

.w-\[calc\(\(100\%-10px\)\/2\)\] {
  width: calc((100% - 10px) / 2);
}

.w-\[calc\(100\%-24px\)\] {
  width: calc(100% - 24px);
}

.w-\[calc\(100vw-16px\)\] {
  width: calc(100vw - 16px);
}

.w-\[calc\(100vw-248px\)\] {
  width: calc(100vw - 248px);
}

.w-\[calc\(100vw-72px\)\] {
  width: calc(100vw - 72px);
}

.w-\[calc\(100vw-76px\)\] {
  width: calc(100vw - 76px);
}

.w-\[calc\(194px\*2\+8px\+16px\)\] {
  width: calc(194px * 2 + 8px + 16px);
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.w-\[500px\] {
  width: 500px;
}

.min-w-\[1040px\] {
  min-width: 1040px;
}

.min-w-\[120px\] {
  min-width: 120px;
}

.min-w-\[17px\] {
  min-width: 17px;
}

.min-w-\[320px\] {
  min-width: 320px;
}

.min-w-\[34px\] {
  min-width: 34px;
}

.min-w-\[440px\] {
  min-width: 440px;
}

.min-w-\[72px\] {
  min-width: 72px;
}

.min-w-\[76px\] {
  min-width: 76px;
}

.min-w-\[80px\] {
  min-width: 80px;
}

.min-w-\[960px\] {
  min-width: 960px;
}

.min-w-\[calc\(100vw-16px\)\] {
  min-width: calc(100vw - 16px);
}

.max-w-\[160px\] {
  max-width: 160px;
}

.max-w-\[180px\] {
  max-width: 180px;
}

.max-w-\[190px\] {
  max-width: 190px;
}

.max-w-\[200px\] {
  max-width: 200px;
}

.max-w-\[220px\] {
  max-width: 220px;
}

.max-w-\[240px\] {
  max-width: 240px;
}

.max-w-\[34px\] {
  max-width: 34px;
}

.max-w-\[380px\] {
  max-width: 380px;
}

.max-w-\[480px\] {
  max-width: 480px;
}

.max-w-\[72px\] {
  max-width: 72px;
}

.max-w-\[80px\] {
  max-width: 80px;
}

.max-w-\[880px\] {
  max-width: 880px;
}

.max-w-\[500px\] {
  max-width: 500px;
}

.flex-none {
  flex: none;
}

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

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

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

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-\[50\%\] {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-\[30\%\] {
  --tw-translate-y: -30%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-\[3px\] {
  --tw-translate-y: -3px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-\[40\%\] {
  --tw-translate-y: -40%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-\[40px\] {
  --tw-translate-y: -40px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-\[60\%\] {
  --tw-translate-y: -60%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-1\/2 {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-\[30\%\] {
  --tw-translate-x: 30%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-\[50\%\] {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-\[65\%\] {
  --tw-translate-x: 65%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-\[70\%\] {
  --tw-translate-x: 70%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-\[75\%\] {
  --tw-translate-x: 75%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-\[80px\] {
  --tw-translate-x: 80px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-1\/2 {
  --tw-translate-y: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-\[100\%\] {
  --tw-translate-y: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-\[160px\] {
  --tw-translate-y: 160px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-\[50\%\] {
  --tw-translate-y: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-0 {
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-12 {
  --tw-rotate: 12deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-6 {
  --tw-rotate: 6deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-2 {
  gap: 0.5rem;
}

.gap-x-1 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

.gap-x-10 {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}

.gap-x-12 {
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

.gap-x-14 {
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}

.gap-x-16 {
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.gap-x-4 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-5 {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-x-\[10px\] {
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.gap-x-\[14px\] {
  -moz-column-gap: 14px;
       column-gap: 14px;
}

.gap-x-\[24px\] {
  -moz-column-gap: 24px;
       column-gap: 24px;
}

.gap-x-\[6px\] {
  -moz-column-gap: 6px;
       column-gap: 6px;
}

.gap-x-\[8px\] {
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

.gap-y-12 {
  row-gap: 3rem;
}

.gap-y-14 {
  row-gap: 3.5rem;
}

.gap-y-16 {
  row-gap: 4rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

.gap-y-8 {
  row-gap: 2rem;
}

.gap-y-\[10px\] {
  row-gap: 10px;
}

.gap-y-\[1px\] {
  row-gap: 1px;
}

.gap-y-\[2px\] {
  row-gap: 2px;
}

.gap-y-\[3px\] {
  row-gap: 3px;
}

.gap-y-\[40px\] {
  row-gap: 40px;
}

.gap-y-\[4px\] {
  row-gap: 4px;
}

.gap-y-\[5px\] {
  row-gap: 5px;
}

.gap-y-\[6px\] {
  row-gap: 6px;
}

.gap-y-\[8px\] {
  row-gap: 8px;
}

.gap-y-5 {
  row-gap: 1.25rem;
}

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

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

.-space-x-28 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-7rem * var(--tw-space-x-reverse));
  margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse)));
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

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

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded-\[4px\] {
  border-radius: 4px;
}

.rounded-\[5px\] {
  border-radius: 5px;
}

.rounded-\[6px\] {
  border-radius: 6px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.rounded-t-full {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}

.rounded-t-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.border {
  border-width: 1px;
}

.border-\[1px\] {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-\[6px\] {
  border-top-width: 6px;
}

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

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

.border-\[\#AE252A\] {
  --tw-border-opacity: 1;
  border-color: rgb(174 37 42 / var(--tw-border-opacity, 1));
}

.border-\[\#D9D9D9\] {
  --tw-border-opacity: 1;
  border-color: rgb(217 217 217 / var(--tw-border-opacity, 1));
}

.border-\[\#E8E8E8\] {
  --tw-border-opacity: 1;
  border-color: rgb(232 232 232 / var(--tw-border-opacity, 1));
}

.border-\[\#EAEAEA\] {
  --tw-border-opacity: 1;
  border-color: rgb(234 234 234 / var(--tw-border-opacity, 1));
}

.border-\[\#F0F0F0\] {
  --tw-border-opacity: 1;
  border-color: rgb(240 240 240 / var(--tw-border-opacity, 1));
}

.border-\[\#F7F7F7\] {
  --tw-border-opacity: 1;
  border-color: rgb(247 247 247 / var(--tw-border-opacity, 1));
}

.border-\[\#FFFFFFF\] {
  border-color: #FFFFFFF;
}

.border-\[\#b8b8b8\] {
  --tw-border-opacity: 1;
  border-color: rgb(184 184 184 / var(--tw-border-opacity, 1));
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.bg-\[\#00000066\] {
  background-color: #00000066;
}

.bg-\[\#0B4269\] {
  --tw-bg-opacity: 1;
  background-color: rgb(11 66 105 / var(--tw-bg-opacity, 1));
}

.bg-\[\#199BD7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(25 155 215 / var(--tw-bg-opacity, 1));
}

.bg-\[\#1A3B57\] {
  --tw-bg-opacity: 1;
  background-color: rgb(26 59 87 / var(--tw-bg-opacity, 1));
}

.bg-\[\#213616\] {
  --tw-bg-opacity: 1;
  background-color: rgb(33 54 22 / var(--tw-bg-opacity, 1));
}

.bg-\[\#2890C3\] {
  --tw-bg-opacity: 1;
  background-color: rgb(40 144 195 / var(--tw-bg-opacity, 1));
}

.bg-\[\#3BB1E8\] {
  --tw-bg-opacity: 1;
  background-color: rgb(59 177 232 / var(--tw-bg-opacity, 1));
}

.bg-\[\#581317\] {
  --tw-bg-opacity: 1;
  background-color: rgb(88 19 23 / var(--tw-bg-opacity, 1));
}

.bg-\[\#5A9B3F\] {
  --tw-bg-opacity: 1;
  background-color: rgb(90 155 63 / var(--tw-bg-opacity, 1));
}

.bg-\[\#666666\] {
  --tw-bg-opacity: 1;
  background-color: rgb(102 102 102 / var(--tw-bg-opacity, 1));
}

.bg-\[\#797979\] {
  --tw-bg-opacity: 1;
  background-color: rgb(121 121 121 / var(--tw-bg-opacity, 1));
}

.bg-\[\#898989\] {
  --tw-bg-opacity: 1;
  background-color: rgb(137 137 137 / var(--tw-bg-opacity, 1));
}

.bg-\[\#AE252A\] {
  --tw-bg-opacity: 1;
  background-color: rgb(174 37 42 / var(--tw-bg-opacity, 1));
}

.bg-\[\#C22026\] {
  --tw-bg-opacity: 1;
  background-color: rgb(194 32 38 / var(--tw-bg-opacity, 1));
}

.bg-\[\#C81B2B\] {
  --tw-bg-opacity: 1;
  background-color: rgb(200 27 43 / var(--tw-bg-opacity, 1));
}

.bg-\[\#CCCCCC\] {
  --tw-bg-opacity: 1;
  background-color: rgb(204 204 204 / var(--tw-bg-opacity, 1));
}

.bg-\[\#CD2836\] {
  --tw-bg-opacity: 1;
  background-color: rgb(205 40 54 / var(--tw-bg-opacity, 1));
}

.bg-\[\#CDFFB3\] {
  --tw-bg-opacity: 1;
  background-color: rgb(205 255 179 / var(--tw-bg-opacity, 1));
}

.bg-\[\#CFE0FC\] {
  --tw-bg-opacity: 1;
  background-color: rgb(207 224 252 / var(--tw-bg-opacity, 1));
}

.bg-\[\#D9D9D9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(217 217 217 / var(--tw-bg-opacity, 1));
}

.bg-\[\#E9DFC7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(233 223 199 / var(--tw-bg-opacity, 1));
}

.bg-\[\#EAEAEA\] {
  --tw-bg-opacity: 1;
  background-color: rgb(234 234 234 / var(--tw-bg-opacity, 1));
}

.bg-\[\#EBE0C5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(235 224 197 / var(--tw-bg-opacity, 1));
}

.bg-\[\#EDE2CC\] {
  --tw-bg-opacity: 1;
  background-color: rgb(237 226 204 / var(--tw-bg-opacity, 1));
}

.bg-\[\#F3F0DE\] {
  --tw-bg-opacity: 1;
  background-color: rgb(243 240 222 / var(--tw-bg-opacity, 1));
}

.bg-\[\#F7F0DC\] {
  --tw-bg-opacity: 1;
  background-color: rgb(247 240 220 / var(--tw-bg-opacity, 1));
}

.bg-\[\#F7F3E8\] {
  --tw-bg-opacity: 1;
  background-color: rgb(247 243 232 / var(--tw-bg-opacity, 1));
}

.bg-\[\#F7F7F7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(247 247 247 / var(--tw-bg-opacity, 1));
}

.bg-\[\#F9F9F9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(249 249 249 / var(--tw-bg-opacity, 1));
}

.bg-\[\#FFFFFF\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-\[\#A11F2A\] {
  --tw-bg-opacity: 1;
  background-color: rgb(161 31 42 / var(--tw-bg-opacity, 1));
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.object-left {
  -o-object-position: left;
     object-position: left;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-\[1\.5px\] {
  padding-left: 1.5px;
  padding-right: 1.5px;
}

.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}

.px-\[120px\] {
  padding-left: 120px;
  padding-right: 120px;
}

.px-\[16px\] {
  padding-left: 16px;
  padding-right: 16px;
}

.px-\[32px\] {
  padding-left: 32px;
  padding-right: 32px;
}

.px-\[48px\] {
  padding-left: 48px;
  padding-right: 48px;
}

.px-\[80px\] {
  padding-left: 80px;
  padding-right: 80px;
}

.px-\[8px\] {
  padding-left: 8px;
  padding-right: 8px;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-\[1\.5px\] {
  padding-top: 1.5px;
  padding-bottom: 1.5px;
}

.py-\[10px\] {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-\[12px\] {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-\[14px\] {
  padding-top: 14px;
  padding-bottom: 14px;
}

.py-\[16px\] {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-\[2px\] {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py-\[36px\] {
  padding-top: 36px;
  padding-bottom: 36px;
}

.py-\[3px\] {
  padding-top: 3px;
  padding-bottom: 3px;
}

.py-\[40px\] {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-\[4px\] {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-\[56px\] {
  padding-top: 56px;
  padding-bottom: 56px;
}

.py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px;
}

.py-\[80px\] {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-\[8px\] {
  padding-top: 8px;
  padding-bottom: 8px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-\[120px\] {
  padding-bottom: 120px;
}

.pb-\[160px\] {
  padding-bottom: 160px;
}

.pb-\[1px\] {
  padding-bottom: 1px;
}

.pb-\[20px\] {
  padding-bottom: 20px;
}

.pb-\[48px\] {
  padding-bottom: 48px;
}

.pb-\[5px\] {
  padding-bottom: 5px;
}

.pb-\[6px\] {
  padding-bottom: 6px;
}

.pb-\[8px\] {
  padding-bottom: 8px;
}

.pl-12 {
  padding-left: 3rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pl-\[10px\] {
  padding-left: 10px;
}

.pl-\[3px\] {
  padding-left: 3px;
}

.pl-\[60px\] {
  padding-left: 60px;
}

.pl-\[6px\] {
  padding-left: 6px;
}

.pl-\[8px\] {
  padding-left: 8px;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pr-\[10px\] {
  padding-right: 10px;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-\[0px\] {
  padding-top: 0px;
}

.pt-\[12px\] {
  padding-top: 12px;
}

.pt-\[270px\] {
  padding-top: 270px;
}

.pt-\[2px\] {
  padding-top: 2px;
}

.pt-\[40px\] {
  padding-top: 40px;
}

.pt-\[5px\] {
  padding-top: 5px;
}

.pt-\[60px\] {
  padding-top: 60px;
}

.pt-\[80px\] {
  padding-top: 80px;
}

.pt-\[8px\] {
  padding-top: 8px;
}

.pt-\[92px\] {
  padding-top: 92px;
}

.text-left {
  text-align: left;
}

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

.font-familjenGrotesk {
  font-family: FamiljenGrotesk-Variable, sans-serif;
}

.font-nord {
  font-family: Nord, sans-serif;
}

.font-sohneMono {
  font-family: SohneMono, sans-serif;
}

.font-switzer {
  font-family: Switzer-Variable, sans-serif;
}

.text-\[100px\] {
  font-size: 100px;
}

.text-\[12\.5px\] {
  font-size: 12.5px;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[13\.5px\] {
  font-size: 13.5px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[14\.55px\] {
  font-size: 14.55px;
}

.text-\[14\.5px\] {
  font-size: 14.5px;
}

.text-\[14px\] {
  font-size: 14px;
}

.text-\[15\.5px\] {
  font-size: 15.5px;
}

.text-\[15\.75px\] {
  font-size: 15.75px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[16\.5px\] {
  font-size: 16.5px;
}

.text-\[16px\] {
  font-size: 16px;
}

.text-\[17px\] {
  font-size: 17px;
}

.text-\[18px\] {
  font-size: 18px;
}

.text-\[19px\] {
  font-size: 19px;
}

.text-\[20px\] {
  font-size: 20px;
}

.text-\[22px\] {
  font-size: 22px;
}

.text-\[24px\] {
  font-size: 24px;
}

.text-\[28px\] {
  font-size: 28px;
}

.text-\[32px\] {
  font-size: 32px;
}

.text-\[36px\] {
  font-size: 36px;
}

.text-\[40px\] {
  font-size: 40px;
}

.text-\[44px\] {
  font-size: 44px;
}

.text-\[48px\] {
  font-size: 48px;
}

.text-\[56px\] {
  font-size: 56px;
}

.text-\[64px\] {
  font-size: 64px;
}

.text-\[72px\] {
  font-size: 72px;
}

.text-\[96px\] {
  font-size: 96px;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-\[550\] {
  font-weight: 550;
}

.font-\[600\] {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.normal-case {
  text-transform: none;
}

.leading-\[100\%\] {
  line-height: 100%;
}

.leading-\[110\%\] {
  line-height: 110%;
}

.leading-\[120\%\] {
  line-height: 120%;
}

.leading-\[130\%\] {
  line-height: 130%;
}

.leading-\[135\%\] {
  line-height: 135%;
}

.leading-\[140\%\] {
  line-height: 140%;
}

.leading-\[150\%\] {
  line-height: 150%;
}

.leading-\[160\%\] {
  line-height: 160%;
}

.leading-\[80\%\] {
  line-height: 80%;
}

.leading-\[90\%\] {
  line-height: 90%;
}

.leading-\[12\] {
  line-height: 12;
}

.leading-\[12\%\] {
  line-height: 12%;
}

.tracking-\[1px\] {
  letter-spacing: 1px;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.text-\[\#000000\] {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-\[\#0A3D8F\] {
  --tw-text-opacity: 1;
  color: rgb(10 61 143 / var(--tw-text-opacity, 1));
}

.text-\[\#116E9C\] {
  --tw-text-opacity: 1;
  color: rgb(17 110 156 / var(--tw-text-opacity, 1));
}

.text-\[\#12415D\] {
  --tw-text-opacity: 1;
  color: rgb(18 65 93 / var(--tw-text-opacity, 1));
}

.text-\[\#124CC9\] {
  --tw-text-opacity: 1;
  color: rgb(18 76 201 / var(--tw-text-opacity, 1));
}

.text-\[\#1452DB\] {
  --tw-text-opacity: 1;
  color: rgb(20 82 219 / var(--tw-text-opacity, 1));
}

.text-\[\#1A3B57\] {
  --tw-text-opacity: 1;
  color: rgb(26 59 87 / var(--tw-text-opacity, 1));
}

.text-\[\#205ACF\] {
  --tw-text-opacity: 1;
  color: rgb(32 90 207 / var(--tw-text-opacity, 1));
}

.text-\[\#206B8D\] {
  --tw-text-opacity: 1;
  color: rgb(32 107 141 / var(--tw-text-opacity, 1));
}

.text-\[\#236600\] {
  --tw-text-opacity: 1;
  color: rgb(35 102 0 / var(--tw-text-opacity, 1));
}

.text-\[\#2890C3\] {
  --tw-text-opacity: 1;
  color: rgb(40 144 195 / var(--tw-text-opacity, 1));
}

.text-\[\#292929\] {
  --tw-text-opacity: 1;
  color: rgb(41 41 41 / var(--tw-text-opacity, 1));
}

.text-\[\#2D7906\] {
  --tw-text-opacity: 1;
  color: rgb(45 121 6 / var(--tw-text-opacity, 1));
}

.text-\[\#309ED4\] {
  --tw-text-opacity: 1;
  color: rgb(48 158 212 / var(--tw-text-opacity, 1));
}

.text-\[\#333333\] {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.text-\[\#336718\] {
  --tw-text-opacity: 1;
  color: rgb(51 103 24 / var(--tw-text-opacity, 1));
}

.text-\[\#363636\] {
  --tw-text-opacity: 1;
  color: rgb(54 54 54 / var(--tw-text-opacity, 1));
}

.text-\[\#393939\] {
  --tw-text-opacity: 1;
  color: rgb(57 57 57 / var(--tw-text-opacity, 1));
}

.text-\[\#3BB1E8\] {
  --tw-text-opacity: 1;
  color: rgb(59 177 232 / var(--tw-text-opacity, 1));
}

.text-\[\#494949\] {
  --tw-text-opacity: 1;
  color: rgb(73 73 73 / var(--tw-text-opacity, 1));
}

.text-\[\#4D4D4D\] {
  --tw-text-opacity: 1;
  color: rgb(77 77 77 / var(--tw-text-opacity, 1));
}

.text-\[\#581317\] {
  --tw-text-opacity: 1;
  color: rgb(88 19 23 / var(--tw-text-opacity, 1));
}

.text-\[\#666666\] {
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
}

.text-\[\#747474\] {
  --tw-text-opacity: 1;
  color: rgb(116 116 116 / var(--tw-text-opacity, 1));
}

.text-\[\#797979\] {
  --tw-text-opacity: 1;
  color: rgb(121 121 121 / var(--tw-text-opacity, 1));
}

.text-\[\#850000\] {
  --tw-text-opacity: 1;
  color: rgb(133 0 0 / var(--tw-text-opacity, 1));
}

.text-\[\#AE252A\] {
  --tw-text-opacity: 1;
  color: rgb(174 37 42 / var(--tw-text-opacity, 1));
}

.text-\[\#C81C2C\] {
  --tw-text-opacity: 1;
  color: rgb(200 28 44 / var(--tw-text-opacity, 1));
}

.text-\[\#C9212E\] {
  --tw-text-opacity: 1;
  color: rgb(201 33 46 / var(--tw-text-opacity, 1));
}

.text-\[\#D0F4BD\] {
  --tw-text-opacity: 1;
  color: rgb(208 244 189 / var(--tw-text-opacity, 1));
}

.text-\[\#ED2D2B\] {
  --tw-text-opacity: 1;
  color: rgb(237 45 43 / var(--tw-text-opacity, 1));
}

.text-\[\#F7F0DC\] {
  --tw-text-opacity: 1;
  color: rgb(247 240 220 / var(--tw-text-opacity, 1));
}

.text-\[\#FFFFFF\] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.underline {
  text-decoration-line: underline;
}

.underline-offset-4 {
  text-underline-offset: 4px;
}

.opacity-10 {
  opacity: 0.1;
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline {
  outline-style: solid;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow-md {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow-sm {
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.placeholder\:text-left::-moz-placeholder {
  text-align: left;
}

.placeholder\:text-left::placeholder {
  text-align: left;
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@media (max-width: 1720px) {
  .xl\:left-\[40\%\] {
    left: 40%;
  }

  .xl\:left-\[50\%\] {
    left: 50%;
  }

  .xl\:left-\[60\%\] {
    left: 60%;
  }

  .xl\:left-\[650\%\] {
    left: 650%;
  }

  .xl\:top-\[50\%\] {
    top: 50%;
  }

  .xl\:mt-24 {
    margin-top: 6rem;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:h-\[680px\] {
    height: 680px;
  }

  .xl\:w-\[1080px\] {
    width: 1080px;
  }

  .xl\:w-\[300px\] {
    width: 300px;
  }

  .xl\:w-\[340px\] {
    width: 340px;
  }

  .xl\:-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .xl\:-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .xl\:rotate-12 {
    --tw-rotate: 12deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

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

@media (max-width: 1440px) {
  .lg\:left-\[35\%\] {
    left: 35%;
  }

  .lg\:left-\[65\%\] {
    left: 65%;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-\[640px\] {
    height: 640px;
  }

  .lg\:w-\[280px\] {
    width: 280px;
  }

  .lg\:w-\[320px\] {
    width: 320px;
  }

  .lg\:w-\[360px\] {
    width: 360px;
  }

  .lg\:w-\[380px\] {
    width: 380px;
  }

  .lg\:w-\[880px\] {
    width: 880px;
  }
}

@media (max-width: 1024px) {
  .md\:h-\[600px\] {
    height: 600px;
  }

  .md\:w-\[380px\] {
    width: 380px;
  }

  .md\:w-\[720px\] {
    width: 720px;
  }
}

@media (max-width: 769px) {
  .sm\:bottom-\[10px\] {
    bottom: 10px;
  }

  .sm\:left-0 {
    left: 0px;
  }

  .sm\:left-1\/2 {
    left: 50%;
  }

  .sm\:right-\[10px\] {
    right: 10px;
  }

  .sm\:top-\[0px\] {
    top: 0px;
  }

  .sm\:top-\[102px\] {
    top: 102px;
  }

  .sm\:top-\[70px\] {
    top: 70px;
  }

  .sm\:top-\[calc\(0\.5\*\(100\%-64px\)\)\] {
    top: calc(0.5 * (100% - 64px));
  }

  .sm\:z-\[60\] {
    z-index: 60;
  }

  .sm\:block {
    display: block;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:h-\[105vw\] {
    height: 105vw;
  }

  .sm\:h-\[148px\] {
    height: 148px;
  }

  .sm\:h-\[170px\] {
    height: 170px;
  }

  .sm\:h-\[290px\] {
    height: 290px;
  }

  .sm\:h-\[320px\] {
    height: 320px;
  }

  .sm\:h-\[px\] {
    height: px;
  }

  .sm\:max-h-\[320px\] {
    max-height: 320px;
  }

  .sm\:max-h-\[400px\] {
    max-height: 400px;
  }

  .sm\:max-h-\[calc\(100dvh-170px\)\] {
    max-height: calc(100dvh - 170px);
  }

  .sm\:max-h-\[56px\] {
    max-height: 56px;
  }

  .sm\:min-h-\[0px\] {
    min-height: 0px;
  }

  .sm\:w-\[140px\] {
    width: 140px;
  }

  .sm\:w-\[160px\] {
    width: 160px;
  }

  .sm\:w-\[180px\] {
    width: 180px;
  }

  .sm\:w-\[200px\] {
    width: 200px;
  }

  .sm\:w-\[240px\] {
    width: 240px;
  }

  .sm\:w-\[280px\] {
    width: 280px;
  }

  .sm\:w-\[36px\] {
    width: 36px;
  }

  .sm\:w-\[85\%\] {
    width: 85%;
  }

  .sm\:w-\[92\.5vw\] {
    width: 92.5vw;
  }

  .sm\:w-\[95vw\] {
    width: 95vw;
  }

  .sm\:w-\[97\.5vw\] {
    width: 97.5vw;
  }

  .sm\:w-\[calc\(\(100dvw-64px\)\/2\)\] {
    width: calc((100dvw - 64px) / 2);
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:w-fit {
    width: -moz-fit-content;
    width: fit-content;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

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

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

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

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

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

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

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

  .sm\:gap-x-2 {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }

  .sm\:gap-x-3 {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .sm\:gap-y-1 {
    row-gap: 0.25rem;
  }

  .sm\:gap-y-2 {
    row-gap: 0.5rem;
  }

  .sm\:gap-y-4 {
    row-gap: 1rem;
  }

  .sm\:gap-y-8 {
    row-gap: 2rem;
  }

  .sm\:gap-y-\[10px\] {
    row-gap: 10px;
  }

  .sm\:gap-y-\[18px\] {
    row-gap: 18px;
  }

  .sm\:gap-y-\[4px\] {
    row-gap: 4px;
  }

  .sm\:gap-y-\[5px\] {
    row-gap: 5px;
  }

  .sm\:overflow-hidden {
    overflow: hidden;
  }

  .sm\:whitespace-nowrap {
    white-space: nowrap;
  }

  .sm\:whitespace-break-spaces {
    white-space: break-spaces;
  }

  .sm\:rounded-\[3px\] {
    border-radius: 3px;
  }

  .sm\:rounded-md {
    border-radius: 0.375rem;
  }

  .sm\:bg-\[\#FFFFFF00\] {
    background-color: #FFFFFF00;
  }

  .sm\:bg-\[\#FFFFFF\] {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }

  .sm\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sm\:px-\[10px\] {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sm\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .sm\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .sm\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sm\:py-\[10px\] {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sm\:py-\[24px\] {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .sm\:pb-0 {
    padding-bottom: 0px;
  }

  .sm\:pb-4 {
    padding-bottom: 1rem;
  }

  .sm\:pb-6 {
    padding-bottom: 1.5rem;
  }

  .sm\:pb-\[108px\] {
    padding-bottom: 108px;
  }

  .sm\:pl-0 {
    padding-left: 0px;
  }

  .sm\:pt-0 {
    padding-top: 0px;
  }

  .sm\:pt-2 {
    padding-top: 0.5rem;
  }

  .sm\:pt-6 {
    padding-top: 1.5rem;
  }

  .sm\:pt-\[24px\] {
    padding-top: 24px;
  }

  .sm\:text-\[13px\] {
    font-size: 13px;
  }

  .sm\:text-\[14\.5px\] {
    font-size: 14.5px;
  }

  .sm\:text-\[14px\] {
    font-size: 14px;
  }

  .sm\:text-\[15\.5px\] {
    font-size: 15.5px;
  }

  .sm\:text-\[16\.5px\] {
    font-size: 16.5px;
  }

  .sm\:text-\[16px\] {
    font-size: 16px;
  }

  .sm\:text-\[17\.5px\] {
    font-size: 17.5px;
  }

  .sm\:text-\[17px\] {
    font-size: 17px;
  }

  .sm\:text-\[20px\] {
    font-size: 20px;
  }

  .sm\:leading-\[120\%\] {
    line-height: 120%;
  }

  .sm\:leading-\[145\%\] {
    line-height: 145%;
  }

  .sm\:leading-\[150\%\] {
    line-height: 150%;
  }
}