@keyframes float {

    0%,100% {

        transform:
            translateY(0);

    }


    50% {

        transform:
            translateY(-10px);

    }

}



.umeet-floating {

    animation:
        float 4s ease-in-out infinite;

}



@keyframes pulse {

    0% {

        box-shadow:
        0 0 0 0 rgba(37,99,235,.5);

    }


    70% {

        box-shadow:
        0 0 0 15px rgba(37,99,235,0);

    }


    100% {

        box-shadow:
        0 0 0 0 rgba(37,99,235,0);

    }

}



.umeet-live {

    animation:
        pulse 2s infinite;

}