.tooltip-container {
  position: relative;
  
  .tooltip {
    position: absolute;
    pointer-events: none;
    // display: none;
    padding: 8px 10px;
    background-color: #ffffff;
    font-size: 12px;
    border-radius: 4px;
    z-index: 1;
    min-width: 300px;
    box-shadow: 1px 1px 10px rgba(0,0,0,.2);
    top: 100%;
    left: 0;
    transition: all .1s linear;
    opacity: 0;
    transform: translate(0, 0px) scale(.99);
    transform-origin: 0 0;
    line-height: 1.5;
    &.right {
        right: 0;
        left: auto;
    }
  }

  &:hover .tooltip {
    // display: block;
    opacity: 1;
    z-index: 100;
    transform: translate(0, 10px) scale(1);
  }
}
