.custom-questionTooltip {
  visibility: hidden;
  translate: 50% 10px;
  opacity: 0;
  background-color: white;
  position: absolute;
  z-index: 4;
  bottom: 50px;
  right: 50%;
  width: max-content;
  max-width: 250px;
  border-radius: 8px;
  padding: 12px 24px;
  color: black;
  font-weight: 700;
  box-shadow: 0 5px 15px #00000026;
  transition: opacity 0.2s ease, visibility 0.2s ease, translate 0.2s ease;
}

.custom-questionTooltip ~ .custom-arrow {
  visibility: hidden;
  opacity: 0;
  translate: 50% 10px;
  position: absolute;
  background-color: white;
  height: 20px;
  width: 20px;
  transform: rotate(45deg);
  bottom: 40px;
  right: 50%;
  z-index: 5;
  transition: opacity 0.2s ease, visibility 0.2s ease, translate 0.2s ease;
}

.questionTooltip-icon:hover + .custom-questionTooltip, .questionTooltip-icon:hover ~ .custom-arrow {
  visibility: visible;
  translate: 50% 0;
  opacity: 1;
}