.sb-tooltip {
  display: inline;
  position: relative;
}

.sb-tooltip:hover {
  color: #00c;
  text-decoration: none;
}

.sb-tooltip:hover:after {
  background: #2196F3;
  background: rgb(33, 148, 243);
  border-radius: .5em;
  /*bottom: 1.35em;*/
  color: #fff;
  content: attr(title);
  display: block;
  top:	2.4em;
  right: 1em;
  padding: .3em 1em;
  position: absolute;
  /*text-shadow: 0 1px 0 #000;*/
  white-space: nowrap;
  z-index: 98;
}

.sb-tooltip:hover:before {
  border: solid;
  border-color: #2196F3 transparent;
  border-color: rgba(33, 148, 243, .8) transparent;
  border-width: 0 .4em .4em  .4em;
  /*bottom: 1em;*/
  top: 2em;
  content: "";
  display: block;
  right: 1.5em;
  position: absolute;
  z-index: 99;
}