/* Add this class where a tooltip is needed */
.tooltip-here {
  position: relative;
  display: inline-block;
}
/*Tooltip*/
.tooltip {
  visibility: hidden;
  width: 120px;
  background-color: $grey-dark;
  color: $white;
  padding: 8px;
  border-radius: 3px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity .3s;
  text-align: center;
  font-size: .875rem;
  font-weight: 400;

  &--top {
    bottom: 20px;
    left: 50%;
    margin-left: -75px;
  }

  &--bottom {
    top: 20px;
    left: 50%;
    margin-left: -75px;
  }

  &--right {
    top: -2px;
    left: 102%;
  }

  &--left {
    top: -2px;
    right: 102%;
  }
}

.tooltip-here:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
