


#topBarInner
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#topBarEls
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 1.2rem;
    position: relative;
}

#topBarEls > div
{
    position: relative;
    padding-right: 3.2rem;
}

#topBarEls > div:after
{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 1.8rem;
    width: 1.8rem;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center center;

    transform: translate(0,-50%);
}

#topBarPhone:after
{
    background-image: url("images/telefon.png");
}

#topBarEmail:after
{
    background-image: url("images/mail.png");
}

#headerWrapper
{
    position: relative;
    background: var(--gradientBackground);
}

#header
{
    justify-content: center;
}

/**** main menu ***/
#top-menu a,
#top-menu a:visited
{
    color: var(--secondaryclr);
    font-weight: 900;
}

#mainMenu .menuLinkLevel1
{
    color: var(--lightColor);
}
.notouch #mainMenu li.level1:hover .menuLinkLevel1
{
    color: var(--bs-dark);
    background-color: transparent;
}
#mainMenu .hasSubItems > span
{
    rotate: 180deg;
    transform: translateY(0.2rem);
    transition: all 0.8s ease-in-out;
}
.notouch #mainMenu li.level1:hover .hasSubItems > span
{
    rotate: 0deg;
    transform: translateY(0);
}
li.level1 > .withSub
{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

#mainMenu .menuLinkLevel1.hasSubItems
{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    height: 100%;
}
