﻿/* Whatsapp CSS*/

/* Floating Button */
#wa-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}

#wa-button {
    /*background: white;*/
    border-radius: 30px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
   /* box-shadow: 0px 4px 15px rgba(0,0,0,0.18);*/
    cursor: pointer;
    position: relative;
}

    #wa-button i {
        color: #25D366;
        font-size: 40px;
        margin-right: 6px;
    }

    #wa-button span {
        font-weight: 600;
        color: #17a651;
    }

.wa-dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 25px;
}

/* Popup */
#wa-popup {
    width: 330px;
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: white;
    box-shadow: 0px 6px 30px rgba(0,0,0,0.2);
    border-radius: 15px;
    display: none;
    z-index: 999999;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.wa-header {
    background: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.wa-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
}

.wa-title {
    margin: 0;
    font-size: 17px;
}

.wa-sub {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.wa-close {
    cursor: pointer;
    font-size: 22px;
    margin-left: auto;
}

.wa-body {
    background: #ece5dd;
    padding: 20px;
}

.wa-msg {
    background: white;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    width: 80%;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
}

.wa-time {
    text-align: right;
    font-size: 11px;
    margin-top: 5px;
    opacity: 0.6;
}

.wa-start-btn {
    display: block;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 0 0 15px 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

    .wa-start-btn i {
        margin-right: 6px;
    }


#wa-floating {
    right: 90px !important; /* Shift left so it does not overlap */
}

#wa-popup {
    right: 90px !important; /* Keep popup aligned */
}
