/* GOOGLE MAPS */
.gm-ui-hover-effect {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 18px !important;
	height: 18px !important;
	cursor: pointer;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	line-height: 1;
	background-color:red !important;
	border-radius:3px;
}

.gm-ui-hover-effect:hover {
	background: rgba(60, 60, 60, 0.1);
}

.gm-ui-hover-effect::before {
	content: "\2715"; /* X */
	font-size: 12px;
	color: #fff;
	font-family: Arial, sans-serif;
	line-height: 1;
	font-weight:bold;
}

/* Nasconde l'immagine originale */
.gm-ui-hover-effect img,
.gm-ui-hover-effect picture,
.gm-ui-hover-effect svg,
.gm-ui-hover-effect span {
	display: none !important;
}


/* STICKY HEADER */

.sticky-container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background: white;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	padding-top: 10px;
	padding-bottom: 10px;
	transform: translateY(-20px);
	opacity: 0;
	transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.sticky-container.sticky-active {
	transform: translateY(0);
	opacity: 1;
}

/* disattiva transizioni quando non sticky */
.menu-sticky-target {
	transition: none !important;
}



/* FIX MOBILE CATEGORY MENU NOT SCROLLING */
@media (max-width: 991px) {
	.category-dropdown {
		max-height: 100vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		touch-action: auto;
	}
}

/* GOOGLE TRANSLATE */
/* Nasconde la freccetta del tema accanto al bottone "Select Language" */
#google_translate_element.dropdown-toggle::before {
	content:"" !important;
}

#google_translate_element.dropdown-toggle {
	padding:0px !important;
}