/* Base */
.btn-floating:hover img {
    margin-bottom: 5px;
    width: 25px;
  }
  .btn-floating img{
    width: 25px;
  }
  
  .btn-floating {
      position: fixed;
      right: 25px;
      overflow: hidden;
      width: 55px;
      height: 55px;
      border-radius: 100px;
      border: 0;
      z-index: 9999;
      color: white;
      transition: .3s;
  }
  
  .btn-floating:hover {
      width: auto;
      padding: 0 20px;
      cursor: pointer;
  }
  
  .btn-floating span { padding-top: 14px;
    font-size: 23px;
    margin-left: 5px;
    transition: .3s;
    line-height: 0px;
    display: none;
    font-weight: 600;
  }
  
  .btn-floating:hover span {
      display: inline-block;
  }
  
  /* Phone */
  .btn-floating.phone {
      bottom: 55%;
      background-color: #760f10;
  }
  
  .btn-floating.phone:hover {
      background-color: #c03421;
  }
  
  /* WhatsApp */
  .btn-floating.whatsapp {
      background-color: #34af23;
      bottom: 45%;
  }
  
  .btn-floating.whatsapp:hover {
      background-color: #1f7a12
  }