/* Floating Launcher */

#wahudumu-launcher{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    background:#000075;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    transition:.3s;
    z-index:999999;
}

#wahudumu-launcher:hover{
    background:#00A651;
    transform:scale(1.08);
}

/* Services Panel */

#wahudumu-panel{

    position:fixed;
    top:0;
    right:-360px;

    width:340px;
    max-width:90%;

    height:100%;

    background:white;

    transition:right .35s ease;

    box-shadow:-5px 0 30px rgba(0,0,0,.25);

    z-index:999998;

    overflow:auto;

    font-family:Arial,sans-serif;

}

#wahudumu-panel.open{

    right:0;

}

.panel-header{

    background:#000075;

    color:white;

    text-align:center;

    padding:25px;

}

.panel-header img{

    width:85px;

    border-radius:50%;

    background:white;

    padding:5px;

}

.panel-header h2{

    margin:10px 0 5px;

}

.panel-header p{

    margin:0;

    font-size:13px;

}

.panel-body{

    padding:20px;

}

.service-btn{

    display:block;

    padding:15px;

    margin-bottom:15px;

    border-radius:10px;

    text-align:center;

    color:white;

    text-decoration:none;

    font-weight:bold;

    transition:.25s;

}

.service-btn:hover{

    transform:translateY(-2px);

}

.member{

    background:#000075;

}

.whatsapp{

    background:#25D366;

}

.call{

    background:#0d6efd;

}

.email{

    background:#6c757d;

}

.close-btn{

    background:#dc3545;

}