/* ==========================================
   Sticky Contact Bar
========================================== */

.sticky-contact-bar{
    position:fixed;
    top:50%;
    right:0;
    transform:translateY(-50%);
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:4px;
}

/* Each button */
.sticky-contact-bar a{
    width:180px;
    height:55px;
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#fff;
    border-radius:8px 0 0 8px;
    /* Hide everything except icon */
    transform:translateX(125px);

    transition:transform .35s ease;
}

/* ONLY hovered button slides */
.sticky-contact-bar a:hover{
    transform:translateX(0);
}

/* Icon */
.sticky-contact-bar .icon{
    width:55px;
    min-width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* Text */
.sticky-contact-bar .text{
    flex:1;
    text-align:center;
    font-weight:600;
    white-space:nowrap;
}

/* Colors */

.sticky-contact-bar .phone{
    background:#0d6efd;
}

.sticky-contact-bar .email{
    background:#dc3545;
}

.sticky-contact-bar .whatsapp{
    background:#25D366;
}


/* ==========================================
   Floating WhatsApp
========================================== */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    color:#fff;

    border-radius:50%;
    text-decoration:none;
    font-size:30px;

    z-index:99999;

    box-shadow:0 4px 12px rgba(0,0,0,.25);

    transition:.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}


/* ==========================================
   Mobile
========================================== */

@media(max-width:768px){

.sticky-contact-bar{

    left:0;
    right:0;
    top:auto;
    bottom:0;

    width:100%;

    transform:none;

    flex-direction:row;
    gap:0;
}

.sticky-contact-bar a{
    flex:1;
    width:auto;
    height:55px;
    transform:none;
    justify-content:center;
    border-radius:0;
}

.sticky-contact-bar a:hover{

    transform:none;

}

.sticky-contact-bar .icon{

    width:auto;
    min-width:auto;
    margin-right:8px;

}

.sticky-contact-bar .text{

    flex:none;

}

.floating-whatsapp{
    bottom:125px;
    right:15px;
    width:60px;
    height:60px;

}

}