@media screen and (min-width: 700px) {
  #easter:hover~.egg .flask {
      -ms-transform: translate(120%) rotate(0);
      -webkit-transform: translate(120%) rotate(0);
      transform: translate(120%) rotate(0);
  }
}

/* Flask animation inspired from https://codepen.io/joeyclouvel/pen/gxKJp?editors=1100 */
.flask {
    width: 100px;
    height: 115px;
    position: relative;
    transition: all 1s;
    -webkit-transition: all 1s;
    margin-left: -10%;
    margin-top: -180%;
}

.flask img {
    width: 100px;
    height: 115px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.flask .background {
    width: 100px;
    height: 50px;
    background-color: #b8d432;
    position: absolute;
    z-index: 0;
    bottom: 20px;
    left: 0;
    animation: liquid 3s infinite,liquid-color 80s infinite;
}

@keyframes liquid {
    0% {
        height: 30px;
    }
    10% {
        height: 27px;
    }
    35% {
        height: 30px;
    }
    50% {
        height: 32px;
    }
    80% {
        height: 28px;
    }
    100% {
        height: 30px;
    }
}

.bubble {
    width: 20px;
    height: 20px;
    background: #b8d432;
    border-radius: 20px;
    position: absolute;
    top: 75px;
}

@keyframes bubble {
    0% {
        top: 80px;
    }
    100% {
        top: -100px;
        opacity: 0;
    }
}

@keyframes side {
    0% {
        margin-right: 0px;
    }
    100% {
        margin-right: 15px;
    }
}

.b1,.b2,.b3 {
    right: 30px;
    transform: scale(0.4);
    opacity: 0.6;
    animation: bubble 8s linear infinite, liquid-color 80s infinite, side 2s ease-in-out infinite alternate;
}
.b2 {
    right: 35px;
    transform: scale(0.5);
    animation-delay: 2s,0s,2s;
}
.b3 {
    right: 40px;
    animation-delay: 5s,0s,5s;
    animation: bubble 10s linear infinite, liquid-color 80s infinite, side 3s ease-in-out infinite alternate;
}
.b4,.b5 {
    right: 25px;
    transform: scale(0.5);
    opacity: 0.8;
    animation: bubble 16s linear infinite, liquid-color 80s infinite, side 5s ease-in-out infinite alternate;
    animation-delay: 4s,0s,4s;
}
.b5 {
    right: 35px;
    animation-delay: 5s,0s,5s;
}
.b6 {
    right: 25px;
    transform: scale(0.6);
    opacity: 0.4;
    animation: bubble 14s linear infinite, liquid-color 80s infinite, side 3s ease-in-out infinite alternate;
    animation-delay: 9s,0s,9s;
}
.b7,.b0 {
    right: 30px;
    transform: scale(0.65);
    opacity: 0.7;
    animation: bubble 20s linear infinite, liquid-color 80s infinite, side 5s ease-in-out infinite alternate;
}
.b0 {
    right: 20px;
    animation-delay: 13s,0s,13s;
}

.swirl {
    width: 10px;
    height: 10px;
    background: #7fba00;
    border-radius: 10px;
    position: absolute;
    top: 80px;
    left: 30px;
}

@keyframes swirl {
    0% {
        top: 80px;
    }
    100% {
        top: 75px;
    }
}

.s0 {
  left: 34px;
    animation: liquid-color 80s infinite, swirl 1s ease-in-out infinite alternate;
}

.s1 {
    left: 50px;
  transform: scale(1.5);
    animation: liquid-color 80s infinite, swirl 2s ease-in-out infinite alternate;
    animation-delay: 0s,3s;
}
