
/* ======== WHATSAPP FLOAT BUTTON ======== */

.whatsapp__float__container{
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 40px;
  right: 20px;
  background-color: #38E659;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 50%;
}

.whatsapp__float__text{
  display: none;
  padding: 5px;
}
.whatsapp__float__text:hover{
  color: var(--sexto-color);
  background-color: #8686865e;
  width: 100%;
  text-align: center;
  border-radius: 25px;
}
.whatsapp__float__active{
  width: 250px;
  height: auto;
  border-radius: 20px;
  .whatsapp__float__text{
    display: block;
  }
}
.whatsapp__text{
  color: var(--sexto-color);
  text-decoration: none;
}
.whatsapp__icon__active{
  display: none;
}