.popups {
    position: fixed;
    z-index: 777;
    bottom: 25px;
    right: 25px;

}

.popups .whatsapp {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 10px; */
    border-radius: 50%;
    background: #ffffff;
    background: linear-gradient(184deg, rgba(255, 255, 255, 1) 0%, rgb(192, 255, 194) 100%);
    position: relative;

}

.popups i {
    font-size: 35px;
    color: #09b000;
}

.popups .whatsapp .dot {
    border: 2px solid white;
    background-color: #0dff00;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0px;
    left: 3px;
    border-radius: 50%;
    animation: bgChange 1.1s ease-in-out infinite;
}

.popups img {
    width: 35px;
    /* filter: drop-shadow(0px 0px 10px #2222226e); */
}

@media screen and (max-width:576px) {
    /* .popups {
        display: block;
    } */
}


@keyframes bgChange {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}