@media (max-width: 768px) {
	#floating-icon {
		left: 44px !important;
		bottom: 78px !important;
		width: 40px !important;
	}
	#floating-menu {
		left: 44px !important;
		bottom: 145px !important;
	}
}
@media (max-width: 480px) {
	#floating-icon {
		left: 25px !important;
		bottom: 64px !important;
	}
	#floating-menu {
		left: 30px !important;
		bottom: 135px !important;
	}
}
@media(max-width:1024px){
	#floating-icon{
		display:none !important;
	}
}
.loading{position:absolute;top:0;left:0;right:0;bottom:0; display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;height:100vh;z-index:10000;background-color:#fff;}
.img_loading{animation: logoPulse 0.5s ease-in-out infinite;width:250px}
@media(max-width:475px){
.img_loading{width:200px}
}
@keyframes logoPulse {
	0% {
		transform: scale(0.95);
		opacity: 0.7;
	}
	50% {
		transform: scale(1.08);
		opacity: 1;
		filter: drop-shadow(0 0 8px rgba(0,0,0,0.2));
	}
	100% {
		transform: scale(0.95);
		opacity: 0.7;
	}
}