.ripple {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    /* background-color: rgba(0, 116, 27, 0.8); */
    background-color: rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%);
    animation: explode 1s ease forwards;
}

.ripple-black {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;

    background-color: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%);
    animation: explode 1s ease forwards;
}

.white-ripple,
.black-ripple {
    position: relative;
    display: block;
    overflow: hidden;
}

.z-dex {
    color: inherit;
    z-index: 1000;
}

@keyframes explode {

    to {
        width: 600px;
        height: 600px;
        background-color: rgba(0, 116, 27, 0);
    }
}