.tip-dot{
  position: relative !important;
}

[data-tip],
[data-tip]::before,
[data-tip]::after {
  left: 70%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, sans-serif;
  z-index: 6;
  top: 80%;
  margin-left: -11px;
  font-weight: 700;
  margin-top: -12px;
  position: absolute;
  vertical-align: middle;
  background: #f7931e;
  background:#3AC162;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 2px 5px rgba(0,0,0,.2);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
[data-tip]::after {
  content: "";
  animation: pulse-tip 1.5s -0.4s infinite;
  -webkit-animation: pulse-tip 1.5s -0.4s infinite;
}
[data-tip]:hover::before{
  display: initial;
  color: #fff;
  font-size: 15px;
  margin: -3px;
  width: 250px;
  height: initial;
  white-space: initial;
  animation: none;
  content: attr(data-tip);
  overflow-wrap: break-word;
  position: absolute;
  background: #f7931e;
  background:#3AC162;
  border-radius: 6px;
  padding: 20px;
  cursor: pointer;
  z-index: 6;
}

.tip-dot.left[data-tip]:hover::before{
  margin: -3px 0 0 -250px;
} 

@keyframes pulse-tip {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 147, 30, 1);
    box-shadow: 0 0 0 0 rgba(58, 193, 98, 1);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(247, 147, 30, 0);
    box-shadow: 0 0 0 20px rgba(58, 193, 98, 0);
  }
}

@-webkit-keyframes pulse-tip {
  0% {
   box-shadow: 0 0 0 0 rgba(247, 147, 30, 1);
    box-shadow: 0 0 0 0 rgba(58, 193, 98, 1);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(247, 147, 30, 0);
    box-shadow: 0 0 0 20px rgba(58, 193, 98, 0);
  }
}
