.side-bar {
width: 3.37rem;
padding: 1rem 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: #f8f8f8;
border-radius: 1.69rem;
position: fixed;
top: 50%;
right: 0;
z-index: 999;
}
.side-bar a {
display: flex;
width: 2.5rem;
height: 2.5rem;
background: #fff;
border: .06rem solid #e9e9e9;
justify-content: center;
align-items: center;
color: #2b90d9;
transition: all .3s;
border-radius: 50%;
margin-bottom: .25rem;
position: relative;
}
.side-bar a i{
display: flex;
}
.side-bar a .email svg{
fill: #F15E10;
}
.side-bar a .whatsapp svg{
fill: #5bba67;
}
.side-bar a .youtube svg{
fill: #D20000;
}
.side-bar a .facebook svg{
fill: #3A82D3;
}
.side-bar a span {
display: inline-block;
height: 2.5rem;
line-height: 2.5rem;
text-align: center;
white-space: nowrap;
padding: 0 1rem;
background-color: #fff;
border-radius: 1.25rem;
color: #333;
transition: all .8s;
position: absolute;
top: 0;
left: 0;
transform: translateX(100%);
opacity: 0;
box-shadow: 0 .13rem .75rem 0 rgba(0, 0, 0, .15);
}
.side-bar a:hover {
background-color: #5bba67;
border: .06rem solid #5bba67;
color: #fff;
}
.side-bar a:hover span{
transform: translateX(-100%);
opacity: 1;
}
.side-bar a:hover svg{
fill: #fff;
}