/*
	TOOLTIPS
*/
[data-tipped] {
  position: relative;
  display: inline-block;
  z-index: 9999;
  text-transform: uppercase;
  font-size: 1.3rem;
  /* Core Styling */
  /* Options */
}
[data-tipped]:before {
  position: absolute;
  bottom: -55px;
  left: calc(50% - 3px);
  height: 40px;
  content: attr(data-tipped);
  padding: 14px 10px;
  color: #000;
  font-size: 11px;
  line-height: 12px;
  font-family: 'ubuntumedium';
  font-size: 1.6rem;
  text-transform: uppercase;
  text-overflow: ellipsis;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  transform: perspective(1px) translate3d(-50%, -10px, 0);
  pointer-events: none;
  transition: all 0.5s 0.2s;
  -webkit-font-smoothing: antialiased;
}
[data-tipped]:after {
  position: absolute;
  content: '';
  bottom: -15px;
  left: calc(50% + 3px);
  width: 12px;
  height: 12px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translate3d(-50%, -10px, 0) rotate(0deg);
  pointer-events: none;
  transition: all 0.5s 0.2s;
}
[data-tipped]:hover:before {
  opacity: 1;
  transform: perspective(1px) translate3d(-50%, 0, 0);
}
[data-tipped]:hover:after {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) rotate(0deg);
}
[data-tipped].tipped-absolute {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
[data-tipped].tipped-left:before {
  left: -5px;
  right: auto;
  transform: translate3d(0, -10px, 0);
}
[data-tipped].tipped-left:hover:before {
  opacity: 1;
  transform: perspective(1px) translate3d(0, 0, 0);
}
[data-tipped].tipped-right:before {
  left: auto;
  right: -5px;
  transform: translate3d(0, -10px, 0);
}
[data-tipped].tipped-right:hover:before {
  opacity: 1;
  transform: perspective(1px) translate3d(0, 0, 0);
}
