/* ===========================
   FLANGO USER PROFILE CARD
   =========================== */

.profile-card-left{
    flex:0 0 125px;
    width:125px;
    min-width:125px;
    max-width:125px;
    box-sizing:border-box;
}

.profile-card{
    width:100%;
    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    padding:8px;
    margin-bottom:8px;
    text-align:center;
    box-shadow:0 2px 6px rgba(0,0,0,.08);
    box-sizing:border-box;
}

.profile-card-avatar{
    width:100px;
    height:100px;
    object-fit:cover;
    border:4px solid #ff4fa3;
    border-radius:12px;
    padding:3px;
    background:#fff;
    cursor:pointer;
    box-sizing:border-box;
}

.profile-card-name{
    margin:8px 0;
    font-size:13px;
    font-weight:bold;
    color:#1565c0;
    line-height:1.25;
    word-break:break-word;
}

.profile-card-meta{
    width:100%;
    background:#eef7ff;
    border:1px solid #d5e8ff;
    border-radius:10px;
    padding:7px;
    font-size:10px;
    line-height:1.45;
    color:#333;
    text-align:left;
    word-break:break-word;
    box-sizing:border-box;
}

.profile-card-online{
    color:#16a34a;
    font-weight:bold;
}

.profile-card-offline{
    color:#888;
    font-weight:bold;
}


/* Werbung */

.profile-card-ad{
    width:100%;
    min-height:60px;
    margin-top:8px;
    background:#fff;
    border:1px dashed #ffb8dc;
    border-radius:10px;
    padding:6px;
    color:#777;
    font-size:9px;
    text-align:center;
    box-sizing:border-box;
}

.profile-card-ad img{
    width:100%;
    height:auto;
    border-radius:8px;
    display:block;
}

/* Lightbox */

#profile-avatar-lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    z-index:999999;
    justify-content:center;
    align-items:center;
    padding:20px;
    box-sizing:border-box;
}

#profile-avatar-lightbox img{
    max-width:95%;
    max-height:95%;
    background:#fff;
    padding:4px;
    border-radius:10px;
}

/* Desktop */

@media(min-width:701px){
    .profile-card-left{
        flex:0 0 180px;
        width:180px;
        min-width:180px;
        max-width:180px;
    }

    .profile-card{
        padding:10px;
        margin-bottom:10px;
    }

    .profile-card-avatar{
        width:150px;
        height:150px;
    }

    .profile-card-name{
        font-size:18px;
    }

    .profile-card-meta{
        font-size:13px;
        padding:9px;
    }

   

    .profile-card-ad{
        min-height:80px;
        font-size:11px;
        padding:8px;
    }

}

/* Kleine Smartphones passend zu 84px Layout */

@media(max-width:430px){
    .profile-card-left{
        flex:0 0 84px;
        width:84px;
        min-width:84px;
        max-width:84px;
    }

    .profile-card{
        padding:5px;
        border-radius:9px;
    }

    .profile-card-avatar{
        width:68px;
        height:68px;
        border-width:3px;
        border-radius:9px;
        padding:2px;
    }

    .profile-card-name{
        font-size:10px;
        margin:6px 0;
    }

    .profile-card-meta{
        font-size:8px;
        padding:5px;
        line-height:1.35;
        border-radius:8px;
    }

    

    .profile-card-ad{
        font-size:8px;
        padding:5px;
        border-radius:8px;
    }
}

/* ===========================
   FLANGO SONNE
   =========================== */

.profile-sonne-box{
    text-align:center;
    margin:12px 0;
}

.profile-sonne-click{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:80px;
    height:80px;
    text-decoration:none;
    cursor:pointer;
}

.flango-sun-wrapper{
    position:relative;
    width:72px;
    height:72px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.flango-sun-glow{
    position:absolute;
    left:50%;
    top:50%;
    width:18px;
    height:18px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:#ffd400;
    opacity:0;
    box-shadow:0 0 10px #ffd400;
    transition:all .4s ease;
    z-index:1;
}

.flango-sun-img{
    position:relative;
    z-index:2;
    width:72px;
    height:72px;
    display:block;
    margin:auto;
    transition:transform .25s ease, filter .25s ease;
}

.social-sonne:hover .flango-sun-img{
    transform:scale(1.08);
}

.sonne-clicked{
    cursor:default;
}

.sonne-clicked .flango-sun-img{
    opacity:.95;
}

.profile-sonne-count{
    margin-top:6px;
    font-size:13px;
    font-weight:bold;
    color:#444;
    line-height:1.2;
}