.float {
  position: fixed;
  color: #FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.phone {
  background-color: #ff0000;
  &:hover{
    text-decoration: none!important;
    color:#fff!important;
  }
}

.whatsapp {
  background-color: #25d366;
  &:hover{
    text-decoration: none!important;
    color:#fff!important;
  }
}
.float i {
  font-size: 24px;
}

@media (max-width: 767px) {
  .float {
    width: 50%;
    height: 50px;
    font-size: 18px;
    box-shadow: 2px 2px 3px #999;
    border: none;
  }
  .phone {
    bottom: 0;
    left: 0;
    border-radius: 0;
    border-right: 2px solid #FFF;
  }
  .whatsapp {
    bottom: 0;
    right: 0;
    border-radius: 0;
  }
  .phone span, .whatsapp span {
    margin-left: 8px;
    display: inline-block;
  }
  .footer-wp{
      margin-top:2rem;
  }
}
@media (min-width: 768px) {
  .float {
    width: 60px;
    height: 60px;
    font-size: 16px;
    border-radius: 50%;
    box-shadow: 2px 2px 3px #999;
  }
  .phone {
    bottom: 15%;
    right: 30px;
  }
  .whatsapp {
     bottom: 22%;
      right: 30px;
  }
  .phone span, .whatsapp span {
    display: none;
  }
}