/** Shopify CDN: Minification failed

Line 46:12 Expected identifier but found whitespace
Line 46:14 Unexpected "{"
Line 46:23 Expected ":"

**/
/* Base styles */
.site-header ul {
  position: relative;
  height: 100%;
  padding: 0 20px;
  margin: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}

#shopify-section-header {
  position: fixed;
  top: 10px;
  height: 70px;
  width: 100%;
  z-index: 1;
}

.site-header__logo-image {
  width: 310px;
  height: auto;
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.site-header__logo-link {
  z-index: 100;
  position: relative;
  display: inline-block;
}

.site-header__logo img {
  max-width: {{ section.settings.logo_width | escape | default: '180px' }};
}

ul .left-group {
  display: flex;
  width: 50%;
}

ul .left-group li {
  margin-right: 50px;
}

ul .shop_button,
ul .about_button,
ul .ig_button,
ul .cart_button {
  padding: 10px 15px;
  flex-grow: 1;
  text-align: center;
}

ul .cart_button {
  margin-left: auto;
}

#cart-count {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

@media (max-width: 1000px) {


  body.template-index ul .left-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }

  body.template-index ul .left-group li {
    margin: 0;
  }

  ul {
    position: absolute;
    top: 45px;
    padding: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 330px;
  }

  ul h2 {
    font-size: 10px;
  }

  ul .left-group {
    display: flex;
    justify-content: space-between;
    width: 75%;
    padding: 0;
  }

  ul .left-group li {
    margin: 0;
  }

  .site-header__logo-image {
    width: 310px;
  }

  ul .shop_button,
  ul .about_button,
  ul .ig_button,
  ul .cart_button {
    flex-grow: 1;
    text-align: center;
    padding: 5px;
  }

  ul .cart_button {
    margin-left: 0;
  }
}