/* ===========================
   FLANGO HEADER
   =========================== */

.flango-header{
    width:100%;
    background:#fff;
    border-bottom:1px solid #ddd;
    overflow:hidden;
}

.flango-header-inner{
    display:flex;
    align-items:center;
    width:100%;
    height:66px;
    padding:0 8px;
    box-sizing:border-box;
}

/* ---------- Logo ---------- */

.flango-logo{
    flex:0 0 auto;
    margin-right:auto;
    display:flex;
    align-items:center;
    text-decoration:none;
}

.flango-logo img{
    width:98px;
    max-width:98px;
    height:auto;
    display:block;
}

/* ---------- Sprache ---------- */

.flango-lang{
    flex:0 0 auto;
    margin-right:10px;
}

.flango-lang select{
    width:44px;
    height:24px;
    border:1px solid #ccc;
    border-radius:6px;
    background:#fff;
    font-size:9px;
    font-weight:bold;
}

/* ---------- Benutzer ---------- */

.flango-user-link{
    flex:0 1 auto;
    display:flex;
    align-items:center;
    gap:5px;
    max-width:190px;

    color:#1565c0;
    font-size:18px;
    font-weight:bold;
    text-decoration:none;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

    margin-right:10px;
}

/* ---------- Logout ---------- */

.flango-logout{
    flex:0 0 auto;
    color:#666;
    font-size:22px;
    text-decoration:none;
}

/* ---------- Handy ---------- */

@media (max-width:430px){

    .flango-header-inner{
        height:62px;
        padding:0 6px;
    }

    .flango-logo img{
        width:94px;
        max-width:94px;
    }

    .flango-lang{
        margin-right:8px;
    }

    .flango-lang select{
        width:40px;
        height:22px;
        font-size:8px;
    }

    .flango-user-link{
        max-width:165px;
        font-size:17px;
    }

    .flango-logout{
        font-size:20px;
    }
}