.l20cta-wrapper {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
}
#l20cta-main-btn {
width: 60px;
height: 60px;
border-radius: 50%;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: transform 0.3s ease, background 0.3s;
}
#l20cta-main-btn:hover {
transform: scale(1.1);
}
#l20cta-main-btn i {
font-size: 28px;
transition: transform 0.3s ease;
}
#l20cta-main-btn.l20cta-open i {
transform: rotate(45deg);
}
.l20cta-buttons {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
margin-bottom: 10px;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.l20cta-visible {
opacity: 1;
pointer-events: all;
}
.l20cta-btn {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: background 0.3s, color 0.3s, transform 0.3s;
}
.l20cta-btn:hover {
transform: scale(1.1);
}
.l20cta-btn i {
font-size: 20px;
}