.tooltip-container {
	width: 425px;
	min-height: 200px;
	padding: 25px;
	font-size: 0.85rem;
	line-height: 1.5;
	background: white;
	box-shadow: 0 0 90px -20px rgba(0,0,0,0.4), 0 0 10px rgba(0,0,0,0.1);
	border-radius: 12px;
	position: absolute;
	z-index: 100;
	display: none;
	opacity: 0;
	margin-top: -30px;
}
/*
.wik-text {
	width: 100%;
	height: 200px;
	overflow: auto;
}
*/
.tooltip-container .wik-img {
	float:right;
	margin: 0 0 10px 10px;
}
.tooltip-container p {
	padding-top: 5px;
	padding-bottom: 0;
	margin-bottom: 0;
}
@media (max-width: 450px) {
	.tooltip-container {
		width: 95%;
	}
	.tooltip-container {
		font-size: 0.8rem;
	}
	.tooltip-container img {
		width: 70px;
		height: auto;
	}
}
/*
==================================================
 4 Arrow – tiny triangle pointing at the term
==================================================
*/
.tooltip-container::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border: 6px solid transparent;
}
/*
==================================================
 Arrow pointing down (tooltip above term)
==================================================
*/
.tooltip-container.above::after {
	bottom: -12px; /* attach to bottom of tooltip */
	left: 50%;
	transform: translateX(-50%);
	border-top-color: white;
	/* same colour as tooltip bg */
}
/*
==================================================
 Arrow pointing up (tooltip below term)
==================================================
*/
.tooltip-container.below::after {
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	border-bottom-color: white;
}
.fade-in {
	display: block;
	animation: fade 0.2s linear forwards;
}
@keyframes fade {
	0% {
	 opacity: 0;
	}
	100% {
	 opacity: 1;
	}
}
.ttooltip {
	position: relative;
}
