/* adlib tooltip */

/**
 * The first commented line is your dabblet’s title
 */

.tooltip:hover .wrapper-content {
	opacity: 1;
	filter: alpha(opacity=100);
	top: -6em;
	left: 20em;
	z-index: 99;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.tooltip .wrapper-content {
	background: none repeat scroll 0 0 #222; /*-- some basic styling */
	color: #fff;
	font-size: 0.8em;
	font-weight: 300;
	line-height: 1.5em;
	text-align: left;
	padding: 16px 15px;
	width: 240px;
	top: -8em;  /*-- this is the original position of the tooltip when it's hidden */
	left: 20em;
	margin-left: 0;	
	/*-- set opacity to 0 otherwise our animations won't work */
	opacity: 0;
	filter: alpha(opacity=0);  	
	position: absolute;
	z-index: 2;
	text-transform: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease-in-out;
}

.tooltip .wrapper-content:before {
	border-color: #222 rgba(0, 0, 0, 0);
	border-style: solid;
	border-width: 0 0 15px 15px;
	top: 120px;
	content: "";
	display: block;
	left: -5px;
	position: absolute;
	width: 0;
	transform: rotate(135deg);
}
/*
.tooltip .wrapper-content:after {
	border-color: #222 rgba(0, 0, 0, 0);
	border-style: solid;
	border-width: 15px 15px 0;
	bottom: -15px;
	content: "";
	display: block;
	left: 31px;
	position: absolute;
	width: 0;
}
*/
