.icons-and-tooltip {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.icons-and-tooltip .image-wrap {
  cursor: pointer;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tooltip-popover {
  pointer-events: none;
  text-decoration: none;
  font-size: 13px;
  line-height: 20px;
  line-height: 40px;
  color: #000;
  top: 0;
  right: 0;
  height: 40px;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgb(36 50 56 / 20%);
  padding: 0 20px;
  white-space: nowrap;
  transform: scale(0.8) translate(-40px, 12px);
  transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1) 0.3s,
    transform 0.2s cubic-bezier(0.86, 0, 0.07, 1) 0.3s;
  opacity: 0;
  background-color: #f7b500;
  position: absolute;
}
.tooltip-popover:after {
  content: "";
  display: block;
  top: 50%;
  right: -7px;
  width: 14px;
  height: 14px;
  border-radius: 0 3px 0 0;
  transform: translateY(-7px) rotate(45deg);
  background-color: #f7b500;
  position: absolute;
}
.icons-and-tooltip:hover .tooltip-popover {
  opacity: 1;
  transform: scale(1) translate(-80px, 12px);
}
