.ingite-collection:after{
    display:table;
    content:"";
    clear:both;
}

.ingite-collection-item{
    display:flex;
}

.ingite-collection-item-avatar{
    overflow:hidden;
    display:block;
    background:#CCCCCC;
    border:3px solid white;
    color:black;
    margin:.5rem .5rem .5rem .25rem;
    padding:0;
    border-radius:50%;
    width:calc(64px - 1rem);
    min-width:calc(64px - 1rem);
    height:calc(64px - 1rem);
    line-height:calc(64px - 1rem - 6px - 2px);
    font-size:40px;
    text-align:center;
    &.shadowed{
        -webkit-box-shadow:0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%) !important;
        box-shadow:0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%) !important;
        background:transparent;
        &:first-child{
            margin-left:0.5rem;
        }
    }
}

@media screen and (max-width:600px){
    .ingite-collection-item-avatar{
        min-width:calc(56px - 1rem);
        width:calc(56px - 1rem);
        height:calc(56px - 1rem);
        line-height:calc(56px - 1rem);
        font-size:35px;
    }
}

img.ingite-collection-item-avatar{
    font-size:0;
}

.ingite-collection-item-content{
    display:flex;
    flex-direction:column;
    & p, & > div{
        margin:0;
        padding:0 .5rem;
        flex:1 1 0;
        display:flex;
        align-items:center;
    }
    & > p:first-child:not(:only-child){
        align-items:end;
    }
    & > p:last-child:not(:only-child){
        align-items:start;
    }
}

.ingite-collection-item-actions{
    padding:0 .5rem;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    align-items:center;
}

.ingite-collection-item-action{
    margin:auto;
    transition:all .3s;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    border-radius:5px;
    border:2px solid #CCCCCC;
    color:#CCCCCC;
    & i.mdi{
        font-size:30px;
        color:inherit;
        flex:1 1 0;
        text-align:center;
    }
}

.ingite-collection-item-action:hover{
    border-color:white;
    color:white;
    background-color:rgba(0,0,0,.1);
}