/*
 *  Tooltip
 */
@media screen and (min-width: 970px) {
.tooltip {
    position: relative;
}
.tooltip::after {
  height: 0;
  border-width: 8px 6px 0 6px;
  border-color: #FFF transparent transparent transparent;
  border-style: solid;
  content: '';
  position: absolute;
  top: -24px;
  right: 50%;
  margin-right: -3px;
}
.tooltip::before {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 5px;
  top: -52px;
  height: 28px;
  line-height: 28px;
  box-shadow: 0px 5px 25px rgba(159, 159, 159, 0.25);
  white-space: nowrap;
  font-size: 12px;
  padding: 0 7px;
  right: 0;
  color: #777;
}
.tooltip:before,
.tooltip:after {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    transition-delay: 0.16s;
    pointer-events: none;
    z-index: 1;
}
.tooltip:hover:before,
.tooltip:hover:after {
    opacity: 1;
    visibility: visible;
}
.tooltip:hover:before {
    top: -42px;
}
.tooltip:hover:after {
    top: -14px;
}
.tooltip:before {
    content: attr(data-in);
}
.tooltip.active:before {
    content: attr(data-out);
}
}