body::before {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  left: 25px;
  width: 700px; /* adjust to the width of your logo */
  height: 180px; /* adjust to the height of your logo */
  background-image: url("../images.water/logo.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

header {
    background-repeat: no-repeat;
    /* background-image: url("../images.water/WMshop.jpg"); */
    background-image: url("../images.water/header.jpg"); 
    background-size: cover;
    height: 220px;
}

header .header-outer {
    width: 100%;
    position: absolute;
}

header .header-top {
    margin-bottom: -27px;
    color: var(--clr-secondary-header);
    padding:5px 0 5px 200px;
    font-size: 12px;
    position: absolute;
    left: 115px;
    width: calc(100% - 115px);
    height: auto;
    min-height: 35px;
    background: linear-gradient(120deg, transparent 100px, #007FC8 0);
}

header .header-top .user {
    display: flex;
    display: -moz-flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
}

header .header-bottom {
    width: 100%;
    margin-top: -36px;
}

img {
    max-height: 100%;
    max-width: 100%;
}

header nav div.menu_mobile {
    float: right;
    margin-right: 10%;
}

.hidden_if_not_mobile {
    display: none;
}
.visible_if_not_mobile {
    display: inline;
}

header nav {
    padding: 10px 0;
    top: 200px;
    position: absolute;
    padding-left: 350px;
    width: 100%;
    background: linear-gradient(120deg, transparent 100px, #007FC8 0);
}

header nav div#nav_items {
    flex-wrap: wrap;
    justify-content: left;
}

header nav div.nav_items_close {
    display: flex;
    display: -moz-flex;
    display: -webkit-flex;
}

header nav div.nav_items_open {
    display: flex;
    display: -moz-flex;
    display: -webkit-flex;
}

header nav div {
    padding: 5px 10px 5px 0;
    margin-right: 10px;
    border-right: 1px solid var(--clr-secondary-header);
    text-transform: uppercase;
    line-height: 6px;
}

header nav div a {
    color: var(--clr-secondary-header);
    text-decoration: none;
    position: relative;
}

header nav div a:hover:after {
	content: '';
	height: 2px;
	background-color: var(--clr-secondary-header);
	display: block;
	position: absolute;
	bottom: -4px;
	width: 100%;
}

.menu_aktiv a:after {
	content: '';
	height: 2px;
	background-color: var(--clr-secondary-header);
	display: block;
	position: absolute;
	bottom: -4px;
	width: 100%;
}

header nav div.active {
    font-weight: 700;
}

header nav div:last-child {
    border-right: none;
}

