.float{
    position: fixed;
    width: 30px;
    height: 30px;
    bottom: 10px;
    left: 10px;
    background-color: rgba(96,96,96,.9);
    color: #FFF;
    border-radius: 8px;
    text-align: left;
    z-index: 99999;
    padding: 3px;
  }

  .float:hover{
    width:auto;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
  
  }
  .my-float{
      margin-top: -6px;
      margin-left: 2px;
      width: 20px;
  }
  .my-float:hover{

      text-align:left;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
  }

  .float span{
    position: relative;
      visibility: hidden;
      color:white;
      padding:10px;
      text-align: center;
      line-height: 10px;
      top: 0px;
      bottom:0px;
      margin: 0 auto;
      height: auto;
      text-decoration: none;
      font-weight: 500;
      font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  }
  .float a{
    text-decoration: none!important;
  }

  .float:hover span{
    visibility: visible;
    
}

