/** Shopify CDN: Minification failed

Line 497:0 Unexpected "}"

**/
/* reset */
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1rem;
	font: inherit;
	vertical-align: baseline;
}

ul:empty,
dl:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty,
code:empty {
  display: none;
}

summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

details {
  display: flex;
  flex-direction: column;
}

dialog {
  margin: 0;
  padding: 0;
  border: none !important;
}

/* Manages focus and allows for transitions */
dialog[hidden],
[role="dialog"][hidden] {
  display: block;
  visibility: hidden;
}

/* base-focus */
*:focus {
  outline: 0;
  box-shadow: none;
}

/* Focus styles includes a fallback for browsers that don't support :focus-visible, with JS polyfill and browser with no JS */
*:focus-visible,
.no-js *:focus {
  outline: 2px solid hsla(var(--color-foreground-raw), 0.3);
  outline-offset: 2px;
}

/* Negate the fallback side-effect for browsers that support :focus-visible */
.no-js *:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/* manage js alterations */
.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

/* page layout */
.page-layout {
  display: grid;
  grid-template-areas:  "header"
                        "main"
                        "footer";
  grid-template-rows: max-content minmax(max-content, 1fr) max-content;
  height: 100%;
  position: relative;
}

.group--header {
  grid-area: header;
}

#MainContent {
  grid-area: main;
}

.group--footer {
  grid-area: footer;
}

/* Freeze page so there's no page scroll when certain modals/popups are open */
html.overlay-on,
html.search-open,
html.promo-popup-open,
html.age-verifier-open {
  overflow: hidden;
}

.page-layout__main {
  overflow: hidden;
  width: 100%;
}

.page-layout__overlay {
  background-color: var(--color-overlay);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-duration) var(--transition-timing-function);
  visibility: hidden;
  z-index: var(--z-index-background);
}

@media screen and (min-width: 900px) and (hover: hover) and (pointer: fine) {
  html.search-open {
    overflow: unset;
  }

  html.search-open .page-layout__overlay {
    opacity: 1;
    visibility: visible;
    z-index: var(--z-index-pop-up-overlay);
  }
}

html.overlay-on .page-layout__overlay {
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: var(--z-index-freeze-overlay);
}

html.overlay-on--no-pointer .page-layout__overlay {
  cursor: default;
}

a,
summary {
  --color-link: var(--color-foreground);
  --color-link-raw: var(--color-foreground-raw);

  color: var(--color-link);
  cursor: pointer;
  fill: currentColor;
  text-decoration: underline;
  text-decoration-color: hsla(var(--color-link-raw), 0.3);
  text-underline-offset: var(--link-underline-offset);
  text-decoration-thickness: var(--border-size--thick);
  transition-duration: var(--transition-duration);
  transition-property: color, fill, opacity, text-decoration;
  transition-timing-function: var(--transition-timing-function);
}

a svg,
summary svg {
  fill: inherit;
}


a:focus-visible,
summary:focus-visible {
  box-shadow: none;
  color: var(--color-link);
  outline: 2px solid hsla(var(--color-link-raw), 0.3);
  outline-offset: 2px;
}

a:hover,
summary:hover {
  color: var(--color-link);
  text-decoration-color: transparent;
}

a svg,
summary svg {
  fill: currentColor;
  vertical-align: middle;
}

a.active {
  text-decoration: underline;
  text-decoration-color: hsla(var(--color-link-raw), 0.3);
  text-underline-offset: var(--link-underline-offset);
  text-decoration-thickness: var(--border-size--thick);
}

svg {
  fill: currentColor;
}

hr {
  border-bottom: var(--border--thick);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 0;
}

/* media */
img,
picture {
  display: block;
  height: auto;
  max-width: 100%;
}

strong,
b {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

small {
  font-size: var(--font-copy-size-small);
}

blockquote,
q {
  font-style: italic;
  color: rgba(var(--color-foreground), 0.75);
  border-left: 0.2rem solid rgba(var(--color-foreground), 0.2);
  padding-left: var(--space-medium);
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
	content: none;
}

/* tables */
table {
	border-collapse: collapse;
	border-spacing: 0;
  margin: 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

th {
  font-weight: bold;
}

th,
td {
  padding: var(--space-small);
  vertical-align: middle;
}

code {
  background: hsla(var(--color-foreground-raw), 0.075);
  font-family: monospace;
  padding: 0.1em 0 0.2em;
  word-wrap: break-word;
}

/* lists */
ol,
ul {
  margin-left: 1.5em;
}

.list--unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list--inline > li {
  display: inline-block;
}

/* forms */
form:focus,
form:focus-visible {
  outline: 0;
}

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  margin: 0;
  touch-action: manipulation;
}

button,
input[type="submit"],
label[for] {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

fieldset {
  background-color: transparent;
  border: 0;
}

legend {
  font-weight: bold;
}

label,
legend,
.label {
  display: block;
  font-family: var(--font-body-family);
  font-size: 0.85rem;
  font-style: var(--font-body-style);
  font-weight: bold;
}

input,
select,
textarea {
  display: block;
  font-family: var(--font-body-family);
  font-size: 1rem;
  height: var(--pointer-element-min-height);
}

input {
  border-radius: var(--border-radius);
}

[type="email"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="date"],
input:not([type]),
textarea {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color-background);
  border-radius: var(--border-radius);
  border: var(--border--thin);
  box-shadow: none;
  color: var(--color-foreground);
  display: block;
  font-size: 1rem;
  padding: 0.75em 1em;
  transition: border-color var(--transition-duration) var(--transition-timing-function);
  width: 100%;
}

[type="email"]:focus-visible,
[type="number"]:focus-visible,
[type="password"]:focus-visible,
[type="search"]:focus-visible,
[type="tel"]:focus-visible,
[type="text"]:focus-visible,
[type="date"]:focus-visible,
input:not([type]):focus-visible,
textarea:focus-visible {
  border-color: var(--color-primary);
  border-radius: var(--border-radius);
  outline: 0;
}

[type="email"]:disabled,
[type="number"]:disabled,
[type="password"]:disabled,
[type="search"]:disabled,
[type="tel"]:disabled,
[type="text"]:disabled,
[type="date"]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

[type="email"]::placeholder,
[type="number"]::placeholder,
[type="password"]::placeholder,
[type="search"]::placeholder,
[type="tel"]::placeholder,
[type="text"]::placeholder,
[type="date"]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: hsla(var(--color-foreground-raw), 0.5);
  opacity: 0.5;
}

[type="search"] {
  -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-decoration,
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-results-button,
[type="search"]::-webkit-search-results-decoration { 
  display: none; 
}

textarea {
  border-radius: var(--border-radius);
  min-height: 6rem;
  resize: vertical;
}

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: var(--space-small);
}

[type="file"] {
  width: 100%;
}

select {
  color: hsl(var(--color-default-text));
}

[type="checkbox"]:focus-visible,
[type="radio"]:focus-visible,
[type="file"]:focus-visible,
select:focus-visible {
  border-color: var(--color-primary);
  outline: 0;
}

input[type='checkbox'] {
  display: inline-block;
  width: auto;
  margin-right: var(--space-small);
}
}