/* CSS Styles for the Flood.js Web Ring and Toy! */



#flood,
.wave {
    cursor: none !important;
}

  #fake-cursor {
    position: fixed;
    width: 62px;
    height: 42px;
    background-image: url("https://www.dazeland.com/images/Quiffy.gif");
    background-size: cover;
    pointer-events: none;
    z-index: 9999;
    display: none;
  }

#flood {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0px;
    z-index: 1000;
}

#flood-menu {
    display: none;
    position: fixed;
    right: 0px;
    bottom: 0px;
    padding: 5px;
    text-align: right;
    color: #afebff;
    font-size: 13px;
    z-index: 1001;
}
#flood-menu button {
    border-radius: 0px;
    background-color: #9ba8bb;
    border: 3px double #1e1e1e;
}
#flood-menu button:hover {
    background-color: #00f3ff;
}
.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);
    }
}
