/* HEADER Query
--------------------*/
@media screen {
    #header {
      z-index: 3;
      display: block;
      margin: 0;
      width: 100%;
      user-select: none;
      position: absolute;
      top: 0;
    }

    .nonmood #header {
    }

    #header .inside {
      text-align: center;
      position: relative;
    }

    .headerSpace {
      z-index: -1;
    }

    .fixedHeader #header {
      position: fixed;
      top:0;
      left: 0;
      right:0;
    }

    .fixedHeader .headerSpace {
      position: relative !important;
    }

    #header .inside_art {
      display: flex;
      align-items: center;
      padding-top: 0.5rem;
      padding-bottom: 0.25rem;
    }

    .logo {
      margin-bottom: 0.5rem;
      filter: brightness(0) invert(1) ;
    }

    .nonmood #header .logo {      
      filter: none;
    }

    .logo .inside_ce {
      width: auto !important;
    }

    .logo img {
      object-fit: contain;
      position: relative;
      z-index: 1;
      width: 180px;
    }

    #header .container {
      padding-top: 0.25rem;
    }

  }

  /* 480px */
  @media only screen and (min-width: 480px) {
  }

  /* min-width:768px */
  @media only screen and (min-width: 768px) {

    #header .inside_art {
      align-items: flex-start;
      padding-bottom: 0.5rem;
      justify-content: space-between;
    }

    .logo img {
      width: 220px;
    }

  }

  /* min-width:992px */
  @media only screen and (min-width: 992px) {
    #header .container {
      padding-top: 2rem;
      padding-bottom: 0.5rem;
    }

  }

  /* min-width:1100 */
  @media only screen and (min-width: 1100px) {
    .logo img {
      width: 300px;
    }
  }

  /* min-width:1300 */
  @media only screen and (min-width: 1300px) {
    #header .container {
      padding-top: 3rem;
    }

  }

/* Media ends
--------------------*/



/* Header Navigation Query
--------------------*/
@media screen {
  #headerNav {
    margin-left: auto;
    margin-right: 0.75rem;
    align-self: center;
    background-color: #FCFAF6;
    padding: 0.5rem;
    border-radius: 2rem;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  }

  #headerNav:before {
    display: none;
  }

  #headerNav ul {
    display: inline;
  }

  #headerNav li:before {
    content: "";
    display: none;
  }

  #headerNav li {
    display: inline-block;
    position: relative;
    font-size: 1.25rem;
  }

  #headerNav li a:hover {
    color: var(--wildenau-lightgreen);
    transition: var(--transition);
  }

  /* mini_cart */
  #headerNav li.mini_cart a:before {
    content: "";
    text-indent: 0;
    text-align: right;
    float: left;
    width: 30px;
    height: 30px; /* line height */
    background-image: url(../images/icons/cart.svg);
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1);
  }

  #headerNav li.mini_cart .count {
    display: inline-block;
    position: absolute;
    top: -0.25rem;
    left: -2.5rem;
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1.2rem;
    background-color: var(--wildenau-darkgrey);
    color: #fff;
    font-size: 10px;
    border-radius: 1rem;
    text-align: center;
  }

  /* search */
  #headerNav li.suche a:before {
    content: "";
    text-indent: 0;
    text-align: right;
    float: left;
    width: 30px;
    height: 30px; /* line height */
    background-image: url(../images/icons/search.svg);
    background-repeat: no-repeat;
    background-position: center;
  }


  #headerNav li.mini_cart,
  #headerNav li.suche,
  #headerNav li.shop {
    display: none;
  }

  /* menu */  
  #headerNav li.menu,
  #headerNav li:last-child {
    display: inline-block;
    padding: 0;
  }

  #headerNav li:last-child a {
    display: inline-block;
    text-indent: -1000000px;
  }


  #headerNav li:last-child a:before {
    content: "";
    text-indent: 0;
    text-align: right;
    float: right;
    width: 30px;
    height: 30px; /* line height */
    background-image: url(../images/icons/menu.svg);
    background-repeat: no-repeat;
    background-position: center;
  }

}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
  #headerNav {
    display: block;
    margin-bottom: 0;
    margin-right: 0;
    padding: 1rem 1rem;
  }

  #headerNav li {
    padding: 0 0.5rem;
  }

  #headerNav li.mini_cart,
  #headerNav li.suche,
  #headerNav li.shop {
    display: inline-block;
  }

  #headerNav li.menu,
  #headerNav li:last-child {
    padding-left: 0.5rem;
    padding-right: 0;
  }

  #headerNav li:last-child a {
    display: inline-block;
    position: relative;
    text-indent: 0;
    max-width: unset;
  }

  #headerNav li:last-child a:after {
    display: block;
    width: 1rem;
    float: right;
  }

  #headerNav li:last-child a:before {
    margin-left: 0.5rem;
  }

}
/* min-width:1100 */
@media only screen and (min-width:1100px) {
  #headerNav {
    padding: 1rem 3rem;
  }

  #headerNav li {
    padding: 0 1.5rem;
  }

  #headerNav li:first-child {
    padding-left: 0;
  }  

  #headerNav li.menu,
  #headerNav li:last-child {
    padding-left: 1.5rem;
  }
}
/* Header Side Navigation  ends
--------------------*/
