/* SCSS Document */
:root {
  --c7-primary-color-focus: rgba(0, 0, 0, 0.1);
  --c7-pill-bg: #eee; }

body {
  image-rendering: -webkit-optimize-contrast; }

header.storefront-header {
  max-width: var(--c7-page-width);
  margin: 54px auto 40px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media screen and (min-width: 73em) {
    header.storefront-header {
      margin-top: 20px; } }
  @media screen and (min-width: 48em) and (max-width: 72em) {
    header.storefront-header {
      flex-wrap: wrap;
      margin-top: 20px; } }
  header.storefront-header .logo {
    display: inline-flex;
    align-items: center;
    max-width: 200px;
    margin-right: 20px; }
    header.storefront-header .logo img {
      max-height: 100px; }
      @media screen and (min-width: 51em) {
        header.storefront-header .logo img {
          max-height: 120px;
          max-width: 240px; } }
  header.storefront-header .skip-link {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -250%); }
    header.storefront-header .skip-link:focus {
      transform: translate(-50%, 0); }
  header.storefront-header .nav-toggle-open,
  header.storefront-header .nav-toggle-close {
    background: none;
    border: none;
    align-items: center;
    display: none;
    cursor: pointer; }
    @media screen and (max-width: 47.9375em) {
      header.storefront-header .nav-toggle-open,
      header.storefront-header .nav-toggle-close {
        display: flex; } }
    header.storefront-header .nav-toggle-open svg,
    header.storefront-header .nav-toggle-close svg {
      stroke-width: 1.3;
      stroke: var(--c7-alt-text-color); }
  header.storefront-header .nav-toggle-open svg {
    width: 26px;
    height: 21px; }
  header.storefront-header .nav-toggle-close {
    position: absolute;
    top: 64px;
    right: 20px; }
    header.storefront-header .nav-toggle-close svg {
      width: 32px;
      height: 28px; }
  header.storefront-header .c7-tools {
    background: var(--c7-bg);
    border-bottom: 1px solid var(--c7-border-color);
    padding: 0px 16px;
    width: 100%;
    height: 54px;
    z-index: 99;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0; }
    @media screen and (min-width: 48em) {
      header.storefront-header .c7-tools {
        position: relative;
        top: 0;
        background: none;
        border-bottom: none;
        height: auto;
        padding-right: 0;
        min-width: 110px;
        width: auto; } }
  header.storefront-header .c7-user-nav__account > a:hover, header.storefront-header .c7-user-nav__account > a:focus, header.storefront-header .c7-user-nav__account > a:active, header.storefront-header .c7-user-nav__cart > button:hover, header.storefront-header .c7-user-nav__cart > button:focus, header.storefront-header .c7-user-nav__cart > button:active {
    text-decoration: none;
    color: var(--c7-body-text-color); }
  header.storefront-header .c7-user-nav__cart__title svg {
    stroke: var(--c7-body-text-color); }

header.storefront-header .navigation-wrapper {
  transition: transform 200ms ease-out, visibility 200ms ease-out;
  background: var(--c7-bg);
  position: fixed;
  z-index: 1;
  flex: auto; }
  @media screen and (min-width: 48em) and (max-width: 72em) {
    header.storefront-header .navigation-wrapper {
      flex: 100%;
      order: 3; } }
  @media screen and (max-width: 47.9375em) {
    header.storefront-header .navigation-wrapper {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      transform: translateX(100%);
      height: 100%;
      width: 100%;
      overflow: hidden;
      z-index: 10;
      visibility: hidden; } }
  @media screen and (min-width: 48em) {
    header.storefront-header .navigation-wrapper {
      background: none;
      border-left: 0;
      position: relative; } }
  @media screen and (max-width: 47.9375em) {
    .show-mobile-nav header.storefront-header .navigation-wrapper {
      transform: translateX(0);
      overflow-y: auto;
      visibility: visible;
      padding: 64px 64px 16px 16px; } }

header.storefront-header nav ul {
  line-height: 1;
  list-style: none;
  margin: 0 10px 0 0;
  padding: 0; }
  @media screen and (min-width: 48em) {
    header.storefront-header nav ul {
      display: flex;
      justify-content: flex-end; } }
  @media screen and (min-width: 48em) and (max-width: 72em) {
    header.storefront-header nav ul {
      justify-content: flex-start;
      margin-top: 30px; } }

header.storefront-header nav li {
  padding: 0px;
  margin: 0 15px 0 0;
  position: relative; }

header.storefront-header nav a {
  display: block;
  padding: 15px 0px;
  color: var(--c7-body-text-color);
  text-decoration: none; }
  @media screen and (max-width: 47.9375em) {
    header.storefront-header nav a {
      display: inline-block;
      padding: 10px 0; } }
  header.storefront-header nav a:hover, header.storefront-header nav a:focus, header.storefront-header nav a:active {
    text-decoration: none; }

@media screen and (min-width: 48em) {
  .grid-row {
    display: flex;
    justify-content: space-between; } }

.grid-column {
  margin-bottom: 2rem; }
  @media screen and (min-width: 48em) {
    .grid-column--2 {
      width: 48%; } }

.content-wrapper,
.page-content {
  padding: 20px;
  width: 100%;
  max-width: var(--c7-page-width);
  margin: 0 auto; }

hr {
  border: none;
  border-top: 1px solid var(--c7-border-color);
  margin: 60px 0; }

a {
  color: var(--c7-link-color);
  text-decoration: underline; }
  a:hover, a:focus, a:active {
    text-decoration: none; }

.c7-message .c7-link, .c7-callout .c7-link {
  text-decoration: underline; }

.c7-account-block .c7-link, .c7-back .c7-link {
  text-decoration: none; }

.c7-back::before {
  content: url('data:image/svg+xml; utf8, <svg aria-hidden="true" focusable="false" role="presentation" width="16" height="16" viewBox="0 0 24 24" stroke="%23232324" stroke-width="2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 19L3 12M3 12L10 5M3 12L21 12" stroke-linecap="round" stroke-linejoin="round"/></svg>'); }

.c7-form input:active:not([disabled]),
.c7-form input:focus:not([disabled]),
.c7-form select:active:not([disabled]),
.c7-form select:focus:not([disabled]),
.c7-form textarea:active:not([disabled]),
.c7-form textarea:focus:not([disabled]),
.c7-order-item input:active:not([disabled]),
.c7-order-item input:focus:not([disabled]),
.c7-order-item select:active:not([disabled]),
.c7-order-item select:focus:not([disabled]),
.c7-order-item textarea:active:not([disabled]),
.c7-order-item textarea:focus:not([disabled]) {
  border-color: var(--c7-field-focus-border-color); }

footer.storefront-footer {
  padding-top: 20px; }
  footer.storefront-footer .content-wrapper {
    border-top: 1px solid var(--c7-border-color);
    padding: 20px 20px 40px;
    text-align: center; }
    @media screen and (min-width: 40em) {
      footer.storefront-footer .content-wrapper {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: left;
        align-items: center; } }
  @media screen and (min-width: 40em) {
    footer.storefront-footer .footer__nav {
      width: 50%; } }
  footer.storefront-footer .footer__nav ul {
    list-style: none;
    margin: 0 0 15px;
    padding: 0;
    text-align: center; }
    @media screen and (min-width: 40em) {
      footer.storefront-footer .footer__nav ul {
        margin-bottom: 0;
        text-align: left; } }
    footer.storefront-footer .footer__nav ul li {
      margin: 5px 0;
      padding: 0 10px 0 0; }
      @media screen and (min-width: 40em) {
        footer.storefront-footer .footer__nav ul li {
          display: inline-block; } }
      footer.storefront-footer .footer__nav ul li a {
        color: var(--c7-body-text-color);
        padding: 5px 0;
        display: inline-block;
        text-decoration: none; }
        footer.storefront-footer .footer__nav ul li a:hover, footer.storefront-footer .footer__nav ul li a:focus, footer.storefront-footer .footer__nav ul li a:active {
          text-decoration: underline; }
        @media screen and (min-width: 40em) {
          footer.storefront-footer .footer__nav ul li a {
            padding: 0; } }
  @media screen and (min-width: 40em) {
    footer.storefront-footer .footer__phone {
      text-align: right; } }
  footer.storefront-footer .footer__meta {
    margin-top: 20px;
    width: 100%; }
    footer.storefront-footer .footer__meta .footer__legal {
      margin: 0;
      padding: 0;
      color: var(--c7-alt-text-color);
      font-size: var(--c7-font-size-sub); }

.newsletter + footer.storefront-footer .content-wrapper {
  border-top: 0;
  padding-top: 0; }

.newsletter {
  background: var(--c7-bg-alt);
  padding: 60px 0;
  margin-top: 40px; }
