.share-bar{
position:fixed;
top:220px;
left:20px;
display:flex;
flex-direction:column;
gap:14px;
z-index:999;
}

.share-bar a{
width:48px;
height:48px;
border-radius:50%;
background:#efefef;
display:flex;
align-items:center;
justify-content:center;
color:#333;
font-size:20px;
text-decoration:none;
transition:all .25s ease;
box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

.share-bar a:hover{
background:#e1e1e1;
transform:scale(1.1);
}

/* приховати на мобільних */

@media (max-width:900px){
.share-bar{
display:none;
}
}