 .kpo-floating-footer{
	 background:#444;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#fff;
	padding:0.5rem 0; 
}
.kpo-floating-footer{
	span, a { color:#fff; display:flex; align-items:center; }
	ul{ 
		list-style:none;
		display:inline-flex;
		li { padding:.2rem .5rem; align-items:center;}
	}
	img { height:24px;display:inline-block; margin-right:.2rem;}

@media screen and (max-width:768px){
		.email,.address { display:none;}
}
}
.kpo-floating-footer {
	height:80px;
}
.kpo-flaoting-footer-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    
    /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* Optional: slides it up slightly when appearing */
    transition: all 0.3s ease-in-out; /* Smooth transition effect */
}

/* This class will be added by JavaScript on scroll */
.kpo-flaoting-footer-wrapper.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
