.pss-socials{
    position:fixed;
    right:5px;
    top:50%;
    transform:translateY(-50%);
    z-index:99999;
    display:flex;
    flex-direction:column;    
	pointer-events:none;
}

.pss-link{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:30px;
    opacity:0.85;
    transition:
        transform .25s ease,
        background .25s ease;
    text-decoration:none;
    pointer-events:auto;
}

.pss-link:hover{
    transform:translateX(-4px);  
}

.pss-link img{
    width:32px;
    height:32px;

    display:block;
}

@media (max-width: 768px){

    .pss-socials{

        right:auto;
        left:50%;
        bottom:14px;
        top:auto;

        transform:translateX(-50%);

        flex-direction:row;

        gap:10px;
    }

}