/* =====================================================
   LensaReporter Core
   Floating WhatsApp
   Version 1.0
===================================================== */

/* Tombol WhatsApp */

.lr-wa-button{
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 32px;
    z-index: 999999;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    transition: all .3s ease;
    animation: lrPulse 2s infinite;
}

.lr-wa-button:hover{
    color:#fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

/* Animasi Pulse */

@keyframes lrPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.45);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/* Responsive */

@media (max-width:768px){

    .lr-wa-button{

        width:54px;
        height:54px;
        right:15px;
        bottom:20px;
        font-size:30px;

    }

}

/* =====================================================
   Sembunyikan Back To Top bawaan MoreNews
===================================================== */

#scroll-up{
    display:none !important;
}