/*** TOOLTIP ***/
.bnws-tooltip {
  opacity: 0;
  position: fixed;
  height: auto;
  width: auto;
  background-color: var(--bnws-col-gray);
  color: #fff;
  border-radius: var(--bnws-whitespace-l1);
  padding: var(--bnws-whitespace-l1);
  z-index: 999999;
  font-size: 0.8em;
  text-align: center;
  user-select: none;
}
.bnws-tooltip::after {
  content: '\25be';
  color: var(--bnws-col-gray);
  position: absolute;
  height: 15px;
  font-size: 2em;
  left: 50%;
  line-height: 1;
  transform: translateX(-50%) scaleX(2.5);
  width: 100%;
  bottom: -4px;
}