/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 19 2025 | 19:09:54 */
.cloud_tooltip{
	max-width:20px !important;
	color: red;
}

.tooltip_wrapper {
	xxxborder: 1px solid #fff;
	background: var(--e-global-color-2dea553);
	color: var(--e-global-color-primary);
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 13px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	white-space: pre-line;
	max-width: 220px;
	pointer-events: none;
	position: relative; /* necessario per il posizionamento assoluto interno */
}

.tooltip_wrapper::after {
	content: '';
	position: absolute;
	bottom: -11px; /* esce di 10px fuori */
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 24px;
	background-image: url('/wp-content/uploads/2025/05/tooltip_flip.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

