.coolify-floating-contact-wrapper {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 9999;
display: flex;
flex-direction: column;
align-items: flex-end;
}
.cfc-menu {
display: flex;
flex-direction: column;
align-items: flex-end;
margin-bottom: 15px;
pointer-events: none;
}
.cfc-item {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #25d366;
color: #fff;
text-decoration: none;
margin-bottom: 10px;
font-size: 24px;
box-shadow: 0 4px 10px rgba(0,0,0,0.15);
opacity: 0;
transform: translateY(20px) scale(0.9);
transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
}
.cfc-item:hover {
color: #fff;
background-color: #128c7e;
}
.cfc-item::before {
content: attr(data-tooltip);
position: absolute;
right: 100%;
margin-right: 15px;
background-color: #333;
color: #fff;
padding: 5px 10px;
border-radius: 4px;
font-size: 14px;
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.cfc-item:hover::before {
opacity: 1;
}
.coolify-floating-contact-wrapper.active .cfc-menu {
pointer-events: auto;
}
.coolify-floating-contact-wrapper.active .cfc-item {
opacity: 1;
transform: translateY(0) scale(1);
}
.cfc-main-btn {
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #007bff;
color: #fff;
border: none;
cursor: pointer;
font-size: 28px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
transition: transform 0.3s ease;
outline: none;
}
.cfc-main-btn:hover {
background-color: #0056b3;
}
.cfc-main-btn .cfc-icon-close {
display: none;
}
.coolify-floating-contact-wrapper.active .cfc-main-btn .cfc-icon-open {
display: none;
}
.coolify-floating-contact-wrapper.active .cfc-main-btn .cfc-icon-close {
display: block;
} .coolify-floating-contact-wrapper.active .cfc-item:nth-child(1) { transition-delay: 0.15s; }
.coolify-floating-contact-wrapper.active .cfc-item:nth-child(2) { transition-delay: 0.10s; }
.coolify-floating-contact-wrapper.active .cfc-item:nth-child(3) { transition-delay: 0.05s; }
.coolify-floating-contact-wrapper.active .cfc-item:nth-child(4) { transition-delay: 0s; }