#flood,
.wave {
    cursor: url("https://melonking.net/images/ui/bucket.png"), pointer !important;
}

#flood {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0px;
    z-index: 1;
}
#flood-menu {
    display: none;
    position: fixed;
    right: 0px;
    bottom: 0px;
    padding: 5px;
    text-align: right;
    color: #fff;
    font-size: 13px;
    z-index: 1001;
    text-shadow: 1px 1px 5px black;
}
#flood-menu button {
    border-radius: 0px;
    background-color: #9ba8bb;
    border: 3px double #1e1e1e;
}
#flood-menu button:hover {
    background-color: red;
}
.wave > use {
    animation: slide 40s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
    fill: url("#water");
}
.wave > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 14s;
}
.wave > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 20s;
}
.wave > use:nth-child(3) {
    animation-delay: -5s;
    animation-duration: 40s;
}
@keyframes slide {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}