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

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

html, body {
  margin: 0 !important;
  padding: 0;
  scroll-behavior: smooth;
}

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

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

iframe {
  z-index: 0 !important;
}

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 #F9F9F9 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 #F9F9F9 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 #F9F9F9 inset !important;
  -moz-text-fill-color: #000 !important;
}

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

.overflow-x-scroll::-webkit-scrollbar,
.overflow-y-scroll::-webkit-scrollbar {
  display: none;
  width: 0px;
  height: 0px;
  background: transparent;
}

/* =========================
   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;
}

.primary-button {
  overflow: hidden;
  transform: translateZ(0);
  --ripple-x: 50%;
  --ripple-y: 50%;
  --ripple-size: 1px;
}

.primary-button::before {
  content: "";
  position: absolute;
  transform: scale(0);
  left: calc(var(--ripple-x) - var(--ripple-size) / 2);
  top: calc(var(--ripple-y) - var(--ripple-size) / 2);
  z-index: 0;
  opacity: 0;
  width: var(--ripple-size);
  height: var(--ripple-size);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255,115,87,.45), rgba(255,115,87,.25) 35%, rgba(255,115,87,0) 65%);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.2,.6,.2,1), opacity 0.6s ease;
}

.primary-button:hover::before {
  transform: scale(0.5);
  opacity: 1;
}

.primary-button > * {
  position: relative;
  z-index: 1;
}

.secondary-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* keep pseudo-layer below text/icon */
}

.secondary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #3C3C3C;
  opacity: 0.2;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.3s ease, opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.secondary-button:hover::before {
  opacity: 1;
  clip-path: circle(150% at 50% 50%);
}

.secondary-button > * {
  position: relative;
  z-index: 1;
  /* keep text/icon above the overlay */
}

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

/* header logo: initial state only */

.header-logo {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg) scale(0.8);
}

/* starts on load when class is added */

.header-logo-animation {
  animation: logoSequence 1s ease-in-out forwards;
}

@keyframes logoSequence {
  0% {
    transform: translateY(-50%) rotate(0deg) scale(0.8);
    opacity: 0;
  }

  40% {
    transform: translateY(-50%) rotate(-60deg) scale(0.8);
    opacity: 0;
  }

  80% {
    transform: translateY(-50%) rotate(20deg) scale(1.2);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 1;
  }
}

/* keep logo as-is */

.header-logo {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg) scale(0.8);
  animation: logoSequence 1s ease-in-out forwards;
}

@keyframes logoSequence {
  0% {
    transform: translateY(-50%) rotate(0deg) scale(0.8);
    opacity: 0;
  }

  40% {
    transform: translateY(-50%) rotate(-60deg) scale(0.8);
    opacity: 0;
  }

  80% {
    transform: translateY(-50%) rotate(20deg) scale(1.2);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 1;
  }
}

/* header-content: initial state only */

.header-content {
  transform: translateY(-24px);
}

/* starts on load when class is added */

.header-content-animation {
  animation: headerContentAnimation 0.5s ease-out forwards;
}

@keyframes headerContentAnimation {
  0% {
    transform: translateY(-24px);
  }

  100% {
    transform: translateY(0);
  }
}

/* enter-zip-code-banner: initial state only */

.enter-zip-code-banner {
  transform: translateY(-48px);
}

/* starts on load when class is added */

.enter-zip-code-banner-animation {
  animation: enterZipCodeBannerAnimation 0.5s ease-out forwards;
}

@keyframes enterZipCodeBannerAnimation {
  0% {
    transform: translateY(-48px);
  }

  100% {
    transform: translateY(0);
  }
}

/* header-category: initial state only */

.header-category {
  transform: translateY(-80px);
}

/* starts on load when class is added */

.header-category-animation {
  animation: headerCategoryAnimation 0.5s ease-out forwards;
}

@keyframes headerCategoryAnimation {
  0% {
    transform: translateY(-80px);
  }

  100% {
    transform: translateY(0);
  }
}

.header-reward {
  transform: translateY(-80px);
}

/* starts on load when class is added */

.header-reward-animation {
  animation: headerRewardAnimation 0.5s ease-out forwards;
}

@keyframes headerRewardAnimation {
  0% {
    transform: translateY(-80px);
  }

  100% {
    transform: translateY(0);
  }
}

.enter-zip-code-banner {
  max-height: 28px;
  transition: max-height 0.3s ease-in-out;
}

.enter-zip-code-banner.collapsed {
  max-height: 0px;
}

.category-navigation-button {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.category-navigation-button.active {
  opacity: 1;
  pointer-events: auto;
}

.edge-overlay {
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  transition: opacity 0.3s ease-in-out;
}

.edge-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#island {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.30) 75%, rgba(255, 255, 255, 0.45) 100%);
  -moz-column-gap: 6px;
       column-gap: 6px;
  transition: column-gap 0.3s ease-in-out;
  transition: column-gap 0.3s ease-in-out, -moz-column-gap 0.3s ease-in-out;
  contain: layout paint;
  transform: translateX(-50%) translateZ(0);
}

#island.search {
  -moz-column-gap: 0px;
       column-gap: 0px;
}

/* Smooth: animate flex-basis, not max-width */

#island .search-container {
  flex: 1 1 62px;
  transition: flex-basis 0.3s ease-in-out;
  will-change: flex-basis;
  contain: layout paint;
}

#island.search .search-container {
  flex-basis: calc(85vw - 12px);
}

#island .search-box {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  will-change: opacity;
}

#island.search .search-box {
  opacity: 1;
}

/* Category: caps at 800px when expanded, collapses via flex-basis */

#island .island-category {
  opacity: 1;
  flex: 1 1 800px;
  max-width: 800px;
  min-width: 0;
  transition: opacity 0.3s ease-in-out, flex-basis 0.3s ease-in-out;
  will-change: opacity, flex-basis;
  contain: layout paint;
}

#island.search .island-category {
  opacity: 0;
  flex-basis: 0px;
}

/* Edge overlay + indicators unchanged, just GPU-friendly */

.island-edge-overlay {
  opacity: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0) 100%);
  transition: opacity 0.3s ease-in-out;
  will-change: opacity;
  transform: rotate(180deg) translateZ(0);
}

#island .island-edge-overlay-container {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  will-change: opacity;
}

#island .island-category-scroll-indicator {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  will-change: opacity;
}

#island.search .island-edge-overlay-container {
  opacity: 0;
}

#island.search .island-category-scroll-indicator {
  opacity: 0;
}

/* =========================
   Modals
   ========================= */

.modal {
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(80%);
  transform-origin: center;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.modal.active {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(100%);
  pointer-events: auto;
}

/* =========================
   Cart Quantity
   ========================= */

.product-card {
  --button-diameter: 40px;
  --input-width: 400px;
}

.search-result-item {
  --button-diameter: 28px;
  --input-width: 400px;
}

.cart-quantity .decrement-quantity {
  margin-right: 0px;
  flex-basis: 0px;
  opacity: 0;
  transition: flex-basis 0.3s ease-in-out, margin-right 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cart-quantity.added .decrement-quantity {
  margin-right: 6px;
  flex-basis: var(--button-diameter);
  opacity: 1;
}

.cart-quantity .cart-quantity-input {
  margin-right: 0px;
  flex-basis: 0px;
  opacity: 0;
  transition: flex-basis 0.3s ease-in-out, margin-right 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cart-quantity.added .cart-quantity-input {
  margin-right: 6px;
  flex-basis: calc(100% - var(--button-diameter) - var(--button-diameter) - 6px - 6px);
  opacity: 1;
}

.cart-quantity .increment-quantity {
  flex-basis: var(--input-width);
  max-width: var(--input-width);
  /* Animate the container, not just the label */
  transition: flex-basis 0.35s ease-in-out, max-width 0.35s ease-in-out;
  overflow: hidden;
}

.cart-quantity.added .increment-quantity {
  flex-basis: var(--button-diameter);
  max-width: var(--button-diameter);
}

.cart-quantity .increment-quantity > .add-to-cart-label {
  margin-left: 8px;
  min-width: 0px;
  flex-basis: 77px;
  opacity: 1;
  overflow: hidden;
  transition: flex-basis 0.35s ease-in-out, margin-left 0.35s ease-in-out, opacity 0.35s ease-in-out;
}

.cart-quantity.added .increment-quantity > .add-to-cart-label {
  margin-left: 0px;
  flex-basis: 0px;
  opacity: 0;
}

/* =========================
   Hero
   ========================= */

.product-carousel-slider {
  transition: transform 0.3s ease-in-out;
}

.carousel-main-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform: scale(1.2);
}

.carousel-main-image-animation {
  animation: carouselMainImageAnimation 0.6s ease-out forwards;
}

@keyframes carouselMainImageAnimation {
  0% {
    transform: scale(1.1);
    /* start zoomed out */
  }

  100% {
    transform: scale(1);
    /* zoom to full */
  }
}

.carousel-step {
  background-color: #FFFFFF;
  transition: background-color 0.3s ease-in-out;
}

.carousel-step.active {
  background-color: #ED3F1D;
}

.category-container button img {
  rotate: 0deg;
  transition: rotate 0.3s ease-in-out;
}

.category-container:hover button img {
  rotate: 180deg;
}

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

.footer-contact-button {
  background-color: white;
  transition: background-color 0.3s ease-in-out;
}

.footer-contact-button > img {
  filter: saturate(100%) brightness(100%);
  transition: filter 0.3s ease-in-out;
}

.footer-contact-button > span {
  color: #ED3F1D;
  transition: color 0.15s ease-in-out;
}

.footer-contact-button:hover {
  background-color: #ED3F1D;
}

.footer-contact-button:hover > img {
  filter: saturate(0%) brightness(1000%);
}

.footer-contact-button:hover > span {
  color: white;
}

/* Arimo Variable */

@font-face {
  font-display: swap;

  font-family: 'Arimo-Variable';

  font-style: normal;

  font-weight: 100 900;

  src: url('../fonts/Arimo-VariableFont_wght.ttf') format('truetype');
}

/* Bebas Neue */

@font-face {
  font-display: swap;

  font-family: 'BebasNeue';

  font-style: normal;

  font-weight: 400;

  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2'),
       url('../fonts/BebasNeue-Regular.woff') format('woff');
}

/* Bilcase */

@font-face {
  font-display: swap;

  font-family: 'Bilcase';

  font-style: normal;

  font-weight: 400;

  src: url('../fonts/Bilcase-Regular.ttf') format('truetype'),
}

/* Sora Variable */

@font-face {
  font-display: swap;

  font-family: 'Sora-Variable';

  font-style: normal;

  font-weight: 100 900;

  src: url('../fonts/Sora-Variable.woff2') format('woff2');
}

@font-face {
  font-display: swap;

  font-family: 'Sora-VariableItalic';

  font-style: italic;

  font-weight: 100 900;

  src: url('../fonts/Sora-VariableItalic.woff2') format('woff2');
}

/* Switzer Variable */

@font-face {
  font-display: swap;

  font-family: 'Switzer-Variable';

  font-style: normal;

  font-weight: 100 900;

  src: url('../fonts/Switzer-Variable.woff2') format('woff2');
}

@font-face {
  font-display: swap;

  font-family: 'Switzer-VariableItalic';

  font-style: italic;

  font-weight: 100 900;

  src: url('../fonts/Switzer-VariableItalic.woff2') format('woff2');
}

*, ::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%;
}

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

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

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

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

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

.bottom-0 {
  bottom: 0px;
}

.bottom-6 {
  bottom: 1.5rem;
}

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

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

.left-0 {
  left: 0px;
}

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

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

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

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

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

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

.right-0 {
  right: 0px;
}

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

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

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

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

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

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

.top-0 {
  top: 0px;
}

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

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

.top-\[0dvh\] {
  top: 0dvh;
}

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

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

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

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

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

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

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

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

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

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-\[340px\] {
  max-height: 340px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-\[calc\(0\.4\*min\(98vw\2c 1680px\)\)\] {
  width: calc(0.4 * min(98vw,1680px));
}

.w-\[calc\(5\*240px\+4\*16px\)\] {
  width: calc(5 * 240px + 4 * 16px);
}

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

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

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

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

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

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

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

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

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

.min-w-\[calc\(0\.6\*min\(98vw\2c 1680px\)\)\] {
  min-width: calc(0.6 * min(98vw,1680px));
}

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

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

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

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

.-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-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-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-y-full {
  --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));
}

.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));
}

.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-x-1 {
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}

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

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

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

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

.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-\[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-5 {
  row-gap: 1.25rem;
}

.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-\[1vw\] {
  row-gap: 1vw;
}

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.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-\[12px\] {
  border-radius: 12px;
}

.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-l-\[10px\] {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.rounded-l-none {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-r-\[10px\] {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.border {
  border-width: 1px;
}

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

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

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

.border-\[\#ED3F1D\] {
  --tw-border-opacity: 1;
  border-color: rgb(237 63 29 / var(--tw-border-opacity, 1));
}

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

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

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

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

.border-b-\[\#E6E6E6\] {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(230 230 230 / var(--tw-border-opacity, 1));
}

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

.bg-\[\#006AA2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 106 162 / var(--tw-bg-opacity, 1));
}

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

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

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

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

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

.bg-\[\#B3B3B3\] {
  --tw-bg-opacity: 1;
  background-color: rgb(179 179 179 / 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-\[\#EAEAEA\] {
  --tw-bg-opacity: 1;
  background-color: rgb(234 234 234 / var(--tw-bg-opacity, 1));
}

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

.bg-\[\#ED3F1D\] {
  --tw-bg-opacity: 1;
  background-color: rgb(237 63 29 / var(--tw-bg-opacity, 1));
}

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

.bg-\[\#F2F2F2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / 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-\[\#FEFDF8\] {
  --tw-bg-opacity: 1;
  background-color: rgb(254 253 248 / 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));
}

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

.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-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-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.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-\[14px\] {
  padding-left: 14px;
  padding-right: 14px;
}

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

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

.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-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.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-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

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

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

.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-\[3px\] {
  padding-top: 3px;
  padding-bottom: 3px;
}

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

.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-1 {
  padding-bottom: 0.25rem;
}

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

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

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

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

.pb-7 {
  padding-bottom: 1.75rem;
}

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

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

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

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

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

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

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

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

.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-\[7vw\] {
  padding-left: 7vw;
}

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

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

.pr-10 {
  padding-right: 2.5rem;
}

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

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

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

.pt-14 {
  padding-top: 3.5rem;
}

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

.pt-6 {
  padding-top: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.font-arimo {
  font-family: Arimo-Variable, sans-serif;
}

.font-bebasNeue {
  font-family: BebasNeue, sans-serif;
}

.font-bilcase {
  font-family: Bilcase, sans-serif;
}

.font-sora {
  font-family: Sora-Variable, sans-serif;
}

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

.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\.5px\] {
  font-size: 14.5px;
}

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

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

.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-\[21px\] {
  font-size: 21px;
}

.text-\[22\.5px\] {
  font-size: 22.5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.font-\[600\] {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.leading-\[100\%\] {
  line-height: 100%;
}

.leading-\[110\%\] {
  line-height: 110%;
}

.leading-\[120\%\] {
  line-height: 120%;
}

.leading-\[135\%\] {
  line-height: 135%;
}

.leading-\[140\%\] {
  line-height: 140%;
}

.leading-\[150\%\] {
  line-height: 150%;
}

.leading-\[160\%\] {
  line-height: 160%;
}

.leading-\[85\%\] {
  line-height: 85%;
}

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

.tracking-\[0\.3px\] {
  letter-spacing: 0.3px;
}

.tracking-\[0\.5px\] {
  letter-spacing: 0.5px;
}

.tracking-\[0\.6px\] {
  letter-spacing: 0.6px;
}

.tracking-\[0\.8px\] {
  letter-spacing: 0.8px;
}

.text-\[\#0A3D8F\] {
  --tw-text-opacity: 1;
  color: rgb(10 61 143 / var(--tw-text-opacity, 1));
}

.text-\[\#205ACF\] {
  --tw-text-opacity: 1;
  color: rgb(32 90 207 / var(--tw-text-opacity, 1));
}

.text-\[\#236600\] {
  --tw-text-opacity: 1;
  color: rgb(35 102 0 / var(--tw-text-opacity, 1));
}

.text-\[\#333333\] {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.text-\[\#404040\] {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
}

.text-\[\#424242\] {
  --tw-text-opacity: 1;
  color: rgb(66 66 66 / var(--tw-text-opacity, 1));
}

.text-\[\#666666\] {
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / 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-\[\#B3B3B3\] {
  --tw-text-opacity: 1;
  color: rgb(179 179 179 / var(--tw-text-opacity, 1));
}

.text-\[\#ED3F1D\] {
  --tw-text-opacity: 1;
  color: rgb(237 63 29 / 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));
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.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);
}

.backdrop-blur-\[2px\] {
  --tw-backdrop-blur: blur(2px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.placeholder\:text-\[\#4D4D4D\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(77 77 77 / var(--tw-text-opacity, 1));
}

.placeholder\:text-\[\#4D4D4D\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(77 77 77 / var(--tw-text-opacity, 1));
}

.placeholder\:text-\[\#8D8D8D\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(141 141 141 / var(--tw-text-opacity, 1));
}

.placeholder\:text-\[\#8D8D8D\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(141 141 141 / var(--tw-text-opacity, 1));
}

.placeholder\:text-\[\#999999\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(153 153 153 / var(--tw-text-opacity, 1));
}

.placeholder\:text-\[\#999999\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(153 153 153 / var(--tw-text-opacity, 1));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@media (max-width: 1479px) {
  .lg\:left-\[240px\] {
    left: 240px;
  }

  .lg\:hidden {
    display: none;
  }

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

  .lg\:w-\[calc\(0\.5\*min\(98vw\2c 1680px\)\)\] {
    width: calc(0.5 * min(98vw,1680px));
  }

  .lg\:w-\[calc\(4\*240px\+3\*16px\)\] {
    width: calc(4 * 240px + 3 * 16px);
  }

  .lg\:min-w-\[50\%\] {
    min-width: 50%;
  }

  .lg\:min-w-\[calc\(0\.5\*min\(98vw\2c 1680px\)\)\] {
    min-width: calc(0.5 * min(98vw,1680px));
  }

  .lg\: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));
  }

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

@media (max-width: 1079px) {
  .md\:left-\[230px\] {
    left: 230px;
  }

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

@media (max-width: 879px) {
  .sm\:left-1\/2 {
    left: 50%;
  }

  .sm\:top-\[163px\] {
    top: 163px;
  }

  .sm\:block {
    display: block;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:hidden {
    display: none;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .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\:flex-wrap {
    flex-wrap: wrap;
  }

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

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

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

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

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

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

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

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

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

  .sm\:gap-y-\[2\.5vw\] {
    row-gap: 2.5vw;
  }

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

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

  .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\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

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

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

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

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

  .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-\[6px\] {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .sm\:pb-16 {
    padding-bottom: 4rem;
  }

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

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

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

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

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

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

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

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

  .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-\[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\:text-\[22px\] {
    font-size: 22px;
  }

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

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

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

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

  .sm\:leading-\[110\%\] {
    line-height: 110%;
  }

  .sm\:leading-\[145\%\] {
    line-height: 145%;
  }

  .sm\:leading-\[150\%\] {
    line-height: 150%;
  }

  .sm\:outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
  }
}
