.telegram-float{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:linear-gradient(135deg,#229ED9,#0f75bc);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 30px rgba(0,0,0,.25);
z-index:9999;
transition:.3s
}
.telegram-float:hover{
transform:scale(1.08);
box-shadow:0 15px 40px rgba(34,158,217,.45)
}
.telegram-float img{
width:32px;
height:32px
}


.telegram-float span{
position:absolute;
right:70px;
background:#229ED9;
color:#fff;
padding:6px 12px;
border-radius:20px;
font-size:13px;
white-space:nowrap;
opacity:0;
transition:.3s
}
.telegram-float:hover span{
opacity:1
}


