
.social-bar{
    position: fixed;
    right: 0;
    top:35%;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000000;
}
.icon{
    color:#fff;
    text-decoration: none;
    padding: .7rem;
    display: flex;
    transition: all .5s;
}
.icon-whatsapp{
    background: #25d366;
    
}
.icon-phone{
    background: #ede209;
}
.icon-facebook{
    background: #339DC5;
}
.icon-play-circled2{
    background: #e83028;
    
}
.icon-instagram{
    background: #3F60A5;
}
.icon:first-child {
    border-radius: 1rem 0 0 0;
}
.icon:last-child {
    border-radius:  0 0 0 1rem;
}
.icon:hover{
    padding-right: 3rem;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 0 .5rem rgba(0,0,0,.42);
}