/**
 * @name		Tooltip CK
 * @copyright	Copyright (C) 2016. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @author		Cédric KEIFLIN - http://www.joomlack.fr - http://www.template-creator.com - http://www.wp-pluginsck.com
 */

.tooltipck {
	z-index: 5000;
	position: relative;
}

.tooltipck:hover {
	z-index: 5001;
}

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

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

.tooltipck .tooltipck-inner {
	display : block;
}

.tooltipck .tooltipck-inner img {
	max-width: 100%;
	height: auto;
}


