@import url('https://fonts.googleapis.com/css2?family=BBH+Bartle&display=swap');

header
{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 0px;
    z-index: 100;
    top: 0;
    left: 0;
    transition: background-color, border-bottom 0.5s;
}
.headerDiv
{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

#headerLogo,
#headerLogo a img,
#headerAuth
{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#headerLogo a img
{
    height: 38px;
}

#headerShopInfos
{
    text-align: right;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}
#headerShopInfos p
{
    font-size: 12px;
}
#headerShopInfos p:nth-child(1)
{
    font-family: 'BBH Bartle', sans-serif;
    font-size: 0.8em;
}

@media (max-width: 850px) {
    header
    {
        height: 60px;
        padding: 0px;
    }
    #headerLogo
    {
        /* width: 34px !important; */
        height: 40px;
        overflow: hidden;
        display: flex;
        justify-content: start;
        align-items: center;
    }
    #headerLogo a, 
    #headerLogo a img
    {
        height: 100%;
    }
    #headerAuth #headerLoginBtn
    {
        padding: 0px 8px;
    }
    #headerLoggedUser::before
    {
        display: none;
    }
}