.hint_text{
  display: none;
}
.hint_wrap{
  position: relative;
}
.hint_title{
  display: inline-block;
  position: relative;
  text-decoration:underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
}
.hint_icon{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 19px;
  height: 19px;
  padding-top: 3px;
  border-radius: 100%;
  font-size: 12px;
  color: #fff !important;
  font-style: normal;
  transform: translateY(-50%);
  background: url('../img/info-icon-b.png') no-repeat top center;
  background-size: 15px;
}

.hint_text{
  width: 100%;
  max-width: 350px;
  position: absolute;
  z-index: 1;
  background: #005b33;
  color: white;
  font-weight: bold;
  padding: 5px;
  border-radius: 4px;
  font-size: 10px;
  pointer-events: none;
  top: calc(100% + 10px);
  left: 0;
  /*transform: translateX(-50%);*/
  text-transform: uppercase;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.32);
}
.hint_title:hover ~ .hint_text{
  display: block;
}
.hint_text:{
  display: block;
}