.facebook {
  width: 50px;
  height: 50px;
  background-color: #3b5998;
  color: #fff;
  border-radius: 40px;
  text-align: center;
  padding-top: 17%;
}
.facebook:hover {
  background-color: rgb(6, 11, 157);
  color: blue;
}
.twitter {
  width: 50px;
  height: 50px;
  background-color: rgb(0, 183, 255);
  color: #fff;
  border-radius: 40px;
  text-align: center;
  font-size: 27px;
}
.twitter:hover {
  background-color: white;
  color: rgb(0, 140, 255);
}

.yelp {
  width: 50px;
  height: 50px;
  background-color: #c41200;
  color: #fff;
  border-radius: 40px;
  text-align: center;
  padding-top: 17%;
}
.yelp:hover {
  background-color: rgb(188, 6, 6);
  color: rgb(0, 140, 255);
}

.call {
  width: 50px;
  height: 50px;
  background-color: rgb(0, 30, 255);
  color: #fff;
  border-radius: 40px;
  text-align: center;
  font-size: 25px;
}
.call:hover {
  background-color: white;
  color: red;
}

.whatsapp {
  width: 50px;
  height: 50px;
  background-color: #075e54;
  color: #fff;
  border-radius: 40px;
  text-align: center;
  padding-top: 17%;
}

.whatsapp:hover {
  background-color: rgb(21, 139, 0);
  color: black;
}

.instagram {
  width: 50px;
  height: 50px;
  background-color: #8134af;
  color: #fff;
  border-radius: 40px;
  text-align: center;
  font-size: 27px;
}
.instagram:hover {
  background-color: white;
  color: #dd2a7b;
}

.container-media {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  position: fixed;
  bottom: 95px;
  left: 14px;
}

.whatsapp-icon {
  margin-top: 12px;
}
.container-media a:hover .tooltip-text {
    opacity: 1;
    left: 11px;
    transition: all 0.3s ease;
    flex-wrap: nowrap;
    align-content: center;

  h4{
    padding: 0;
    margin: 5px 0 0 6px;
    color: #fff;
  }
}

.container-media a .tooltip-text {
    position: absolute;
    display: block;
    background-color: var(--azul-oscuro);
    padding: 0 39px;
    text-align: center;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 25px;
    left: 24px;
    top: 0px;
    opacity: 0;
    height: 50px;
    line-height: 44px;
    transition: .3s ease;
    z-index: -1;
    pointer-events: none;
}

.container-media a .tooltip-text::after {
  position: absolute;
  content: '';
  right: 100%;
  top: 15px;
}