header {
    background-repeat: no-repeat;
    background-image: url("../images.halfmann/Halfmann-Schrauben.png");
    background-size: contain;
    height: 190px; /*220px;*/
    margin-top: 20px;
    width: 100%;
}

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

header .header-top {
    margin-bottom: -27px;
    margin-top: -20px;
    color: var(--clr-secondary-font);
    padding:5px 0 5px 200px;
    font-size: 12px;
    position: fixed;
    /*left: 115px;
    width: calc(100% - 115px);*/
    width: 100%;
    height: auto;
    min-height: 35px;
    background: linear-gradient(120deg, var(--clr-primary-background) 0);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-left: 10%;
}

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: 0.5%;
    top: 175px;
    /*margin-top: 11.1%;*/
    position: absolute;
    padding-left: 10%;
    width: 100%;
    background: linear-gradient(120deg, #292929 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 #383838; /*var(--clr-secondary-header);*/
    /*text-transform: uppercase;*/
    /*line-height: 6px;*/
}

header nav div a {
    color: var(--clr-secondary-font);
    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: #A02030;/*var(--clr-secondary-header);*/
	display: block;
	position: absolute;
	bottom: -4px;
	width: 100%;
}

header nav div.active {
    font-weight: 700;
    background-color: #383838;
}

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

