.tt-hover {
    position: relative;
    color: #ffeb3b;
    cursor: pointer;
  }
  .tt-hover:before {
    content: attr(aria-label);
    opacity: 0;
    position: absolute;
    top:-1.5rem;
    right: 1rem;
    text-align: center;
    font-size: 12px;
    padding: 0.5rem;
    color: #ffffff;
    background-color: #77180E;
    border-radius: 3px;
    pointer-events: none;
    box-shadow: 0 0 13px -2px #fff;;
    transition: 500ms ease-out;
  }
  .tt-hover:hover:before {
    opacity: 1;
  }
