#floatingPoint {
    opacity: 0;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgba(17, 23, 86, 0.2);
    color: white;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 2px;
    z-index: 2018;
    -moz-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    text-align: center;
    display: flex;
    align-items: center;
  }

  #floatingPoint img{
      margin:auto;
  }
  
  #floatingPoint:hover {
    background-color: rgba(85, 85, 85, 0.2);
  }