/**
 * GTranslate — stile basic del plugin, solo più piccolo + posizione in basso a sinistra.
 */

#gt_float_wrapper,
.gt_switcher_wrapper {
	z-index: 99990 !important;
}

#gt_float_wrapper {
	bottom: max(1.15rem, env(safe-area-inset-bottom, 0px)) !important;
	left: max(1.15rem, env(safe-area-inset-left, 0px)) !important;
	right: auto !important;
	top: auto !important;
	transform: scale(0.78);
	transform-origin: left bottom;
}

.gt_switcher_wrapper {
	transform: scale(0.78);
	transform-origin: left bottom;
}

@media (max-width: 640px) {
	#gt_float_wrapper {
		bottom: max(1rem, env(safe-area-inset-bottom, 0px)) !important;
		left: max(1rem, env(safe-area-inset-left, 0px)) !important;
		transform: scale(0.72);
	}

	.gt_switcher_wrapper {
		transform: scale(0.72);
	}
}

@media (prefers-reduced-motion: reduce) {
	#gt_float_wrapper,
	.gt_switcher_wrapper {
		transition: none;
	}
}
