/* Basic styles for the ripple container */
.ripple-fill {
    position: relative;
    overflow: hidden; /* keep ripple inside element */
    cursor: pointer;
}

/* Ripple element */
.ripple-fill .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    opacity: 0.75;
}

/* Animation */
@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple.primary {
    background: #3fc0f0;
}