

  /* -------------------- bubbles -------------------- */
  @keyframes animateEven {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
      filter: blur(5px);
    }
    100% {
      transform: translate(100px, -500px) scale(3);
      opacity: 0;
      filter: blur(10px);
    }
  }
  @keyframes animateOdd {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
      filter: blur(5px);
    }
    100% {
      transform: translate(-100px, -500px) scale(3);
      opacity: 0;
      filter: blur(10px);
    }
  }
  @keyframes animateWeird {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
      filter: blur(5px);
    }
    100% {
      transform: translate(-140px, -500px) scale(3);
      opacity: 0;
      filter: blur(15px);
    }
  }
  @keyframes animateBubble {
    0% {
      opacity: 0;
      margin-top: 100px;
    }
    2% {
      opacity: 0;
    }
    3% {
      opacity: 1;
    }
    100% {
      margin-top: -100%;
    }
  }
  @keyframes animateInnerBubble {
    0% {
      transform: scale(0.1);
      -webkit-transform: scale(0.1);
    }
    100% {
      -webkit-transform: scale(5);
    }
  }
  @keyframes animateTooltip {
    0% {
      margin-top: -20px;
    }
    100% {
      margin-top: -100px;
    }
  }
  @keyframes sideWays {
    0% {
      margin-left: 0;
    }
    100% {
      margin-left: 80px;
    }
  }
  @keyframes sideWaysSlow {
    0% {
      margin-left: 0;
    }
    100% {
      margin-left: 40px;
    }
  }
  @keyframes sideWaysFast {
    0% {
      margin-left: 0;
    }
    100% {
      margin-left: -80px;
    }
  }
  @keyframes sideWaysWideSlowRight {
    0% {
      margin-left: 0;
    }
    100% {
      margin-left: 150px;
    }
  }
  @keyframes sideWaysWideSlowLeft {
    0% {
      margin-left: 0;
    }
    100% {
      margin-left: -150px;
    }
  }
   .bubble {
    display: block;
  }
   .bubble.left {
    left: -5%;
  }
  .bubble.left-15 {
      left: 15%;
    }
   .bubble.left-25 {
    left: 25%;
  }
   .bubble.left-50 {
    left: 50%;
  }
   .bubble.left-75 {
    left: 75%;
  }
  .bubble.left-85 {
      left: 85%;
    }
   .bubble.left-100 {
    left: 100%;
  }
   .bubble.top {
    top: 0;
  }
   .bubble.top-25 {
    top: 25%;
  }
   .bubble.top-50 {
    top: 50%;
  }
   .bubble.top-75 {
    top: 75%;
  }
   .bubble.top-100 {
    top: 100%;
  }
   .bubble.x {
    animation: animateBubble 20s linear infinite,
      sideWays 2s ease-in-out infinite alternate;
    transform: scale(0.5);
  }
   .bubble.x:nth-of-type(1) {
    top: 5%;
  }
   .bubble.x:nth-of-type(2) {
    top: 10%;
  }
   .bubble.x:nth-of-type(3) {
    top: 15%;
  }
   .bubble.x:nth-of-type(4) {
    top: 20%;
  }
   .bubble.x:nth-of-type(5) {
    top: 25%;
  }
   .bubble.x:nth-of-type(6) {
    top: 30%;
  }
   .bubble.x:nth-of-type(7) {
    top: 35%;
  }
   .bubble.x:nth-of-type(8) {
    top: 40%;
  }
   .bubble.x:nth-of-type(9) {
    top: 45%;
  }
   .bubble.x:nth-of-type(10) {
    top: 50%;
  }
   .bubble.x:nth-of-type(11) {
    top: 55%;
  }
   .bubble.x:nth-of-type(12) {
    top: 60%;
  }
   .bubble.x:nth-of-type(13) {
    top: 65%;
  }
   .bubble.x:nth-of-type(14) {
    top: 70%;
  }
   .bubble.x:nth-of-type(15) {
    top: 75%;
  }
   .bubble.x:nth-of-type(16) {
    top: 80%;
  }
   .bubble.x:nth-of-type(17) {
    top: 85%;
  }
   .bubble.x:nth-of-type(18) {
    top: 90%;
  }
   .bubble.x:nth-of-type(19) {
    top: 95%;
  }
   .bubble.x:nth-of-type(20) {
    top: 100%;
  }
   .bubble.x1 {
    animation: animateBubble 24s linear infinite,
      sideWays 24s ease-in-out infinite alternate;
  }
   .bubble.x1 .bubble-inner {
    animation: animateInnerBubble 24s linear infinite;
  }
   .bubble.x1 .ui-tooltip {
    animation: animateTooltip 24s linear infinite;
  }
   .bubble.x2 {
    animation: animateBubble 30s linear infinite,
      sideWaysWideSlowRight 5s ease-in-out infinite alternate;
  }
   .bubble.x2 .bubble-inner {
    animation: animateInnerBubble 30s linear infinite;
  }
   .bubble.x2 .ui-tooltip {
    animation: animateTooltip 30s linear infinite;
  }
   .bubble.x3 {
    animation: animateBubble 28s linear infinite,
      sideWaysSlow 7s ease-in-out infinite alternate;
  }
   .bubble.x3 .bubble-inner {
    animation: animateInnerBubble 28s linear infinite;
  }
   .bubble.x3 .ui-tooltip {
    -webkit-animation: animateTooltip 28s linear infinite;
    -moz-animation: animateTooltip 28s linear infinite;
    animation: animateTooltip 28s linear infinite;
  }
   .bubble.x4 {
    animation: animateBubble 60s linear infinite,
      sideWays 6s ease-in-out infinite alternate;
  }
   .bubble.x4 .bubble-inner {
    animation: animateInnerBubble 60s linear infinite;
  }
   .bubble.x4 .ui-tooltip {
    animation: animateTooltip 60s linear infinite;
  }
   .bubble.x5 {
    animation: animateBubble 16s linear infinite,
      sideWaysSlow 4s ease-in-out infinite alternate;
  }
   .bubble.x5 .bubble-inner {
    animation: animateInnerBubble 16s linear infinite;
  }
   .bubble.x5 .ui-tooltip {
    animation: animateTooltip 16s linear infinite;
  }
   .bubble.x6 {
    animation: animateBubble 16s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
  }
   .bubble.x6 .bubble-inner {
    animation: animateInnerBubble 16s linear infinite;
  }
   .bubble.x6 .ui-tooltip {
    animation: animateTooltip 16s linear infinite;
  }
   .bubble.x7 {
    animation: animateBubble 100s linear infinite,
      sideWaysWideSlowLeft 10s ease-in-out infinite alternate;
  }
   .bubble.x7 .bubble-inner {
    animation: animateInnerBubble 100s linear infinite;
  }
   .bubble.x7 .ui-tooltip {
    animation: animateTooltip 100s linear infinite;
  }
   .bubble.x8 {
    animation: animateBubble 12s linear infinite,
      sideWaysFast 3s ease-in-out infinite alternate;
  }
   .bubble.x8 .bubble-inner {
    animation: animateInnerBubble 12s linear infinite;
  }
   .bubble.x8 .ui-tooltip {
    animation: animateTooltip 12s linear infinite;
  }
   .bubble.x9 {
    animation: animateBubble 30s linear infinite,
      sideWays 6s ease-in-out infinite alternate;
  }
   .bubble.x9 .bubble-inner {
    animation: animateInnerBubble 30s linear infinite;
  }
   .bubble.x9 .ui-tooltip {
    animation: animateTooltip 30s linear infinite;
  }
   .bubble.x10 {
    animation: animateBubble 80s linear infinite,
      sideWaysSlow 8s ease-in-out infinite alternate;
  }
   .bubble.x10 .bubble-inner {
    animation: animateInnerBubble 80s linear infinite;
  }
   .bubble.x10 .ui-tooltip {
    -webkit-animation: animateTooltip 80s linear infinite;
    -moz-animation: animateTooltip 80s linear infinite;
    animation: animateTooltip 80s linear infinite;
  }
   .bubble.x11 {
    -webkit-animation: animateBubble 40s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 40s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    animation: animateBubble 40s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
  }
   .bubble.x11 .bubble-inner {
    -webkit-animation: animateInnerBubble 40s linear infinite;
    -moz-animation: animateInnerBubble 40s linear infinite;
    animation: animateInnerBubble 40s linear infinite;
  }
   .bubble.x11 .ui-tooltip {
    -webkit-animation: animateTooltip 40s linear infinite;
    -moz-animation: animateTooltip 40s linear infinite;
    animation: animateTooltip 40s linear infinite;
  }
   .bubble.x12 {
    -webkit-animation: animateBubble 36s linear infinite,
      sideWays 3s ease-in-out infinite alternate;
    -moz-animation: animateBubble 36s linear infinite,
      sideWays 3s ease-in-out infinite alternate;
    animation: animateBubble 36s linear infinite,
      sideWays 3s ease-in-out infinite alternate;
  }
   .bubble.x12 .bubble-inner {
    -webkit-animation: animateInnerBubble 36s linear infinite;
    -moz-animation: animateInnerBubble 36s linear infinite;
    animation: animateInnerBubble 36s linear infinite;
  }
   .bubble.x12 .ui-tooltip {
    -webkit-animation: animateTooltip 36s linear infinite;
    -moz-animation: animateTooltip 36s linear infinite;
    animation: animateTooltip 36s linear infinite;
  }
   .bubble.x13 {
    -webkit-animation: animateBubble 20s linear infinite,
      sideWaysSlow 5s ease-in-out infinite alternate;
    -moz-animation: animateBubble 20s linear infinite,
      sideWaysSlow 5s ease-in-out infinite alternate;
    animation: animateBubble 20s linear infinite,
      sideWaysSlow 5s ease-in-out infinite alternate;
  }
   .bubble.x13 .bubble-inner {
    -webkit-animation: animateInnerBubble 20s linear infinite;
    -moz-animation: animateInnerBubble 20s linear infinite;
    animation: animateInnerBubble 20s linear infinite;
  }
   .bubble.x13 .ui-tooltip {
    -webkit-animation: animateTooltip 20s linear infinite;
    -moz-animation: animateTooltip 20s linear infinite;
    animation: animateTooltip 20s linear infinite;
  }
   .bubble.x14 {
    -webkit-animation: animateBubble 32s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 32s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    animation: animateBubble 32s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
  }
   .bubble.x14 .bubble-inner {
    -webkit-animation: animateInnerBubble 32s linear infinite;
    -moz-animation: animateInnerBubble 32s linear infinite;
    animation: animateInnerBubble 32s linear infinite;
  }
   .bubble.x14 .ui-tooltip {
    -webkit-animation: animateTooltip 32s linear infinite;
    -moz-animation: animateTooltip 32s linear infinite;
    animation: animateTooltip 32s linear infinite;
  }
   .bubble.x15 {
    -webkit-animation: animateBubble 8s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 8s linear infinite,
      sideWaysSlow 4s ease-in-out infinite alternate;
    animation: animateBubble 8s linear infinite,
      sideWaysSlow 4s ease-in-out infinite alternate;
  }
   .bubble.x15 .bubble-inner {
    -webkit-animation: animateInnerBubble 8s linear infinite;
    -moz-animation: animateInnerBubble 8s linear infinite;
    animation: animateInnerBubble 8s linear infinite;
  }
   .bubble.x15 .ui-tooltip {
    -webkit-animation: animateTooltip 8s linear infinite;
    -moz-animation: animateTooltip 8s linear infinite;
    animation: animateTooltip 8s linear infinite;
  }
   .bubble.x16 {
    -webkit-animation: animateBubble 48s linear infinite,
      sideWaysWideSlowLeft 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 48s linear infinite,
      sideWaysWideSlowLeft 4s ease-in-out infinite alternate;
    animation: animateBubble 48s linear infinite,
      sideWaysWideSlowLeft 4s ease-in-out infinite alternate;
  }
   .bubble.x16 .bubble-inner {
    -webkit-animation: animateInnerBubble 48s linear infinite;
    -moz-animation: animateInnerBubble 48s linear infinite;
    animation: animateInnerBubble 48s linear infinite;
  }
   .bubble.x16 .ui-tooltip {
    -webkit-animation: animateTooltip 48s linear infinite;
    -moz-animation: animateTooltip 48s linear infinite;
    animation: animateTooltip 48s linear infinite;
  }
   .bubble.x17 {
    -webkit-animation: animateBubble 48s linear infinite,
      sideWaysWideSlowRight 8s ease-in-out infinite alternate;
    -moz-animation: animateBubble 48s linear infinite,
      sideWaysWideSlowRight 8s ease-in-out infinite alternate;
    animation: animateBubble 48s linear infinite,
      sideWaysWideSlowRight 8s ease-in-out infinite alternate;
  }
   .bubble.x17 .bubble-inner {
    -webkit-animation: animateInnerBubble 48s linear infinite;
    -moz-animation: animateInnerBubble 48s linear infinite;
    animation: animateInnerBubble 48s linear infinite;
  }
   .bubble.x17 .ui-tooltip {
    -webkit-animation: animateTooltip 48s linear infinite;
    -moz-animation: animateTooltip 48s linear infinite;
    animation: animateTooltip 48s linear infinite;
  }
   .bubble {
    height: 33px;
    width: 32px;
    position: absolute;
    cursor: pointer;
    z-index: 1;
  }
   .bubble-inner {
    background: url(/img/bubble.png)
      no-repeat center center;
    background-size: 100%;
    opacity: 1;
    height: 33px;
    width: 32px;
  }
   .bubble-clicked {
    height: 10px;
    width: 10px;
    position: absolute;
    background: url(/img/bubble.png)
      no-repeat center center;
    background-size: 100%;
    opacity: 0.7;
    cursor: pointer;
  }
   .bubble.left {
    left: 23%;
  }
  
  .bubble:hover .ui-tooltip {
    z-index: 1;
  }
  .bubble .ui-tooltip {
    opacity: 0;
    z-index: -1;
    position: absolute;
    width: 70px;
    margin-left: -30px;
  }
  .ui-tooltip {
    position: absolute;
    background: #4e4e4e;
    padding: 3px 12px;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
  }
   #animatedBubble .bubble {
    height: 33px;
    width: 32px;
    position: absolute;
    background: url(/img/bubble.png)
      no-repeat center center;
    background-size: 100%;
    opacity: 0.7;
  }
   #animatedBubble .bubble.left {
    left: 24%;
  }
   #animatedBubble .bubble.top-100 {
    top: -50px;
  }
   #animatedBubble .bubble.x {
    -webkit-animation: animateBubble 20s linear infinite,
      sideWays 2s ease-in-out infinite alternate;
    -moz-animation: animateBubble 20s linear infinite,
      sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 20s linear infinite,
      sideWays 2s ease-in-out infinite alternate;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    transform: scale(0.5);
  }
   #animatedBubble .bubble.x:nth-of-type(1) {
    top: 5%;
  }
   #animatedBubble .bubble.x:nth-of-type(2) {
    top: 10%;
  }
   #animatedBubble .bubble.x:nth-of-type(3) {
    top: 15%;
  }
   #animatedBubble .bubble.x:nth-of-type(4) {
    top: 20%;
  }
   #animatedBubble .bubble.x:nth-of-type(5) {
    top: 25%;
  }
   #animatedBubble .bubble.x:nth-of-type(6) {
    top: 30%;
  }
   #animatedBubble .bubble.x:nth-of-type(7) {
    top: 35%;
  }
   #animatedBubble .bubble.x:nth-of-type(8) {
    top: 40%;
  }
   #animatedBubble .bubble.x:nth-of-type(9) {
    top: 45%;
  }
   #animatedBubble .bubble.x:nth-of-type(10) {
    top: 50%;
  }
   #animatedBubble .bubble.x:nth-of-type(11) {
    top: 55%;
  }
   #animatedBubble .bubble.x:nth-of-type(12) {
    top: 60%;
  }
   #animatedBubble .bubble.x:nth-of-type(13) {
    top: 65%;
  }
   #animatedBubble .bubble.x:nth-of-type(14) {
    top: 70%;
  }
   #animatedBubble .bubble.x:nth-of-type(15) {
    top: 75%;
  }
   #animatedBubble .bubble.x:nth-of-type(16) {
    top: 80%;
  }
   #animatedBubble .bubble.x:nth-of-type(17) {
    top: 85%;
  }
   #animatedBubble .bubble.x:nth-of-type(18) {
    top: 90%;
  }
   #animatedBubble .bubble.x:nth-of-type(19) {
    top: 95%;
  }
   #animatedBubble .bubble.x:nth-of-type(20) {
    top: 100%;
  }
   #animatedBubble .bubble.x1 {
    -webkit-animation: animateBubble 24s linear infinite,
      sideWays 24s ease-in-out infinite alternate;
    -moz-animation: animateBubble 24s linear infinite,
      sideWays 24s ease-in-out infinite alternate;
    animation: animateBubble 24s linear infinite,
      sideWays 24s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x2 {
    -webkit-animation: animateBubble 30s linear infinite,
      sideWaysWideSlowRight 5s ease-in-out infinite alternate;
    -moz-animation: animateBubble 30s linear infinite,
      sideWaysWideSlowRight 5s ease-in-out infinite alternate;
    animation: animateBubble 30s linear infinite,
      sideWaysWideSlowRight 5s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x3 {
    -webkit-animation: animateBubble 28s linear infinite,
      sideWaysSlow 7s ease-in-out infinite alternate;
    -moz-animation: animateBubble 28s linear infinite,
      sideWaysSlow 7s ease-in-out infinite alternate;
    animation: animateBubble 28s linear infinite,
      sideWaysSlow 7s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x4 {
    -webkit-animation: animateBubble 60s linear infinite,
      sideWays 6s ease-in-out infinite alternate;
    -moz-animation: animateBubble 60s linear infinite,
      sideWays 6s ease-in-out infinite alternate;
    animation: animateBubble 60s linear infinite,
      sideWays 6s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x5 {
    -webkit-animation: animateBubble 16s linear infinite,
      sideWaysSlow 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 16s linear infinite,
      sideWaysSlow 4s ease-in-out infinite alternate;
    animation: animateBubble 16s linear infinite,
      sideWaysSlow 4s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x6 {
    -webkit-animation: animateBubble 16s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 16s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    animation: animateBubble 16s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x7 {
    -webkit-animation: animateBubble 100s linear infinite,
      sideWaysWideSlowLeft 10s ease-in-out infinite alternate;
    -moz-animation: animateBubble 100s linear infinite,
      sideWaysWideSlowLeft 10s ease-in-out infinite alternate;
    animation: animateBubble 100s linear infinite,
      sideWaysWideSlowLeft 10s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x8 {
    -webkit-animation: animateBubble 12s linear infinite,
      sideWaysFast 3s ease-in-out infinite alternate;
    -moz-animation: animateBubble 12s linear infinite,
      sideWaysFast 3s ease-in-out infinite alternate;
    animation: animateBubble 12s linear infinite,
      sideWaysFast 3s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x9 {
    -webkit-animation: animateBubble 30s linear infinite,
      sideWays 6s ease-in-out infinite alternate;
    -moz-animation: animateBubble 30s linear infinite,
      sideWays 6s ease-in-out infinite alternate;
    animation: animateBubble 30s linear infinite,
      sideWays 6s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x10 {
    -webkit-animation: animateBubble 80s linear infinite,
      sideWaysSlow 8s ease-in-out infinite alternate;
    -moz-animation: animateBubble 80s linear infinite,
      sideWaysSlow 8s ease-in-out infinite alternate;
    animation: animateBubble 80s linear infinite,
      sideWaysSlow 8s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x11 {
    -webkit-animation: animateBubble 40s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 40s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    animation: animateBubble 40s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x12 {
    -webkit-animation: animateBubble 36s linear infinite,
      sideWays 3s ease-in-out infinite alternate;
    -moz-animation: animateBubble 36s linear infinite,
      sideWays 3s ease-in-out infinite alternate;
    animation: animateBubble 36s linear infinite,
      sideWays 3s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x13 {
    -webkit-animation: animateBubble 20s linear infinite,
      sideWaysSlow 5s ease-in-out infinite alternate;
    -moz-animation: animateBubble 20s linear infinite,
      sideWaysSlow 5s ease-in-out infinite alternate;
    animation: animateBubble 20s linear infinite,
      sideWaysSlow 5s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x14 {
    -webkit-animation: animateBubble 32s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 32s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    animation: animateBubble 32s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x15 {
    -webkit-animation: animateBubble 8s linear infinite,
      sideWaysFast 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 8s linear infinite,
      sideWaysSlow 4s ease-in-out infinite alternate;
    animation: animateBubble 8s linear infinite,
      sideWaysSlow 4s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x16 {
    -webkit-animation: animateBubble 48s linear infinite,
      sideWaysWideSlowLeft 4s ease-in-out infinite alternate;
    -moz-animation: animateBubble 48s linear infinite,
      sideWaysWideSlowLeft 4s ease-in-out infinite alternate;
    animation: animateBubble 48s linear infinite,
      sideWaysWideSlowLeft 4s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble.x17 {
    -webkit-animation: animateBubble 48s linear infinite,
      sideWaysWideSlowRight 8s ease-in-out infinite alternate;
    -moz-animation: animateBubble 48s linear infinite,
      sideWaysWideSlowRight 8s ease-in-out infinite alternate;
    animation: animateBubble 48s linear infinite,
      sideWaysWideSlowRight 8s ease-in-out infinite alternate;
  }
   #animatedBubble .bubble {
    background: 0 0;
  }
   #animatedBubble ul {
    position: absolute;
    top: 37px;
    left: 22.5%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
  }
   #animatedBubble li {
    position: absolute;
    list-style: none;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    filter: blur(5px);
    transform: scale(0.5);
    opacity: 0.5;
  }
   #animatedBubble li:nth-child(odd) {
    animation: animateOdd 2.8s linear infinite;
  }
   #animatedBubble li:nth-child(15) {
    animation: animateWeird 2.8s linear infinite;
  }
   #animatedBubble li:nth-child(16) {
    animation: none;
    filter: blur(15px);
  }
  @keyframes animateEven {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
      filter: blur(5px);
    }
    100% {
      transform: translate(100px, -500px) scale(3);
      opacity: 0;
      filter: blur(10px);
    }
  }
  @keyframes animateOdd {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
      filter: blur(5px);
    }
    100% {
      transform: translate(-100px, -500px) scale(3);
      opacity: 0;
      filter: blur(10px);
    }
  }
  @keyframes animateWeird {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 1;
      filter: blur(5px);
    }
    100% {
      transform: translate(-140px, -500px) scale(3);
      opacity: 0;
      filter: blur(15px);
    }
  }
  @media (max-width: 768px) {
    .bubble {
        display: none!important;
    }
  }

/* -------------------- bubbles -------------------- */