/*! Hint.css - v2.3.2 - 2016-07-28
* http://kushagragour.in/lab/hint/
* Copyright (c) 2016 Kushagra Gour; Licensed  */

/*-------------------------------------*	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/lab/hint/
 *
 * Release under The MIT License
 *
 */
.hint {
  position: relative;
  display: inline-block;
}

.hint:before, .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: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms;
	text-align: left;
}
.hint.active:before, .hint.active:after {
    visibility: visible;
    opacity: 1;
}
.hint.active:before, .hint.active:after {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    transition-delay: 100ms;
}
.hint:before {
    content: '';
    position: absolute;
    background: transparent;
    border: 6px solid transparent;
    z-index: 1000001;
}
.hint:after {
    background: #383838;
	border-radius: 3px;
    color: white;
    padding: 8px 10px;
    font-size: 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 12px;
    white-space: nowrap;
}
.hint[aria-label]:after {
    content: attr(aria-label);
}
.hint[data-hint]:after {
    content: attr(data-hint);
}

[aria-label='']:before, [aria-label='']:after,
[data-hint='']:before,
[data-hint='']:after {
  display: none !important;
}


.hint:before {
  border-bottom-color: #383838;
}

.hint:before {
  margin-top: -11px;
}

.hint:before, .hint:after {
  top: 100%;
  left: 50%;
}

.hint:before {
  left: calc(50% - 6px);
}

.hint:after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  transform: translateX(0);
}

.hint:after {
  margin-left: -12px;
}

.hint.active:before {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint.active:after {
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  transform: translateY(8px);
}

.hint--small:after,
.hint--medium:after,
.hint:after {
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word;
}

.hint:after {
  width: 300px;
}


.hint--small:after {
  width: auto;
}

.hint--medium:after {
  width: 200px;
}



.hint:after {
    text-shadow: 0 -1px 0px black;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.hint:not(.hint--inline) {
	position: absolute;
	display: inline-block;
	width: 15px;
    height: 15px;
	color: white;
	background: #7eacff;
	line-height: 15px;
	font-weight: bold;
	text-align: center;
	left: -10px;
    top: 8px;
	font-size: 12px;
	font-family: arial;
	cursor: pointer;
	opacity: 0.5;
    border-radius: 4px;
}

.hint.active {
	opacity: 1;
}
