	.popup-tip-anchor {
		height: 0;
		position: absolute;
		width: 200px;
	}

	.popup-bubble-anchor {
		position: absolute;
		width: 100%;
		bottom: 8px;
		left: 0;
	}

	.popup-bubble-anchor::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		transform: translate(-50%, 0);
		width: 0;
		height: 0;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-top: 8px solid white;
	}

	.popup-bubble-content {
		position: absolute;
		top: 0;
		left: 0;
		transform: translate(-50%, -100%);
		background-color: white;
		padding: 4px;
		margin: 70px 0px 0px 0px;
		border-radius: 5px;
		font-family: sans-serif;
		overflow-y: auto;
		max-height: 150px;
		box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
	}
