.tooltipjs-button {
  position: relative;
  cursor: pointer;
}
.tooltipjs-button[class*="custom-icon"][data-is-showing="true"]::before {
  content: '╳' / '';
}
.tooltipjs-button .tooltipjs-popup {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: 1px solid #ccc;
  padding: 10px 15px;
  right: 0;
  max-width: min(90vw, 280px);
  min-width: 190px;
  width: fit-content;
  z-index: 1;
  display: none;
  font-size: 0.9rem;
  line-height: 1.33;
  font-style: normal;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: normal;
}
.tooltipjs-button .tooltipjs-popup > *:first-child {
  margin-top: 0;
}
.tooltipjs-button .tooltipjs-popup > *:last-child {
  margin-bottom: 0;
}
