/*
* Tooltips with smooth 3D animation.
* (c) Eugene Tiurin; MIT license
*
* Contributors: nomiad, Friedel Ziegelmayer, Arend van Beelen jr.,
* Peter Richmond, Bruno Wego, Kahmali Rose
*
* 2016-09-13
*/

.html5tooltip-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
  color: #606263;
  cursor: default;
  max-width: 360px;
  font-size: 13px;
  line-height: 17px;
}

.html5tooltip-box:before {
  background-color: inherit;
  box-shadow: inherit;
  content:'';
  display: block;
  height: 18px;
  position: absolute;
  width: 18px;
  transform: translate3d(-9px, -9px, 0) rotate3d(0, 0, 1, 45deg);
  left: 10px;
  top: 10px;
}

.html5tooltip-text {
  background-color: inherit;
  border-radius: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  padding: 15px 20px 16px;
  position: relative;
}

.html5tooltip-text a {
  color: inherit;
}

.html5tooltip-more {
  background-color: inherit;
  border-radius: inherit;
  position: relative;
}

.html5tooltip-more .html5tooltip-text {
  margin-top: -7px;
}

.html5tooltip-bottom .html5tooltip-box:before {
  left: 50%;
  top: 0;
}

.html5tooltip-left .html5tooltip-box:before {
  left: 100%;
  top: 50%;
}

.html5tooltip-right .html5tooltip-box:before {
  left: 0;
  top: 50%;
}

.html5tooltip-top .html5tooltip-box:before {
  left: 50%;
  top: 100%;
}
