<!-- start Simple Custom CSS and JS -->
<style type="text/css">
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  cursor: pointer;
}

.tooltiptext {
    visibility: hidden;
    background-color: #fcfcfc;
    color: #232323;
    text-align: left;
    border-radius: 6px;
    padding: 1em;
    position: absolute;
    z-index: 2;
    top: 150%;
    left: 50%;
    margin-left: -60px;
    border: 2px solid #606060;
    right: -75vw;
    margin-right: 60px;
    max-width: 800px;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}


.tooltip:hover .tooltiptext {
  visibility: visible;
}


</style>
<!-- end Simple Custom CSS and JS -->
