.hint-icon {
  background-image: url('../images/hint-icon.svg');
  display: inline-block;
  height: 14px;
  width: 14px;
}


.hint-container {
  position: relative;
  display: inline-flex;
  margin-left: 8px;
  margin-top: 2px;
  vertical-align: baseline;
  height: 24px;
  align-items: center;
}

.hint-content {
  position: absolute;
  top: -8px;
  left: 100%;
  /* transform: translate(-50%, -100%); */
  display: block;
  padding: 8px;
  width: auto;
  min-width: 200px;
  max-width: 220px;
  border-radius: 3px;
  backdrop-filter: blur(1px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .18);
  background-color: rgba(0, 27, 47, .85);
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.33;
  letter-spacing: -.1px;
  text-align: center;
  color: #FFF !important;
  opacity: 0;
  height: 0;
  overflow: hidden;
  z-index: 500;
}

.hint-content.visible {
  opacity: 1;
  -webkit-transition: opacity .2s cubic-bezier(.2, .8, .2, 1);
  transition: opacity .2s cubic-bezier(.2, .8, .2, 1);
  height: auto
}
