/** Shopify CDN: Minification failed

Line 198:0 Unexpected "}"

**/
/** Critical CSS for the theme. This file is included on every page. */

/* Reset styles inspired by https://www.joshwcomeau.com/css/custom-css-reset/ */
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
}

html:has(dialog[scroll-lock][open], details[scroll-lock][open]) {
  overflow: hidden;
}

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

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

select {
  background-color: var(--color-background);
  color: currentcolor;
}

dialog {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

p {
  text-wrap: pretty;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p:empty {
  display: none;
}

:is(p, h1, h2, h3, h4, h5, h6):first-child,
:empty:first-child + :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

:is(p, h1, h2, h3, h4, h5, h6):last-child,
:where(p, h1, h2, h3, h4, h5, h6) + :has(+ :empty:last-child) {
  margin-block-end: 0;
}

/** =============================================
    TYPOGRAPHY
    All font-family declarations map to CSS custom
    properties set in snippets/css-variables.liquid
============================================= */

body {
  font-family: var(--font-body--family);
  font-weight: var(--font-body--weight);
  font-style: var(--font-body--style);
  background-color: var(--color-background);
  color: var(--color-foreground);
}

h1,
h2 {
  font-family: var(--font-heading--family);
  font-weight: var(--font-heading--weight);
  font-style: var(--font-heading--style);
}

h3,
h4 {
  font-family: var(--font-subheading--family);
  font-weight: var(--font-subheading--weight);
  font-style: var(--font-subheading--style);
}

/* H5 and H6 inherit subheading by default — override per section as needed */
h5,
h6 {
  font-family: var(--font-subheading--family);
  font-weight: var(--font-subheading--weight);
  font-style: var(--font-subheading--style);
}

nav a,
.nav-link {
  font-family: var(--font-nav--family);
  font-weight: var(--font-nav--weight);
  font-style: var(--font-nav--style);
}

button,
.button,
[type="submit"],
[type="button"] {
  font-family: var(--font-button--family);
  font-weight: var(--font-button--weight);
  font-style: var(--font-button--style);
}

.badge,
.tag,
.label,
.eyebrow,
figcaption,
caption {
  font-family: var(--font-label--family);
  font-weight: var(--font-label--weight);
  font-style: var(--font-label--style);
}

.price,
.money,
[class*="price"],
[class*="money"] {
  font-family: var(--font-price--family);
  font-weight: var(--font-price--weight);
  font-style: var(--font-price--style);
}

blockquote,
.quote,
.testimonial {
  font-family: var(--font-quote--family);
  font-weight: var(--font-quote--weight);
  font-style: var(--font-quote--style);
}

/** =============================================
    SECTION LAYOUT UTILITIES
============================================= */

/**
 * Setup a grid that enables both full-width and constrained layouts
 * depending on the class of the child elements.
 *
 * By default, a minimum content margin is set on the left and right
 * sides of the section and the content is centered in the viewport to
 * not exceed the maximum page width.
 *
 * When a child element is given the `full-width` class, it will span
 * the entire viewport.
 */
.shopify-section {
  --content-width: min(
    calc(var(--page-width) - var(--page-margin) * 2),
    calc(100% - var(--page-margin) * 2)
  );
  --content-margin: minmax(var(--page-margin), 1fr);
  --content-grid: var(--content-margin) var(--content-width) var(--content-margin);

  /* This is required to make <img> elements work as background images */
  position: relative;
  grid-template-columns: var(--content-grid);
  display: grid;
  width: 100%;
}

/* Child elements, by default, are constrained to the central column of the grid. */
.shopify-section > * {
  grid-column: 2;
}

/* Child elements that use the full-width utility class span the entire viewport. */
.shopify-section > .full-width {
  grid-column: 1 / -1;
}
}
@media(max-width:767px){
div[data-essential-cart-element="regular-price"] {
    font-size: 11px !important;
}
div[data-essential-cart-element="title"] {
    font-size: 11px !important;
}
select[aria-label="Select variant"] {
    color: #000 !important;
    appearance: auto !important;
    border: 1px #eee solid !important;
    padding: 3px 10px !important;
    max-width: 108px !important;
        font-size: 11px !important;
}
}
