
/* The tooltip box (for PP.util.tooltip)
/**********************************************************/
.pp-tooltip {
	background: rgb(255, 255, 255);
	margin: 1em 0;
	padding: 1em;
	border: 1px solid rgb(219, 219, 219);
	border-radius: 6px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	position: absolute;
	overflow: hidden;
	z-index: 1100000;
	font-size: initial;
	font-weight: initial;
	white-space: initial;
	text-align: initial;
	word-break: break-word;
}

.pp-tooltip-close-icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 20px;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	line-height: 1;
}

/* A close button that is visible hidden on the page
 * but that screen readers can see and use */
.pp-tooltip-hidden-close-button {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
