.floats {
  position: fixed;
  top: 50vh;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 900;
  transform: translateY(-50%);
}
.floats ul {
  width: fit-content;
}
.floats ul:hover a {
  width: 260px;
}
.floats li {
  margin-bottom: 8px;
  width: fit-content;
  display: block;
}
.floats a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 12px;
  text-decoration: none;
  color: #FFFFFF;
  overflow: hidden;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  transition: all 0.15s linear;
  background-color: teal;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.floats a.phone {
  background: #2590C5;
  color: #FFFFFF;
}
.floats a.whatsapp {
  background-color: #0CC142;
}
/*.floats a.whatsapp:hover {
  background-color: #38ac5b;
}*/
.floats a.facebook,
.floats a.messenger {
  background-color: #1F85FE;
}
/*.floats a.messenger:hover {
  background-color: #2F6DD1;
}*/
.floats a.instagram {
  background-color: #D9225F;
  color: #FFFFFF;
}
/*.floats a.instagram:hover {
  background-color: #b4325d;
}*/
.floats a:hover {
  font-weight: 900;
}
.floats a span {
  white-space: nowrap;
}
.floats img {
  width: 24px;
  height: 24px;
  margin-left: 12px;
}
