
.custom-responsive-tooltip-trigger {
	color: #6A3EE8;
	text-decoration: underline;
	cursor: pointer;
	position: relative;
	font-weight: 500;
}

.custom-responsive-tooltip-trigger:hover {
	color: #6A3EE8;
}

.custom-responsive-tooltip-box {
	position: absolute;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 15px 20px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	z-index: 1000;
	min-width: 200px;
	max-width: 350px;
	display: none;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.custom-responsive-tooltip-link {
	color: #0066cc;
	text-decoration: none;
	display: inline;
	cursor: pointer;
	transition: color 0.2s;
}

.custom-responsive-tooltip-link:hover {
	color: #0052a3;
	text-decoration: underline;
}

.custom-responsive-tooltip-box::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
}

.custom-responsive-tooltip-box.custom-responsive-tooltip-position-top::before {
	bottom: -10px;
	left: 20px;
	border-width: 10px 10px 0 10px;
	border-color: white transparent transparent transparent;
}

.custom-responsive-tooltip-box.custom-responsive-tooltip-position-bottom::before {
	top: -10px;
	left: 20px;
	border-width: 0 10px 10px 10px;
	border-color: transparent transparent white transparent;
}

.custom-responsive-tooltip-box.custom-responsive-tooltip-position-left::before {
	right: -10px;
	top: 15px;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent white;
}

.custom-responsive-tooltip-box.custom-responsive-tooltip-position-right::before {
	left: -10px;
	top: 15px;
	border-width: 10px 10px 10px 0;
	border-color: transparent white transparent transparent;
}

.custom-responsive-tooltip-close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	background: #f0f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	color: #666;
	transition: all 0.2s;
}

.custom-responsive-tooltip-close-btn:hover {
	background: #e0e0e0;
	color: #333;
}