/* Whatsapp button Begin */
#whatsapp_widget {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 60px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 4px 20px 0px #0000001A;
    padding: 0 15px;
    /* animation: background 4s infinite alternate; */
    text-decoration: none;
}

.whatsapp-side-icon {
    width: 54px;
    height: 54px;
    margin-right: 3px;
    -webkit-animation: swing 2.0s infinite;
    animation: swing 2.0s infinite;
}

#whatsapp_widget svg {
    margin: 2px 1px 0 0;
    transition: height 0.4s;
    height: 90%;
    fill: #27D246;
    -webkit-animation: swing 2.0s infinite;
    animation: swing 2.0s infinite;
}

#whatsapp_widget:hover svg {
    height: 95%;
}

#whatsapp_widget>span {
    color: #262728;
    font-weight: 600;
    margin-right: 10px;
    font-size: 15px;
}

#whatsapp_widget:after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 30px;
    animation: radial-pulse 2s infinite alternate;
}

@keyframes radial-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@keyframes background {
    50% {
        background: #110c10;
        box-shadow: 0 -140px 70px -120px #a37171 inset, 0 -210px 70px -120px #0766AD inset, 0 -280px 70px -120px #b53f53 inset;
    }
}

@keyframes swing {

    0%,
    50%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }
}

.grecaptcha-badge {
    display: none !important;
}

@media (max-width: 360px) {
    #whatsapp_widget {
        right: 15px;
        left: 15px;
        width: auto;
    }
}

/* Whatsapp button End */