/* Inicia social bar y common TOP */

.social-bar{
    position: fixed;
    right: 0;
    top: 50%;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
  }
  
  .s-icon{
    color: white;
    text-decoration: none !important;
    padding: .7rem;
    display: flex;
    transition: all .5s;
    font-size: 25px;
  }
  
  .lni-facebook-original{
    background: #2E406E;
  }
  
  .lni-instagram-original{
    background: #DD2A7B;
  }
  
  .lni-whatsapp {
    background: #40C450;
  }
  
  .lni-linkedin-original {
    background: #0e76a8;
  }
  
  .s-icon:first-child{
    border-radius: 1rem 0 0 0;
  }
  
  .s-icon:last-child{
    border-radius: 0 0 0 1rem;
  }
  
  .s-icon:hover{
    padding-right: 3rem;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
  }
