/** Shopify CDN: Minification failed

Line 30:21 Expected identifier but found whitespace
Line 30:23 Unexpected "{"
Line 30:33 Expected ":"
Line 30:53 Unexpected ","
Line 30:56 Unexpected "{"
Line 30:66 Expected ":"
Line 31:24 Expected identifier but found whitespace
Line 31:26 Unexpected "{"
Line 31:36 Expected ":"
Line 31:58 Unexpected ","
... and 135 more hidden warnings

**/
/* Base */

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

:root {
  --font-family-body: {{ settings.body_font.family }}, {{ settings.body_font.fallback_families }};
  --font-family-heading: {{ settings.header_font.family }}, {{ settings.header_font.fallback_families }};
  --font-family-micro: Helvetica;

  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-bold: 700;

  --color-background: {{ settings.color_background }};
  --color-background-rgb: {{ settings.color_background.red }}, {{ settings.color_background.green }}, {{ settings.color_background.blue }};
  --color-background-alt: {{ settings.color_background_alt }};
  --color-background-alt-rgb: {{ settings.color_background_alt.red }}, {{ settings.color_background_alt.green }}, {{ settings.color_background_alt.blue }};
  --color-background-original: {{ settings.color_background }};
  --color-background-original-rgb: {{ settings.color_background.red }}, {{ settings.color_background.green }}, {{ settings.color_background.blue }};

  --color-text: {{ settings.color_text }};
  --color-text-rgb: {{ settings.color_text.red }}, {{ settings.color_text.green }}, {{ settings.color_text.blue }};
  --color-text-original: {{ settings.color_text }};
  --color-text-original-rgb: {{ settings.color_text.red }}, {{ settings.color_text.green }}, {{ settings.color_text.blue }};

  --color-primary: {{ settings.color_primary }};
  --color-primary-rgb: {{ settings.color_primary.red }}, {{ settings.color_primary.green }}, {{ settings.color_primary.blue }};
  --color-secondary: {{ settings.color_secondary }};
  --color-secondary-rgb: {{ settings.color_secondary.red }}, {{ settings.color_secondary.green }}, {{ settings.color_secondary.blue }};
  
  --color-error: {{ settings.color_error }};
  --color-success: {{ settings.color_success }};
  --color-sale: {{ settings.color_sale }};

  --color-background-dark-mode: {{ settings.color_background_dark }};
  --color-background-dark-mode-rgb: {{ settings.color_background_dark.red }}, {{ settings.color_background_dark.green }}, {{ settings.color_background_dark.blue }};
  --color-text-dark-mode: {{ settings.color_text_dark }};
  --color-text-dark-mode-rgb: {{ settings.color_text_dark.red }}, {{ settings.color_text_dark.green }}, {{ settings.color_text_dark.blue }};

  --color-overlay-90: rgba(var(--color-text-rgb), 0.90);
  --color-overlay-80: rgba(var(--color-text-rgb), 0.80);
  --color-overlay-70: rgba(var(--color-text-rgb), 0.70);
  --color-overlay-60: rgba(var(--color-text-rgb), 0.60);
  --color-overlay-50: rgba(var(--color-text-rgb), 0.50);
  --color-overlay-40: rgba(var(--color-text-rgb), 0.40);
  --color-overlay-30: rgba(var(--color-text-rgb), 0.30);
  --color-overlay-20: rgba(var(--color-text-rgb), 0.20);
  --color-overlay-15: rgba(var(--color-text-rgb), 0.15);        
  --color-overlay-10: rgba(var(--color-text-rgb), 0.10);
  --color-overlay-08: rgba(var(--color-text-rgb), 0.08);
  --color-overlay-05: rgba(var(--color-text-rgb), 0.05);
  --color-overlay-03: rgba(var(--color-text-rgb), 0.03);

  --page-width: {{ settings.page_width }}px;
  --page-width-wide: calc(var(--page-width) + 80px);
  --side-padding-mobile: 15px;

  --border-radius: {{ settings.border_radius }}px;
  --border-radius-button: {{ settings.border_radius }}px;
  --border-width: {{ settings.border_width }}px;
  --border-light: var(--color-overlay-20);
  --border-medium: var(--color-overlay-30);
  --border-dark: var(--color-overlay-80);

  --field-and-button-height: 5.5rem;
  --field-and-button-height-micro: calc(var(--field-and-button-height) * 0.6);
  --field-and-button-height-small: calc(var(--field-and-button-height) * 0.75);
  --field-and-button-height-large: calc(var(--field-and-button-height) * 1.2);

  --mobile-gap-shrink: 0.7;
}

body {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-size: 1.5rem;
  letter-spacing: 0.07rem;
  line-height: 1.9;
  margin: 0;
  min-height: 90%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-body);
}

@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.password-modal__content-heading {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}

@media only screen and (min-width: 750px) {
  .password-modal__content-heading {
    font-size: 1.8rem;
  }
}

/* Password Section */

.full-height {
  height: 100%;
}

.password {
  background-color: var(--color-background);
  height: 100%;
}

.password-link {
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  white-space: nowrap;
}

.password-link svg {
  width: 2rem;
  height: 2.5rem;
  margin-right: 0.5rem;
}

.password-modal {
  background-color: var(--color-background);
}

.password-modal__content {
  padding: 4.5rem 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.password-modal__content-heading {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}

@media only screen and (min-width: 750px) {
  .password-modal__content-heading {
    font-size: 1.8rem;
  }
}

.password-modal .password-form {
  max-width: 50rem;
}

.password-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
  width: 100%;
}

.password-field.field {
  display: block;
  flex: 1 20rem;
}

.password-field .form__message {
  margin-top: 1.5rem;
}

.password-button {
  margin-top: 3rem;
  width: 100%;
}

@media only screen and (max-width: 749px) {
  .password-field--error + .password-button {
    margin-top: 1.5rem;
  }
}

@media only screen and (min-width: 750px) {
  .password-button {
    margin-top: 0;
    margin-left: 2rem;
    width: auto;
    align-self: start;
  }
}

.password-logo {
  width: 100%;
  margin-bottom: 1.5rem;
}

@media only screen and (min-width: 750px) {
  .password-logo {
    margin-bottom: 0;
  }
}

.password-heading {
  margin-top: 5rem;
  font-weight: 400;
}

.password-main {
  flex-grow: 1;
}

.password-main > section:only-child {
  height: 100%;
}

.password-main > section:only-child > .newsletter-section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 0;
}

.password-main > section:only-child .newsletter__wrapper {
  width: 100%;
}

.password-main
  > section:only-child
  > :not(.newsletter--narrow)
  > .newsletter__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.password__footer-text a {
  padding: 0;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
}

.password__footer-login {
  margin-top: 1.2rem;
  padding-bottom: 4rem;
}

.password-modal .icon-close {
  color: var(--color-foreground);
}

.password__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  background-color: var(--color-background);
  color: var(--color-foreground);
}

hr {
  margin: 0 !important;
}

.list-social:not(:empty) + .password__footer-caption {
  margin-top: 3rem;
}

.password__footer-caption a {
  padding: 0;
  color: var(--color-outline-button-labels);
}

.modal__toggle,
.modal__close-button {
  list-style-type: none;
}

details[open] .modal__toggle,
.modal__close-button {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  padding: 0.8rem;
  color: var(--color-foreground);
  background-color: transparent;
}

.no-js .modal__close-button {
  display: none;
}

.no-js .modal__toggle {
  z-index: 2;
}

.modal__toggle::-webkit-details-marker {
  display: none;
}

details.modal .modal__toggle-close {
  display: none;
}

details[open].modal .modal__toggle-close {
  background: var(--color-background-1);
  cursor: pointer;
  display: flex;
  padding: 0.8rem;
  z-index: 1;
}

details[open].modal .modal__toggle-close svg,
.modal__close-button svg {
  height: 1.7rem;
  width: 1.7rem;
}

details[open].modal .modal__toggle-close:hover {
  opacity: 0.75;
}

.js details[open].modal .modal__toggle-close {
  display: none;
}

details.modal .modal__toggle-open {
  display: flex;
}

.no-js details[open].modal .modal__toggle-open {
  display: none;
}

.modal__content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-background);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.password-header {
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: var(--color-background);
  color: var(--color-foreground);
  max-width: 120rem;
  margin: 0 auto;
}

@media only screen and (min-width: 750px) {
  .password-header {
    gap: 3rem;
    padding: 2rem 5rem 2.5rem;
    flex-direction: row;
  }
}

.password-header details-modal {
  flex-shrink: 0;
}

@media only screen and (max-width: 749px) {
  .password-content {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.shopify-name {
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}

.icon-shopify {
  width: 7rem;
  height: 2rem;
  vertical-align: top;
  color: var(--color-text);
}
