.tpot-floating-contact{
position:fixed;
right:22px;
bottom:22px;
z-index:999999;
}

.tpot-floating-main{
width:62px;
height:62px;
border:0;
border-radius:50%;
display:grid;
place-items:center;
cursor:pointer;
font-size:28px;
font-weight:900;
color:#07100b;
background:linear-gradient(135deg,#25d366,#f5c35b);
box-shadow:0 12px 40px rgba(37,211,102,.35);
}

.tpot-floating-menu{
position:absolute;
right:0;
bottom:76px;
display:none;
grid-template-columns:repeat(2,54px);
gap:12px;
padding:14px;
border-radius:22px;
background:rgba(5,5,10,.96);
border:1px solid rgba(255,255,255,.16);
box-shadow:0 20px 70px rgba(0,0,0,.65);
}

.tpot-floating-contact.open .tpot-floating-menu{
display:grid;
}

.tpot-floating-menu a{
width:54px;
height:54px;
display:flex;
align-items:center;
justify-content:center;
border-radius:16px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.12);
transition:.2s;
}

.tpot-floating-menu a:hover{
transform:translateY(-2px);
background:linear-gradient(135deg,#ff2d55,#7c3cff);
}

.tpot-floating-menu img{
width:36px;
height:36px;
object-fit:contain;
display:block;
}

@media(max-width:700px){
.tpot-floating-contact{
right:16px;
bottom:16px;
}
}