/*! Hint.css - v1.3.4 - 2015-02-28
* http://kushagragour.in/lab/hint/
* Copyright (c) 2015 Kushagra Gour; Licensed MIT */

.hint, [data-hint] {
  position: relative;
  display: inline-block
}
 .hint:after,  [data-hint]:after {
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  transition-delay: 0ms
}
 .hint:hover:after, .hint:focus:after, [data-hint]:hover:after,  [data-hint]:focus:after {
  visibility: visible;
  opacity: 1
}
 .hint:hover:after,  [data-hint]:hover:after {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  transition-delay: 100ms
}

.hint:after, [data-hint]:after {
  content: attr(data-hint);
  background: #383838;
  color: #fff;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap
}

.hint--top:after {
  margin-left: -18px
}
 .hint--top:after {
  bottom: 100%;
  left: 50%
}
.hint--top:hover:after, .hint--top:focus:after{
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px)
}
.hint--bottom:after {
  margin-left: -18px
}
.hint--bottom:after {
  top: 100%;
  left: 50%
}
.hint--bottom:hover:after, .hint--bottom:focus:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px)
}

.hint--right:after {
  margin-bottom: -14px
}
.hint--right:after {
  left: 100%;
  bottom: 50%
}
.hint--right:hover:after, .hint--right:focus:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px)
}

.hint--left:after {
  margin-bottom: -14px
}
.hint--left:after {
  right: 100%;
  bottom: 50%
}
.hint--left:hover:after, .hint--left:focus:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px)
}
.hint, [data-hint] {}
.hint:after, [data-hint]:after {
  text-shadow: 0 -1px 0 #000;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, .3)
}
.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0 #592726
}
.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0 #6c5328
}
.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0 #193b4d
}
.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0 #1a321a
}
.hint--always:after {
  opacity: 1;
  visibility: visible
}
.hint--always.hint--top:after {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  transform: translateY(-8px)
}
.hint--always.hint--bottom:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px)
}
.hint--always.hint--left:after {
  -webkit-transform: translateX(-8px);
  -moz-transform: translateX(-8px);
  transform: translateX(-8px)
}
.hint--always.hint--right:after {
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
  transform: translateX(8px)
}
.hint--rounded:after {
  border-radius: 4px
}
.hint--no-animate:after {
  -webkit-transition-duration: 0ms;
  -moz-transition-duration: 0ms;
  transition-duration: 0ms
}
.hint--bounce:after {
  -webkit-transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s cubic-bezier(0.71, 1.7, .77, 1.24);
  -moz-transition: opacity .3s ease, visibility .3s ease, -moz-transform .3s cubic-bezier(0.71, 1.7, .77, 1.24);
  transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(0.71, 1.7, .77, 1.24)
}
