/** Shopify CDN: Minification failed

Line 339:10 Unexpected "{"
Line 339:19 Expected ":"
Line 340:14 Expected identifier but found whitespace
Line 340:16 Unexpected "{"
Line 340:25 Expected ":"
Line 340:76 Expected ":"
Line 341:17 Expected identifier but found whitespace
Line 341:19 Unexpected "{"
Line 341:28 Expected ":"
Line 341:82 Expected ":"
... and 10 more hidden warnings

**/
/* Base Shopify Theme Styles */

/* Variables */
:root {
  --font-heading-scale: 1.2;
  --font-body-scale: 1.0;
  --color-base-text: 255, 255, 255;
  --color-shadow: 0, 0, 0;
  --color-base-background-1: 10, 10, 10;
  --color-base-background-2: 26, 26, 26;
  --color-base-solid-button-labels: 0, 0, 0;
  --color-base-outline-button-labels: 132, 204, 22;
  --color-base-accent-1: 132, 204, 22;
  --color-base-accent-2: 101, 163, 13;
  --payment-terms-background-color: rgb(var(--color-base-background-1));
}

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

html {
  box-sizing: border-box;
  font-size: calc(var(--font-body-scale) * 62.5%);
  height: 100%;
}

body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100%;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  background-color: rgb(var(--color-base-background-1));
  color: rgba(var(--color-base-text), 0.75);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: rgb(var(--color-base-text));
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
}

h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * 3rem);
}

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 4rem);
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 2rem);
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
}

h3,
.h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem);
}

@media only screen and (min-width: 750px) {
  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }
}

h4,
.h4 {
  font-size: calc(var(--font-heading-scale) * 1.5rem);
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 1.3rem);
}

h6,
.h6 {
  font-size: calc(var(--font-heading-scale) * 1.1rem);
}

p {
  color: rgba(var(--color-base-text), 0.75);
}

a {
  color: rgb(var(--color-base-accent-1));
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--duration-short) ease;
}

a:hover {
  color: rgb(var(--color-base-accent-2));
  text-decoration-thickness: 0.2rem;
}

.link {
  color: rgb(var(--color-base-accent-1));
  cursor: pointer;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--duration-short) ease;
}

.link:hover {
  color: rgb(var(--color-base-accent-2));
  text-decoration-thickness: 0.2rem;
}

.link--text {
  color: rgba(var(--color-base-text), 0.75);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--duration-short) ease;
}

.link--text:hover {
  color: rgb(var(--color-base-text));
  text-decoration-thickness: 0.2rem;
}

/* Buttons */
.button {
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 1.5rem 3rem;
  text-decoration: none;
  background-color: rgb(var(--color-base-accent-1));
  color: rgb(var(--color-base-solid-button-labels));
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  font-weight: 500;
  text-transform: uppercase;
  border-radius: var(--buttons-radius);
  transition: box-shadow var(--duration-short) ease;
}

.button:hover {
  box-shadow: 0 0 0 0.1rem rgb(var(--color-base-accent-1)),
    0 0 0 0.2rem rgb(var(--color-base-background-1)),
    0 0 0 0.3rem rgb(var(--color-base-accent-1));
}

.button--secondary {
  background-color: transparent;
  color: rgb(var(--color-base-outline-button-labels));
  box-shadow: 0 0 0 0.1rem rgb(var(--color-base-outline-button-labels));
}

.button--secondary:hover {
  box-shadow: 0 0 0 0.2rem rgb(var(--color-base-outline-button-labels));
}

/* Forms */
.field {
  position: relative;
  width: 100%;
}

.field__input {
  background-color: rgb(var(--color-base-background-2));
  background-color: rgba(var(--color-base-text), 0.04);
  border-radius: var(--inputs-radius);
  border: 0;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-base-text), 0.2);
  color: rgb(var(--color-base-text));
  font-size: 1.6rem;
  padding: 1.5rem;
  width: 100%;
  transition: box-shadow var(--duration-short) ease;
}

.field__input::placeholder {
  color: rgba(var(--color-base-text), 0.6);
}

.field__input:focus-visible {
  box-shadow: 0 0 0 0.1rem rgb(var(--color-base-accent-1));
  outline: 0;
}

.field__input:-webkit-autofill,
.field__input:-webkit-autofill:hover,
.field__input:-webkit-autofill:focus,
.field__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-base-background-2)) inset;
  -webkit-text-fill-color: rgb(var(--color-base-text));
}

/* Page Width */
.page-width {
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: calc(var(--page-width) + var(--spacing-desktop) * 2);
}

@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 5rem;
  }
}

@media screen and (min-width: 1200px) {
  .page-width {
    max-width: calc(1200px + 10rem);
  }
}

/* Skip to content */
.skip-to-content-link:focus {
  z-index: 9999;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(var(--color-base-accent-1));
  color: rgb(var(--color-base-text));
  padding: 1.5rem 3rem;
  border-radius: 0.5rem;
  text-decoration: none;
  top: 2rem;
}

/* Utility classes */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  word-wrap: normal !important;
}

.focus-inset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-base-text), 0.5);
  outline-offset: -0.2rem;
}

.focus-none {
  outline: 0;
  box-shadow: none;
}

/* Media queries */
.small-hide {
  display: none;
}

@media screen and (min-width: 750px) {
  .small-hide {
    display: block;
  }
  
  .medium-hide {
    display: none;
  }
}

@media screen and (min-width: 990px) {
  .medium-hide {
    display: block;
  }
  
  .large-up-hide {
    display: none;
  }
}

/* Sections */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

/* Component Modifiers */
.motion-reduce {
  transition: none !important;
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .motion-reduce {
    transition: none !important;
    animation: none !important;
  }
}