.tooltip-animated {
  position: relative;
  display: inline-block;
}

.tooltip-animated .tooltip-content {
  visibility: hidden;
  width: 150px;
  background-color: #c58f62;
  color: #000;
  text-align: center;
  border-radius: 4px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
  transform-origin: bottom center;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tooltip-animated:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}