.socialItem{
    flex:1; 
    display:flex;
    align-items:center;
    justify-content:center;
    height:5vh;
    cursor:pointer;
    transition:all .2s ease;
    position:relative;
}
.socialItem img{
    height:2.2vh;
    min-height: 1.5vw;
}
.socialItem:hover{
    background:rgba(255,255,255,0.15);
}

.socialItem:active{
    background:rgba(0,255,200,0.2);
}
.socialItem:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:20%;
    height:60%;
    width:0.15vh;
    background:rgba(255,255,255,0.15);
}