#header-headline {
    font-size: var(--fntsize21);
}

#headerlogo{
    display:none;
    width: 32px;
    height: 39px;
}

#headermenu {
    display: flex;
    align-items: center;
    gap: 26px;
}

#ahelp {
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    width: 31px;
    height: 31px;
}

#wrapperuser{
    position: relative;
}

#btnuser{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 3px solid var(--primcolor);
    border-radius: 100%;
    width: 44px;
    height: 44px;
    box-sizing: content-box;
    padding: 0;
    cursor: pointer;
}


#btnuser span{
    color: var(--acccolor);
    font-weight: bold;
}

#wrapperDropDownHeader{
    position: absolute;
    right: 0;
    top: 70px;
    background-color: var(--primcolor);
    padding: 10px;
    border: none;
    border-radius: 20px 0 20px 20px;
    z-index: 1;
}

.dropDownLink {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 140px;
    height:46px;
    color: var(--fntcolor);
    padding: 8px 16px;
    box-sizing: border-box;
}

.dropDownLink:hover {
    background-color: var(--acccolorHover);
    transition: all var(--transtime) ease-in-out;
}



/*------------------ set responsive design ------------------*/
@media (max-width: 1024px){
    #header-headline{
        display: none;
    }
    #headerlogo{
        display: block;
    }
}