/* First-visit hint bubble. Extracted when the welcome popup was retired. */
.clb-hint {
	position: fixed;
	z-index: 99990;
	max-width: 290px;
	background: #ffffff;
	border: 2px solid #582890;
	border-radius: 14px;
	box-shadow: 0 18px 45px rgba(43, 42, 92, 0.25);
	padding: 14px 34px 14px 16px;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.6;
	color: #4a4a5e;
	cursor: pointer;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.clb-hint.clb-hint-visible {
	opacity: 1;
	transform: translateY(0);
}

.clb-hint::before {
	content: "";
	position: absolute;
	top: -8px;
	right: 26px;
	width: 14px;
	height: 14px;
	background: #ffffff;
	border-left: 2px solid #582890;
	border-top: 2px solid #582890;
	transform: rotate(45deg);
}

.clb-hint strong {
	color: #2b2a5c;
	font-weight: 800;
}

.clb-hint-close {
	position: absolute;
	top: 6px;
	right: 8px;
	background: none;
	border: none;
	font-size: 18px;
	line-height: 1;
	color: #9a96b8;
	cursor: pointer;
	padding: 4px;
}

.clb-hint-close:hover {
	color: #582890;
}
