.manifaq_share {
    float: left; 
    color: rgb(103, 119, 136); 
    text-align: left;
}  
.manifaq_share span {
    display: inline-block;
    height: 32px;
    line-height: 36px;
    margin-right: 10px;
    float: left;
}
.manifaq_share a {
    display: inline-block;
    height: 32px;
    width: 32px;
    line-height: 36px;
    font-size: 16px;
    text-align: center;
    border-radius: 3px;
    border: 0;
    background: transparent;
    color: #343a40;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    float: left;
    margin: 0 5px 5px 0;    
}
.manifaq_share a.facebook{
    background-color: #5d82d1;
    color: #ffffff;
}
.manifaq_share a.google{
    background-color: #dd5044;
    color: #ffffff;
}
.manifaq_share a.telegram{
    background-color: #0088cc;
    color: #ffffff;
}
.manifaq_share a.email{
    background-color: #F89A1E;
    color: #ffffff;
}
.manifaq_share a.twitter{
    background-color: #1DA1F2;
    color: #ffffff;
}
.manifaq_share a:hover .fa ,
.manifaq_share a:focus .fa{ 
    -webkit-animation: toTopFromBottom 0.3s forwards;
    -moz-animation: toTopFromBottom 0.3s forwards;
    animation: toTopFromBottom 0.3s forwards; 
}


@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

@-moz-keyframes toTopFromBottom {
  49% {
    -moz-transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
