﻿.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

  .tooltip .tooltiptext {
    visibility: hidden;
    width: 400px;
    background-color: #e1ffff;
    color: #2e353d;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    border:solid 1px #2e353d;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -5px;
    right: 105%;
    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 0.5s;
    white-space:normal;
  }

.tooltip-top-left {
  top: -160% !important;
  right: 140% !important;
}

  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }
