/*	TIPS
--------------
*/
[data-tip] {
	position: relative;
	z-index: 1;
}
[data-tip] ins {
	display: none;
	position: absolute;
	padding: 7px;
	font-family: arial, sans-serif;
	font-size: 16px;
	white-space: break-spaces;
	text-decoration: none;
	background: black;
	border-radius: 3px;
	box-shadow: 0 0 4px rgb(0,0,0, .25);
}
[data-tip] ins > strong {
	font-size: 1.15em;
	font-weight: 700;
	line-height: 1;
}
[data-tip] .arrow{
	position: absolute;
	width: 2px;
	z-index: -1;
}
[data-tip] .arrow > img{
	object-fit: contain;
	width: 100%;
	height: 100%;
}
[data-tip].active {
 	opacity: 1 !important;
}

@media screen and (max-width: 500px) {
	[data-tip] ins {
	   font-size: 18px;
	}
}