.tooltip-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background-color: #333;
  border-radius: 100%;
  margin-left: 4px;
  cursor: pointer;
}

.tooltip-mark::before {
  display: inline-block;
  position: relative;
  left: 4.5px;
  top: -3px;
  content: "?";
  color: #fff;
  font-size: 60%;
  font-weight: bold;
}

.tooltip-mark .tooltip-text {
  display: block;
  position: absolute;
  margin-top: 1px;
  transform: translateX(-47%);
  background: #333;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  visibility: hidden;
  width: 200px;
  padding: 6px 10px;
  border-radius: 5px;
  transition: all 0.3s linear;
  font-feature-settings: "palt" 1;
  text-align: justify;
  z-index: 999;
  white-space: normal;
}

.tooltip-mark .tooltip-text a {
  color: #fff;
  text-decoration: underline;
  transition: none;
}

.tooltip-mark .tooltip-text a:hover {
  color: #0066cc;
}

.tooltip-mark .tooltip-text::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}

.tooltip-mark:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

