.tooltip-text {
	position: relative;
	white-space: nowrap;
}
.tooltip-popup {
	position: absolute;
	left: 0;
	top:  100%;
	z-index: 110;
	display: none;
	white-space: normal;
	cursor: default;
	padding-top: 5px;
}
.right-aligned .tooltip-popup {
	left: auto;
	right: 0;
}
.tooltip-popup-box {
	display: block;
	width: 300px;
	max-width: 75vw;
	box-shadow: 0 30px 90px -20px rgb(0 0 0 / 30%), 0 0 1px 1px rgb(0 0 0 / 5%);
	border-radius: 2px;
	box-sizing: border-box;
	padding: 10px;
	background:  #fff;
}
.tooltip-popup-box > *:first-child {
	margin-top: 0;
}
.tooltip-popup-box img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.tooltip-text.show-tooltip .tooltip-popup {
	display: block;
}
@media screen and (max-width: 768px) {
	.tooltip-popup,
	.right-aligned .tooltip-popup {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
	}
}