/** Shopify CDN: Minification failed

Line 220:11 Expected identifier but found whitespace
Line 220:20 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;
}

/** Theme styles below */
body {
  font-family: var(--font-primary--family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--color-background);
  color: var(--color-foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: var(--line-height-tight);
  font-weight: 600;
  margin-block: var(--spacing-md) var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-block: var(--spacing-sm);
}

/* Links */
a {
  color: var(--color-link);
  text-decoration: underline;
  transition: color var(--transition-base);
}

/* a:hover {
  color: var(--color-link-hover);
} */

/* Buttons */
button,
input[type="submit"],
input[type="button"],
.button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  border: 1px solid var(--color-button-bg);
  border-radius: var(--style-border-radius-inputs);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.button:hover {
  background-color: var(--color-button-hover-bg);
  border-color: var(--color-button-hover-bg);
}

button:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea,
select {
  padding: var(--spacing-sm);
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  color: var(--color-foreground);
  width: 100%;
  transition: border-color var(--transition-base);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-foreground);
}

/* Quantity input styling */
input[type="number"] {
  width: 80px;
}

/* Lists */
ul, ol {
  margin-block: var(--spacing-sm);
  padding-inline-start: var(--spacing-md);
}

li {
  margin-block: var(--spacing-xs);
}

/** 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;
}
.text-left{text-align:left;}
.text-right{text-align:right;}
.text-center{text-align:center;}

.d-none {display: none !important;}
.d-block {display: block !important;}

/* Media width variables */
.media-img, video-media video, video-media iframe {width: 100%; height: 100%; object-fit: cover;}
video-media {aspect-ratio: var(--mobile-aspect-ratio, var(--aspect-ratio, auto));width: 100%;display: block;position: relative;}

@media (min-width: 576px) {
  .d-sm-none {display: none !important;}
  .d-sm-block {display: block !important;}
}
@media (min-width: 768px) {
  .d-md-none {display: none !important;}
  .d-md-block {display: block !important;}
}
@media (min-width: 992px) {
  .d-lg-none {display: none !important;}
  .d-lg-block {display: block !important;}
  video-media {aspect-ratio: var(--aspect-ratio, auto);}
}
@media (min-width: 1200px) {
  .d-xl-none {display: none !important;}
  .d-xl-block {display: block !important;}
}
@media (min-width: 1400px) {
  .d-xxl-none {display: none !important;}
  .d-xxl-block {display: block !important;}
}