.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 !important;
color: #fff !important;
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 !important;
}
.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: #0d1f3c;
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,
.cfc-main-btn:focus {
background-color: #081326 !important;
}
.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;
} .cfc-item.cfc-item-installation {
background-color: #1455a3 !important;
}
.cfc-item.cfc-item-installation:hover,
.cfc-item.cfc-item-installation:focus {
background-color: #0d3d78 !important;
}
.cfc-item.cfc-item-servicing {
background-color: #0ea5a5 !important;
}
.cfc-item.cfc-item-servicing:hover,
.cfc-item.cfc-item-servicing:focus {
background-color: #0a7d7d !important;
}
.cfc-item.cfc-item-appointment {
background-color: #5aadff !important;
}
.cfc-item.cfc-item-appointment:hover,
.cfc-item.cfc-item-appointment:focus {
background-color: #3b91e6 !important;
}
.cfc-item.cfc-item-general {
background-color: #0d1f3c !important;
}
.cfc-item.cfc-item-general:hover,
.cfc-item.cfc-item-general:focus {
background-color: #081326 !important;
}