.basic-tooltip {
  width: 90%;
  max-width: fit-content;
  text-align: center !important;
  background-color: #ffffff !important;
  color: #000 !important;
  box-shadow: 0px 0px 12px 0px #989595 !important;
  opacity: 1;
  z-index: 1;
  animation: fadeIn 0.1s ease-in-out !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1 !important;
  }
}