@charset "UTF-8";

/* '' */
/*
   Animation example, for spinners
*/
/* KEYFRAMES */
@-webkit-keyframes animateBubble {
  0% {
    -webkit-transform: translateY(450px);
    transform: translateY(450px);
    opacity: 0; }
  10% {
    opacity: 1; }
  80% {
    opacity: .9; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0; } }

@-moz-keyframes animateBubble {
  0% {
    transform: translateY(450px);
    opacity: 0; }
  10% {
    opacity: 1; }
  80% {
    opacity: .9; }
  100% {
    transform: translateY(0);
    opacity: 0; } }

@keyframes animateBubble {
  0% {
    -webkit-transform: translateY(450px);
    transform: translateY(450px);
    opacity: 0; }
  10% {
    opacity: 1; }
  80% {
    opacity: .9; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0; } }

@-webkit-keyframes animateBubble_2 {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; }
  10% {
    opacity: 1; }
  80% {
    opacity: .9; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0; } }

@-moz-keyframes animateBubble_2 {
  0% {
    transform: translateY(500px);
    opacity: 0; }
  10% {
    opacity: 1; }
  80% {
    opacity: .9; }
  100% {
    transform: translateY(0);
    opacity: 0; } }

@keyframes animateBubble_2 {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; }
  10% {
    opacity: 1; }
  80% {
    opacity: .9; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0; } }

@-webkit-keyframes animateBubble_3 {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; }
  10% {
    opacity: 1; }
  80% {
    opacity: .9; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0; } }

@-moz-keyframes animateBubble_3 {
  0% {
    transform: translateY(500px);
    opacity: 0; }
  10% {
    opacity: 1; }
  80% {
    opacity: .9; }
  100% {
    transform: translateY(0);
    opacity: 0; } }

@keyframes animateBubble_3 {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; }
  10% {
    opacity: 1; }
  80% {
    opacity: .9; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0; } }

@-webkit-keyframes sideWays {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px); } }

@-moz-keyframes sideWays {
  0% {
    transform: translateX(0px); }
  100% {
    transform: translateX(100px); } }

@keyframes sideWays {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px); } }

/* ANIMATIONS */
.bubble {
  position: absolute;
  opacity: 0;
  display: block; }
  .bubble .bubble-scale:after {
    position: absolute;
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), inset 0px 5px 15px 2.5px white;
    -moz-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), inset 0px 5px 15px 2.5px white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), inset 0px 5px 15px 2.5px white;
    width: 100px;
    height: 100px; }

#bubble-wrap {
  /*bottom: 400px;*/
  left: 40%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0; }

.x1 {
  -webkit-animation: animateBubble 4s linear infinite;
  -moz-animation: animateBubble 4s linear infinite;
  animation: animateBubble 4s linear infinite;
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s;
  left: -4%;
  top: 0%; }
  .x1 .bubble-scale {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5); }
    .x1 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x2 {
  -webkit-animation: animateBubble 5s linear infinite;
  -moz-animation: animateBubble 5s linear infinite;
  animation: animateBubble 5s linear infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
  left: -11%;
  top: 10%; }
  .x2 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4); }
    .x2 .bubble-scale:after {
      -webkit-animation: sideWays 4s ease-in-out infinite alternate;
      -moz-animation: sideWays 4s ease-in-out infinite alternate;
      animation: sideWays 4s ease-in-out infinite alternate; }

.x3 {
  -webkit-animation: animateBubble 4s linear infinite;
  -moz-animation: animateBubble 4s linear infinite;
  animation: animateBubble 4s linear infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
  left: 0%;
  top: 13%; }
  .x3 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x3 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x4 {
  -webkit-animation: animateBubble 8s linear infinite;
  -moz-animation: animateBubble 8s linear infinite;
  animation: animateBubble 8s linear infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
  left: 18%;
  top: 15%; }
  .x4 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2); }
    .x4 .bubble-scale:after {
      -webkit-animation: sideWays 3s ease-in-out infinite alternate;
      -moz-animation: sideWays 3s ease-in-out infinite alternate;
      animation: sideWays 3s ease-in-out infinite alternate; }

.x5 {
  -webkit-animation: animateBubble 9s linear infinite;
  -moz-animation: animateBubble 9s linear infinite;
  animation: animateBubble 9s linear infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
  left: 3%;
  top: 5%; }
  .x5 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x5 .bubble-scale:after {
      -webkit-animation: sideWays 4s ease-in-out infinite alternate;
      -moz-animation: sideWays 4s ease-in-out infinite alternate;
      animation: sideWays 4s ease-in-out infinite alternate; }

.x6 {
  -webkit-animation: animateBubble 7s linear infinite;
  -moz-animation: animateBubble 7s linear infinite;
  animation: animateBubble 7s linear infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
  left: 0;
  top: 10%; }
  .x6 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
    .x6 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x7 {
  -webkit-animation: animateBubble 3s linear infinite;
  -moz-animation: animateBubble 3s linear infinite;
  animation: animateBubble 3s linear infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
  left: 12%;
  top: 7%; }
  .x7 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4); }
    .x7 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x8 {
  -webkit-animation: animateBubble 15s linear infinite;
  -moz-animation: animateBubble 15s linear infinite;
  animation: animateBubble 15s linear infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
  left: -5%;
  top: 7%; }
  .x8 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x8 .bubble-scale:after {
      -webkit-animation: sideWays 3s ease-in-out infinite alternate;
      -moz-animation: sideWays 3s ease-in-out infinite alternate;
      animation: sideWays 3s ease-in-out infinite alternate; }

.x9 {
  -webkit-animation: animateBubble 5s linear infinite;
  -moz-animation: animateBubble 5s linear infinite;
  animation: animateBubble 5s linear infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
  left: 5%;
  top: 12%; }
  .x9 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x9 .bubble-scale:after {
      -webkit-animation: sideWays 4s ease-in-out infinite alternate;
      -moz-animation: sideWays 4s ease-in-out infinite alternate;
      animation: sideWays 4s ease-in-out infinite alternate; }

.x10 {
  -webkit-animation: animateBubble 6s linear infinite;
  -moz-animation: animateBubble 6s linear infinite;
  animation: animateBubble 6s linear infinite;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
  left: 5%;
  top: 3%; }
  .x10 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
    .x10 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

#bubble-wrap-2 {
  bottom: 0;
  left: 85%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1; }

.x2_1 {
  -webkit-animation: animateBubble_2 5s linear infinite;
  -moz-animation: animateBubble_2 5s linear infinite;
  animation: animateBubble_2 5s linear infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
  left: 20%;
  top: 5%; }
  .x2_1 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
    .x2_1 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x2_2 {
  -webkit-animation: animateBubble_2 4s linear infinite;
  -moz-animation: animateBubble_2 4s linear infinite;
  animation: animateBubble_2 4s linear infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
  left: 35%;
  top: 10%; }
  .x2_2 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x2_2 .bubble-scale:after {
      -webkit-animation: sideWays 4s ease-in-out infinite alternate;
      -moz-animation: sideWays 4s ease-in-out infinite alternate;
      animation: sideWays 4s ease-in-out infinite alternate; }

.x2_3 {
  -webkit-animation: animateBubble_2 3s linear infinite;
  -moz-animation: animateBubble_2 3s linear infinite;
  animation: animateBubble_2 3s linear infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
  left: 35%;
  top: 0%; }
  .x2_3 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
    .x2_3 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x2_4 {
  -webkit-animation: animateBubble_2 8s linear infinite;
  -moz-animation: animateBubble_2 8s linear infinite;
  animation: animateBubble_2 8s linear infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
  left: 10%;
  top: 15%; }
  .x2_4 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8); }
    .x2_4 .bubble-scale:after {
      -webkit-animation: sideWays 3s ease-in-out infinite alternate;
      -moz-animation: sideWays 3s ease-in-out infinite alternate;
      animation: sideWays 3s ease-in-out infinite alternate; }

.x2_5 {
  -webkit-animation: animateBubble_2 9s linear infinite;
  -moz-animation: animateBubble_2 9s linear infinite;
  animation: animateBubble_2 9s linear infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
  left: -15%;
  top: 0%; }
  .x2_5 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x2_5 .bubble-scale:after {
      -webkit-animation: sideWays 4s ease-in-out infinite alternate;
      -moz-animation: sideWays 4s ease-in-out infinite alternate;
      animation: sideWays 4s ease-in-out infinite alternate; }

.x2_6 {
  -webkit-animation: animateBubble_2 7s linear infinite;
  -moz-animation: animateBubble_2 7s linear infinite;
  animation: animateBubble_2 7s linear infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
  left: 25%;
  top: 10%; }
  .x2_6 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2); }
    .x2_6 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x2_7 {
  -webkit-animation: animateBubble_2 5s linear infinite;
  -moz-animation: animateBubble_2 5s linear infinite;
  animation: animateBubble_2 5s linear infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
  left: 5%;
  top: 20%; }
  .x2_7 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x2_7 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x2_8 {
  -webkit-animation: animateBubble_2 3s linear infinite;
  -moz-animation: animateBubble_2 3s linear infinite;
  animation: animateBubble_2 3s linear infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
  left: 25%;
  top: 3%; }
  .x2_8 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6); }
    .x2_8 .bubble-scale:after {
      -webkit-animation: sideWays 3s ease-in-out infinite alternate;
      -moz-animation: sideWays 3s ease-in-out infinite alternate;
      animation: sideWays 3s ease-in-out infinite alternate; }

.x2_9 {
  -webkit-animation: animateBubble_2 4.5s linear infinite;
  -moz-animation: animateBubble_2 4.5s linear infinite;
  animation: animateBubble_2 4.5s linear infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
  left: -3%;
  top: 0%; }
  .x2_9 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7); }
    .x2_9 .bubble-scale:after {
      -webkit-animation: sideWays 4s ease-in-out infinite alternate;
      -moz-animation: sideWays 4s ease-in-out infinite alternate;
      animation: sideWays 4s ease-in-out infinite alternate; }

.x2_10 {
  -webkit-animation: animateBubble_2 6s linear infinite;
  -moz-animation: animateBubble_2 6s linear infinite;
  animation: animateBubble_2 6s linear infinite;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
  left: 50%;
  top: 5%; }
  .x2_10 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5); }
    .x2_10 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

#bubble-wrap-3 {
 bottom: 0;
    left: 5%;
    position: absolute;
    right: 80%;
    top: 0;
    z-index: 1; }

.x3_1 {
  -webkit-animation: animateBubble_3 5s linear infinite;
  -moz-animation: animateBubble_3 5s linear infinite;
  animation: animateBubble_3 5s linear infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
  left: 20%;
  top: 0%; }
  .x3_1 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2); }
    .x3_1 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x3_2 {
  -webkit-animation: animateBubble_3 5s linear infinite;
  -moz-animation: animateBubble_3 5s linear infinite;
  animation: animateBubble_3 5s linear infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
  left: -5%;
  top: 5%; }
  .x3_2 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x3_2 .bubble-scale:after {
      -webkit-animation: sideWays 4s ease-in-out infinite alternate;
      -moz-animation: sideWays 4s ease-in-out infinite alternate;
      animation: sideWays 4s ease-in-out infinite alternate; }

.x3_3 {
  -webkit-animation: animateBubble_3 4s linear infinite;
  -moz-animation: animateBubble_3 4s linear infinite;
  animation: animateBubble_3 4s linear infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
  left: 0%;
  top: 10%; }
  .x3_3 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x3_3 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x3_4 {
  -webkit-animation: animateBubble_3 8s linear infinite;
  -moz-animation: animateBubble_3 8s linear infinite;
  animation: animateBubble_3 8s linear infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
  left: 10%;
  top: 15%; }
  .x3_4 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2); }
    .x3_4 .bubble-scale:after {
      -webkit-animation: sideWays 3s ease-in-out infinite alternate;
      -moz-animation: sideWays 3s ease-in-out infinite alternate;
      animation: sideWays 3s ease-in-out infinite alternate; }

.x3_5 {
  -webkit-animation: animateBubble_3 9s linear infinite;
  -moz-animation: animateBubble_3 9s linear infinite;
  animation: animateBubble_3 9s linear infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
  left: 3%;
  top: 25%; }
  .x3_5 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x3_5 .bubble-scale:after {
      -webkit-animation: sideWays 4s ease-in-out infinite alternate;
      -moz-animation: sideWays 4s ease-in-out infinite alternate;
      animation: sideWays 4s ease-in-out infinite alternate; }

.x3_6 {
  -webkit-animation: animateBubble_3 7s linear infinite;
  -moz-animation: animateBubble_3 7s linear infinite;
  animation: animateBubble_3 7s linear infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
  left: 18%;
  top: 10%; }
  .x3_6 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
    .x3_6 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x3_7 {
  -webkit-animation: animateBubble_3 3s linear infinite;
  -moz-animation: animateBubble_3 3s linear infinite;
  animation: animateBubble_3 3s linear infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
  left: 8%;
  top: 1%; }
  .x3_7 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.2);
    -moz-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2); }
    .x3_7 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

.x3_8 {
  -webkit-animation: animateBubble_3 15s linear infinite;
  -moz-animation: animateBubble_3 15s linear infinite;
  animation: animateBubble_3 15s linear infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
  left: -5%;
  top: 20%; }
  .x3_8 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1); }
    .x3_8 .bubble-scale:after {
      -webkit-animation: sideWays 3s ease-in-out infinite alternate;
      -moz-animation: sideWays 3s ease-in-out infinite alternate;
      animation: sideWays 3s ease-in-out infinite alternate; }

.x3_9 {
  -webkit-animation: animateBubble_3 5s linear infinite;
  -moz-animation: animateBubble_3 5s linear infinite;
  animation: animateBubble_3 5s linear infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
  left: -10%;
  top: 12%; }
  .x3_9 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
    .x3_9 .bubble-scale:after {
      -webkit-animation: sideWays 4s ease-in-out infinite alternate;
      -moz-animation: sideWays 4s ease-in-out infinite alternate;
      animation: sideWays 4s ease-in-out infinite alternate; }

.x3_10 {
  -webkit-animation: animateBubble_3 6s linear infinite;
  -moz-animation: animateBubble_3 6s linear infinite;
  animation: animateBubble_3 6s linear infinite;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
  left: 15%;
  top: 5%; }
  .x3_10 .bubble-scale {
    display: block;
    position: absolute;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3); }
    .x3_10 .bubble-scale:after {
      -webkit-animation: sideWays 2s ease-in-out infinite alternate;
      -moz-animation: sideWays 2s ease-in-out infinite alternate;
      animation: sideWays 2s ease-in-out infinite alternate; }

/*
     FILE ARCHIVED ON 21:20:27 Dec 15, 2021 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 07:34:28 Mar 04, 2023.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 216.747
  exclusion.robots: 0.224
  exclusion.robots.policy: 0.213
  RedisCDXSource: 0.637
  esindex: 0.009
  LoadShardBlock: 195.702 (3)
  PetaboxLoader3.datanode: 53.75 (4)
  PetaboxLoader3.resolve: 229.595 (2)
  load_resource: 132.191
*/