a.tooltip {
    position: relative;
    text-decoration: none;
  }

a.tooltip:hover {
	cursor: default;
}

  a.tooltip:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 20%;
    background: var(--blue);
    padding: 3px 5px;
    color: var(--bright);
    white-space: nowrap;
    opacity: 1;
     /* At time of this creation, only Fx4 doing pseduo transitions */
    -webkit-transition: all 0.4s ease;
    -moz-transition   : all 0.4s ease;
    display:none;
	  pointer-events: none;
  }

  a.tooltip:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid var(--blue);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    /* At time of this creation, only Fx4 doing pseduo transitions */
    -webkit-transition: all 0.4s ease;
    -moz-transition   : all 0.4s ease;
    opacity: 1;
    left: 30%;
    bottom: 90%;
    display:none;
	  pointer-events: none;
  }

  a.tooltip:hover:after {
    bottom: 100%;
	 left: -20%;
  }

  a.tooltip:hover:before {
    bottom: 70%;
	  left: -20%;
  }

  a.tooltip:hover:after, a:hover:before {
    display:block;
  }