/* ==========================================================================
   SMORT CSS LIBRARY - Main Entry Point
   ========================================================================== */

/* Imports måste komma först */

/* ==========================================================================
   COLOR VARIABLES
   ========================================================================== */

:root {
  /* THEME COLORS 2.0 */
  /* Base */
  --white: #ffffff;
  --black: #222222;
  --warning: #f59e0b;
  --error: #ef4444;
  --success: #10b981;
  /* Text */
  --text: #222222;
  --text-light: #ffffff;

  /* Variable colors */
  --background: #ffffff;
  --foreground: #222222;
  --background-hover: #d3d3d3;
  --border-dark: #b9b9b9;
  --border-light: #e3dcdc;
  --shadow: rgb(0 0 0 / 0.5);
  --overlay: rgb(0 0 0 / 0.9);
  --body-background: #f5f5f5;

  --primary: #f6b055;
  --primary-foreground: var(--text-light);
  --primary-hover: #f6b055d5;
  --primary-border: #16128b;

  --secondary: #1f2227;
  --secondary-foreground: var(--text);
  --secondary-hover: #e6ff9d;
  --secondary-border: #e5e7eb;

  --accent: #ebebeb;
  --accent-foreground: var(--text);
  --accent-hover: #fd7e7e;
  --accent-border: #e5e7eb;

  --dark-green: #415656;
  --header-background: var(--white);
  --header-text: var(--text);

  --footer-background: var(--secondary);
  --footer-text: var(--text-light);
}

/* ==========================================================================
   EFFECTS VARIABLES
   ========================================================================== */

:root {
  /* BORDERS */
  --border-width: 1px;
  --border-width-2: 2px;
  --border-width-4: 4px;
  --border-width-8: 8px;

  --border-radius-smort: 1rem;

  --border-radius-none: 0;
  --border-radius-sm: 0.125rem;
  --border-radius: 0.25rem;
  --border-radius-md: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 0.75rem;
  --border-radius-2xl: 1rem;
  --border-radius-3xl: 1.5rem;
  --border-radius-full: 9999px;

  /* SHADOWS */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* TRANSITIONS */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-INDEX */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
}

/* ==========================================================================
   SPACING VARIABLES
   ========================================================================== */

:root {
  /* SPACING */
  --space-0: 0;
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem; /* 8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem; /* 16px */
  --space-5: 1.25rem; /* 20px */
  --space-6: 1.5rem; /* 24px */
  --space-8: 2rem; /* 32px */
  --space-10: 2.5rem; /* 40px */
  --space-12: 3rem; /* 48px */
  --space-16: 4rem; /* 64px */
  --space-20: 5rem; /* 80px */
  --space-24: 6rem; /* 96px */
  --space-32: 8rem; /* 128px */
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */

/* ==========================================================================
   TYPOGRAPHY VARIABLES
   ========================================================================== */

:root {
  /* TYPOGRAPHY - Synced with ACF Theme Options */
  --font-body: var(--body-font);
  --font-heading: var(--heading-font);
  --font-weight-heading: 800;
  --font-weight-body: 400;

  /* STANDARD FONT SIZES */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */
  --text-6xl: 3.75rem; /* 60px */
  --text-7xl: 4.5rem; /* 72px */
  --text-8xl: 6rem; /* 96px */

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* Font Weights */
  --font-thin: 100;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;

  /* Heading sizes - Mobile (Small screens) */
  --h1-sm-size: 2rem; /* 32px */
  --h1-sm-height: 1.2;
  --h2-sm-size: 1.75rem; /* 28px */
  --h2-sm-height: 1.3;
  --h3-sm-size: 1.5rem; /* 24px */
  --h3-sm-height: 1.4;
  --h4-sm-size: 1.25rem; /* 20px */
  --h4-sm-height: 1.4;
  --h5-sm-size: 1.125rem; /* 18px */
  --h5-sm-height: 1.5;
  --h6-sm-size: 1rem; /* 16px */
  --h6-sm-height: 1.5;

  /* Heading sizes - Desktop (1024px+) */
  --h1-lg-size: 3rem; /* 48px */
  --h1-lg-height: 1.1;
  --h2-lg-size: 2.5rem; /* 40px */
  --h2-lg-height: 1.2;
  --h3-lg-size: 2rem; /* 32px */
  --h3-lg-height: 1.3;
  --h4-lg-size: 1.5rem; /* 24px */
  --h4-lg-height: 1.4;
  --h5-lg-size: 1.25rem; /* 20px */
  --h5-lg-height: 1.5;
  --h6-lg-size: 1.125rem; /* 18px */
  --h6-lg-height: 1.5;

  /* Paragraph sizes */
  --p-sm-size: 0.875rem; /* 14px */
  --p-sm-height: 1.6;
  --p-lg-size: 1rem; /* 16px */
  --p-lg-height: 1.6;
}

/* ==========================================================================
   CONTAINER SYSTEM
   ========================================================================== */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);

  /* Add a data key based custom width overwrite */
  &[data-width] {
    max-width: attr(data-width px);
  }
}

.sub-menu {
  height: 0;
}

.sub-menu[aria-extended="true"] {
  height: auto;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 2000px;
  }
}

/* Container Variants */

.container-sm {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.container-md {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.container-lg {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.container-xl {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.container-fluid {
  width: 100%;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

/* ==========================================================================
   RESET & NORMALIZE
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  interpolate-size: allow-keywords; /* Allows for transition between height: 0; to height: auto; , and more*/
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.5em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**GENERAL*/

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
}

/*SECTION*/

section {
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  section {
    padding: 5rem 0;
  }
}

del .woocommerce-Price-amount bdi {
  font-size: var(--text-sm);
  color: #666;
}

ins {
  text-decoration: none;
}

/*HEADER*/

.desktop-menu-container {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-menu-container {
    display: block;
  }
}

.menu-item a:hover {
  color: #000000;
}

/* Override Tailwind's inherit values */

h1 {
  font-size: var(--h1-sm-size);
  line-height: var(--h1-sm-height);
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: var(--font-weight-heading);
  font-family: var(--heading-font), sans-serif;
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--h1-lg-size);
    line-height: var(--h1-lg-height);
  }
}

h2 {
  font-size: var(--h2-sm-size);
  line-height: var(--h2-sm-height);
  color: var(--text);
  font-weight: var(--font-weight-heading);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font), sans-serif;
}

@media (min-width: 1024px) {
  h2 {
    font-size: var(--h2-lg-size);
    line-height: var(--h2-lg-height);
  }
}

h3 {
  font-size: var(--h3-sm-size);
  line-height: var(--h3-sm-height);
  color: var(--text);
  font-weight: var(--font-weight-heading);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font), sans-serif;
}

@media (min-width: 1024px) {
  h3 {
    font-size: var(--h3-lg-size);
    line-height: var(--h3-lg-height);
  }
}

h4 {
  font-size: var(--h4-sm-size);
  line-height: var(--h4-sm-height);
  color: var(--text);
  font-weight: var(--font-weight-heading);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font), sans-serif;
}

@media (min-width: 1024px) {
  h4 {
    font-size: var(--h4-lg-size);
    line-height: var(--h4-lg-height);
  }
}

h5 {
  font-size: var(--h5-sm-size);
  line-height: var(--h5-sm-height);
  color: var(--text);
  font-weight: 900;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font), sans-serif;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  h5 {
    font-size: var(--h5-lg-size);
    line-height: var(--h5-lg-height);
  }
}

h6 {
  font-size: var(--h6-sm-size);
  line-height: var(--h6-sm-height);
  color: var(--text);
  font-weight: 900;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font), sans-serif;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  h6 {
    font-size: var(--h6-lg-size);
    line-height: var(--h6-lg-height);
  }
}

p {
  font-size: var(--p-sm-size);
  line-height: var(--p-sm-height);
  margin-bottom: 1rem;
  font-family: var(--body-font), sans-serif;
  font-weight: var(--font-weight-body);
}

@media (min-width: 1024px) {
  p {
    font-size: var(--p-lg-size);
    line-height: var(--p-lg-height);
  }
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--body-font), sans-serif;
}

/* Navigation arrows */

.slider-nav-btn {
  position: relative;
  gap: var(--space-4);
  z-index: 20;
  padding: var(--space-4) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.slider-nav-btn:hover {
  background-color: var(--background-hover);
}

.slider-nav-btn:focus {
  outline: none;
  /* box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1); */
}

.slider-nav-btn.primary {
  color: var(--primary);
  border-color: var(--primary);
  &:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
  }
}

.slider-nav-btn.secondary {
  color: var(--secondary);
  border-color: var(--secondary);
  &:hover {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
  }
}

.slider-nav-btn.accent {
  color: var(--accent);
  border-color: var(--accent);
  &:hover {
    background-color: var(--accent);
    color: var(--accent-hover);
  }
}

.slider-nav-btn.outline {
  outline-style: none;
  color: var(--black);
  border-color: var(--black);
  &:hover {
    background-color: var(--background-hover);
    color: var(--white);
  }
}

.slider-nav-btn.outline-white {
  color: var(--white);
  border-color: var(--white);
  &:hover {
    background-color: var(--white);
    color: var(--black);
  }
}

/* Responsive adjustments */

@media (max-width: 1024px) {
  .slider-nav-btn {
    margin-bottom: 10px;
    width: 28px;
    height: 28px;
  }

  .smort-product-slider-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .slider-nav-btn {
    margin-bottom: 10px;
    width: 28px;
    height: 28px;
  }

  .smort-product-slider-title {
    font-size: var(--h2-sm-size);
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .slider-nav-btn {
    margin-bottom: 8px;
    width: 24px;
    height: 24px;
  }

  .slider-nav-btn svg {
    width: 14px;
    height: 14px;
  }

  .smort-product-slider-title {
    font-size: var(--h2-sm-size);
    margin-bottom: 15px;
  }

  /* Behåll overflow för att kunna scrolla */
  .smort-product-slider-container {
    overflow: hidden;
    padding-bottom: 30px;
  }

  .smort-product-slider-progress-container {
    bottom: 0;
  }
}

/* Tailwind CSS - efter imports */

*, ::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.18 | 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: var(--font-mono); /* 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%;
}

@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}

.visible {
  visibility: visible;
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.bottom-0 {
  bottom: 0px;
}

.right-0 {
  right: 0px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-8 {
  margin-bottom: 2rem;
}

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

.mt-6 {
  margin-top: 1.5rem;
}

.block {
  display: block;
}

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

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

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

.w-full {
  width: 100%;
}

.max-w-none {
  max-width: none;
}

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

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

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

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

.border {
  border-width: 1px;
}

.bg-accent {
  background-color: var(--accent);
}

.bg-background {
  background-color: var(--background);
}

.bg-black {
  background-color: var(--black);
}

.bg-body_background {
  background-color: var(--body-background);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-white {
  background-color: var(--white);
}

.bg-cover {
  background-size: cover;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

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

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

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

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

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

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

.italic {
  font-style: italic;
}

.text-accent-foreground {
  color: var(--accent-foreground);
}

.text-black {
  color: var(--black);
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.text-secondary-foreground {
  color: var(--secondary-foreground);
}

.text-text {
  color: var(--text);
}

.text-text-light {
  color: var(--text-light);
}

.outline {
  outline-style: solid;
}

.outline-white {
  outline-color: var(--white);
}

.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, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
