/** Shopify CDN: Minification failed

Line 19:21 Expected identifier but found whitespace
Line 19:23 Expected identifier but found "%"
Line 19:72 Unexpected "var("
Line 19:94 Expected identifier but found "%"
Line 19:119 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.Header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 31px 40px;
    background-color: {%  if section.settings.show_backgroun_color  %}  var(--color-primary) {%  else %} transparent  {% endif %} ;
    color: var(--color-text-primary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 400;
}

.header-icon{
    width: 35px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.Cart-button::before {
  content: attr(data-cart-number);
  font-size: 12px;
  position: absolute;
  top: 45%;
  left: 57%;
  transform: translate(-50%, -50%);
  color: var(--color-bg);
  transition: all 0.3s ease-in-out;
  width: calc(100% - 10px);
  text-align: center;
}

/* .header-icon > img, .header-icon > svg{
    filter: invert(1); */
    /* mix-blend-mode: lighten; */
/* } */


@media screen and (max-width: 768px) {
    .Header{
        padding: 25px 35px;
    }
    .header-icon{
        width: 30px;
    }
    
}