/**
 * @name		Super Tooltip
 * @copyright	Copyright (C) 2016. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @author		Alsatium - http://www.alsatium.com
 */

.super-tooltip {
	z-index: 5000;
	position: relative;
}

.super-tooltip:hover {
	z-index: 5001;
}

.super-tooltip .super-tooltip-tip {
	position: absolute;
	z-index : 6000;
	display : none;
	box-sizing: border-box;
	opacity: 0;
}

.super-tooltip:hover .super-tooltip-tip {
	display: inline-block;
	opacity: 1;
	z-index : 6001;
}

.super-tooltip .super-tooltip-inner {
	display : block;
}

.super-tooltip .super-tooltip-inner img {
	max-width: 100%;
	height: auto;
}
/*
.clearfix:after {
    content: " ";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	font-size: 0;
}

.clearfix {
	zoom: 1;
}*/


