.venom-button {
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 5px;
    transition: bottom .2s
}

.venom-button .venom-button-button {
    position: relative;
    border-radius: 50%;
    box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
    transition: box-shadow .2s;
    cursor: pointer;
    overflow: hidden; top: -140px;
    right: 73%;
    z-index: 1000000000000000000;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;

 }
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Apply the pulse animation to the button container */
.pulse-button {
    animation: pulse 1.2s infinite; /* Animation duration and infinite loop */
}