.my_tooltip {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black;*/
}

.my_tooltip .my_tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #ebd34d;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 100;
  /*bottom: 125%;*/
  /*left: 50%;*/
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.5s;
  top: 0px;
  left: 55px;
  /*overflow-y: scroll !important;*/
  
}
.tooltip-bottom {

}

.my_tooltip .my_tooltiptext .tooltip-bottom::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #ebd34d transparent transparent transparent;
}

.my_tooltip:hover .my_tooltiptext {
  visibility: visible;
  opacity: 1;
}
