/** Shopify CDN: Minification failed

Line 157:0 Unexpected "}"

**/
.header-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 230px;
  box-sizing: border-box;
  padding: 2rem 1.5rem;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  z-index: 9999;
  font-family: monospace;
  font-size: 1.3rem;
  overflow-y: auto;
  background-color: #ffffff;
  color: #000000;
}

.header-sidebar__logo img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.header-sidebar__logo a,
.header-sidebar__cart a,
.header-sidebar__back a {
  text-decoration: none;
  color: #000000;
}

.header-sidebar__clock,
.header-sidebar__cart {
  font-size: 1.3rem;
}

body {
  padding-left: 220px;
}
.header-mini {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-family: monospace;
  background-color: #ffffff;
  color: #000000;
  z-index: 9999;
}

.header-mini {
  min-height: unset !important;
  padding: 12px 25px !important;
}

.header-mini__logo img {
  width: 160px !important;
  max-width: 160px !important;
  height: auto !important;
}

.header-mini__clock {
  font-size: 15px !important;
}

.header-mini__cart {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.header-mini__cart a {
  color: inherit !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px;
}

.header-mini__cart a:visited,
.header-mini__cart a:hover,
.header-mini__cart a:active {
  color: inherit !important;
  text-decoration: none !important;
}


/* product pages get no left padding since the fixed sidebar is gone */
body.template-product {
  padding-left: 0;
}
@media screen and (max-width: 749px) {

  .header-sidebar {
    position: relative;
    top: 0;
    left: 0;
    bottom: auto;

    width: 100%;
    height: auto;

    padding: 12px 25px !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    gap: 0.25rem;

    box-sizing: border-box;

    background-color: #ffffff;

    z-index: 9999;
  }

  .header-sidebar__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .header-sidebar__logo img {
    width: 160px !important;
    max-width: 160px !important;
    height: auto;
    margin: 0 auto;
  }

  .header-sidebar__clock {
    font-size: 15px;
  }

  body {
    padding-left: 0;
  }
}
}