.yaydp-tooltip-icon::before {
  content: "\f223";
}

.yaydp-tooltip-icon {
  position: relative;
  cursor: help;
  font-family: dashicons;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 20px;
  height: 20px;
  font-size: 20px;
  vertical-align: sub;
  text-align: center;
  transition: color 0.1s ease-in;
  color: #666;
}

.yaydp-tooltip-icon:hover .yaydp-tooltip-content {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -0.6em);
}

.yaydp-tooltip-content {
  visibility: hidden;
  opacity: 0;
  max-width: 270px;
  width: max-content;
  font-weight: normal;
  background-color: #666;
  box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 0.5rem 0.5rem;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  font-size: 0.8rem;
  font-family: "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light",
    "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.yaydp-tooltip-content::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #666;
  border-radius: 2px;
  transform-origin: center;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  bottom: -4px;
}

.yaydp-tooltip-content > div {
  padding: 10px 0;
  border-bottom: 1px solid white;
}

.yaydp-tooltip-content > div:last-child {
  border: none;
  padding-bottom: 0;
}
.yaydp-tooltip-content > div:first-child {
  padding-top: 0;
}
