

.containerx {
  bottom: 120px;
  position: fixed;
  margin: 0.5em;
  right: 0px;
}

.botones {
  box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 
              0px 4px 12px -7px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: block;
  width: 56px;
  height: 56px;
  margin: 20px auto 0;
  position: relative;
  -webkit-transition: all .1s ease-out;
          transition: all .1s ease-out;  
}

.botones:active, 
.botones:focus, 
.botones:hover {
  box-shadow: 0 0 4px rgba(0,0,0,.14),
    0 4px 8px rgba(0,0,0,.28);
}

.botones:not(:last-child) {
  width: 40px;
  height: 40px;
  margin: 20px auto 0;
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}

.containerx:hover 
.botones:not(:last-child) {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  margin: 15px auto 0;
}

/* Unessential styling for sliding up buttons at differnt speeds */

.botones:nth-last-child(1) { /* ICONO PRINCIPAL*/
  -webkit-transition-delay: 25ms;
          transition-delay: 25ms;
  background-image: url('https://cliply.co/wp-content/uploads/2019/06/391906020_THUMBS_UP_400px.gif');
  background-size: contain;
}

.botones:not(:last-child):nth-last-child(2) { /* LLAMAR*/
  -webkit-transition-delay: 50ms;
          transition-delay: 20ms;
  background-image: url('https://image.flaticon.com/icons/svg/2016/2016267.svg');
  background-size: contain;
}

.botones:not(:last-child):nth-last-child(3) { /* CORREO */
  -webkit-transition-delay: 75ms;
          transition-delay: 40ms;
  background-image: url('https://image.flaticon.com/icons/svg/201/201573.svg');
  background-size: contain;
}

.botones:not(:last-child):nth-last-child(4) { /* WHATSAPP*/
  -webkit-transition-delay: 100ms;
          transition-delay: 60ms;
  background-image: url('https://image.flaticon.com/icons/svg/220/220236.svg');
  background-size: contain;
}
.botones:not(:last-child):nth-last-child(5) { /* TELEGRAM*/
  -webkit-transition-delay: 125ms;
          transition-delay: 80ms;
  background-image: url('https://image.flaticon.com/icons/svg/906/906377.svg');
  background-size: contain;
}
.botones:not(:last-child):nth-last-child(6) { /* UBICACION */
  -webkit-transition-delay: 150ms;
          transition-delay: 100ms;
  background-image: url('https://image.flaticon.com/icons/svg/252/252025.svg');
  background-size: contain;
}

/* Show tooltip content on hover */

[tooltip]:before {
  bottom: 25%;
  font-family: arial;
  font-weight: 600;
  border-radius: 2px;
  background: #585858;
  color: #fff;
  content: attr(tooltip);
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
  padding: 5px 7px;
  margin-right: 12px;
  position: absolute;
  right: 100%;
  white-space: nowrap;
}

[tooltip]:hover:before,
[tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}