/* src/styles/reset.css */

/* *{outline: 1px solid;} */
html {
  box-sizing: border-box;
  height: 100%;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
dt,
dl,
dd {
  margin: 0;
}

/* src/styles/base.css */
.no-js:not(html) {
  display: none !important;
}
html.no-js .no-js:not(html) {
  display: block !important;
}
.no-js-inline {
  display: none !important;
}
html.no-js .no-js-inline {
  display: inline-block !important;
}
html.no-js .no-js-hidden {
  display: none !important;
}
hr {
  border: none;
  height: 0.1rem;
  background-color: var(--hh-color-light);
  display: block;
  margin: 5rem 0;
}
@media screen and (min-width: 750px) {
  hr {
    margin: 7rem 0;
  }
}
details > * {
  box-sizing: border-box;
}
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
a {
  font: var(--hh-font-body);
  color: var(--hh-color-text);
  text-decoration: none;
}

/* src/styles/typography.css */
.font-body-semibold {
  font-family: var(--hh-font-body-semibold) !important;
}
.font-body-bold {
  font-family: var(--hh-font-body-bold) !important;
}

html {
  font-size: 16px;
}
body {
  color: var(--hh-color-text);
}
body,
.body,
.p {
  font: var(--hh-body-font);
}
.h1 {
  font: var(--hh-h1-font);
}
.h2 {
  font: var(--hh-h2-font);
}
.h3 {
  font: var(--hh-h3-font);
}
.h4 {
  font: var(--hh-h4-font);
}
.h4-small {
  font: var(--hh-h4-font-small);
  letter-spacing: -0.033125rem;
}
@media screen and (min-width: 990px) {
  .h4-small {
    letter-spacing: -0.05rem;
  }
}
.h4-medium {
  font: var(--hh-h4-font-medium);
}
.h4-large {
  font: var(--hh-h4-font-large);
}
.h5 {
  font: var(--hh-h5-font);
}
.h6 {
  font: var(--hh-h6-font);
}
.utility {
  font: var(--hh-body-utility);
}
.p-small {
  font: var(--hh-body-small);
}
.p-xsmall {
  font: var(--hh-body-xsmall);
}
.p-medium {
  font: var(--hh-body-medium);
}
.p-large {
  font: var(--hh-body-large);
}
.caption {
  font: var(--hh-body-caption);
}
.a1 {
  font: var(--hh-menu-font);
}
.p-contents {
  font: var(--hh-contents-font);
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.light {
  opacity: 0.7;
}
.break {
  word-break: break-word;
}
.underline {
  text-decoration: underline;
}
.semi-bold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}

/* src/styles/grid.css */
.g {
  display: grid;
}
.g2 {
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: var(--hh-grid-gutter, 2rem);
}
.gf {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--hh-grid-gutter));
}
.gf--auto-flow {
  display: grid;
  grid-auto-flow: column;
}
.gfi {
  padding-left: var(--hh-grid-gutter);
  padding-bottom: var(--hh-grid-gutter);
  width: calc(25% - var(--hh-grid-gutter) * 3 / 4);
  max-width: 50%;
  flex-grow: 1;
  flex-shrink: 0;
  box-sizing: border-box;
}
.gf--gapless .gfi {
  padding-left: 0;
  padding-bottom: 0;
}
.gfi--center {
  align-self: center;
}
.gfi--full-width {
  flex: 0 0 100%;
  max-width: 100%;
}
.gf1 .gfi {
  max-width: 100%;
  width: 100%;
}
.gf2 .gfi {
  width: calc(50% - var(--hh-grid-gutter) / 2);
  max-width: 50%;
}
.gf3 .gfi {
  width: calc(33.33% - var(--hh-grid-gutter) * 2 / 3);
  max-width: 33.33%;
}
.gf4 .gfi {
  width: calc(25% - var(--hh-grid-gutter) * 3 / 4);
  max-width: 25%;
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .gf1--md .gfi {
    max-width: 100%;
    width: 100%;
  }
  .gf2--md .gfi {
    max-width: 50%;
  }
  .gf3--md .gfi {
    width: calc(33.33% - var(--hh-grid-gutter) * 2 / 3);
    max-width: 33.33%;
  }
  .gf4--md .gfi {
    width: calc(25% - var(--hh-grid-gutter) * 3 / 4);
    max-width: 25%;
  }
}
@media screen and (min-width: 990px) {
  .gf1--lg .gfi {
    max-width: 100%;
    width: 100%;
  }
  .gf2--lg .gfi {
    max-width: 50%;
  }
  .gf3--lg .gfi {
    width: calc(33.33% - var(--hh-grid-gutter) * 2 / 3);
    max-width: 33.33%;
  }
  .gf4--lg .gfi {
    width: calc(25% - var(--hh-grid-gutter) * 3 / 4);
    max-width: 25%;
  }
  .gf5--lg .gfi {
    width: calc(20% - var(--hh-grid-gutter) * 4 / 5);
    max-width: 20%;
  }
}

/* src/styles/accessibility.css */
li:focus-visible, li:focus {
  outline:unset;
  outline-offset:unset;
}
*:focus-visible {
  outline: 0.2rem solid var(--hh-color-focus);
  outline-offset: var(--hh-focus-outline-offset);
}
*:focus {
  outline: 0.2rem solid var(--hh-color-focus);
  outline-offset: var(--hh-focus-outline-offset);
}
*:focus:not(:focus-visible) {
  outline: 0;
  border: 0;
  box-shadow: none;
}
.focus-inset:focus-visible {
  outline: 0.2rem solid var(--hh-color-focus);
  outline-offset: var(--hh-focus-outline-offset);
}
.focus-inset:focus {
  outline: 0.2rem solid var(--hh-color-focus);
  outline-offset: var(--hh-focus-outline-offset);
}
.swatch-priorities {
display:none;
}
.focus-inset:focus:not(:focus-visible) {
  outline: 0;
  border: 0;
  box-shadow: none;
}
.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

/* src/styles/container.css */
.fluid {
  grid-column-gap: 0.5rem;
  display: grid;
  grid-column: full;
  grid-template-columns:
    [gut-full-start] 0.5rem [gut-main-start] repeat(12, 1fr)
    [gut-main-end] 0.5rem [gut-full-end];
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 1.5rem;
}

.container--narrow,
.container--small {
  padding: 0 1rem;
}

@media screen and (min-width: 414px) {
  .container--narrow,
  .container--small {
    padding: 0;
    max-width: 23.875rem;
  }
}

@media screen and (min-width: 750px) {
  .container {
    padding: 0 5rem;
  }
  .container--narrow,
  .container--small {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .container--narrow,
  .container--small {
    max-width: 45rem;
  }
}
@media screen and (min-width: 1024px) {
  .container--narrow {
    max-width: 59rem;
  }

  .container--small {
    max-width: 49rem;
  }
}
@media screen and (min-width: 1192px) {
  .fluid {
    grid-column-gap: 1rem;
    grid-template-columns:
      [gut-full-start] 1.5rem [gut-main-start] repeat(12, 1fr)
      [gut-main-end] 1.5rem [gut-full-end];
  }

  .container--narrow {
    max-width: 69.5rem;
  }

  .container--small {
    max-width: 46rem;
  }
}

.grid-container {
  display: grid;
  grid-template-columns:
    [full-start] minmax(1rem, 1fr) [main-start] minmax(0, 18rem)
    [main-end] minmax(1rem, 1fr) [full-end];
}

@media only screen and (min-width: 375px) and (max-width: 413px) {
  .grid-container {
    grid-template-columns:
      [full-start] minmax(1rem, 1fr) [main-start] minmax(0, 21.4375rem)
      [main-end] minmax(1rem, 1fr) [full-end];
  }
}

@media only screen and (min-width: 414px) and (max-width: 767px) {
  .grid-container {
    grid-template-columns:
      [full-start] minmax(1rem, 1fr) [main-start] minmax(0, 23.875rem)
      [main-end] minmax(1rem, 1fr) [full-end];
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .grid-container {
    grid-template-columns:
      [full-start] minmax(1.5rem, 1fr) [main-start] minmax(0, 45rem)
      [main-end] minmax(1.5rem, 1fr) [full-end];
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1191px) {
  .grid-container {
    grid-template-columns:
      [full-start] minmax(2.5rem, 1fr) [main-start] minmax(0, 59rem)
      [main-end] minmax(2.5rem, 1fr) [full-end];
  }
}

@media only screen and (min-width: 1192px) {
  .grid-container {
    grid-template-columns:
      [full-start] minmax(2.5rem, 1fr) [main-start] minmax(0, 69.5rem)
      [main-end] minmax(2.5rem, 1fr) [full-end];
  }
}

@media only screen and (min-width: 1192px) and (max-width: 1919px) {
  .grid-container {
    grid-template-columns:
      [full-start] minmax(2.5rem, 1fr) [main-start] minmax(0, 69.5rem)
      [main-end] minmax(2.5rem, 1fr) [full-end];
  }
}

@media only print {
  .grid-container {
    grid-template-columns:
      [full-start] minmax(2.5rem, 1fr) [main-start] minmax(0, 69.5rem)
      [main-end] minmax(2.5rem, 1fr) [full-end];
  }
}

/* src/styles/spacing.css */
.no-margin {
  margin: 0;
}

.page-margin,
.shopify-challenge__container {
  margin: var(--hh-section-vertical-margin) auto;
}
.spaced-section {
  margin-top: var(--hh-section-vertical-margin);
}
@media screen and (max-width: 749px) {
  .spaced-section--md {
    margin-top: 0;
  }
}
.spaced-section:last-child {
  margin-bottom: var(--hh-section-vertical-margin);
}
.spaced-section--full-width + .spaced-section--full-width {
  margin-top: 0;
}
.spaced-section--full-width:first-child {
  margin-top: 0;
}
.spaced-section--full-width:last-child {
  margin-bottom: 0;
}
.mha,
.mxa {
  margin-left: auto;
}
.mha,
.mxa {
  margin-right: auto;
}
.mva,
.mxa {
  margin-top: auto;
}
.mva,
.mxa {
  margin-bottom: auto;
}
.mt0,
.mv0,
.mx0 {
  margin-top: 0;
}
.mb0,
.mv0,
.mx0 {
  margin-bottom: 0;
}
.pt0,
.pv0,
.px0 {
  padding-top: 0;
}
.pb0,
.pv0,
.px0 {
  padding-bottom: 0;
}
.pr0,
.ph0,
.px0 {
  padding-right: 0;
}
.pl0,
.ph0,
.px0 {
  padding-left: 0;
}
.mt025,
.mv025,
.mx025 {
  margin-top: 0.25em;
}
.mb025,
.mv025,
.mx025 {
  margin-bottom: 0.25em;
}
.ml025,
.mh025,
.mx025 {
  margin-left: 0.25em;
}
.mr025,
.mh025,
.mx025 {
  margin-right: 0.25em;
}
.pt025,
.pv025,
.px025 {
  padding-top: 0.25em;
}
.pb025,
.pv025,
.px025 {
  padding-bottom: 0.25em;
}
.pl025,
.ph025,
.px025 {
  padding-left: 0.25em;
}
.pr025,
.ph025,
.px025 {
  padding-right: 0.25em;
}
.mt05,
.mv05,
.mx05 {
  margin-top: 0.5em;
}
.mb05,
.mv05,
.mx05 {
  margin-bottom: 0.5em;
}
.ml05,
.mh05,
.mx05 {
  margin-left: 0.5em;
}
.mr05,
.mh05,
.mx05 {
  margin-right: 0.5em;
}
.pt05,
.pv05,
.px05 {
  padding-top: 0.5em;
}
.pb05,
.pv05,
.px05 {
  padding-bottom: 0.5em;
}
.pl05,
.ph05,
.px05 {
  padding-left: 0.5em;
}
.pr05,
.ph05,
.px05 {
  padding-right: 0.5em;
}
.mt075,
.mv075,
.mx075 {
  margin-top: 0.75em;
}
.mb075,
.mv075,
.mx075 {
  margin-bottom: 0.75em;
}
.ml075,
.mh075,
.mx075 {
  margin-left: 0.75em;
}
.mr075,
.mh075,
.mx075 {
  margin-right: 0.75em;
}
.pt075,
.pv075,
.px075 {
  padding-top: 0.75em;
}
.pb075,
.pv075,
.px075 {
  padding-bottom: 0.75em;
}
.pl075,
.ph075,
.px075 {
  padding-left: 0.75em;
}
.pr075,
.ph075,
.px075 {
  padding-right: 0.75em;
}
.mt1,
.mv1,
.mx1 {
  margin-top: 1em;
}
.mb1,
.mv1,
.mx1 {
  margin-bottom: 1em;
}
.ml1,
.mh1,
.mx1 {
  margin-left: 1em;
}
.mr1,
.mh1,
.mx1 {
  margin-right: 1em;
}
.mln1 {
  margin-left: -1em;
}
.mrn1 {
  margin-right: -1em;
}
.mhn1 {
  margin-left: -1em;
  margin-right: -1em;
}
.pt1,
.pv1,
.px1 {
  padding-top: 1em;
}
.pb1,
.pv1,
.px1 {
  padding-bottom: 1em;
}
.pl1,
.ph1,
.px1 {
  padding-left: 1em;
}
.pr1,
.ph1,
.px1 {
  padding-right: 1em;
}
.mt125 {
  margin-top: 1.25rem;
}
.mt15,
.mv15,
.mx15 {
  margin-top: 1.5em;
}
.mb15,
.mv15,
.mx15 {
  margin-bottom: 1.5em;
}
.ml15,
.mh15,
.mx15 {
  margin-left: 1.5em;
}
.mr15,
.mh15,
.mx15 {
  margin-right: 1.5em;
}
.mln15 {
  margin-left: -1.5em;
}
.mrn15 {
  margin-right: -1.5em;
}
.mhn15 {
  margin-left: -1.5em;
  margin-right: -15em;
}
.pt15,
.pv15,
.px15 {
  padding-top: 1.5em;
}
.pb15,
.pv15,
.px15 {
  padding-bottom: 1.5em;
}
.pl15,
.ph15,
.px15 {
  padding-left: 1.5em;
}
.pr15,
.ph15,
.px15 {
  padding-right: 1.5em;
}
.mt2,
.mv2,
.mx2 {
  margin-top: 2rem;
}
.mb2,
.mv2,
.mx2 {
  margin-bottom: 2em;
}
.ml2,
.mh2,
.mx2 {
  margin-left: 2em;
}
.mr2,
.mh2,
.mx2 {
  margin-right: 2em;
}
.mln2 {
  margin-left: -2em;
}
.mrn2 {
  margin-right: -2em;
}
.mhn2 {
  margin-left: -2em;
  margin-right: -2em;
}
.pt2,
.pv2,
.px2 {
  padding-top: 2em;
}
.pb2,
.pv2,
.px2 {
  padding-bottom: 2em;
}
.pl2,
.ph2,
.px2 {
  padding-left: 2em;
}
.pr2,
.ph2,
.px2 {
  padding-right: 2em;
}

/* src/styles/forms.css */
input::-webkit-search-decoration {
  -webkit-appearance: none;
}
::placeholder {
  color: var(--hh-color-night);
  opacity: 1;
}
::-ms-input-placeholder {
  color: var(--hh-color-night);
}

input[type='text'],
input[type='email'] {
  font: var(--hh-input-font);
  color: var(--hh-color-night);
}

/* src/styles/media.css */
.media {
  display: block;
  background-color: var(--hh-color-light);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.media--transparent {
  background-color: transparent;
}
.media > img:not(.zoom) {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.media--square {
  padding-bottom: 100%;
  border-radius: 0.5rem;
}
.media--portrait {
  padding-bottom: 125%;
}
.media--landscape {
  padding-bottom: 66.6%;
}
.media--cropped {
  padding-bottom: 56%;
}
.media--16-9 {
  padding-bottom: 56.25%;
}
.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}
.media.media--hover-effect > img + img {
  opacity: 0;
}

/* src/styles/color.css */
.c-primary {
  color: var(--hh-color-brand-primary);
}
.c-secondary {
  color: var(--hh-color-brand-secondary);
}
.c-tertiary {
  color: var(--hh-color-brand-tertiary);
}
.c-night {
  color: var(--hh-color-night);
}
.c-day {
  color: var(--hh-color-day);
}
.c-subdued {
  color: var(--hh-color-subdued);
}
.c-neutral {
  color: var(--hh-color-neutral);
}
.c-success {
  color: var(--hh-color-success);
}
.c-danger {
  color: var(--hh-color-danger);
}
.c-light {
  color: var(--hh-color-light);
}
.c-foreground {
  color: var(--hh-color-foreground);
}
.c-text {
  color: var(--hh-color-text);
}
.c-buffy-orange {
  color: var(--hh-color-buffy-orange);
}
.c-inherit {
  color: inherit;
}
.c-green {
  color: var(--hh-color-green);
}
.bg-primary {
  background-color: var(--hh-color-brand-primary);
}
.bg-secondary {
  background-color: var(--hh-color-brand-secondary);
}
.bg-tertiary {
  background-color: var(--hh-color-brand-tertiary);
}
.bg-day {
  background-color: var(--hh-color-day);
}
.bg-night {
  background-color: var(--hh-color-night);
}
.bg-subdued {
  background-color: var(--hh-color-subdued);
}
.bg-neutral {
  background-color: var(--hh-color-neutral);
}
.bg-light {
  background-color: var(--hh-color-light);
}
.bg-background {
  background-color: var(--hh-color-background);
}
.bg-buffy-orange {
  background-color: var(--hh-color-buffy-orange);
}

/* src/styles/flex.css */
.flex {
  display: flex;
}
.fw {
  flex-wrap: wrap;
}
.ais {
  align-items: flex-start;
}
.aie {
  align-items: flex-end;
}
.aic {
  align-items: center;
}
.aib {
  align-items: baseline;
}
.jcs {
  justify-content: flex-start;
}
.jce {
  justify-content: flex-end;
}
.jcc {
  justify-content: center;
}
.jcb {
  justify-content: space-between;
}
.jca {
  justify-content: space-around;
}
.fa {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
}
.ff {
  flex-shrink: 0;
}
.fdc {
  flex-direction: column;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}

/* src/styles/rte.css */
.rte:after {
  clear: both;
  content: '';
  display: block;
}
.rte > p:first-child {
  margin-top: 0;
}
.rte > p:last-child {
  margin-bottom: 0;
}
.rte table {
  table-layout: fixed;
}
@media screen and (min-width: 750px) {
  .rte table td {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
.rte img {
  height: auto;
  max-width: 100%;
}
.rte li {
  list-style: inherit;
}
.rte li:last-child {
  margin-bottom: 0;
}
.rte a {
  color: var(--hh-color-text);
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--hh-duration-short) ease;
}
.rte a:hover {
  color: var(--hh-color-text);
  text-decoration-thickness: 0.2rem;
}
.rte blockquote {
  display: inline-flex;
}
.rte blockquote > * {
  margin: -0.5rem 0 -0.5rem 0;
}

/* src/styles/helpers.css */
.block {
  display: block;
}
.hidden {
  display: none !important;
}
.flex-lg,
.block-lg {
  display: none;
}
.block-lg {
  display: none;
}
@media screen and (max-width: 749px) {
  .hidden--sm {
    display: none;
  }
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .hidden--md {
    display: none !important;
  }
}
@media screen and (min-width: 990px) {
  .hidden--lg {
    display: none !important;
  }
  .block-lg {
    display: block;
  }
  .flex-lg {
    display: flex;
  }
  .block-lg {
    display: block;
  }
}
.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;
}
.visibility-hidden {
  visibility: hidden;
}
.overflow-hidden,
.overflow-hidden--sm,
.overflow-hidden--md {
  overflow: hidden;
}
@media screen and (min-width: 750px) {
  .overflow-hidden--sm {
    overflow: auto;
  }
}
@media screen and (min-width: 990px) {
  .overflow-hidden--md {
    overflow: auto;
  }
}
.relative {
  position: relative;
}
.border-top {
  border-top: 1px solid currentColor;
}
.border-bottom {
  border-bottom: 1px solid currentColor;
}
.pointer {
  cursor: pointer;
}
.zoom-in {
  cursor: zoom-in;
}
.pointer-none {
  pointer-events: none;
}
.rounded {
  border-radius: var(--hh-rounded, 0.5rem);
}
@media (prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
  }
}
.cover {
  object-fit: cover;
}
.contain {
  object-fit: contain;
}
.badge {
  font: var(--hh-body-font);
  border: 1px solid transparent;
  border-radius: 4rem;
  display: inline-block;
  padding: 0.6rem 1.3rem;
  text-align: center;
  background-color: var(--hh-color-background);
  color: var(--hh-color-foreground);
  word-break: break-word;
}
.img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
}

/* src/styles/misc.css */
.rte-width {
  max-width: 82rem;
  margin: 0 auto 2rem;
}
.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}
.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.4rem;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem var(--hh-color-light);
}
table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid var(--hh-color-light);
}
.circle-divider::after {
  content: '\2022';
  margin: 0 1.3rem 0 1.5rem;
}
.circle-divider:last-of-type::after {
  display: none;
}
.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}
.placeholder {
  background-color: var(--hh-color-light);
  color: var(--hh-color-neutral);
  fill: var(--hh-color-neutral);
}
details > * {
  box-sizing: border-box;
}
.underlined-link {
  color: var(--hh-color-text);
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness ease 100ms;
}
.underlined-link:hover {
  color: var(--hh-color-text);
  text-decoration-thickness: 0.2rem;
}
.animate-arrow .icon-arrow path {
  transform: translateX(-0.25rem);
  transition: transform var(--hh-duration-short) ease;
}
.animate-arrow:hover .icon-arrow path {
  transform: translateX(-0.05rem);
}
.disclosure-has-popup {
  position: relative;
}
.disclosure-has-popup[open] > summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  cursor: default;
  content: ' ';
  background: transparent;
}
.disclosure-has-popup > summary::before {
  display: none;
}
.disclosure-has-popup[open] > summary + * {
  z-index: 100;
}

.hide-scrollbars {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
  scrollbar-height: none; /* Firefox */
}

.hide-scrollbars::-webkit-scrollbar {
  width: 0; /* Remove scrollbar space */
  height: 0; /* Remove scrollbar space */
  background: transparent; /* Optional: just make scrollbar invisible */
  display: none;
}

/* src/styles/width.css */
.w1 {
  width: 100%;
  max-width: 100%;
}
.w1--important {
  width: 100% !important;
  max-width: 100% !important;
}
@media screen and (max-width: 766px) {
  .w1--sm {
    width: 100%;
    max-width: 100%;
  }
}
.w12 {
  width: 50%;
}

/* src/styles/three-d.css */
[data-shopify-xr] > svg {
  width: 1.4rem;
  margin-right: 1rem;
}
[data-shopify-xr][data-shopify-xr-hidden] {
  visibility: hidden;
}
model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* src/styles/shopify.css */
.shopify-payment-button__button {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  border-radius: 0;
  min-height: 4.6rem;
  overflow: hidden;
}
.shopify-payment-button__button--unbranded {
  padding: 0;
  background-color: var(--hh-color-text);
  box-shadow: 0 0 0 0.1rem var(--hh-color-text);
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.07rem;
}
.shopify-payment-button__button--unbranded:hover,
.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background-color: var(--hh-color-text);
  box-shadow: 0 0 0 0.2rem var(--hh-color-text);
}
.shopify-payment-button__button--unbranded:focus {
  outline: 0.3rem solid var(--hh-color-foreground);
  outline-offset: 0.3rem;
}
.shopify-payment-button__button--unbranded:focus-visible {
  outline: 0.3rem solid var(--hh-color-foreground);
  outline-offset: 0.3rem;
}
.shopify-payment-button__button--unbranded:focus:not(:focus-visible) {
  outline: 0;
}
.shopify-payment-button__more-options {
  color: var(--hh-color-foreground);
  margin: 1.6rem 0 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* Hero Block */
.mediablock__hero {
  height: 22.5rem;
  position: relative;
}

@media screen and (min-width: 375px) {
  .mediablock__hero {
    height: 33rem;
  }
}

@media screen and (min-width: 768px) {
  .mediablock__hero {
    height: 38rem;
  }
}

@media screen and (min-width: 990px) {
  .mediablock__hero {
    height: 43rem;
  }
}
hh-header .bg-background {
  background-color: var(--hh-color-sand);
}

body.template--blog .header-wrapper--border-bottom, body.template--article .header-wrapper--border-bottom {
  border-bottom: 1px solid #D6D6D6;
}
body.template--blog .login-button, body.template--article .login-button {
  background: #101E2B;
}
body.template--blog .header__menu-item span, body.template--article .header__menu-item span {
  color: #888888;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
}
/* badge */
.shared__badge {
  align-items: center;
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  display: flex;
  height: 1.5rem;
  justify-content: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.shared__badge.shared__discount-badge {
  box-sizing: content-box;
  pointer-events: none;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 1;
}
@media (max-width: 1023px) {
  .shared__badge.shared__discount-badge {
    left: 1rem;
    top: 1rem;
  }
}
.shared__badge span {
  color: var(--hh-color-day);
  font: var(--hh-badge-font);
  letter-spacing: 0.1rem;
  margin-bottom: -0.22501rem;
  margin: 0 !important;
  padding-top: 0.22501rem;
  padding: 0 !important;
  text-transform: uppercase;
}

.shared__badge.shared__badge--purple {
  background-color: var(--hh-color-purple);
}

/* src/styles/components.css */
hh-button {
  --hh-background: var(--hh-button-background, #333);
  --hh-background-secondary: var(--hh-color-light-eucalyptus);
  --hh-background-hover: transparent;
  --hh-border-bottom-offset: -2px;
  --hh-color: var(--hh-button-foreground, #fff);
  --hh-color-secondary: var(--hh-color-night);
  text-align: center;
  font-size: 1.38rem;
  width: 100%;
}
hh-button:not([theme="icon"]) {
  border: 1px solid var(--hh-button-background, #333);
  /* --hh-padding: 1.25rem 2.5rem; */
  --hh-padding: 1.125rem 2.5rem;
  max-width: 400px;
}
hh-button:not([theme="icon"]):hover {
  --hh-background: transparent;
  --hh-color: var(--hh-button-background, #333);
}
hh-button[theme='tertiary'] {
  --hh-padding: 0;
}
hh-button a {
  width: 100%;
}
hh-button:not([theme="icon"]) .icon-arrow svg {
  width: 25px;
}

@media screen and (max-width: 767px) {
  hh-button:not([theme="icon"]) {
    font-size: 0.88rem;
    --hh-padding: 1rem 2rem;
  }
  hh-button:not([theme="icon"]) .icon-arrow svg {
    width: 25px;
  }
}
hh-details-modal {
  --hh-top: 100%;
  --hh-modal-height: 100%;
  --hh-modal-background: var(--hh-color-sand);
}
hh-details-modal[ctx='filters'] {
  --hh-position: fixed;
  --hh-top: 0;
  --hh-z-index-inner: 100;
}
hh-quantity-input {
  --hh-button-width: 1.4rem;
  --hh-height: 4rem;
  --hh-padding: 0.5rem 1.5rem;
  --hh-color: var(--hh-color-subdued);
}
hh-input-wrapper {
  --hh-font: var(--hh-body-font);
}
hh-input-wrapper[label='stacked'] {
  --hh-label-font: var(--hh-body-font);
  --hh-label-margin: 0 0 0.25em;
}
hh-modal {
  --hh-padding: 0 1rem;
  --hh-background: var(--hh-color-day);
  --hh-border-color: var(--hh-color-neutral);
}
hh-modal[ctx='product'] {
  --hh-slotted-width: calc(100% - 2rem);
  --hh-slotted-margin: 1rem 0 0;
}
hh-modal[data-type='modal'] {
  --hh-background: transparent;
}
hh-slider {
  /* --hh-button-background: var(--hh-color-day); */
  --hh-button-background: var(--hh-button-background, #333);
  --hh-button-border: 1px solid var(--hh-color-neutral);
  --hh-cell-width: calc(100% - 3rem);
}
hh-slider:not([open='true']) {
  --hh-container-flex: flex;
  --hh-container-flex-wrap: wrap;
}
hh-badge-wrapper {
  --hh-font: var(--hh-body-utility);
  --hh-color-primary: var(--hh-color-day);
  --hh-color-secondary: var(--hh-color-night);
  --hh-background-primary: var(--hh-color-brand-primary);
  --hh-background-secondary: var(--hh-color-brand-secondary);
}
hh-tabs:not(:defined),
hh-modal:not(:defined),
hh-button:not(:defined),
hh-button-wrapper:not(:defined),
hh-details-modal:not(:defined),
hh-quantity-input:not(:defined),
hh-input-wrapper:not(:defined),
hh-custom-select:not(:defined),
hh-sticky-header:not(:defined),
hh-badge-wrapper:not(:defined) {
  opacity: 0;
}
hh-sticky-header:not(:defined) {
  opacity:1;
}
hh-details-modal:not(:defined) {
  visibility: hidden;
  opacity: 0;
  max-width: 0;
  max-height: 0;
}

.card-information__wrapper .image-with-text__cta {
  display: inline-flex;
  font-size: 1rem;
  margin-top: 2.5rem;
  padding: 0 !important;
  max-width: 290px;
}
.card-information__wrapper .image-with-text__cta .icon-arrow {
  display: flex;
  align-items: center;
}
.card-information__wrapper .image-with-text__cta svg {
  width: 20px;
}
@media screen and (max-width: 767px) {
  hh-slideshow {
    --hh-button-width: 32px;
    --hh-button-height: 32px;
  }
  .ytp-bottomline .ytp-wrapper {
    flex-wrap:wrap;
  }
}
img[src^="https://trkn.us/pixel"] {
  display: none !important;
}
/* src/styles/index.css */
/*# sourceMappingURL=-base.min.css.map */
.ytp-bottomline {
  margin-top: 10px;
}
.product-card .ytp-bottomline {
    margin-top: 0;
}
.ytp-bottomline .ytp-star-rating {display: flex;}
.ytp-bottomline .ytp-wrapper {
  display: flex;
  align-items: center;
}
/* adding back in old CTA checkout button style */

a[href="/checkout"] {
background:#dc582a;
  border-radius:4px;
}