#loading {
	margin: 0;
	/* background-image: linear-gradient(rgba(255, 190, 121, 0.1), rgba(255, 190, 121, 0.1) 10%, rgba(117, 190, 214, 0.3) 40%, rgba(117, 190, 214, 0.3)); */
	overflow: hidden;
	height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: 10000;
  left:0;
  right:0;
  top:0;
  bottom:0;
  backdrop-filter: blur(108px);
}

#instructions {
  position: absolute;
  width: 100%;
  top: 50%;
  margin: auto;
  margin-top: 80px;
  font-family: "Open Sans", sans-serif;
  color: #AAA;
  font-size: 1.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 130%;
}

#raftHolder {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100px;
  height: 50px;
  overflow: hidden;
}

#raft {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(-5deg);
  animation-name: raftFloat;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

#raftBottom {
  position: absolute;
  margin: auto;
  top: 34px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border-bottom: 20px solid rgba(0, 93, 204, 0.7);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
#raftBottom::before {
  content: "";
  position: absolute;
  margin: auto;
  width: 0px;
  height: 0px;
  left: -40px;
  border-top: 20px solid #005dcc;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
#raftBottom::after {
  content: "";
  position: absolute;
  margin: auto;
  width: 0px;
  height: 0px;
  border-top: 20px solid rgba(0, 93, 204, 0.3);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

#raftTop {
  position: absolute;
  margin: auto;
  top: -7px;
  left: 20px;
  right: 0;
  bottom: 0;
  width: 0px;
  height: 0px;
  border-bottom: 20px solid #fff;
  border-right: 20px solid transparent;
}
#raftTop::before {
  content: "";
  position: absolute;
  margin: auto;
  width: 0px;
  height: 0px;
  left: -20px;
  border-bottom: 20px solid #005dcc;
  border-left: 20px solid transparent;
}

#raftRipples {
  position: absolute;
  margin: auto;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 100px;
  width: 200px;
  height: 50px;
}

.raftRipple {
  position: absolute;
  margin: auto;
  width: 0px;
  height: 4px;
  border-radius: 2px;
  opacity: 0.1;
  background: #fff;
  animation-name: raftRippleMove;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.raftRipple:nth-child(1) {
  top: 30px;
  left: 120px;
  animation-delay: 1s;
}
.raftRipple:nth-child(2) {
  top: 24px;
  left: 120px;
  animation-delay: 1.5s;
}

#raftReflection {
  position: absolute;
  margin: auto;
  top: 90px;
  bottom: 0;
  right: 0;
  left: 10px;
  width: 100px;
  height: 50px;
}

.raftReflectionSegment {
  position: absolute;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  animation-name: raftReflectionMove;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
.raftReflectionSegment:nth-child(1) {
  top: -30px;
  width: 35px;
  opacity: 0.1;
}
.raftReflectionSegment:nth-child(2) {
  top: -16px;
  width: 45px;
  animation-delay: 0.2s;
  opacity: 0.05;
}
.raftReflectionSegment:nth-child(3) {
  top: -2px;
  width: 60px;
  animation-delay: 0.4s;
  opacity: 0.02;
}

@keyframes raftReflectionMove {
  0% {
    transform: scale(1.2, 1) translate(5px);
  }
  100% {
    transform: scale(1, 1) translate(-10px);
  }
}
@keyframes raftRippleMove {
  0% {
    width: 0px;
  }
  70% {
    width: 50px;
  }
  100% {
    transform: translate(-100px);
    width: 0px;
    opacity: 0;
  }
}
@keyframes raftFloat {
  0% {
    transform: rotate(3deg) translate(10px, -2px);
  }
  100% {
    transform: rotate(-3deg) translate(-5px);
  }
}
#sploutch {
  position: absolute;
  width: 300px;
  height: 300px;
  animation-name: panSploutch;
  animation-duration: 6s;
}

@keyframes panSploutch {
  to {
    transform: translateX(-300px);
  }
}
.drop {
  position: absolute;
  background: #fff;
  width: 2px;
  height: 40px;
  opacity: 0;
  left: 150px;
  animation-name: fall;
  animation-duration: 0.2s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

@keyframes fall {
  0% {
    top: -100px;
    opacity: 0;
    height: 100px;
  }
  99% {
    opacity: 1;
  }
  100% {
    top: 150px;
    opacity: 0s;
    height: 5px;
  }
}
#ripples {
  position: absolute;
  width: 300px;
  height: 300px;
  transform: rotateX(75deg);
}

.ripple {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  border-radius: 50%;
  border-style: solid;
  border-width: 6px;
  border-color: rgba(255, 255, 255, 0.2);
  animation-name: grow;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
.ripple:nth-child(1) {
  animation-delay: 0s;
  animation-duration: 2s;
}
.ripple:nth-child(2) {
  animation-delay: 0.3s;
  animation-duration: 2s;
}
.ripple:nth-child(3) {
  animation-delay: 0.6s;
  animation-duration: 2s;
}

@keyframes grow {
  0% {
    width: 1px;
    height: 1px;
    opacity: 0;
    transform: translateY(20px);
  }
  25% {
    opacity: 0.5;
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    width: 250px;
    height: 250px;
    opacity: 0;
    transform: translateY(0px);
  }
}
.splash {
  position: absolute;
  margin: auto;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  opacity: 0;
  background: #fff;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
}
.splash:nth-child(1) {
  animation-name: bounce1;
  animation-delay: 0.1s;
}
.splash:nth-child(2) {
  animation-name: bounce2;
  animation-delay: 0.2s;
}
.splash:nth-child(3) {
  animation-name: bounce3;
  animation-delay: 0.3s;
}

@keyframes bounce1 {
  0% {
    left: 150px;
    top: 150px;
    opacity: 0;
  }
  5% {
    opacity: 0.5;
  }
  50% {
    top: 122px;
  }
  100% {
    left: 154px;
    top: 150px;
    opacity: 0;
  }
}
@keyframes bounce2 {
  0% {
    left: 150px;
    top: 150px;
    opacity: 0;
  }
  5% {
    opacity: 0.5;
  }
  50% {
    top: 106px;
  }
  100% {
    left: 157px;
    top: 150px;
    opacity: 0;
  }
}
@keyframes bounce3 {
  0% {
    left: 150px;
    top: 150px;
    opacity: 0;
  }
  5% {
    opacity: 0.5;
  }
  50% {
    top: 130px;
  }
  100% {
    left: 152px;
    top: 150px;
    opacity: 0;
  }
}