/* Tooltip */

.has-tooltip {
	position: relative;
}

.tooltip-header {
	position: relative;
	text-decoration: underline;
}

/*	Toolip */

.tooltip-content {
	position: absolute;
	bottom: 100%;
	background-color: #ffe566;
	border-radius: .25em;
	left: -100%;
	right: 0;
	min-width: 160px;
	min-width: 260px;
	padding: 5px 10px;
	text-align: center;
	transition: all ease-in .2s;
	visibility: hidden;
	opacity: 0;
}

.tooltip-header:hover~.tooltip-content {
	visibility: visible;
	opacity: 1;
}